diff --git a/Config/PermissionsTranslator.json b/Config/PermissionsTranslator.json index c7163822eb098..c8a297b6e546d 100644 --- a/Config/PermissionsTranslator.json +++ b/Config/PermissionsTranslator.json @@ -5363,6 +5363,15 @@ "userConsentDisplayName": "Allows the app to read and modify your tenant's acquired telephone number details on behalf of the signed-in admin user. Acquired telephone numbers may include attributes related to assigned object, emergency location, network site, etc.", "value": "TeamsTelephoneNumber.ReadWrite.All" }, + { + "description": "Read Teams user configurations", + "displayName": "Read Teams user configurations", + "id": "5c469ce4-dab5-4afd-b9de-14f1ba4004a7", + "Origin": "Delegated", + "userConsentDescription": "Allows the app to read your tenant's user configurations on behalf of the signed-in admin user. User configuration may include attributes related to user, such as telephone number, assigned policies, etc.", + "userConsentDisplayName": "Read Teams user configurations", + "value": "TeamsUserConfiguration.Read.All" + }, { "description": "Read and Modify Tenant-Acquired Telephone Number Details", "displayName": "Read and Modify Tenant-Acquired Telephone Number Details", @@ -5372,6 +5381,15 @@ "userConsentDisplayName": "Allows the app to read your tenant's acquired telephone number details, without a signed-in user. Acquired telephone numbers may include attributes related to assigned object, emergency location, network site, etc.", "value": "TeamsTelephoneNumber.ReadWrite.All" }, + { + "description": "Read Teams user configurations", + "displayName": "Read Teams user configurations", + "id": "a91eadaf-2c3c-4362-908b-fb172d208fc6", + "Origin": "Application", + "userConsentDescription": "Allows the app to read your tenant's user configurations, without a signed-in user. User configuration may include attributes related to user, such as telephone number, assigned policies, etc.", + "userConsentDisplayName": "Read Teams user configurations", + "value": "TeamsUserConfiguration.Read.All" + }, { "description": "Allows the app to read and write Copilot policy settings for the organization, on behalf of the signed-in user.", "displayName": "Read and write Copilot policy settings", diff --git a/Config/SAMManifest.json b/Config/SAMManifest.json index 56fc2811de489..b3e135310de40 100644 --- a/Config/SAMManifest.json +++ b/Config/SAMManifest.json @@ -235,6 +235,10 @@ "id": "0a42382f-155c-4eb1-9bdc-21548ccaa387", "type": "Role" }, + { + "id": "a91eadaf-2c3c-4362-908b-fb172d208fc6", + "type": "Role" + }, { "id": "a94a502d-0281-4d15-8cd2-682ac9362c4c", "type": "Role" @@ -559,6 +563,10 @@ "id": "424b07a8-1209-4d17-9fe4-9018a93a1024", "type": "Scope" }, + { + "id": "5c469ce4-dab5-4afd-b9de-14f1ba4004a7", + "type": "Scope" + }, { "id": "cac97e40-6730-457d-ad8d-4852fddab7ad", "type": "Scope" diff --git a/Modules/CIPPCore/Public/Add-CIPPApplicationPermission.ps1 b/Modules/CIPPCore/Public/Add-CIPPApplicationPermission.ps1 index 8ce5ea3268f30..263a2a0fbfcd9 100644 --- a/Modules/CIPPCore/Public/Add-CIPPApplicationPermission.ps1 +++ b/Modules/CIPPCore/Public/Add-CIPPApplicationPermission.ps1 @@ -161,6 +161,11 @@ function Add-CIPPApplicationPermission { $Results.add("Failed to grant permissions in bulk: $(Get-NormalizedError -message $_.Exception.Message)") } } + if ($counter -gt 0) { + # App-only scopes changed; a cached client_credentials token still carries the old + # roles, so drop it rather than wait out its TTL. + $null = Clear-CippTokenCache -TenantFilter $TenantFilter + } "Added $counter Application permissions to $($ourSVCPrincipal.displayName)" return $Results } diff --git a/Modules/CIPPCore/Public/Add-CIPPDbItem.ps1 b/Modules/CIPPCore/Public/Add-CIPPDbItem.ps1 index d0c5e5ad27f1c..f4987a8908232 100644 --- a/Modules/CIPPCore/Public/Add-CIPPDbItem.ps1 +++ b/Modules/CIPPCore/Public/Add-CIPPDbItem.ps1 @@ -21,13 +21,19 @@ function Add-CIPPDbItem { [switch]$Count, [switch]$AddCount, - [switch]$Append + [switch]$Append, + + [ValidateRange(0, 60)] + [int]$SkewMarginMinutes = 5 ) begin { $Table = Get-CippTable -tablename 'CippReportingDB' - $Batch = [System.Collections.Generic.List[hashtable]]::new() - $NewRowKeys = [System.Collections.Generic.HashSet[string]]::new([System.StringComparer]::OrdinalIgnoreCase) + $BatchSize = 100 + $Batch = [System.Collections.Generic.List[hashtable]]::new($BatchSize) + $SeenInBatch = [System.Collections.Generic.HashSet[string]]::new([System.StringComparer]::OrdinalIgnoreCase) + $RunStartUtc = [DateTimeOffset]::UtcNow.AddMinutes(-$SkewMarginMinutes) + $TotalProcessed = 0 # Cache regex instances so each row pays only the match cost, not regex compilation. # Two passes preserve the original semantics: path/wildcard chars → '_', control chars → stripped. @@ -54,17 +60,18 @@ function Add-CIPPDbItem { if ($null -eq $Item) { continue } $ItemId = $Item.ExternalDirectoryObjectId ?? $Item.id ?? $Item.Identity ?? $Item.skuId ?? $Item.userPrincipalName ?? [guid]::NewGuid().ToString() $RowKey = $RowKeyControlRegex.Replace($RowKeyPathRegex.Replace("$Type-$ItemId", '_'), '') - if ($NewRowKeys.Add($RowKey)) { + if ($SeenInBatch.Add($RowKey)) { $Batch.Add(@{ PartitionKey = $TenantFilter RowKey = $RowKey Data = [string]($Item | ConvertTo-Json -Depth 10 -Compress) Type = $Type }) - if ($Batch.Count -ge 500) { + if ($Batch.Count -ge $BatchSize) { $null = Add-CIPPAzDataTableEntity @Table -Entity $Batch.ToArray() -Force $TotalProcessed += $Batch.Count $Batch.Clear() + $SeenInBatch.Clear() } } } @@ -76,17 +83,22 @@ function Add-CIPPDbItem { $TotalProcessed += $Batch.Count } - # Clean up orphaned rows (entities that no longer exist in the new dataset) - if (-not $Count.IsPresent -and -not $Append.IsPresent) { + # Clean up orphaned rows (entities that no longer exist in the new dataset). + if (-not $Count.IsPresent -and -not $Append.IsPresent -and $TotalProcessed -gt 0) { $Filter = "PartitionKey eq '{0}' and RowKey ge '{1}-' and RowKey lt '{1}0'" -f $TenantFilter, $Type - $Existing = Get-CIPPAzDataTableEntity @Table -Filter $Filter -Property PartitionKey, RowKey, ETag, OriginalEntityId + $Existing = Get-CIPPAzDataTableEntity @Table -Filter $Filter -Property PartitionKey, RowKey, ETag, OriginalEntityId, Timestamp if ($Existing) { + $Undated = 0 $Orphans = foreach ($Row in @($Existing)) { if ($Row.RowKey -eq "$Type-Count") { continue } - $ParentKey = $Row.OriginalEntityId ?? $Row.RowKey - if (-not $NewRowKeys.Contains($ParentKey)) { - $Row - } + + $Stamp = $Row.Timestamp -as [datetimeoffset] + if ($null -eq $Stamp) { $Undated++; continue } + + if ($Stamp -lt $RunStartUtc) { $Row } + } + if ($Undated -gt 0) { + Write-LogMessage -API 'CIPPDbItem' -tenant $TenantFilter -sev Warning -message "Skipped $Undated $Type row(s) with no readable Timestamp during orphan cleanup — not deleting without positive evidence" } if ($Orphans) { $null = Remove-AzDataTableEntity @Table -Entity @($Orphans) -Force diff --git a/Modules/CIPPCore/Public/Add-CIPPDelegatedPermission.ps1 b/Modules/CIPPCore/Public/Add-CIPPDelegatedPermission.ps1 index 7d27c984ebf4f..8543acab6b84d 100644 --- a/Modules/CIPPCore/Public/Add-CIPPDelegatedPermission.ps1 +++ b/Modules/CIPPCore/Public/Add-CIPPDelegatedPermission.ps1 @@ -174,6 +174,9 @@ function Add-CIPPDelegatedPermission { $Results.add("Failed to update permissions for $($svcPrincipalId.displayName): $(Get-NormalizedError -message $_.Exception.Message)") continue } + # Delegated scopes changed; a cached refresh_token-derived access token still + # carries the old scopes, so drop it rather than wait out its TTL. + $null = Clear-CippTokenCache -TenantFilter $TenantFilter # Added permissions $Added = ($Compare | Where-Object { $_.SideIndicator -eq '=>' }).InputObject -join ' ' $Removed = ($Compare | Where-Object { $_.SideIndicator -eq '<=' }).InputObject -join ' ' diff --git a/Modules/CIPPCore/Public/Authentication/Clear-CippAccessScopeCache.ps1 b/Modules/CIPPCore/Public/Authentication/Clear-CippAccessScopeCache.ps1 new file mode 100644 index 0000000000000..52f067723a74a --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Clear-CippAccessScopeCache.ps1 @@ -0,0 +1,49 @@ +function Clear-CippAccessScopeCache { + <# + .SYNOPSIS + Invalidate cached access scope rules across every worker. + + .DESCRIPTION + Bumps the shared version stamp that Get-CippAccessScopeRule keys on, so every worker misses + and recomputes from source, and drops this worker's caches immediately. + + Propagation is not instant on the other workers. They each memo the stamp for a short + window (see Get-CippAccessScopeVersion), so a change lands there within that window rather + than on the very next request. Verified behaviour, not an assumption. + + Call this from anything that changes what a role is allowed to see: custom role + definitions, access role group mappings, and tenant group membership. Missing a call site + does not cause indefinite staleness - the rule cache TTL still expires entries - but it + does mean an operator can save a role change and not see it take effect straight away. + + A failure is logged rather than thrown. Failing the role save the operator just made + because a cache table hiccuped would be the worse outcome, and the TTL bounds the damage. + + .EXAMPLE + Clear-CippAccessScopeCache + + .FUNCTIONALITY + Internal + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param() + + if (-not $PSCmdlet.ShouldProcess('access scope cache', 'Invalidate')) { + return + } + + $script:CippAccessScopeRuleCache = @{} + $script:CippAccessScopeVersionMemo = $null + + try { + $Table = Get-CIPPTable -tablename 'CacheVersions' + $Entity = @{ + PartitionKey = 'CacheVersion' + RowKey = 'AccessScope' + Version = [string][guid]::NewGuid() + } + Add-CIPPAzDataTableEntity @Table -Entity $Entity -Force | Out-Null + } catch { + Write-LogMessage -API 'AccessScopeCache' -message "Failed to invalidate the access scope cache. Other workers will keep their current rules until the cache expires. $($_.Exception.Message)" -Sev 'Error' + } +} diff --git a/Modules/CIPPCore/Public/Authentication/Expand-CippScopeTenantItem.ps1 b/Modules/CIPPCore/Public/Authentication/Expand-CippScopeTenantItem.ps1 new file mode 100644 index 0000000000000..f20c9226937cd --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Expand-CippScopeTenantItem.ps1 @@ -0,0 +1,46 @@ +function Expand-CippScopeTenantItem { + <# + .SYNOPSIS + Expand a role's tenant entries, resolving tenant groups to their member tenant ids. + + .DESCRIPTION + Entries stored against a role are either literal tenant ids, the 'AllTenants' sentinel, or + a tenant group reference that has to be resolved to the ids currently in that group. + + A group that cannot be expanded warns and contributes nothing, which is deliberate: the + alternative - treating an unresolvable group as 'everything' - would widen access on the + back of a lookup failure. + + Used by Get-CippAccessScopeRule for both the allowed and blocked lists. + + .PARAMETER Items + The stored AllowedTenants or BlockedTenants entries. + + .PARAMETER Kind + 'allowed' or 'blocked', used only to make the warning readable. + + .EXAMPLE + Expand-CippScopeTenantItem -Items $Permission.BlockedTenants -Kind 'blocked' + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + $Items, + [string]$Kind + ) + + foreach ($Item in $Items) { + if ($Item -is [PSCustomObject] -and $Item.type -eq 'Group') { + try { + $GroupMembers = Expand-CIPPTenantGroups -TenantFilter @($Item) + $GroupMembers | ForEach-Object { $_.addedFields.customerId } + } catch { + Write-Warning "Failed to expand $Kind tenant group '$($Item.label)': $($_.Exception.Message)" + } + } else { + $Item + } + } +} diff --git a/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeRule.ps1 b/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeRule.ps1 new file mode 100644 index 0000000000000..eac24c107d4bd --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeRule.ps1 @@ -0,0 +1,99 @@ +function Get-CippAccessScopeRule { + <# + .SYNOPSIS + The tenant and group scope rule a custom role expresses. + + .DESCRIPTION + Returns the rule itself - allow everything, or an explicit allow list minus a block list - + rather than the set of tenant ids it currently resolves to. + + That distinction is the whole point of the cache. Caching the resolved id list would bake + in a snapshot of the tenant table, so a tenant onboarded afterwards would silently stay + invisible to the role until the entry expired: the same silent-omission failure that made + the request scope leak so hard to spot. A rule depends only on the role definition and + tenant group membership, both covered by the version stamp, so it stays correct however + many tenants come and go. Callers expand it against the live tenant list at the point of + use, which is an in-memory set operation over data they already hold. + + Cached per worker, keyed by the shared version stamp so a role change invalidates every + worker at once, with a TTL as a backstop in case an invalidation call site is missed. + + .PARAMETER Role + Name of the custom role. + + .EXAMPLE + $Rule = Get-CippAccessScopeRule -Role 'helpdesk' + if (-not $Rule.Unrestricted) { $Rule.BlockedTenants } + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [Parameter(Mandatory = $true)] + [string]$Role + ) + + $TtlMinutes = 5 + $Now = (Get-Date).ToUniversalTime() + $Version = Get-CippAccessScopeVersion + $CacheKey = '{0}|{1}' -f $Version, $Role + + if (-not $script:CippAccessScopeRuleCache) { + $script:CippAccessScopeRuleCache = @{} + } + + $Cached = $script:CippAccessScopeRuleCache[$CacheKey] + if ($Cached -and $Cached.Expires -gt $Now) { + return $Cached.Rule + } + + # Throws when the role no longer exists, which callers already handle as 'this role + # contributes no scope' + $Permission = Get-CIPPRolePermissions -Role $Role + + $Unrestricted = ((($Permission.AllowedTenants | Measure-Object).Count -eq 0 -or + $Permission.AllowedTenants -contains 'AllTenants') -and + ($Permission.BlockedTenants | Measure-Object).Count -eq 0) + + $AllowAllTenants = $false + $AllowedTenants = @() + $BlockedTenants = @() + $AllowedGroups = @() + + if (-not $Unrestricted) { + $Expanded = @(Expand-CippScopeTenantItem -Items $Permission.AllowedTenants -Kind 'allowed') + + # 'AllTenants' alongside a block list means 'everything except', and the caller substitutes + # the live tenant list. Held as a flag rather than a resolved list precisely so that + # substitution happens at read time. + $AllowAllTenants = $Expanded -contains 'AllTenants' + $AllowedTenants = @($Expanded | Where-Object { $_ -ne 'AllTenants' }) + $BlockedTenants = @(Expand-CippScopeTenantItem -Items $Permission.BlockedTenants -Kind 'blocked') + $AllowedGroups = @( + foreach ($Item in $Permission.AllowedTenants) { + if ($Item -is [PSCustomObject] -and $Item.type -eq 'Group') { $Item.value } + } + ) + } + + $Rule = [PSCustomObject]@{ + Role = $Role + Unrestricted = $Unrestricted + AllowAllTenants = $AllowAllTenants + AllowedTenants = $AllowedTenants + BlockedTenants = $BlockedTenants + AllowedGroups = $AllowedGroups + } + + # Entries keyed on a superseded version are dead weight; drop the lot rather than track ages + if ($script:CippAccessScopeRuleCache.Count -gt 200) { + $script:CippAccessScopeRuleCache = @{} + } + $script:CippAccessScopeRuleCache[$CacheKey] = @{ + Rule = $Rule + Expires = $Now.AddMinutes($TtlMinutes) + } + + return $Rule +} diff --git a/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeVersion.ps1 b/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeVersion.ps1 new file mode 100644 index 0000000000000..d7fd8e6a151c4 --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Get-CippAccessScopeVersion.ps1 @@ -0,0 +1,57 @@ +function Get-CippAccessScopeVersion { + <# + .SYNOPSIS + Current version stamp for cached access scope rules. + + .DESCRIPTION + Access scope rules are derived from CustomRoles, AccessRoleGroups and tenant group + membership, and are cached per worker. Those inputs are shared, and one worker has no way + to reach into another's memory, so invalidation goes through this stamp instead: every + worker keys its cache on the current value, and Clear-CippAccessScopeCache bumps it + whenever the underlying definitions change. + + The stamp is itself memoised for a short window so a warm request costs no storage read at + all. That window is the upper bound on how long a role change takes to reach a worker that + is already warm. + + A read failure returns a fresh value rather than the last known one. That forces a miss and + a recompute from source, so a storage blip costs latency instead of serving a scope that + may no longer be correct. + + .EXAMPLE + Get-CippAccessScopeVersion + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param() + + # How long a worker trusts its copy of the stamp, and therefore the worst case delay before a + # role change reaches a worker that is already warm. The worker that made the change clears + # its own memo, so this only applies to the others. Kept short deliberately: the cost is one + # small table read per worker per window, which is nothing next to an operator changing a role + # and being unable to tell whether it took effect. + $MemoSeconds = 10 + $Now = (Get-Date).ToUniversalTime() + + if ($script:CippAccessScopeVersionMemo -and $script:CippAccessScopeVersionMemo.Expires -gt $Now) { + return $script:CippAccessScopeVersionMemo.Version + } + + try { + $Table = Get-CIPPTable -tablename 'CacheVersions' + $Entity = Get-CIPPAzDataTableEntity @Table -Filter "PartitionKey eq 'CacheVersion' and RowKey eq 'AccessScope'" + $Version = if ($Entity.Version) { [string]$Entity.Version } else { 'initial' } + } catch { + Write-Warning "Could not read the access scope cache version, forcing a recompute. $($_.Exception.Message)" + return [string][guid]::NewGuid() + } + + $script:CippAccessScopeVersionMemo = @{ + Version = $Version + Expires = $Now.AddSeconds($MemoSeconds) + } + + return $Version +} diff --git a/Modules/CIPPCore/Public/Authentication/Get-CippRequestContext.ps1 b/Modules/CIPPCore/Public/Authentication/Get-CippRequestContext.ps1 new file mode 100644 index 0000000000000..a9df439f94fa2 --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Get-CippRequestContext.ps1 @@ -0,0 +1,44 @@ +function Get-CippRequestContext { + <# + .SYNOPSIS + Return the per-invocation access context for the current request. + + .DESCRIPTION + Accessor for the context slots managed by Initialize-CippRequestContext. + + These slots are held in CIPPCore module scope. `$script:` is per-module, so a function in + another module - CIPPHTTP, for example - that reads $script:CippAllowedTenantsStorage + directly gets that module's own, permanently empty, variable rather than this one. + Diagnostics outside CIPPCore must go through this function or they will report that no + scoping is applied no matter what is actually in force. + + .EXAMPLE + $Context = Get-CippRequestContext + $Context.AllowedTenants + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param() + + $InvocationId = if ($script:CippInvocationIdStorage) { $script:CippInvocationIdStorage.Value } else { $null } + $AllowedTenants = if ($script:CippAllowedTenantsStorage) { $script:CippAllowedTenantsStorage.Value } else { $null } + $AllowedGroups = if ($script:CippAllowedGroupsStorage) { $script:CippAllowedGroupsStorage.Value } else { $null } + + # Count only. The keys are user principal names and the diagnostic endpoint that surfaces + # this is gated on CIPP.Core.Read, which is not a high enough bar to hand out a list of who + # else has been using this worker. + $CachedUserRoleCount = if ($script:CippUserRolesStorage -and $script:CippUserRolesStorage.Value) { + $script:CippUserRolesStorage.Value.Count + } else { + 0 + } + + return [PSCustomObject]@{ + InvocationId = $InvocationId + AllowedTenants = $AllowedTenants + AllowedGroups = $AllowedGroups + CachedUserRoleCount = $CachedUserRoleCount + } +} diff --git a/Modules/CIPPCore/Public/Authentication/Initialize-CippRequestContext.ps1 b/Modules/CIPPCore/Public/Authentication/Initialize-CippRequestContext.ps1 new file mode 100644 index 0000000000000..77b66f917e39a --- /dev/null +++ b/Modules/CIPPCore/Public/Authentication/Initialize-CippRequestContext.ps1 @@ -0,0 +1,50 @@ +function Initialize-CippRequestContext { + <# + .SYNOPSIS + Reset the per-invocation context slots at the start of a request. + + .DESCRIPTION + The tenant scope, group scope, invocation id and user role cache live in module scoped + AsyncLocal slots so deep helpers (Get-Tenants, Get-TenantGroups) can read the current + request's access scope without every call site threading it through as a parameter. + + AsyncLocal does not give per-request isolation in this host. Both Craft and the Azure + Functions PowerShell worker reuse runspaces and execution contexts between invocations, + so a value written by one request is still visible to the next request that lands on the + same worker. Whatever is left behind is inherited, and a request whose access is + unrestricted has no reason to overwrite it - which is how a restricted user's tenant + scope ends up silently filtering an unrestricted user's results. + + Every slot is therefore reset here, unconditionally, before any of them is read. + + .EXAMPLE + Initialize-CippRequestContext + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param() + + if (-not $script:CippInvocationIdStorage) { + $script:CippInvocationIdStorage = [System.Threading.AsyncLocal[string]]::new() + } + if (-not $script:CippAllowedTenantsStorage) { + $script:CippAllowedTenantsStorage = [System.Threading.AsyncLocal[object]]::new() + } + if (-not $script:CippAllowedGroupsStorage) { + $script:CippAllowedGroupsStorage = [System.Threading.AsyncLocal[object]]::new() + } + if (-not $script:CippUserRolesStorage) { + $script:CippUserRolesStorage = [System.Threading.AsyncLocal[hashtable]]::new() + } + + # Clear anything inherited from an earlier invocation on this worker. Consumers treat a null + # scope as 'unrestricted', so a stale value can only ever hide data that the caller is + # entitled to see - it never grants access. That makes the symptom silent rather than loud, + # which is exactly why it has to be cleared here rather than relied on to be overwritten. + $script:CippInvocationIdStorage.Value = $null + $script:CippAllowedTenantsStorage.Value = $null + $script:CippAllowedGroupsStorage.Value = $null + $script:CippUserRolesStorage.Value = @{} +} diff --git a/Modules/CIPPCore/Public/Authentication/Set-CIPPAccessRole.ps1 b/Modules/CIPPCore/Public/Authentication/Set-CIPPAccessRole.ps1 index f74e8a3e9f65c..9bfa11f84ff5b 100644 --- a/Modules/CIPPCore/Public/Authentication/Set-CIPPAccessRole.ps1 +++ b/Modules/CIPPCore/Public/Authentication/Set-CIPPAccessRole.ps1 @@ -47,5 +47,9 @@ function Set-CIPPAccessRole { if ($PSCmdlet.ShouldProcess("Setting access role $Role for group $($Group.displayName)")) { Add-CIPPAzDataTableEntity -Table $Table -Entity $AccessGroup -Force + + # Group to role mapping decides which roles a user resolves to, so the cached scope rules + # have to be invalidated with it + Clear-CippAccessScopeCache } } diff --git a/Modules/CIPPCore/Public/Authentication/Test-CIPPAccess.ps1 b/Modules/CIPPCore/Public/Authentication/Test-CIPPAccess.ps1 index 9652995cccf29..9ca939a19e841 100644 --- a/Modules/CIPPCore/Public/Authentication/Test-CIPPAccess.ps1 +++ b/Modules/CIPPCore/Public/Authentication/Test-CIPPAccess.ps1 @@ -331,6 +331,55 @@ function Test-CIPPAccess { if (@('admin', 'superadmin') -contains $BaseRole.Name) { return $true } else { + # Scope-only requests resolve from the cached rules. On a warm cache this needs no + # storage read at all, and it only needs the tenant table when a rule actually says + # 'all tenants except', because that is the one case where the answer depends on + # which tenants currently exist. + if ($TenantList.IsPresent -or $GroupList.IsPresent) { + $swScopeRules = [System.Diagnostics.Stopwatch]::StartNew() + $ScopeRules = foreach ($CustomRole in $CustomRoles) { + try { + Get-CippAccessScopeRule -Role $CustomRole + } catch { + Write-Information $_.Exception.Message + } + } + $swScopeRules.Stop() + $AccessTimings['GetScopeRules'] = $swScopeRules.Elapsed.TotalMilliseconds + + if (($ScopeRules | Measure-Object).Count -eq 0) { + # No role produced a scope, so the caller is entitled to nothing + return @() + } + + if ($TenantList.IsPresent) { + $swTenantList = [System.Diagnostics.Stopwatch]::StartNew() + $NeedsTenantList = @($ScopeRules | Where-Object { -not $_.Unrestricted -and $_.AllowAllTenants }).Count -gt 0 + $Tenants = if ($NeedsTenantList) { Get-Tenants -IncludeErrors } else { @() } + + $LimitedTenantList = foreach ($Rule in $ScopeRules) { + if ($Rule.Unrestricted) { + @('AllTenants') + } else { + $AllowedForRule = if ($Rule.AllowAllTenants) { $Tenants.customerId } else { $Rule.AllowedTenants } + $AllowedForRule | Where-Object { $Rule.BlockedTenants -notcontains $_ } + } + } + $swTenantList.Stop() + $AccessTimings['BuildTenantList'] = $swTenantList.Elapsed.TotalMilliseconds + return @($LimitedTenantList | Sort-Object -Unique) + } + + Write-Information "Getting allowed groups for roles: $($CustomRoles -join ', ')" + $swGroupList = [System.Diagnostics.Stopwatch]::StartNew() + $LimitedGroupList = foreach ($Rule in $ScopeRules) { + if ($Rule.Unrestricted) { @('AllGroups') } else { $Rule.AllowedGroups } + } + $swGroupList.Stop() + $AccessTimings['BuildGroupList'] = $swGroupList.Elapsed.TotalMilliseconds + return @($LimitedGroupList | Sort-Object -Unique) + } + $swTenantsLoad = [System.Diagnostics.Stopwatch]::StartNew() $Tenants = Get-Tenants -IncludeErrors $swTenantsLoad.Stop() @@ -349,69 +398,8 @@ function Test-CIPPAccess { $AccessTimings['GetRolePermissions'] = $swRolePerms.Elapsed.TotalMilliseconds if ($PermissionsFound) { - if ($TenantList.IsPresent) { - $swTenantList = [System.Diagnostics.Stopwatch]::StartNew() - $LimitedTenantList = foreach ($Permission in $PermissionSet) { - if ((($Permission.AllowedTenants | Measure-Object).Count -eq 0 -or $Permission.AllowedTenants -contains 'AllTenants') -and (($Permission.BlockedTenants | Measure-Object).Count -eq 0)) { - @('AllTenants') - } else { - # Expand tenant groups to individual tenant IDs - $ExpandedAllowedTenants = foreach ($AllowedItem in $Permission.AllowedTenants) { - if ($AllowedItem -is [PSCustomObject] -and $AllowedItem.type -eq 'Group') { - try { - $GroupMembers = Expand-CIPPTenantGroups -TenantFilter @($AllowedItem) - $GroupMembers | ForEach-Object { $_.addedFields.customerId } - } catch { - Write-Warning "Failed to expand tenant group '$($AllowedItem.label)': $($_.Exception.Message)" - @() - } - } else { - $AllowedItem - } - } - - $ExpandedBlockedTenants = foreach ($BlockedItem in $Permission.BlockedTenants) { - if ($BlockedItem -is [PSCustomObject] -and $BlockedItem.type -eq 'Group') { - try { - $GroupMembers = Expand-CIPPTenantGroups -TenantFilter @($BlockedItem) - $GroupMembers | ForEach-Object { $_.addedFields.customerId } - } catch { - Write-Warning "Failed to expand blocked tenant group '$($BlockedItem.label)': $($_.Exception.Message)" - @() - } - } else { - $BlockedItem - } - } - - if ($ExpandedAllowedTenants -contains 'AllTenants') { - $ExpandedAllowedTenants = $Tenants.customerId - } - $ExpandedAllowedTenants | Where-Object { $ExpandedBlockedTenants -notcontains $_ } - } - } - $swTenantList.Stop() - $AccessTimings['BuildTenantList'] = $swTenantList.Elapsed.TotalMilliseconds - return @($LimitedTenantList | Sort-Object -Unique) - } elseif ($GroupList.IsPresent) { - $swGroupList = [System.Diagnostics.Stopwatch]::StartNew() - Write-Information "Getting allowed groups for roles: $($CustomRoles -join ', ')" - $LimitedGroupList = foreach ($Permission in $PermissionSet) { - if ((($Permission.AllowedTenants | Measure-Object).Count -eq 0 -or $Permission.AllowedTenants -contains 'AllTenants') -and (($Permission.BlockedTenants | Measure-Object).Count -eq 0)) { - @('AllGroups') - } else { - foreach ($AllowedItem in $Permission.AllowedTenants) { - if ($AllowedItem -is [PSCustomObject] -and $AllowedItem.type -eq 'Group') { - $AllowedItem.value - } - } - } - } - $swGroupList.Stop() - $AccessTimings['BuildGroupList'] = $swGroupList.Elapsed.TotalMilliseconds - return @($LimitedGroupList | Sort-Object -Unique) - } - + # Tenant list and group list requests have already returned above, from the + # cached scope rules. Everything from here is the per-endpoint access decision. $TenantAllowed = $false $APIAllowed = $false $swPermissionEval = [System.Diagnostics.Stopwatch]::StartNew() diff --git a/Modules/CIPPCore/Public/Authentication/Test-CIPPAccessUserRole.ps1 b/Modules/CIPPCore/Public/Authentication/Test-CIPPAccessUserRole.ps1 index 82fc925e06878..ca42c57fa9794 100644 --- a/Modules/CIPPCore/Public/Authentication/Test-CIPPAccessUserRole.ps1 +++ b/Modules/CIPPCore/Public/Authentication/Test-CIPPAccessUserRole.ps1 @@ -24,15 +24,30 @@ function Test-CIPPAccessUserRole { $UserRoleTotalSw = [System.Diagnostics.Stopwatch]::StartNew() $Roles = @() - # Check AsyncLocal cache first (per-request cache) + # TTL for the in-memory tier, deliberately identical to the cacheAccessUserRoles window used + # below. That tier fronts the table cache, so leaving it without an expiry lets it outlive + # the cache it is caching: a role change, or a user being removed from an access group, + # would not take effect on a warm worker until the process recycled. + $RoleCacheMinutes = 15 + + # Check the in-memory cache first, discarding the entry once it is past its TTL + $CachedEntry = $null if ($script:CippUserRolesStorage -and $script:CippUserRolesStorage.Value -and $script:CippUserRolesStorage.Value.ContainsKey($User.userDetails)) { - $Roles = $script:CippUserRolesStorage.Value[$User.userDetails] + $CachedEntry = $script:CippUserRolesStorage.Value[$User.userDetails] + if ($null -eq $CachedEntry.Expires -or $CachedEntry.Expires -le (Get-Date).ToUniversalTime()) { + $script:CippUserRolesStorage.Value.Remove($User.userDetails) + $CachedEntry = $null + } + } + + if ($CachedEntry) { + $Roles = $CachedEntry.Roles } else { # Check table storage cache (persistent cache) try { $swTableLookup = [System.Diagnostics.Stopwatch]::StartNew() $Table = Get-CippTable -TableName cacheAccessUserRoles - $Filter = "PartitionKey eq 'AccessUser' and RowKey eq '$($User.userDetails)' and Timestamp ge datetime'$((Get-Date).AddMinutes(-15).ToUniversalTime().ToString('yyyy-MM-ddTHH:mm:ss.fffZ'))'" + $Filter = "PartitionKey eq 'AccessUser' and RowKey eq '$($User.userDetails)' and Timestamp ge datetime'$((Get-Date).AddMinutes(-$RoleCacheMinutes).ToUniversalTime().ToString('yyyy-MM-ddTHH:mm:ss.fffZ'))'" $UserRole = Get-CIPPAzDataTableEntity @Table -Filter $Filter $swTableLookup.Stop() $UserRoleTimings['TableLookup'] = $swTableLookup.Elapsed.TotalMilliseconds @@ -44,9 +59,12 @@ function Test-CIPPAccessUserRole { Write-Information "Found cached user role for $($User.userDetails)" $Roles = $UserRole.Role | ConvertFrom-Json - # Store in AsyncLocal cache for this request + # Store in the in-memory cache, expiring in step with the table cache if ($script:CippUserRolesStorage -and $script:CippUserRolesStorage.Value) { - $script:CippUserRolesStorage.Value[$User.userDetails] = $Roles + $script:CippUserRolesStorage.Value[$User.userDetails] = @{ + Roles = $Roles + Expires = (Get-Date).ToUniversalTime().AddMinutes($RoleCacheMinutes) + } } } else { try { @@ -114,9 +132,12 @@ function Test-CIPPAccessUserRole { } } - # Store in AsyncLocal cache for this request + # Store in the in-memory cache, expiring in step with the table cache if ($script:CippUserRolesStorage -and $script:CippUserRolesStorage.Value) { - $script:CippUserRolesStorage.Value[$User.userDetails] = $Roles + $script:CippUserRolesStorage.Value[$User.userDetails] = @{ + Roles = $Roles + Expires = (Get-Date).ToUniversalTime().AddMinutes($RoleCacheMinutes) + } } } } diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/New-CippCoreRequest.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/New-CippCoreRequest.ps1 index 0b382a26e4315..27d561b4b99eb 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/New-CippCoreRequest.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/New-CippCoreRequest.ps1 @@ -16,24 +16,10 @@ function New-CippCoreRequest { $HttpTimings = @{} $HttpTotalStopwatch = [System.Diagnostics.Stopwatch]::StartNew() - # Initialize AsyncLocal storage for thread-safe per-invocation context - if (-not $script:CippInvocationIdStorage) { - $script:CippInvocationIdStorage = [System.Threading.AsyncLocal[string]]::new() - } - if (-not $script:CippAllowedTenantsStorage) { - $script:CippAllowedTenantsStorage = [System.Threading.AsyncLocal[object]]::new() - } - if (-not $script:CippAllowedGroupsStorage) { - $script:CippAllowedGroupsStorage = [System.Threading.AsyncLocal[object]]::new() - } - if (-not $script:CippUserRolesStorage) { - $script:CippUserRolesStorage = [System.Threading.AsyncLocal[hashtable]]::new() - } - - # Initialize user roles cache for this request - if (-not $script:CippUserRolesStorage.Value) { - $script:CippUserRolesStorage.Value = @{} - } + # Initialize and reset the per-invocation context slots. This has to happen before anything + # reads them: workers are reused between requests, so whatever the previous invocation left + # behind is still in scope until it is explicitly cleared. + Initialize-CippRequestContext # Set InvocationId in AsyncLocal storage for console logging correlation if ($global:TelemetryClient -and $TriggerMetadata.InvocationId) { @@ -158,13 +144,21 @@ function New-CippCoreRequest { $swGroups.Stop() $HttpTimings['AllowedGroups'] = $swGroups.Elapsed.TotalMilliseconds + # Assign on every path, including the unrestricted one. Only writing the slot when + # access is limited is what allowed a restricted user's scope to survive into the + # next request handled by the same worker, silently filtering results for someone + # entitled to see everything. if ($AllowedTenants -notcontains 'AllTenants') { Write-Warning 'Limiting tenant access' $script:CippAllowedTenantsStorage.Value = $AllowedTenants + } else { + $script:CippAllowedTenantsStorage.Value = $null } if ($AllowedGroups -notcontains 'AllGroups') { Write-Warning 'Limiting group access' $script:CippAllowedGroupsStorage.Value = $AllowedGroups + } else { + $script:CippAllowedGroupsStorage.Value = $null } try { diff --git a/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-AuditLogIngestionV2.ps1 b/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-AuditLogIngestionV2.ps1 index 9b47577ec4c87..3dab8b3701149 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-AuditLogIngestionV2.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Orchestrator Functions/Start-AuditLogIngestionV2.ps1 @@ -28,19 +28,17 @@ function Start-AuditLogIngestionV2 { $Now = (Get-Date).ToUniversalTime() # --- Download tenants: searches awaiting download (State = Created, due) --- - $Created = @(Get-CIPPAzDataTableEntity @Ledger -Filter "State eq 'Created'") - $DueCreated = $Created | Where-Object { -not $_.NextAttemptUtc -or ([datetimeoffset]$_.NextAttemptUtc).UtcDateTime -le $Now } $DownloadTenants = [System.Collections.Generic.HashSet[string]]::new([System.StringComparer]::OrdinalIgnoreCase) - foreach ($Name in @($DueCreated | Group-Object PartitionKey | ForEach-Object { $_.Name })) { - if ($Name) { [void]$DownloadTenants.Add([string]$Name) } + foreach ($Row in @(Get-CIPPAzDataTableEntity @Ledger -Filter "State eq 'Created'" -Property @('PartitionKey', 'NextAttemptUtc'))) { + if ($Row.NextAttemptUtc -and ([datetimeoffset]$Row.NextAttemptUtc).UtcDateTime -gt $Now) { continue } + if ($Row.PartitionKey) { [void]$DownloadTenants.Add([string]$Row.PartitionKey) } } # --- Process-only tenants: rows pending in the webhook cache (downloaded, not yet processed) --- $CacheTable = Get-CippTable -TableName 'CacheWebhooks' - $CacheRows = @(Get-CIPPAzDataTableEntity @CacheTable -Property @('PartitionKey', 'RowKey')) $CacheTenants = [System.Collections.Generic.HashSet[string]]::new([System.StringComparer]::OrdinalIgnoreCase) - foreach ($Name in @($CacheRows | Group-Object PartitionKey | ForEach-Object { $_.Name })) { - if ($Name) { [void]$CacheTenants.Add([string]$Name) } + foreach ($Row in @(Get-CIPPAzDataTableEntity @CacheTable -Property @('PartitionKey'))) { + if ($Row.PartitionKey) { [void]$CacheTenants.Add([string]$Row.PartitionKey) } } if ($DownloadTenants.Count -eq 0 -and $CacheTenants.Count -eq 0) { diff --git a/Modules/CIPPCore/Public/Get-CIPPAuthentication.ps1 b/Modules/CIPPCore/Public/Get-CIPPAuthentication.ps1 index 3f244f5e8418e..8a0f581f748c2 100644 --- a/Modules/CIPPCore/Public/Get-CIPPAuthentication.ps1 +++ b/Modules/CIPPCore/Public/Get-CIPPAuthentication.ps1 @@ -8,7 +8,8 @@ function Get-CIPPAuthentication { $Variables = @('ApplicationID', 'ApplicationSecret', 'TenantID', 'RefreshToken') try { - if ($env:AzureWebJobsStorage -eq 'UseDevelopmentStorage=true' -or $env:NonLocalHostAzurite -eq 'true') { + $IsDevMode = $env:AzureWebJobsStorage -eq 'UseDevelopmentStorage=true' -or $env:NonLocalHostAzurite -eq 'true' + if ($IsDevMode) { $Table = Get-CIPPTable -tablename 'DevSecrets' $Secret = Get-AzDataTableEntity @Table -Filter "PartitionKey eq 'Secret' and RowKey eq 'Secret'" if (!$Secret) { @@ -26,6 +27,48 @@ function Get-CIPPAuthentication { Set-Item -Path env:$_ -Value (Get-CippKeyVaultSecret -VaultName $keyvaultname -Name $_ -AsPlainText -ErrorAction Stop) -Force } } + # TenantID must be the tenant GUID: a domain name (contoso.onmicrosoft.com) + # works for token requests but breaks API integrations that compare or store + # tenant ids. Resolve a domain to its GUID via the unauthenticated OpenID + # metadata endpoint. Skip the deployment template's placeholder value — + # fresh deployments hold 'tenantId' until the setup wizard writes real + # secrets (same placeholder set as Initialize-CIPPAuth). + $GuidPattern = '^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$' + $PlaceholderPattern = '^(LongApplicationId|AppSecret|RefreshToken|tenantId)$' + if ($env:TenantID -and $env:TenantID -notmatch $GuidPattern -and $env:TenantID -notmatch $PlaceholderPattern) { + $StoredTenantID = $env:TenantID + try { + $OpenIdConfig = Invoke-RestMethod -Uri "https://login.microsoftonline.com/$StoredTenantID/v2.0/.well-known/openid-configuration" -ErrorAction Stop + $ResolvedTenantID = ($OpenIdConfig.issuer -split '/')[3] + if ($ResolvedTenantID -notmatch $GuidPattern) { + throw "OpenID metadata for '$StoredTenantID' did not contain a tenant GUID (issuer: $($OpenIdConfig.issuer))" + } + $env:TenantID = $ResolvedTenantID + Write-LogMessage -message "The TenantID secret is set to domain name '$StoredTenantID' - resolved to tenant GUID $ResolvedTenantID." -Sev 'Warning' -API 'CIPP Authentication' + + # Fix the stored secret so every future load gets the GUID directly. + # Best-effort: this session already has the resolved value. + if ($IsDevMode) { + try { + $Secret | Add-Member -MemberType NoteProperty -Name 'TenantID' -Value $ResolvedTenantID -Force + $null = Add-AzDataTableEntity @Table -Entity $Secret -Force + Write-LogMessage -message "Updated the TenantID in the DevSecrets table from '$StoredTenantID' to tenant GUID $ResolvedTenantID." -Sev 'Info' -API 'CIPP Authentication' + } catch { + Write-LogMessage -message 'Could not update the TenantID in the DevSecrets table - it will be re-resolved on every authentication load.' -Sev 'Warning' -API 'CIPP Authentication' -LogData (Get-CippException -Exception $_) + } + } elseif ($keyvaultname) { + try { + $null = Set-CippKeyVaultSecret -VaultName $keyvaultname -Name 'TenantID' -SecretValue (ConvertTo-SecureString -String $ResolvedTenantID -AsPlainText -Force) -ErrorAction Stop + Write-LogMessage -message "Updated the 'TenantID' Key Vault secret from '$StoredTenantID' to tenant GUID $ResolvedTenantID." -Sev 'Info' -API 'CIPP Authentication' + } catch { + Write-LogMessage -message "Could not update the 'TenantID' Key Vault secret to the tenant GUID - it will be re-resolved on every authentication load until the secret is updated manually." -Sev 'Warning' -API 'CIPP Authentication' -LogData (Get-CippException -Exception $_) + } + } + } catch { + Write-LogMessage -message "The TenantID secret ('$StoredTenantID') is not a GUID and could not be resolved to one. API integrations may misbehave until the 'tenantid' Key Vault secret is set to the tenant GUID." -Sev 'Error' -API 'CIPP Authentication' -LogData (Get-CippException -Exception $_) + } + } + # Set before certificate handling: Update-CIPPSAMCertificate goes through # Get-GraphToken, which re-enters this function when SetFromProfile is unset $env:SetFromProfile = $true @@ -34,7 +77,7 @@ function Get-CIPPAuthentication { # when it does not exist yet. Non-fatal: auth must succeed even when certificate # handling fails; the weekly token update retries provisioning. try { - if ($env:AzureWebJobsStorage -eq 'UseDevelopmentStorage=true' -or $env:NonLocalHostAzurite -eq 'true') { + if ($IsDevMode) { if ($Secret.SAMCertificate) { $env:SAMCertificate = $Secret.SAMCertificate } diff --git a/Modules/CIPPCore/Public/Get-CIPPIntuneTemplateType.ps1 b/Modules/CIPPCore/Public/Get-CIPPIntuneTemplateType.ps1 new file mode 100644 index 0000000000000..43d8fb1a40f6c --- /dev/null +++ b/Modules/CIPPCore/Public/Get-CIPPIntuneTemplateType.ps1 @@ -0,0 +1,46 @@ +function Get-CIPPIntuneTemplateType { + <# + .SYNOPSIS + Resolves the policy type of a stored Intune template. + + .DESCRIPTION + Returns the template's recorded Type when it has one. Templates imported before Type was + stored have none, so the type is inferred from the shape of the raw policy payload instead. + Returns $null when the type is neither recorded nor inferable, which means the template + needs re-importing. + + .PARAMETER Type + The template's recorded Type, if any. + + .PARAMETER RawJson + The raw policy JSON to infer from when Type is empty. + + .EXAMPLE + Get-CIPPIntuneTemplateType -Type $Template.Type -RawJson $Template.RAWJson + #> + [CmdletBinding()] + [OutputType([string])] + param( + [string]$Type, + $RawJson + ) + + if ($Type) { + return $Type + } + + try { + $ParsedRaw = $RawJson | ConvertFrom-Json -ErrorAction SilentlyContinue + $ODataType = $ParsedRaw.'@odata.type' + + if ($null -ne $ParsedRaw.settings -and $null -ne $ParsedRaw.technologies) { return 'Catalog' } + if ($null -ne $ParsedRaw.scheduledActionsForRule -or $ODataType -match 'CompliancePolicy') { return 'deviceCompliancePolicies' } + if ($ODataType -match 'windowsDriverUpdateProfile') { return 'windowsDriverUpdateProfiles' } + if ($ODataType -match 'ManagedApp|managedAppProtection') { return 'AppProtection' } + if ($ODataType -match 'deviceConfiguration|#microsoft\.graph\.\w+Configuration$') { return 'Device' } + } catch { + return $null + } + + return $null +} diff --git a/Modules/CIPPCore/Public/Get-CIPPOfficeAppBody.ps1 b/Modules/CIPPCore/Public/Get-CIPPOfficeAppBody.ps1 new file mode 100644 index 0000000000000..0939c2fa9ce77 --- /dev/null +++ b/Modules/CIPPCore/Public/Get-CIPPOfficeAppBody.ps1 @@ -0,0 +1,119 @@ +function Get-CIPPOfficeAppBody { + <# + .SYNOPSIS + Builds the Graph officeSuiteApp body for a Microsoft 365 Apps deployment. + .DESCRIPTION + Shared by Invoke-AddOfficeApp (manual and template deploys) and New-CIPPIntuneAppDeployment + (queue and standards deploys) so every path produces an identical body. Handles the three + shapes an Office config can take: + 1. A pre-built IntuneBody, stored when a template is saved from an already deployed app. + 2. A custom Office configuration XML. + 3. The individual fields from the Office app form / application template wizard. + .PARAMETER Config + The Office app configuration. Either the request body from the Office app form or the + config stored in an application template. + #> + [CmdletBinding()] + param( + [Parameter(Mandatory = $true)] + $Config + ) + + $LargeIcon = @{ + '@odata.type' = 'microsoft.graph.mimeContent' + 'type' = 'image/png' + 'value' = 'iVBORw0KGgoAAAANSUhEUgAAAF0AAAAeCAMAAAEOZNKlAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJhUExURf////7z7/i9qfF1S/KCW/i+qv3q5P/9/PrQwfOMae1RG+s8AOxGDfBtQPWhhPvUx/759/zg1vWgg+9fLu5WIvKFX/rSxP728/nCr/FyR+tBBvOMaO1UH+1RHOs+AvSScP3u6f/+/v3s5vzg1+xFDO9kNPOOa/i7pvzj2/vWyes9Af76+Pzh2PrTxf/6+f7y7vOGYexHDv3t5+1SHfi8qPOIZPvb0O1NFuxDCe9hMPSVdPnFs/3q4/vaz/STcu5VIe5YJPWcfv718v/9/e1MFfF4T/F4TvF2TP3o4exECvF0SexIEPONavzn3/vZze1QGvF3Te5dK+5cKvrPwPrQwvKAWe1OGPexmexKEveulfezm/BxRfamiuxLE/apj/zf1e5YJfSXd/OHYv3r5feznPakiPze1P7x7f739f3w6+xJEfnEsvWdf/Wfge1LFPe1nu9iMvnDsfBqPOs/BPOIY/WZevJ/V/zl3fnIt/vTxuxHD+xEC+9mN+5ZJv749vBpO/KBWvBwRP/8+/SUc/etlPjArP/7+vOLZ/F7UvWae/708e1OF/aihvSWdvi8p+tABfSZefvVyPWihfSVde9lNvami+9jM/zi2fKEXvBuQvOKZvalifF5UPJ/WPSPbe9eLfrKuvvd0uxBB/7w7Pzj2vrRw/rOv+1PGfi/q/eymu5bKf3n4PnJuPBrPf3t6PWfgvWegOxCCO9nOO9oOfaskvSYePi5pPi2oPnGtO5eLPevlvKDXfrNvv739Pzd0/708O9gL+9lNfJ9VfrLu/OPbPnDsPBrPus+A/nArfarkQAAAGr5HKgAAADLdFJOU/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AvuakogAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAz5JREFUOE+tVTtu4zAQHQjppmWzwIJbEVCzpTpjbxD3grQHSOXKRXgCAT6EC7UBVAmp3KwBnmvfzNCyZTmxgeTZJsXx43B+HBHRE34ZkXgkerXFTheeiCkRrbB4UXmp4wSWz5raaQEMTM5TZwuiXoaKgV+6FsmkZQcSy0kA71yMTMGHanX+AzMMGLAQCxU1F/ZwjULPugazl82GM0NEKm/U8EqFwEkO3/EAT4grgl0nucwlk9pcpTTJ4VPA4g/Rb3yIRhhp507e9nTQmZ1OS5RO4sS7nIRPEeHXCHdkw9ZEW2yVE5oIS7peD58Avs7CN+PVCmHh21oOqBdjDzIs+FldPJ74TFESUSJEfVzy9U/dhu+AuOT6eBp6gGKyXEx8euO450ZE4CMfstMFT44broWw/itkYErWXRx+fFArt9Ca9os78TFed0LVIUsmIHrwbwaw3BEOnOk94qVpQ6Ka2HjxewJnfyd6jUtGDQLdWlzmYNYLeKbbGOucJsNabCq1Yub0o92rtR+i30V2dapxYVEePXcOjeCKPnYyit7BtKeNlZqHbr+gt7i+AChWA9RsRs03pxTQc67ouWpxyESvjK5Vs3DVSy3IpkxPm5X+wZoBi+MFHWW69/w8FRhc7VBe6HAhMB2b8Q0XqDzTNZtXUMnKMjwKVaCrB/CSUL7WSx/HsdJC86lFGXwnioTeOMPjV+szlFvrZLA5VMVK4y+41l4e1xfx7Z88o4hkilRUH/qKqwNVlgDgpvYCpH3XwAy5eMCRnezIUxffVXoDql2rTHFDO+pjWnTWzAfrYXn6BFECblUpWGrvPZvBipETjS5ydM7tdXpH41ZCEbBNy/+wFZu71QO2t9pgT+iZEf657Q1vpN94PQNDxUHeKR103LV9nPVOtDikcNKO+2naCw7yKBhOe9Hm79pe8C4/CfC2wDjXnqC94kEeBU3WwN7dt/2UScXas7zDl5GpkY+M8WKv2J7fd4Ib2rGTk+jsC2cleEM7jI9veF7B0MBJrsZqfKd/81q9pR2NZfwJK2JzsmIT1Ns8jUH0UusQBpU8d2JzsHiXg1zXGLqxfitUNTDT/nUUeqDBp2HZVr+Ocqi/Ty3Rf4Jn82xxfSNtAAAAAElFTkSuQmCC' + } + + # A template saved from an existing app carries the full body: reuse it, minus the read-only + # properties Graph rejects on create. + if ($Config.IntuneBody) { + $IntuneBody = $Config.IntuneBody + if ($IntuneBody -is [string]) { + $IntuneBody = $IntuneBody | ConvertFrom-Json -Depth 100 + } else { + # Copy first so we never strip properties off the caller's stored template config. + $IntuneBody = $IntuneBody | ConvertTo-Json -Depth 100 | ConvertFrom-Json -Depth 100 + } + + $ReadOnlyProps = @( + 'id', 'createdDateTime', 'lastModifiedDateTime', 'uploadState', 'publishingState', + 'isAssigned', 'roleScopeTagIds', 'dependentAppCount', 'supersedingAppCount', + 'supersededAppCount', 'committedContentVersion', 'fileName', 'size', + 'assignments@odata.context', 'assignments', 'AppAssignment', 'AppExclude' + ) + foreach ($Prop in $ReadOnlyProps) { + if ($IntuneBody.PSObject.Properties[$Prop]) { + $IntuneBody.PSObject.Properties.Remove($Prop) + } + } + return $IntuneBody + } + + if ($Config.useCustomXml -and $Config.customXml) { + return [PSCustomObject]@{ + '@odata.type' = '#microsoft.graph.officeSuiteApp' + 'displayName' = 'Microsoft 365 Apps for Windows 10 and later' + 'description' = 'Microsoft 365 Apps for Windows 10 and later' + 'informationUrl' = 'https://products.office.com/en-us/explore-office-for-home' + 'privacyInformationUrl' = 'https://privacy.microsoft.com/en-us/privacystatement' + 'isFeatured' = $true + 'publisher' = 'Microsoft' + 'notes' = '' + 'owner' = 'Microsoft' + 'officeConfigurationXml' = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($Config.customXml)) + 'largeIcon' = $LargeIcon + } + } + + # Standard configuration built from the individual form fields. Multi-select fields arrive as + # {label, value} objects from the frontend, but templates and API callers may send plain + # strings, so accept both. + $ExcludedAppNames = @($Config.excludedApps | ForEach-Object { + if ($_ -is [string]) { $_ } else { $_.value } + } | Where-Object { $_ }) + $Languages = @($Config.languages | ForEach-Object { + if ($_ -is [string]) { $_ } else { $_.value } + } | Where-Object { $_ }) + $UpdateChannel = if ($Config.updateChannel.value) { $Config.updateChannel.value } else { $Config.updateChannel } + + $ExcludedApps = [PSCustomObject]@{ + infoPath = $true + sharePointDesigner = $true + excel = $false + lync = $false + oneNote = $false + outlook = $false + powerPoint = $false + publisher = $false + teams = $false + word = $false + access = $false + bing = $false + } + foreach ($ExcludedApp in $ExcludedAppNames) { + $ExcludedApps.$ExcludedApp = $true + } + + return [PSCustomObject]@{ + '@odata.type' = '#microsoft.graph.officeSuiteApp' + 'displayName' = 'Microsoft 365 Apps for Windows 10 and later' + 'description' = 'Microsoft 365 Apps for Windows 10 and later' + 'informationUrl' = 'https://products.office.com/en-us/explore-office-for-home' + 'privacyInformationUrl' = 'https://privacy.microsoft.com/en-us/privacystatement' + 'isFeatured' = $true + 'publisher' = 'Microsoft' + 'notes' = '' + 'owner' = 'Microsoft' + 'autoAcceptEula' = [bool]$Config.AcceptLicense + 'excludedApps' = $ExcludedApps + 'officePlatformArchitecture' = if ($Config.arch) { 'x64' } else { 'x86' } + 'officeSuiteAppDefaultFileFormat' = 'OfficeOpenXMLFormat' + 'localesToInstall' = $Languages + 'shouldUninstallOlderVersionsOfOffice' = [bool]$Config.RemoveVersions + 'updateChannel' = $UpdateChannel + 'useSharedComputerActivation' = [bool]$Config.SharedComputerActivation + 'productIds' = @('o365ProPlusRetail') + 'largeIcon' = $LargeIcon + } +} diff --git a/Modules/CIPPCore/Public/GraphHelper/Clear-CippTokenCache.ps1 b/Modules/CIPPCore/Public/GraphHelper/Clear-CippTokenCache.ps1 new file mode 100644 index 0000000000000..214ec8cf304b4 --- /dev/null +++ b/Modules/CIPPCore/Public/GraphHelper/Clear-CippTokenCache.ps1 @@ -0,0 +1,51 @@ +function Clear-CippTokenCache { + <# + .SYNOPSIS + Invalidates cached Graph tokens so the next request acquires a fresh one. + + .DESCRIPTION + Cached access tokens carry the scopes that were consented at the time they were + issued. After a consent change (CPV refresh/reset, permission update, SAM app + change) a cached token still presents the OLD scopes, so calls keep failing with + "Insufficient permission(s)" until the entry expires on its own. Call this + immediately after any consent change. + + Safe to call when the CIPP.CIPPTokenCache type is unavailable (e.g. running + outside the Craft host) - it becomes a no-op. + + .PARAMETER TenantFilter + Tenant (GUID) whose cached tokens should be dropped. Omit to clear every entry. + + .EXAMPLE + Clear-CippTokenCache -TenantFilter $TenantFilter + + .FUNCTIONALITY + Internal + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param( + [string] $TenantFilter + ) + + if ($null -eq ('CIPP.CIPPTokenCache' -as [type])) { + Write-Verbose 'CIPP.CIPPTokenCache is not available; skipping token cache invalidation.' + return 0 + } + + $Target = if ($TenantFilter) { $TenantFilter } else { 'all tenants' } + if (-not $PSCmdlet.ShouldProcess($Target, 'Invalidate cached Graph tokens')) { return 0 } + + try { + $Removed = if ($TenantFilter) { + [CIPP.CIPPTokenCache]::RemoveByTenant($TenantFilter) + } else { + [CIPP.CIPPTokenCache]::Clear() + } + Write-Information "Invalidated $Removed cached token(s) for $Target." + return $Removed + } catch { + # Never let cache invalidation break the consent flow that called it. + Write-Warning "Could not invalidate the token cache for $Target : $($_.Exception.Message)" + return 0 + } +} diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-AuthorisedRequestError.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-AuthorisedRequestError.ps1 new file mode 100644 index 0000000000000..dbe0b664c64b7 --- /dev/null +++ b/Modules/CIPPCore/Public/GraphHelper/Get-AuthorisedRequestError.ps1 @@ -0,0 +1,49 @@ +function Get-AuthorisedRequestError { + <# + .SYNOPSIS + Builds an actionable message for a tenant that failed Get-AuthorisedRequest. + + .DESCRIPTION + Get-AuthorisedRequest only returns a boolean, so every caller historically emitted the + same catch-all: "You cannot manage your own tenant or tenants not under your scope". + That conflated two situations with different fixes, and was misleading besides - the + partner tenant is present in Get-Tenants, so "your own tenant" was rarely the reason. + + This works out which of the two actionable cases applies: + - the tenant is present but excluded -> un-exclude it in CIPP + - the tenant is not in the list -> tenant sync / GDAP scope + + Deliberately echoes only the identifier the caller already supplied. No tenant names, + customer ids, or tenant-list contents are disclosed. + + Call this on the deny path only - it performs a tenant lookup. + + .PARAMETER TenantID + The tenant identifier that was refused. + + .PARAMETER Context + Short description of the operation, used as the message prefix (e.g. 'Graph request'). + + .EXAMPLE + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Graph request') + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [string] $TenantID, + [string] $Context = 'Request' + ) + + if (-not $TenantID) { $TenantID = $env:TenantID } + + $Tenant = Get-Tenants -IncludeErrors -TenantFilter $TenantID | Select-Object -First 1 + $Reason = if ($Tenant -and $Tenant.Excluded -eq $true) { + 'the tenant is excluded from CIPP management' + } else { + "the tenant is not in CIPP's tenant list" + } + + return "$Context denied for '$TenantID': $Reason." +} diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-CippException.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-CippException.ps1 index af5d0ae7ef65b..fd023de15e5a5 100644 --- a/Modules/CIPPCore/Public/GraphHelper/Get-CippException.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/Get-CippException.ps1 @@ -5,12 +5,13 @@ function Get-CippException { ) [PSCustomObject]@{ - Message = $Exception.Exception.Message - NormalizedError = Get-NormalizedError -message $Exception.Exception.Message - Position = $Exception.InvocationInfo.PositionMessage - StackTrace = ($Exception.ScriptStackTrace | Out-String) - ScriptName = $Exception.InvocationInfo.ScriptName - LineNumber = $Exception.InvocationInfo.ScriptLineNumber - Category = $Exception.CategoryInfo.ToString() + Message = $Exception.Exception.Message ?? 'Not available' + NormalizedError = (Get-NormalizedError -message $Exception.Exception.Message) ?? 'Not available' + RawError = ($Exception.Exception.Data['RawErrorBody'] ?? $Exception.ErrorDetails.Message ?? $Exception.Exception.Response.Content) ?? 'Not available' + Position = $Exception.InvocationInfo.PositionMessage ?? 'Not available' + StackTrace = ($Exception.ScriptStackTrace | Out-String) ?? 'Not available' + ScriptName = $Exception.InvocationInfo.ScriptName ?? 'Not available' + LineNumber = $Exception.InvocationInfo.ScriptLineNumber ?? 'Not available' + Category = ($Exception.CategoryInfo.ToString()) ?? 'Not available' } } diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsLocationLookup.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsLocationLookup.ps1 new file mode 100644 index 0000000000000..ed0f681942b05 --- /dev/null +++ b/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsLocationLookup.ps1 @@ -0,0 +1,45 @@ +function Get-CippTeamsLocationLookup { + <# + .SYNOPSIS + Builds a lookup of Teams emergency LocationId -> displayable label for a tenant. + + .DESCRIPTION + The Teams telephone-number list only carries LocationId / CivicAddressId GUIDs, which + are meaningless in a table. This resolves them against Skype.Ncs/locations, falling back + through description -> place name -> street address -> the id itself, matching the + fallback the Emergency Location picker uses in the UI. + + Returns an empty hashtable if the lookup fails, so callers degrade to a blank column + rather than failing the whole number list. + + .PARAMETER TenantFilter + Target tenant (GUID or default domain). + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [Parameter(Mandatory)] $TenantFilter + ) + + $Lookup = @{} + try { + foreach ($Location in @(New-TeamsRequestV2 -TenantFilter $TenantFilter -Path 'Skype.Ncs/locations')) { + if (-not $Location.id) { continue } + $Address = @($Location.houseNumber, $Location.streetName, $Location.cityOrTown) | Where-Object { $_ } + $Lookup[[string]$Location.id] = if ($Location.description) { + $Location.description + } elseif ($Location.location) { + $Location.location + } elseif ($Address) { + $Address -join ' ' + } else { + $Location.id + } + } + } catch { + Write-Information "Could not resolve Teams emergency locations for $TenantFilter : $($_.Exception.Message)" + } + return $Lookup +} diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsNumberType.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsNumberType.ps1 new file mode 100644 index 0000000000000..1aa697d2a2dc3 --- /dev/null +++ b/Modules/CIPPCore/Public/GraphHelper/Get-CippTeamsNumberType.ps1 @@ -0,0 +1,27 @@ +function Get-CippTeamsNumberType { + <# + .SYNOPSIS + Normalizes a Teams phone number type to the casing the Graph API expects. + + .DESCRIPTION + The Teams ConfigAPI number list returns PascalCase ('DirectRouting'), while the + teamsAdministration Graph actions expect the camelCase enum ('directRouting'). + Unknown values are passed through unchanged so the service can reject them with a + meaningful error rather than us silently guessing. + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + [string] $NumberType + ) + + # switch is case-insensitive by default + switch ($NumberType) { + 'DirectRouting' { return 'directRouting' } + 'CallingPlan' { return 'callingPlan' } + 'OperatorConnect' { return 'operatorConnect' } + default { return $NumberType } + } +} diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-SharePointAdminLink.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-SharePointAdminLink.ps1 index 43c7326489bed..5186d09eaeaef 100644 --- a/Modules/CIPPCore/Public/GraphHelper/Get-SharePointAdminLink.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/Get-SharePointAdminLink.ps1 @@ -56,7 +56,15 @@ function Get-SharePointAdminLink { throw "Failed to get SharePoint admin URL through autodiscover: $($_.Exception.Message)" } } else { - $tenantName = (New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/sites/root' -asApp $true -tenantid $TenantFilter).id.Split('.')[0] + # id looks like 'contoso.sharepoint.com,,' - the host's first label is the name. + $RootSite = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/sites/root' -asApp $true -tenantid $TenantFilter + $tenantName = ($RootSite.id -split '\.')[0] + } + + # Without a name every URL below is a well-formed link to nowhere ('https://-admin.sharepoint.com'). + # Callers cache what they get back, so a bad value here sticks around - fail instead. + if ([string]::IsNullOrWhiteSpace($tenantName)) { + throw "Could not determine the SharePoint tenant name for $TenantFilter. The tenant may not have SharePoint provisioned, or the Sites.Read.All permission may be missing." } # Return object with all needed properties diff --git a/Modules/CIPPCore/Public/GraphHelper/New-ClassicAPIGetRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-ClassicAPIGetRequest.ps1 index 9d0829c5d1141..c14e90164ffe4 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-ClassicAPIGetRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-ClassicAPIGetRequest.ps1 @@ -25,6 +25,6 @@ function New-ClassicAPIGetRequest($TenantID, $Uri, $Method = 'GET', $Resource = } until ($null -eq $NextURL -or ' ' -eq $NextURL) return $ReturnedData } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $TenantID -Context 'Classic API request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1 index 2fdf0196a5602..8fbc6c7635c4c 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1 @@ -266,6 +266,6 @@ function New-ExoBulkRequest { return $FinalData } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Exchange bulk request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-ExoRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-ExoRequest.ps1 index 01bae571afc76..4464ebde0438d 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-ExoRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-ExoRequest.ps1 @@ -168,6 +168,6 @@ function New-ExoRequest { return $ReturnedData.value } } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Exchange request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-GraphBulkRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-GraphBulkRequest.ps1 index eb2db01e0716f..c191724346e55 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-GraphBulkRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-GraphBulkRequest.ps1 @@ -137,6 +137,6 @@ function New-GraphBulkRequest { Update-AzDataTableEntity -Force @TenantsTable -Entity $Tenant return $ReturnedData.responses } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Graph bulk request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 index a99502edcdd3f..dbdaaf7b424d2 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-GraphGetRequest.ps1 @@ -199,6 +199,6 @@ function New-GraphGetRequest { return $ReturnedData } } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Graph request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1 index 1eeb101e7c309..28c9c85797605 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1 @@ -159,6 +159,6 @@ function New-GraphPOSTRequest { return $ReturnedData } } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' + Write-Error (Get-AuthorisedRequestError -TenantID $tenantid -Context 'Graph request') } } diff --git a/Modules/CIPPCore/Public/GraphHelper/New-TeamsAPIGetRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-TeamsAPIGetRequest.ps1 deleted file mode 100644 index 9d97e7a01ab0a..0000000000000 --- a/Modules/CIPPCore/Public/GraphHelper/New-TeamsAPIGetRequest.ps1 +++ /dev/null @@ -1,58 +0,0 @@ -function New-TeamsAPIGetRequest($Uri, $tenantID, $Method = 'GET', $Resource = '48ac35b8-9aa8-4d74-927d-1f4a14a0b239', $ContentType = 'application/json') { - <# - .FUNCTIONALITY - Internal - #> - - if ((Get-AuthorisedRequest -Uri $uri -TenantID $tenantid)) { - $token = Get-GraphToken -TenantID $tenantID -Scope "$Resource/.default" - $NextURL = $Uri - $ReturnedData = do { - $handler = $null - $httpClient = $null - $response = $null - try { - # Create handler and client with compression disabled - $handler = New-Object System.Net.Http.HttpClientHandler - $handler.AutomaticDecompression = [System.Net.DecompressionMethods]::None - $httpClient = New-Object System.Net.Http.HttpClient($handler) - - # Add all required headers - $headers = @{ - 'Authorization' = $token.Authorization - 'x-ms-client-request-id' = [guid]::NewGuid().ToString() - 'x-ms-client-session-id' = [guid]::NewGuid().ToString() - 'x-ms-correlation-id' = [guid]::NewGuid().ToString() - 'X-Requested-With' = 'XMLHttpRequest' - 'x-ms-tnm-applicationid' = '045268c0-445e-4ac1-9157-d58f67b167d9' - 'Accept' = 'application/json' - 'Accept-Encoding' = 'identity' - 'User-Agent' = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36' - } - - foreach ($header in $headers.GetEnumerator()) { - $httpClient.DefaultRequestHeaders.Add($header.Key, $header.Value) - } - - $response = $httpClient.GetAsync($NextURL).Result - $contentString = $response.Content.ReadAsStringAsync().Result - - # Parse JSON and return data - $Data = $contentString | ConvertFrom-Json - - $Data - if ($noPagination) { $nextURL = $null } else { $nextURL = $data.NextLink } - } catch { - throw "Failed to make Teams API Get Request $_" - } finally { - # Proper cleanup in finally block to ensure disposal even on exceptions - if ($response) { $response.Dispose() } - if ($httpClient) { $httpClient.Dispose() } - if ($handler) { $handler.Dispose() } - } - } until ($null -eq $NextURL) - return $ReturnedData - } else { - Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope' - } -} diff --git a/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequest.ps1 deleted file mode 100644 index 48470f8cbd35f..0000000000000 --- a/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequest.ps1 +++ /dev/null @@ -1,24 +0,0 @@ -function New-TeamsRequest { - [CmdletBinding()] - Param( - $TenantFilter, - $Cmdlet, - $CmdParams = @{}, - [switch]$AvailableCmdlets - ) - - if ($AvailableCmdlets) { - Get-Command -Module MicrosoftTeams | Select-Object Name - return - } - if (Get-Command -Module MicrosoftTeams -Name $Cmdlet) { - $TeamsToken = (Get-GraphToken -tenantid $TenantFilter -scope '48ac35b8-9aa8-4d74-927d-1f4a14a0b239/.default').Authorization -replace 'Bearer ' - $GraphToken = (Get-GraphToken -tenantid $TenantFilter).Authorization -replace 'Bearer ' - - $null = Connect-MicrosoftTeams -AccessTokens @($TeamsToken, $GraphToken) - $Result = & $Cmdlet @CmdParams -ErrorAction Stop - $Result - } else { - Write-Error "Cmdlet $Cmdlet not found in MicrosoftTeams module" - } -} diff --git a/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequestV2.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequestV2.ps1 index 71972d62a4157..93539bb72a429 100644 --- a/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequestV2.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/New-TeamsRequestV2.ps1 @@ -55,25 +55,59 @@ function New-TeamsRequestV2 { Resolve the per-tenant ConfigApi host + X-MS-Forest via Teams.Tenant/tenants and use them (and, for federation/ACS types, the OcsPowershellWebservice target headers). + .PARAMETER Path + Address a ConfigAPI surface outside Skype.Policy/configurations by raw path, e.g. + 'Skype.Ncs/locations' or 'Teams.PlatformService/v2/ApplicationInstances'. Mutually + exclusive with -Type. Reuses the same token, headers and error handling. + + .PARAMETER Method + Path only. HTTP verb. Default GET. + + .PARAMETER Body + Path only. Request body; hashtables/objects are serialized to JSON. + + .PARAMETER QueryParameters + Path only. Hashtable appended as a query string; null/empty values are skipped. + + .PARAMETER AdditionalHeaders + Path only. Extra request headers merged over the defaults, for surfaces that need + their own (e.g. Skype.TelephoneNumberMgmt expects x-ms-tnm-applicationid). + .EXAMPLE New-TeamsRequestV2 -TenantFilter $t -Type TeamsMeetingPolicy -Action Set -Parameters @{ AllowAnonymousUsersToJoinMeeting = $false } + .EXAMPLE + New-TeamsRequestV2 -TenantFilter $t -Path 'Skype.Ncs/locations' + .FUNCTIONALITY Internal #> - [CmdletBinding()] + [CmdletBinding(DefaultParameterSetName = 'Configuration')] param( [Parameter(Mandatory)] $TenantFilter, - [Parameter(Mandatory)] [string] $Type, - [ValidateSet('Get', 'Set', 'New', 'Remove')] [string] $Action = 'Get', - [string] $Identity = 'Global', - [hashtable] $Parameters = @{}, - [switch] $ListAll, + [Parameter(Mandatory, ParameterSetName = 'Configuration')] [string] $Type, + [Parameter(ParameterSetName = 'Configuration')] [ValidateSet('Get', 'Set', 'New', 'Remove')] [string] $Action = 'Get', + [Parameter(ParameterSetName = 'Configuration')] [string] $Identity = 'Global', + [Parameter(ParameterSetName = 'Configuration')] [hashtable] $Parameters = @{}, + [Parameter(ParameterSetName = 'Configuration')] [switch] $ListAll, + [Parameter(ParameterSetName = 'Configuration')] [switch] $NoRead, + [Parameter(Mandatory, ParameterSetName = 'Path')] [string] $Path, + [Parameter(ParameterSetName = 'Path')] [ValidateSet('GET', 'POST', 'PUT', 'PATCH', 'DELETE')] [string] $Method = 'GET', + [Parameter(ParameterSetName = 'Path')] $Body, + [Parameter(ParameterSetName = 'Path')] [hashtable] $QueryParameters = @{}, + [Parameter(ParameterSetName = 'Path')] [hashtable] $AdditionalHeaders = @{}, [switch] $AsApp, - [switch] $NoRead, [switch] $UseServiceDiscovery ) + $IsPathRequest = $PSCmdlet.ParameterSetName -eq 'Path' + + # Same scope gate the Graph helpers apply: refuse tenants outside management scope or + # explicitly excluded. Without this, a caller could reach a tenant CIPP should not touch. + if (-not (Get-AuthorisedRequest -TenantID $TenantFilter)) { + throw (Get-AuthorisedRequestError -TenantID $TenantFilter -Context 'Teams request') + } + # ---- cmdlet-noun -> ConfigAPI type aliases (noun != type) ---- $TypeAliases = @{ 'TenantFederationConfiguration' = 'TenantFederationSettings' @@ -82,8 +116,8 @@ function New-TeamsRequestV2 { $FederationTypes = @('TenantFederationSettings', 'TeamsAcsFederationConfiguration') # normalize Type: strip Get-/Set-/New-/Remove-Cs prefix, then alias - $ConfigType = $Type -replace '^(Get|Set|New|Remove|Grant|Revoke)-Cs', '' - if ($TypeAliases.ContainsKey($ConfigType)) { $ConfigType = $TypeAliases[$ConfigType] } + $ConfigType = if ($IsPathRequest) { '' } else { $Type -replace '^(Get|Set|New|Remove|Grant|Revoke)-Cs', '' } + if ($ConfigType -and $TypeAliases.ContainsKey($ConfigType)) { $ConfigType = $TypeAliases[$ConfigType] } # ---- token ---- $TokenSplat = @{ tenantid = $TenantFilter; scope = '48ac35b8-9aa8-4d74-927d-1f4a14a0b239/.default' } @@ -123,6 +157,37 @@ function New-TeamsRequestV2 { } $Query = if ($ConfigType -in $FederationTypes -and $AdminDomain) { "?adminDomain=$AdminDomain" } else { '' } + # ---- raw path surfaces (Skype.Ncs, Skype.TelephoneNumberMgmt, Teams.PlatformService, ...) ---- + if ($IsPathRequest) { + # The Teams admin center sends these on every ConfigAPI surface, not just Skype.Policy. + $Headers['X-Requested-With'] = 'XMLHttpRequest' + $Headers['Content-Type'] = 'application/json' + foreach ($Key in $AdditionalHeaders.Keys) { $Headers[$Key] = $AdditionalHeaders[$Key] } + + $Uri = 'https://{0}/{1}' -f $ApiHost, $Path.TrimStart('/') + if ($QueryParameters.Count -gt 0) { + $Pairs = foreach ($Key in $QueryParameters.Keys) { + if ($null -eq $QueryParameters[$Key] -or $QueryParameters[$Key] -eq '') { continue } + '{0}={1}' -f [uri]::EscapeDataString($Key), [uri]::EscapeDataString([string]$QueryParameters[$Key]) + } + if ($Pairs) { $Uri = '{0}?{1}' -f $Uri, ($Pairs -join '&') } + } + + $Splat = @{ Uri = $Uri; Method = $Method; Headers = $Headers } + if ($null -ne $Body) { + $Splat['Body'] = if ($Body -is [string]) { $Body } else { $Body | ConvertTo-Json -Depth 25 -Compress } + $Splat['ContentType'] = 'application/json' + } + + $StatusCode = $null + $RespBody = Invoke-CIPPRestMethod @Splat -SkipHttpErrorCheck -StatusCodeVariable StatusCode + if ([int]$StatusCode -ge 400) { + $Detail = if ($RespBody -is [string]) { $RespBody } elseif ($null -ne $RespBody) { $RespBody | ConvertTo-Json -Compress -Depth 10 } else { '' } + throw "Teams ConfigApi $Method $Path failed: $StatusCode $Detail" + } + return $RespBody + } + switch ($Action) { 'Get' { diff --git a/Modules/CIPPCore/Public/New-CIPPIntuneAppDeployment.ps1 b/Modules/CIPPCore/Public/New-CIPPIntuneAppDeployment.ps1 index 70a795477256f..b9accba7a50e3 100644 --- a/Modules/CIPPCore/Public/New-CIPPIntuneAppDeployment.ps1 +++ b/Modules/CIPPCore/Public/New-CIPPIntuneAppDeployment.ps1 @@ -116,8 +116,14 @@ function New-CIPPIntuneAppDeployment { $BaseUri = 'https://graph.microsoft.com/beta/deviceAppManagement/mobileApps' - # Check if app already exists (any type with matching display name) - $ApplicationList = New-GraphGetRequest -Uri $BaseUri -tenantid $TenantFilter | Where-Object { $_.DisplayName -eq $AppConfig.Applicationname } + # Check if app already exists (any type with matching display name). Office is a singleton per + # tenant and Graph names it 'Microsoft 365 Apps for Windows 10 and later' regardless of what the + # template calls it, so match that one on type instead or it is redeployed on every run. + $ApplicationList = if ($AppType -eq 'OfficeApp') { + New-GraphGetRequest -Uri $BaseUri -tenantid $TenantFilter | Where-Object { $_.'@odata.type' -eq '#microsoft.graph.officeSuiteApp' } + } else { + New-GraphGetRequest -Uri $BaseUri -tenantid $TenantFilter | Where-Object { $_.DisplayName -eq $AppConfig.Applicationname } + } if ($ApplicationList.displayname.count -ge 1) { Write-LogMessage -API $APIName -tenant $TenantFilter -message "$($AppConfig.Applicationname) exists. Skipping this application" -Sev 'Info' return $null @@ -195,14 +201,11 @@ function New-CIPPIntuneAppDeployment { $NewApp = Add-CIPPW32ScriptApplication -TenantFilter $TenantFilter -Properties ([PSCustomObject]$Properties) } 'OfficeApp' { - # Strip read-only properties that Graph API won't accept on create - $ObjBody = $IntuneBody - if ($ObjBody -is [string]) { $ObjBody = $ObjBody | ConvertFrom-Json -Depth 100 } - $ReadOnlyProps = @('id', 'createdDateTime', 'lastModifiedDateTime', 'uploadState', 'publishingState', 'isAssigned', 'roleScopeTagIds', 'dependentAppCount', 'supersedingAppCount', 'supersededAppCount', 'committedContentVersion', 'fileName', 'size', 'assignments@odata.context', 'assignments', 'AppAssignment', 'AppExclude') - foreach ($prop in $ReadOnlyProps) { - if ($ObjBody.PSObject.Properties[$prop]) { - $ObjBody.PSObject.Properties.Remove($prop) - } + # Templates built in the wizard carry the individual Office fields rather than a + # pre-built IntuneBody, so build the body the same way Invoke-AddOfficeApp does. + $ObjBody = Get-CIPPOfficeAppBody -Config $AppConfig + if (-not $ObjBody) { + throw "No Office configuration could be built from the supplied settings for '$($AppConfig.Applicationname)'." } $NewApp = New-GraphPostRequest -Uri $BaseUri -tenantid $TenantFilter -Body (ConvertTo-Json -InputObject $ObjBody -Depth 10) -Type POST } diff --git a/Modules/CIPPCore/Public/Remove-CIPPDirectTenantToken.ps1 b/Modules/CIPPCore/Public/Remove-CIPPDirectTenantToken.ps1 new file mode 100644 index 0000000000000..4077e2c7a3303 --- /dev/null +++ b/Modules/CIPPCore/Public/Remove-CIPPDirectTenantToken.ps1 @@ -0,0 +1,46 @@ +function Remove-CIPPDirectTenantToken { + <# + .FUNCTIONALITY + Internal + .SYNOPSIS + Removes the per-tenant refresh token stored for a direct tenant. + .DESCRIPTION + Direct tenants authenticate with their own refresh token, kept in Key Vault (or the DevSecrets + table when running locally) under the tenant id, and cached in an environment variable of the + same name. This removes both so a tenant that is not a direct tenant cannot fall back to it. + Cleanup is best effort - failures are logged rather than thrown, because callers use this while + handling another outcome. + .PARAMETER TenantId + The customer id (GUID) of the tenant whose stored credential should be removed. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param( + [Parameter(Mandatory = $true)] + [string]$TenantId + ) + + if (-not $PSCmdlet.ShouldProcess($TenantId, 'Remove direct tenant refresh token')) { + return + } + + try { + if ($env:AzureWebJobsStorage -eq 'UseDevelopmentStorage=true' -or $env:NonLocalHostAzurite -eq 'true') { + $SecretName = $TenantId -replace '-', '_' + $DevSecretsTable = Get-CIPPTable -tablename 'DevSecrets' + $Secret = Get-CIPPAzDataTableEntity @DevSecretsTable -Filter "PartitionKey eq 'Secret' and RowKey eq 'Secret'" + if ($Secret -and $Secret.PSObject.Properties.Name -contains $SecretName) { + $Secret.$SecretName = '' + $null = Add-CIPPAzDataTableEntity @DevSecretsTable -Entity $Secret -Force + } + Remove-Item -Path "env:\$SecretName" -ErrorAction SilentlyContinue + } else { + $KeyVaultName = Get-CippKeyVaultName + $null = Remove-CippKeyVaultSecret -VaultName $KeyVaultName -Name $TenantId -ErrorAction Stop + } + + Remove-Item -Path "env:\$TenantId" -ErrorAction SilentlyContinue + Write-Information "Removed stored direct tenant refresh token for $TenantId" + } catch { + Write-Warning "Failed to remove the stored direct tenant refresh token for $TenantId - $($_.Exception.Message)" + } +} diff --git a/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 b/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 index ac9db1621c57e..f0a66378fed11 100644 --- a/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 @@ -110,7 +110,9 @@ function Set-CIPPAssignedApplication { if ($PSBoundParameters.ContainsKey('GroupIds') -and $GroupIds) { $resolvedGroupIds = $GroupIds } elseif ($GroupName) { - $GroupNames = $GroupName.Split(',') + # Trim: the group name comes from free-text fields, and stray whitespace around + # a name would otherwise silently resolve to no groups at all. + $GroupNames = @($GroupName.Split(',').Trim() | Where-Object { $_ }) $resolvedGroupIds = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/groups?$top=999&$select=id,displayName' -tenantid $TenantFilter | ForEach-Object { $Group = $_ foreach ($SingleName in $GroupNames) { @@ -126,7 +128,8 @@ function Set-CIPPAssignedApplication { # assignments legitimately resolve to no include groups here. $IncludeRequested = $GroupName -or ($GroupIds -and @($GroupIds).Count -gt 0) if (-not $resolvedGroupIds -and $IncludeRequested) { - throw 'No matching groups resolved for assignment request.' + $SearchedFor = if ($GroupNames) { @($GroupNames) -join ', ' } else { @($GroupIds) -join ', ' } + throw "No matching groups resolved for assignment request. Searched for: $SearchedFor" } foreach ($Group in $resolvedGroupIds) { diff --git a/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 b/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 index 87737fd6d0927..17c219e301b65 100644 --- a/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 @@ -26,6 +26,8 @@ function Set-CIPPCPVConsent { if ($PSCmdlet.ShouldProcess($env:ApplicationID, "Delete Service Principal from $TenantName")) { $null = New-GraphPostRequest -Type DELETE -noauthcheck $true -uri "https://api.partnercenter.microsoft.com/v1/customers/$($TenantFilter)/applicationconsents/$($env:ApplicationID)" -scope 'https://api.partnercenter.microsoft.com/.default' -tenantid $env:TenantID } + # The SP is gone, so any cached token for this tenant is now invalid. + $null = Clear-CippTokenCache -TenantFilter $TenantFilter $Results.add("Deleted Service Principal from $TenantName") } catch { $ErrorMessage = Get-NormalizedError -Message $_.Exception.Message @@ -61,6 +63,9 @@ function Set-CIPPCPVConsent { } Add-CIPPAzDataTableEntity @Table -Entity $GraphRequest -Force } + # Consent just changed; drop cached tokens so the next call picks up the new scopes + # instead of reusing one issued before this grant. + $null = Clear-CippTokenCache -TenantFilter $TenantFilter $Results.add("Successfully added CPV Application to tenant $($TenantName)") | Out-Null Write-LogMessage -Headers $User -API $APINAME -message "Added our Service Principal to $($TenantName)" -Sev 'Info' -tenant $Tenant.defaultDomainName -tenantId $TenantFilter } catch { diff --git a/Modules/CIPPCore/Public/TenantGroups/Update-CIPPDynamicTenantGroups.ps1 b/Modules/CIPPCore/Public/TenantGroups/Update-CIPPDynamicTenantGroups.ps1 index da5fd54096d8f..1585fa8ff11eb 100644 --- a/Modules/CIPPCore/Public/TenantGroups/Update-CIPPDynamicTenantGroups.ps1 +++ b/Modules/CIPPCore/Public/TenantGroups/Update-CIPPDynamicTenantGroups.ps1 @@ -240,6 +240,12 @@ function Update-CIPPDynamicTenantGroups { # Bust the TenantGroups cache so subsequent calls reflect the changes made above Get-TenantGroups -SkipCache | Out-Null + # Roles scoped to a tenant group resolve through this membership, so the cached access + # scope rules are stale too. Only worth the write when membership actually moved. + if ($TotalMembersAdded -gt 0 -or $TotalMembersRemoved -gt 0) { + Clear-CippAccessScopeCache + } + return @{ MembersAdded = $TotalMembersAdded MembersRemoved = $TotalMembersRemoved diff --git a/Modules/CIPPCore/Public/Test-CIPPAccessTenant.ps1 b/Modules/CIPPCore/Public/Test-CIPPAccessTenant.ps1 index 66c987c0d00f7..6f44afc1a6a15 100644 --- a/Modules/CIPPCore/Public/Test-CIPPAccessTenant.ps1 +++ b/Modules/CIPPCore/Public/Test-CIPPAccessTenant.ps1 @@ -23,6 +23,9 @@ function Test-CIPPAccessTenant { @{ Name = 'Domain Name Administrator'; Id = '8329153b-31d0-4727-b945-745eb3bc5f31'; Optional = $true } ) + # Global Administrator implicitly grants every role listed above. + $GlobalAdminRoleId = '62e90394-69f5-4237-9190-012177145e10' + $TenantParams = @{ IncludeErrors = $true } @@ -50,13 +53,20 @@ function Test-CIPPAccessTenant { $GraphStatus = $false $ExchangeStatus = $false + # Direct tenants authenticate with their own per-tenant refresh token rather than through a + # GDAP relationship, so directory roles granted to the partner tenant do not apply to them. + $IsDirectTenant = $Tenant.delegatedPrivilegeStatus -eq 'directTenant' + $TenantType = if ($IsDirectTenant) { 'Direct' } else { 'GDAP' } + $Results = [PSCustomObject]@{ TenantName = $Tenant.defaultDomainName + TenantType = $TenantType + ServiceAccount = '' GraphStatus = $false GraphTest = '' ExchangeStatus = $false ExchangeTest = '' - GDAPRoles = '' + AssignedRoles = '' MissingRoles = '' OrgManagementRoles = @() OrgManagementRolesMissing = @() @@ -66,46 +76,89 @@ function Test-CIPPAccessTenant { $AddedText = '' try { $TenantId = $Tenant.customerId - $BulkRequests = $ExpectedRoles | ForEach-Object { @( - @{ - id = "roleManagement_$($_.Id)" - method = 'GET' - url = "roleManagement/directory/roleAssignments?`$filter=roleDefinitionId eq '$($_.Id)'&`$expand=principal" - } - ) - } - $GDAPRolesGraph = New-GraphBulkRequest -tenantid $TenantId -Requests $BulkRequests - $GDAPRoles = [System.Collections.Generic.List[object]]::new() + $AssignedRoles = [System.Collections.Generic.List[object]]::new() $MissingRoles = [System.Collections.Generic.List[object]]::new() - foreach ($RoleId in $ExpectedRoles) { - $GraphRole = $GDAPRolesGraph.body.value | Where-Object -Property roleDefinitionId -EQ $RoleId.Id - $Role = $GraphRole.principal | Where-Object -Property organizationId -EQ $env:TenantID + if ($IsDirectTenant) { + # A direct tenant is reached with the service account's own delegated token, so the + # roles that matter are the ones that account holds inside the tenant itself rather + # than anything assigned to the partner tenant. + $ServiceAccount = New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/me?$select=id,displayName,userPrincipalName' -tenantid $TenantId -ErrorAction Stop + $Results.ServiceAccount = $ServiceAccount.userPrincipalName + + $Memberships = New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/me/transitiveMemberOf' -tenantid $TenantId -ErrorAction Stop + $DirectoryRoles = @($Memberships | Where-Object { $_.'@odata.type' -eq '#microsoft.graph.directoryRole' }) + $IsGlobalAdmin = $DirectoryRoles.roleTemplateId -contains $GlobalAdminRoleId + + foreach ($RoleId in $ExpectedRoles) { + $HeldRole = $DirectoryRoles | Where-Object { $_.roleTemplateId -eq $RoleId.Id } + if ($HeldRole) { + $AssignedRoles.Add([PSCustomObject]@{ + Role = $RoleId.Name + Group = $ServiceAccount.userPrincipalName + }) + } elseif ($IsGlobalAdmin) { + $AssignedRoles.Add([PSCustomObject]@{ + Role = $RoleId.Name + Group = "$($ServiceAccount.userPrincipalName) (via Global Administrator)" + }) + } else { + $MissingRoles.Add( + [PSCustomObject]@{ + Name = $RoleId.Name + Type = 'Tenant' + Optional = $RoleId.Optional + } + ) + } + } - if (!$Role) { - $MissingRoles.Add( - [PSCustomObject]@{ - Name = $RoleId.Name - Type = 'Tenant' - Optional = $RoleId.Optional + $RequiredMissingRoles = $MissingRoles | Where-Object { $_.Optional -ne $true } + if (($RequiredMissingRoles | Measure-Object).Count -gt 0) { + $AddedText = 'but the service account is missing required roles' + } elseif (($MissingRoles | Measure-Object).Count -gt 0) { + $AddedText = 'but the service account is missing optional roles' + } + } else { + $BulkRequests = $ExpectedRoles | ForEach-Object { @( + @{ + id = "roleManagement_$($_.Id)" + method = 'GET' + url = "roleManagement/directory/roleAssignments?`$filter=roleDefinitionId eq '$($_.Id)'&`$expand=principal" } ) - } else { - $GDAPRoles.Add([PSCustomObject]@{ - Role = $RoleId.Name - Group = $Role.displayName - }) } - } + $GDAPRolesGraph = New-GraphBulkRequest -tenantid $TenantId -Requests $BulkRequests + + foreach ($RoleId in $ExpectedRoles) { + $GraphRole = $GDAPRolesGraph.body.value | Where-Object -Property roleDefinitionId -EQ $RoleId.Id + $Role = $GraphRole.principal | Where-Object -Property organizationId -EQ $env:TenantID + + if (!$Role) { + $MissingRoles.Add( + [PSCustomObject]@{ + Name = $RoleId.Name + Type = 'Tenant' + Optional = $RoleId.Optional + } + ) + } else { + $AssignedRoles.Add([PSCustomObject]@{ + Role = $RoleId.Name + Group = $Role.displayName + }) + } + } - $RequiredMissingRoles = $MissingRoles | Where-Object { $_.Optional -ne $true } - if (($RequiredMissingRoles | Measure-Object).Count -gt 0) { - $AddedText = 'but missing required GDAP roles' - } elseif (($MissingRoles | Measure-Object).Count -gt 0) { - $AddedText = 'but missing optional GDAP roles' + $RequiredMissingRoles = $MissingRoles | Where-Object { $_.Optional -ne $true } + if (($RequiredMissingRoles | Measure-Object).Count -gt 0) { + $AddedText = 'but missing required GDAP roles' + } elseif (($MissingRoles | Measure-Object).Count -gt 0) { + $AddedText = 'but missing optional GDAP roles' + } } - $GraphTest = "Successfully connected to Graph $($AddedText)" + $GraphTest = "Successfully connected to Graph $($AddedText)".Trim() $GraphStatus = $true } catch { $ErrorMessage = Get-CippException -Exception $_ @@ -176,7 +229,7 @@ function Test-CIPPAccessTenant { $Results.GraphTest = $GraphTest $Results.ExchangeStatus = $ExchangeStatus $Results.ExchangeTest = $ExchangeTest - $Results.GDAPRoles = @($GDAPRoles) + $Results.AssignedRoles = @($AssignedRoles) $Results.MissingRoles = @($MissingRoles) $Headers = $Headers.UserDetails diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsExternalAccessPolicy.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsExternalAccessPolicy.ps1 index bb2297345f6eb..baf9ca9be9e2c 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsExternalAccessPolicy.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsExternalAccessPolicy.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsExternalAccessPolicy { Caches the Teams External Access Policy (Global) .DESCRIPTION - Calls Get-CsExternalAccessPolicy via New-TeamsRequest and writes the + Calls Get-CsExternalAccessPolicy via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsExternalAccessPolicy'. Used by CIS tests 8.2.1 (external domains) and 8.2.2 (unmanaged Teams users). diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsAppPermissionPolicy.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsAppPermissionPolicy.ps1 index 470a0fd3e3f7c..a7e3eda73371a 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsAppPermissionPolicy.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsAppPermissionPolicy.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsTeamsAppPermissionPolicy { Caches the Teams App Permission Policy (all policies) .DESCRIPTION - Calls Get-CsTeamsAppPermissionPolicy via New-TeamsRequest and writes + Calls Get-CsTeamsAppPermissionPolicy via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsTeamsAppPermissionPolicy'. Used by CIS test 8.4.1. diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsClientConfiguration.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsClientConfiguration.ps1 index 64233843eae51..8e5ef591c4a23 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsClientConfiguration.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsClientConfiguration.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsTeamsClientConfiguration { Caches the Teams Client Configuration (Global) .DESCRIPTION - Calls Get-CsTeamsClientConfiguration via New-TeamsRequest and writes + Calls Get-CsTeamsClientConfiguration via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsTeamsClientConfiguration'. Used by CIS tests 8.1.1 (external file sharing storage providers) and 8.1.2 (channel email). diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMeetingPolicy.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMeetingPolicy.ps1 index e7e166ae7cb17..33bdc29669c56 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMeetingPolicy.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMeetingPolicy.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsTeamsMeetingPolicy { Caches the Teams Global Meeting Policy .DESCRIPTION - Calls Get-CsTeamsMeetingPolicy via New-TeamsRequest and writes the + Calls Get-CsTeamsMeetingPolicy via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsTeamsMeetingPolicy'. Used by CIS tests 8.5.1 - 8.5.9. diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMessagingPolicy.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMessagingPolicy.ps1 index 2fb1b95196d65..a843c6cfa7b52 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMessagingPolicy.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTeamsMessagingPolicy.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsTeamsMessagingPolicy { Caches the Teams Messaging Policy (Global) .DESCRIPTION - Calls Get-CsTeamsMessagingPolicy via New-TeamsRequest and writes the + Calls Get-CsTeamsMessagingPolicy via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsTeamsMessagingPolicy'. Used by CIS tests 8.2.3 (external Teams users initiating chat) and 8.6.1 (security reporting in Teams). diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTenantFederationConfiguration.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTenantFederationConfiguration.ps1 index 88cd4788f1000..a27c559fcaf88 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTenantFederationConfiguration.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheCsTenantFederationConfiguration.ps1 @@ -4,7 +4,7 @@ function Set-CIPPDBCacheCsTenantFederationConfiguration { Caches the Teams Tenant Federation Configuration .DESCRIPTION - Calls Get-CsTenantFederationConfiguration via New-TeamsRequest and + Calls Get-CsTenantFederationConfiguration via New-TeamsRequestV2 and writes the result into the CippReportingDB under Type 'CsTenantFederationConfiguration'. Used by CIS tests 8.2.1 (external domains allow/block list) and 8.2.4 (trial Teams tenants). diff --git a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheTeamsVoice.ps1 b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheTeamsVoice.ps1 index 37b9be41b2a85..4cc7c897c1c80 100644 --- a/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheTeamsVoice.ps1 +++ b/Modules/CIPPDB/Public/DBCache/Set-CIPPDBCacheTeamsVoice.ps1 @@ -12,13 +12,19 @@ function Set-CIPPDBCacheTeamsVoice { $TenantId = (Get-Tenants -TenantFilter $TenantFilter).customerId $Users = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users?`$top=999&`$select=id,userPrincipalName,displayName" -tenantid $TenantFilter + # Keep the cached rows in step with the live list, which resolves LocationId to a label. + $LocationLookup = Get-CippTeamsLocationLookup -TenantFilter $TenantFilter $Skip = 0 $AllNumbers = [System.Collections.Generic.List[object]]::new() do { - $Results = New-TeamsAPIGetRequest -uri "https://api.interfaces.records.teams.microsoft.com/Skype.TelephoneNumberMgmt/Tenants/$($TenantId)/telephone-numbers?skip=$($Skip)&locale=en-US&top=999" -tenantid $TenantFilter + $Results = New-TeamsRequestV2 -TenantFilter $TenantFilter -Path "Skype.TelephoneNumberMgmt/Tenants/$TenantId/telephone-numbers" ` + -QueryParameters @{ skip = $Skip; locale = 'en-US'; top = 999 } ` + -AdditionalHeaders @{ 'x-ms-tnm-applicationid' = '045268c0-445e-4ac1-9157-d58f67b167d9' } $Data = @($Results.TelephoneNumbers | ForEach-Object { - $CompleteRequest = $_ | Select-Object *, @{Name = 'AssignedTo'; Expression = { $Users | Where-Object -Property id -EQ $_.TargetId } } + $CompleteRequest = $_ | Select-Object *, + @{Name = 'AssignedTo'; Expression = { $Users | Where-Object -Property id -EQ $_.TargetId } }, + @{Name = 'EmergencyLocation'; Expression = { if ($_.LocationId) { $LocationLookup[[string]$_.LocationId] } } } if ($CompleteRequest.AcquisitionDate) { $CompleteRequest.AcquisitionDate = $_.AcquisitionDate -split 'T' | Select-Object -First 1 } else { diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListApiTest.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListApiTest.ps1 index ac2d3ca6f91d8..88f641d1f0bf9 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListApiTest.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListApiTest.ps1 @@ -27,8 +27,13 @@ function Invoke-ListApiTest { $Request = New-CIPPAzRestRequest -Method POST -Resource 'https://management.azure.com/' -Uri 'https://management.azure.com/providers/Microsoft.ResourceGraph/resources?api-version=2022-10-01' -Body $Json $Response.ResourceGraphTest = $Request } - $Response.AllowedTenants = $script:CippAllowedTenantsStorage.Value - $Response.AllowedGroups = $script:CippAllowedGroupsStorage.Value + # Has to come from CIPPCore. These slots are module scoped, so reading $script:Cipp*Storage + # from here would return CIPPHTTP's own - always empty - variables and report that no tenant + # scoping is applied regardless of what is actually in force. + $RequestContext = Get-CippRequestContext + $Response.AllowedTenants = $RequestContext.AllowedTenants + $Response.AllowedGroups = $RequestContext.AllowedGroups + $Response.RequestContext = $RequestContext return ([HttpResponseContext]@{ StatusCode = [HttpStatusCode]::OK diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListFeatureFlags.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListFeatureFlags.ps1 index 8c1ebf12ca5da..b9476feb1597b 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListFeatureFlags.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListFeatureFlags.ps1 @@ -1,7 +1,7 @@ function Invoke-ListFeatureFlags { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE CIPP.Core.Read .DESCRIPTION diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecAccessChecks.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecAccessChecks.ps1 index e65eb6bfcbdd9..d4be9b96014de 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecAccessChecks.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecAccessChecks.ps1 @@ -48,9 +48,12 @@ function Invoke-ExecAccessChecks { TenantId = $Tenant.customerId TenantName = $Tenant.displayName DefaultDomainName = $Tenant.defaultDomainName + TenantType = if ($Tenant.delegatedPrivilegeStatus -eq 'directTenant') { 'Direct' } else { 'GDAP' } + ServiceAccount = $Tenant.directTenantUserPrincipalName + ServiceAccountLastAuth = $Tenant.directTenantAuthDate GraphStatus = 'Not run yet' ExchangeStatus = 'Not run yet' - GDAPRoles = '' + AssignedRoles = '' MissingRoles = '' LastRun = '' GraphTest = '' @@ -63,7 +66,9 @@ function Invoke-ExecAccessChecks { $Data = @($TenantCheck.Data | ConvertFrom-Json -ErrorAction Stop) $TenantResult.GraphStatus = $Data.GraphStatus $TenantResult.ExchangeStatus = $Data.ExchangeStatus - $TenantResult.GDAPRoles = $Data.GDAPRoles + # Fall back to the old property name so checks cached before the rename + # keep rendering until the tenant is checked again. + $TenantResult.AssignedRoles = $Data.AssignedRoles ?? $Data.GDAPRoles $TenantResult.MissingRoles = $Data.MissingRoles $TenantResult.LastRun = $Data.LastRun $TenantResult.GraphTest = $Data.GraphTest @@ -71,6 +76,11 @@ function Invoke-ExecAccessChecks { $TenantResult.OrgManagementRoles = $Data.OrgManagementRoles ? @($Data.OrgManagementRoles) : @() $TenantResult.OrgManagementRolesMissing = $Data.OrgManagementRolesMissing ? @($Data.OrgManagementRolesMissing) : @() $TenantResult.OrgManagementRepairNeeded = $Data.OrgManagementRolesMissing.Count -gt 0 + # The check reads the account live, so it also backfills direct tenants + # onboarded before the service account was recorded on the tenant. + if ($Data.ServiceAccount) { + $TenantResult.ServiceAccount = $Data.ServiceAccount + } } $TenantResult } diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecBackupRetentionConfig.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecBackupRetentionConfig.ps1 index 064784c49851e..0ff7da933d997 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecBackupRetentionConfig.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecBackupRetentionConfig.ps1 @@ -1,7 +1,7 @@ function Invoke-ExecBackupRetentionConfig { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE CIPP.AppSettings.ReadWrite #> diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecCustomRole.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecCustomRole.ps1 index 187a8a91778d3..a8e120844c4f2 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecCustomRole.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecCustomRole.ps1 @@ -269,6 +269,12 @@ function Invoke-ExecCustomRole { } } + # Role definitions feed the access scope rules cached on every worker. Bump the shared version + # stamp so the change lands within seconds rather than waiting out the rule cache TTL. + if ($Action -in @('AddUpdate', 'Clone', 'Delete')) { + Clear-CippAccessScopeCache + } + return ([HttpResponseContext]@{ StatusCode = [HttpStatusCode]::OK Body = $Body diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecDnsConfig.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecDnsConfig.ps1 index 50e56981f25ff..b21924d486a7c 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecDnsConfig.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecDnsConfig.ps1 @@ -1,7 +1,7 @@ function Invoke-ExecDnsConfig { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE Tenant.Domains.ReadWrite #> diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecJITAdminSettings.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecJITAdminSettings.ps1 index 416c118bd2383..3322b17b25dbe 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecJITAdminSettings.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecJITAdminSettings.ps1 @@ -1,7 +1,7 @@ function Invoke-ExecJITAdminSettings { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE CIPP.AppSettings.ReadWrite #> diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecLogRetentionConfig.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecLogRetentionConfig.ps1 index 2f8cb0168ec77..d57c4f4d4185a 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecLogRetentionConfig.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecLogRetentionConfig.ps1 @@ -1,7 +1,7 @@ function Invoke-ExecLogRetentionConfig { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE CIPP.AppSettings.ReadWrite #> diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPasswordConfig.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPasswordConfig.ps1 index ea227679ef581..986f6baa52ead 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPasswordConfig.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPasswordConfig.ps1 @@ -1,7 +1,7 @@ function Invoke-ExecPasswordConfig { <# .FUNCTIONALITY - Entrypoint + Entrypoint, AnyTenant .ROLE CIPP.AppSettings.ReadWrite #> diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecTenantGroup.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecTenantGroup.ps1 index c58b8980a2ee3..76a392e6b4a5a 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecTenantGroup.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecTenantGroup.ps1 @@ -161,6 +161,12 @@ function Invoke-ExecTenantGroup { } } + # Roles can be scoped to a tenant group, so changing membership changes what those roles + # resolve to and the cached scope rules have to be rebuilt + if ($Action -in @('AddEdit', 'Delete')) { + Clear-CippAccessScopeCache + } + return ([HttpResponseContext]@{ StatusCode = [HttpStatusCode]::OK Body = $Body diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ListCustomRole.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ListCustomRole.ps1 index 7479dedda3be3..a57d615cada29 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ListCustomRole.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ListCustomRole.ps1 @@ -59,73 +59,49 @@ function Invoke-ListCustomRole { } } if ($Role.AllowedTenants) { + $RawAllowedTenants = $Role.AllowedTenants try { - $AllowedTenants = $Role.AllowedTenants | ConvertFrom-Json -ErrorAction Stop | ForEach-Object { - if ($_ -is [PSCustomObject] -and $_.type -eq 'Group') { - # Return group objects as-is for frontend display - [PSCustomObject]@{ - type = 'Group' - value = $_.value - label = $_.label - } - } else { - # Convert tenant customer ID to domain name object for frontend - $TenantId = $_ - $TenantInfo = $TenantList | Where-Object { $_.customerId -eq $TenantId } - if ($TenantInfo) { - [PSCustomObject]@{ - type = 'Tenant' - value = $TenantInfo.defaultDomainName - label = "$($TenantInfo.displayName) ($($TenantInfo.defaultDomainName))" - addedFields = @{ - defaultDomainName = $TenantInfo.defaultDomainName - displayName = $TenantInfo.displayName - customerId = $TenantInfo.customerId - } - } - } + # No null filter and no 'AllTenants' fallback: every stored entry produces exactly + # one displayed entry, so the list shown is the list stored + $Role.AllowedTenants = @( + $RawAllowedTenants | ConvertFrom-Json -ErrorAction Stop | ForEach-Object { + Resolve-CippRoleTenantEntry -Entry $_ -TenantList $TenantList } - } | Where-Object { $_ -ne $null } - $AllowedTenants = $AllowedTenants ?? @('AllTenants') - $Role.AllowedTenants = @($AllowedTenants) + ) } catch { - $Role.AllowedTenants = @('AllTenants') + Write-Warning "Could not parse AllowedTenants for role '$($Role.RowKey)': $($_.Exception.Message)" + $Role.AllowedTenants = @( + [PSCustomObject]@{ + type = 'Tenant' + value = [string]$RawAllowedTenants + label = 'Stored value could not be read' + Unresolved = $true + } + ) } } else { $Role | Add-Member -NotePropertyName AllowedTenants -NotePropertyValue @() -Force } if ($Role.BlockedTenants) { + $RawBlockedTenants = $Role.BlockedTenants try { - $BlockedTenants = $Role.BlockedTenants | ConvertFrom-Json -ErrorAction Stop | ForEach-Object { - if ($_ -is [PSCustomObject] -and $_.type -eq 'Group') { - # Return group objects as-is for frontend display - [PSCustomObject]@{ - type = 'Group' - value = $_.value - label = $_.label - } - } else { - # Convert tenant customer ID to domain name object for frontend - $TenantId = $_ - $TenantInfo = $TenantList | Where-Object { $_.customerId -eq $TenantId } - if ($TenantInfo) { - [PSCustomObject]@{ - type = 'Tenant' - value = $TenantInfo.defaultDomainName - label = "$($TenantInfo.displayName) ($($TenantInfo.defaultDomainName))" - addedFields = @{ - defaultDomainName = $TenantInfo.defaultDomainName - displayName = $TenantInfo.displayName - customerId = $TenantInfo.customerId - } - } - } + # An unresolvable id here is exactly the case that mattered: a block on a tenant + # the current tenant list does not contain used to render as no block at all + $Role.BlockedTenants = @( + $RawBlockedTenants | ConvertFrom-Json -ErrorAction Stop | ForEach-Object { + Resolve-CippRoleTenantEntry -Entry $_ -TenantList $TenantList } - } | Where-Object { $_ -ne $null } - $BlockedTenants = $BlockedTenants ?? @() - $Role.BlockedTenants = @($BlockedTenants) + ) } catch { - $Role.BlockedTenants = @() + Write-Warning "Could not parse BlockedTenants for role '$($Role.RowKey)': $($_.Exception.Message)" + $Role.BlockedTenants = @( + [PSCustomObject]@{ + type = 'Tenant' + value = [string]$RawBlockedTenants + label = 'Stored value could not be read' + Unresolved = $true + } + ) } } else { $Role | Add-Member -NotePropertyName BlockedTenants -NotePropertyValue @() -Force diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Resolve-CippRoleTenantEntry.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Resolve-CippRoleTenantEntry.ps1 new file mode 100644 index 0000000000000..bb13ed26c43ef --- /dev/null +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Settings/Resolve-CippRoleTenantEntry.ps1 @@ -0,0 +1,77 @@ +function Resolve-CippRoleTenantEntry { + <# + .SYNOPSIS + Render one stored tenant entry from a role definition for display. + + .DESCRIPTION + A stored entry is either a tenant group object, the literal 'AllTenants' sentinel, or a + customer id. + + An id that no longer resolves against the current tenant list used to be dropped silently, + and a list that dropped to empty was then reported as unrestricted. The effect was that a + role blocking a tenant CIPP could not currently see rendered as blocking nothing at all - + a real restriction shown as absent, which is the worst direction for this to fail in. + + Unresolvable ids are now returned with the id as their value and marked Unresolved, so the + entry stays visible and still carries its customerId. + + Used by Invoke-ListCustomRole for both AllowedTenants and BlockedTenants so the two lists + cannot drift apart. + + .PARAMETER Entry + A single deserialised entry from AllowedTenants or BlockedTenants. + + .PARAMETER TenantList + Tenants to resolve customer ids against. + + .EXAMPLE + Resolve-CippRoleTenantEntry -Entry $StoredEntry -TenantList (Get-Tenants -IncludeErrors) + + .FUNCTIONALITY + Internal + #> + [CmdletBinding()] + param( + $Entry, + $TenantList + ) + + if ($Entry -is [PSCustomObject] -and $Entry.type -eq 'Group') { + return [PSCustomObject]@{ + type = 'Group' + value = $Entry.value + label = $Entry.label + } + } + + # Not a tenant id, and it must survive the lookup below rather than be resolved away + if ($Entry -is [string] -and $Entry -eq 'AllTenants') { + return 'AllTenants' + } + + $TenantId = $Entry + $TenantInfo = $TenantList | Where-Object { $_.customerId -eq $TenantId } | Select-Object -First 1 + + if ($TenantInfo) { + return [PSCustomObject]@{ + type = 'Tenant' + value = $TenantInfo.defaultDomainName + label = "$($TenantInfo.displayName) ($($TenantInfo.defaultDomainName))" + addedFields = @{ + defaultDomainName = $TenantInfo.defaultDomainName + displayName = $TenantInfo.displayName + customerId = $TenantInfo.customerId + } + } + } + + return [PSCustomObject]@{ + type = 'Tenant' + value = $TenantId + label = "$TenantId (tenant not found)" + Unresolved = $true + addedFields = @{ + customerId = $TenantId + } + } +} diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecAddTenant.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecAddTenant.ps1 index b3e7dd951d005..15a58688061a7 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecAddTenant.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecAddTenant.ps1 @@ -13,6 +13,11 @@ function Invoke-ExecAddTenant { $tenantId = $Request.body.tenantId $defaultDomainName = $Request.body.defaultDomainName + # The account that consented is recorded so the connection can be traced and refreshed + # later. The auth date is stamped server side rather than trusting the client. + $ServiceAccount = $Request.body.username ?? '' + $AuthDate = (Get-Date).ToUniversalTime() + # Get the Tenants table $TenantsTable = Get-CippTable -tablename 'Tenants' #force a refresh of the authentication info @@ -23,11 +28,24 @@ function Invoke-ExecAddTenant { if ($tenantId -eq $env:TenantID) { # If the tenant is the partner tenant, return an error because you cannot add the partner tenant as direct tenant $Results = @{'message' = 'You cannot add the partner tenant as a direct tenant. Please connect the tenant using the "Connect to Partner Tenant" option. '; 'severity' = 'error'; } + } elseif ($ExistingTenant -and $ExistingTenant.delegatedPrivilegeStatus -ne 'directTenant') { + # Converting an existing GDAP tenant in place would silently change how CIPP + # authenticates to it. Require the tenant to be offboarded first so the switch is + # deliberate. + # The sign-in that got us here already stored a per-tenant refresh token, so discard it + # again - keeping it would leave a credential behind for a conversion we just refused. + Remove-CIPPDirectTenantToken -TenantId $tenantId + + $Results = @{'message' = "$($ExistingTenant.displayName) is already onboarded as a GDAP tenant and cannot be converted to a Direct Tenant. To manage it as a Direct Tenant, remove the tenant first under Settings > Tenants, then add it again using the Direct Tenant flow."; 'severity' = 'error' } + Write-LogMessage -tenant $ExistingTenant.defaultDomainName -tenantid $ExistingTenant.customerId -API 'NewTenant' -message "Blocked conversion of GDAP tenant $($ExistingTenant.displayName) to a Direct Tenant, attempted by $ServiceAccount." -Sev 'Warn' } elseif ($ExistingTenant) { - # Update existing tenant - $ExistingTenant.delegatedPrivilegeStatus = 'directTenant' + # Existing direct tenant - refresh the stored credentials and service account details. + $ExistingTenant | Add-Member -NotePropertyName 'directTenantUserPrincipalName' -NotePropertyValue $ServiceAccount -Force + $ExistingTenant | Add-Member -NotePropertyName 'directTenantAuthDate' -NotePropertyValue $AuthDate -Force Add-CIPPAzDataTableEntity @TenantsTable -Entity $ExistingTenant -Force | Out-Null - $Results = @{'message' = 'Successfully updated tenant.'; 'severity' = 'success' } + + $Results = @{'message' = "Successfully updated the credentials for $($ExistingTenant.displayName)."; 'severity' = 'success' } + Write-LogMessage -tenant $ExistingTenant.defaultDomainName -tenantid $ExistingTenant.customerId -API 'NewTenant' -message "Refreshed Direct Tenant credentials for $($ExistingTenant.displayName) using $ServiceAccount." -Sev 'Info' } else { # Create new tenant entry try { @@ -67,21 +85,23 @@ function Invoke-ExecAddTenant { # Create new tenant object $NewTenant = [PSCustomObject]@{ - PartitionKey = 'Tenants' - RowKey = $tenantId - customerId = $tenantId - displayName = $displayName - defaultDomainName = $defaultDomainName - initialDomainName = $initialDomainName - delegatedPrivilegeStatus = 'directTenant' - domains = '' - Excluded = $false - ExcludeUser = '' - ExcludeDate = '' - GraphErrorCount = 0 - LastGraphError = '' - RequiresRefresh = $false - LastRefresh = (Get-Date).ToUniversalTime() + PartitionKey = 'Tenants' + RowKey = $tenantId + customerId = $tenantId + displayName = $displayName + defaultDomainName = $defaultDomainName + initialDomainName = $initialDomainName + delegatedPrivilegeStatus = 'directTenant' + directTenantUserPrincipalName = $ServiceAccount + directTenantAuthDate = $AuthDate + domains = '' + Excluded = $false + ExcludeUser = '' + ExcludeDate = '' + GraphErrorCount = 0 + LastGraphError = '' + RequiresRefresh = $false + LastRefresh = (Get-Date).ToUniversalTime() } # Add tenant to table diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1 index 31efa6bf6b25f..67fd49e6dd1b7 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1 @@ -18,87 +18,13 @@ function Invoke-AddOfficeApp { $Results = foreach ($Tenant in $Tenants) { try { - $ExistingO365 = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/deviceAppManagement/mobileApps' -tenantid $Tenant | Where-Object { $_.displayName -eq 'Microsoft 365 Apps for Windows 10 and later' } + # Office is a singleton per tenant, so match on the type rather than on a display name + # that may have been changed after deployment. + $ExistingO365 = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/deviceAppManagement/mobileApps' -tenantid $Tenant | Where-Object { $_.'@odata.type' -eq '#microsoft.graph.officeSuiteApp' } if (!$ExistingO365) { - # Check if this is a template deployment with IntuneBody (saved from existing app) - if ($Request.Body.IntuneBody) { - $IntuneBody = $Request.Body.IntuneBody - if ($IntuneBody -is [string]) { - $IntuneBody = $IntuneBody | ConvertFrom-Json -Depth 100 - } - # Remove read-only properties that the Graph API won't accept on create - $ReadOnlyProps = @('id', 'createdDateTime', 'lastModifiedDateTime', 'uploadState', 'publishingState', 'isAssigned', 'roleScopeTagIds', 'dependentAppCount', 'supersedingAppCount', 'supersededAppCount', 'committedContentVersion', 'fileName', 'size') - foreach ($prop in $ReadOnlyProps) { - if ($IntuneBody.PSObject.Properties[$prop]) { - $IntuneBody.PSObject.Properties.Remove($prop) - } - } - $ObjBody = $IntuneBody - } elseif ($Request.Body.useCustomXml -and $Request.Body.customXml) { - # Use custom XML configuration - $ObjBody = [pscustomobject]@{ - '@odata.type' = '#microsoft.graph.officeSuiteApp' - 'displayName' = 'Microsoft 365 Apps for Windows 10 and later' - 'description' = 'Microsoft 365 Apps for Windows 10 and later' - 'informationUrl' = 'https://products.office.com/en-us/explore-office-for-home' - 'privacyInformationUrl' = 'https://privacy.microsoft.com/en-us/privacystatement' - 'isFeatured' = $true - 'publisher' = 'Microsoft' - 'notes' = '' - 'owner' = 'Microsoft' - 'officeConfigurationXml' = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($request.body.customXml)) - 'largeIcon' = @{ - '@odata.type' = 'microsoft.graph.mimeContent' - 'type' = 'image/png' - 'value' = 'iVBORw0KGgoAAAANSUhEUgAAAF0AAAAeCAMAAAEOZNKlAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJhUExURf////7z7/i9qfF1S/KCW/i+qv3q5P/9/PrQwfOMae1RG+s8AOxGDfBtQPWhhPvUx/759/zg1vWgg+9fLu5WIvKFX/rSxP728/nCr/FyR+tBBvOMaO1UH+1RHOs+AvSScP3u6f/+/v3s5vzg1+xFDO9kNPOOa/i7pvzj2/vWyes9Af76+Pzh2PrTxf/6+f7y7vOGYexHDv3t5+1SHfi8qPOIZPvb0O1NFuxDCe9hMPSVdPnFs/3q4/vaz/STcu5VIe5YJPWcfv718v/9/e1MFfF4T/F4TvF2TP3o4exECvF0SexIEPONavzn3/vZze1QGvF3Te5dK+5cKvrPwPrQwvKAWe1OGPexmexKEveulfezm/BxRfamiuxLE/apj/zf1e5YJfSXd/OHYv3r5feznPakiPze1P7x7f739f3w6+xJEfnEsvWdf/Wfge1LFPe1nu9iMvnDsfBqPOs/BPOIY/WZevJ/V/zl3fnIt/vTxuxHD+xEC+9mN+5ZJv749vBpO/KBWvBwRP/8+/SUc/etlPjArP/7+vOLZ/F7UvWae/708e1OF/aihvSWdvi8p+tABfSZefvVyPWihfSVde9lNvami+9jM/zi2fKEXvBuQvOKZvalifF5UPJ/WPSPbe9eLfrKuvvd0uxBB/7w7Pzj2vrRw/rOv+1PGfi/q/eymu5bKf3n4PnJuPBrPf3t6PWfgvWegOxCCO9nOO9oOfaskvSYePi5pPi2oPnGtO5eLPevlvKDXfrNvv739Pzd0/708O9gL+9lNfJ9VfrLu/OPbPnDsPBrPus+A/nArfarkQAAAGr5HKgAAADLdFJOU/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AvuakogAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAz5JREFUOE+tVTtu4zAQHQjppmWzwIJbEVCzpTpjbxD3grQHSOXKRXgCAT6EC7UBVAmp3KwBnmvfzNCyZTmxgeTZJsXx43B+HBHRE34ZkXgkerXFTheeiCkRrbB4UXmp4wSWz5raaQEMTM5TZwuiXoaKgV+6FsmkZQcSy0kA71yMTMGHanX+AzMMGLAQCxU1F/ZwjULPugazl82GM0NEKm/U8EqFwEkO3/EAT4grgl0nucwlk9pcpTTJ4VPA4g/Rb3yIRhhp507e9nTQmZ1OS5RO4sS7nIRPEeHXCHdkw9ZEW2yVE5oIS7peD58Avs7CN+PVCmHh21oOqBdjDzIs+FldPJ74TFESUSJEfVzy9U/dhu+AuOT6eBp6gGKyXEx8euO450ZE4CMfstMFT44broWw/itkYErWXRx+fFArt9Ca9os78TFed0LVIUsmIHrwbwaw3BEOnOk94qVpQ6Ka2HjxewJnfyd6jUtGDQLdWlzmYNYLeKbbGOucJsNabCq1Yub0o92rtR+i30V2dapxYVEePXcOjeCKPnYyit7BtKeNlZqHbr+gt7i+AChWA9RsRs03pxTQc67ouWpxyESvjK5Vs3DVSy3IpkxPm5X+wZoBi+MFHWW69/w8FRhc7VBe6HAhMB2b8Q0XqDzTNZtXUMnKMjwKVaCrB/CSUL7WSx/HsdJC86lFGXwnioTeOMPjV+szlFvrZLA5VMVK4y+41l4e1xfx7Z88o4hkilRUH/qKqwNVlgDgpvYCpH3XwAy5eMCRnezIUxffVXoDql2rTHFDO+pjWnTWzAfrYXn6BFECblUpWGrvPZvBipETjS5ydM7tdXpH41ZCEbBNy/+wFZu71QO2t9pgT+iZEf657Q1vpN94PQNDxUHeKR103LV9nPVOtDikcNKO+2naCw7yKBhOe9Hm79pe8C4/CfC2wDjXnqC94kEeBU3WwN7dt/2UScXas7zDl5GpkY+M8WKv2J7fd4Ib2rGTk+jsC2cleEM7jI9veF7B0MBJrsZqfKd/81q9pR2NZfwJK2JzsmIT1Ns8jUH0UusQBpU8d2JzsHiXg1zXGLqxfitUNTDT/nUUeqDBp2HZVr+Ocqi/Ty3Rf4Jn82xxfSNtAAAAAElFTkSuQmCC' - } - } - } else { - # Use standard configuration - $Arch = if ($Request.Body.arch) { 'x64' } else { 'x86' } - $products = @('o365ProPlusRetail') - $ExcludedApps = [pscustomobject]@{ - infoPath = $true - sharePointDesigner = $true - excel = $false - lync = $false - oneNote = $false - outlook = $false - powerPoint = $false - publisher = $false - teams = $false - word = $false - access = $false - bing = $false - } - foreach ($ExcludedApp in $Request.Body.excludedApps.value) { - $ExcludedApps.$ExcludedApp = $true - } - $ObjBody = [pscustomobject]@{ - '@odata.type' = '#microsoft.graph.officeSuiteApp' - 'displayName' = 'Microsoft 365 Apps for Windows 10 and later' - 'description' = 'Microsoft 365 Apps for Windows 10 and later' - 'informationUrl' = 'https://products.office.com/en-us/explore-office-for-home' - 'privacyInformationUrl' = 'https://privacy.microsoft.com/en-us/privacystatement' - 'isFeatured' = $true - 'publisher' = 'Microsoft' - 'notes' = '' - 'owner' = 'Microsoft' - 'autoAcceptEula' = [bool]$Request.Body.AcceptLicense - 'excludedApps' = $ExcludedApps - 'officePlatformArchitecture' = $Arch - 'officeSuiteAppDefaultFileFormat' = 'OfficeOpenXMLFormat' - 'localesToInstall' = @($Request.Body.languages.value) - 'shouldUninstallOlderVersionsOfOffice' = [bool]$Request.Body.RemoveVersions - 'updateChannel' = if ($Request.Body.updateChannel.value) { $Request.Body.updateChannel.value } else { $Request.Body.updateChannel } - 'useSharedComputerActivation' = [bool]$Request.Body.SharedComputerActivation - 'productIds' = $products - 'largeIcon' = @{ - '@odata.type' = 'microsoft.graph.mimeContent' - 'type' = 'image/png' - 'value' = 'iVBORw0KGgoAAAANSUhEUgAAAF0AAAAeCAMAAAEOZNKlAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJhUExURf////7z7/i9qfF1S/KCW/i+qv3q5P/9/PrQwfOMae1RG+s8AOxGDfBtQPWhhPvUx/759/zg1vWgg+9fLu5WIvKFX/rSxP728/nCr/FyR+tBBvOMaO1UH+1RHOs+AvSScP3u6f/+/v3s5vzg1+xFDO9kNPOOa/i7pvzj2/vWyes9Af76+Pzh2PrTxf/6+f7y7vOGYexHDv3t5+1SHfi8qPOIZPvb0O1NFuxDCe9hMPSVdPnFs/3q4/vaz/STcu5VIe5YJPWcfv718v/9/e1MFfF4T/F4TvF2TP3o4exECvF0SexIEPONavzn3/vZze1QGvF3Te5dK+5cKvrPwPrQwvKAWe1OGPexmexKEveulfezm/BxRfamiuxLE/apj/zf1e5YJfSXd/OHYv3r5feznPakiPze1P7x7f739f3w6+xJEfnEsvWdf/Wfge1LFPe1nu9iMvnDsfBqPOs/BPOIY/WZevJ/V/zl3fnIt/vTxuxHD+xEC+9mN+5ZJv749vBpO/KBWvBwRP/8+/SUc/etlPjArP/7+vOLZ/F7UvWae/708e1OF/aihvSWdvi8p+tABfSZefvVyPWihfSVde9lNvami+9jM/zi2fKEXvBuQvOKZvalifF5UPJ/WPSPbe9eLfrKuvvd0uxBB/7w7Pzj2vrRw/rOv+1PGfi/q/eymu5bKf3n4PnJuPBrPf3t6PWfgvWegOxCCO9nOO9oOfaskvSYePi5pPi2oPnGtO5eLPevlvKDXfrNvv739Pzd0/708O9gL+9lNfJ9VfrLu/OPbPnDsPBrPus+A/nArfarkQAAAGr5HKgAAADLdFJOU/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AvuakogAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAz5JREFUOE+tVTtu4zAQHQjppmWzwIJbEVCzpTpjbxD3grQHSOXKRXgCAT6EC7UBVAmp3KwBnmvfzNCyZTmxgeTZJsXx43B+HBHRE34ZkXgkerXFTheeiCkRrbB4UXmp4wSWz5raaQEMTM5TZwuiXoaKgV+6FsmkZQcSy0kA71yMTMGHanX+AzMMGLAQCxU1F/ZwjULPugazl82GM0NEKm/U8EqFwEkO3/EAT4grgl0nucwlk9pcpTTJ4VPA4g/Rb3yIRhhp507e9nTQmZ1OS5RO4sS7nIRPEeHXCHdkw9ZEW2yVE5oIS7peD58Avs7CN+PVCmHh21oOqBdjDzIs+FldPJ74TFESUSJEfVzy9U/dhu+AuOT6eBp6gGKyXEx8euO450ZE4CMfstMFT44broWw/itkYErWXRx+fFArt9Ca9os78TFed0LVIUsmIHrwbwaw3BEOnOk94qVpQ6Ka2HjxewJnfyd6jUtGDQLdWlzmYNYLeKbbGOucJsNabCq1Yub0o92rtR+i30V2dapxYVEePXcOjeCKPnYyit7BtKeNlZqHbr+gt7i+AChWA9RsRs03pxTQc67ouWpxyESvjK5Vs3DVSy3IpkxPm5X+wZoBi+MFHWW69/w8FRhc7VBe6HAhMB2b8Q0XqDzTNZtXUMnKMjwKVaCrB/CSUL7WSx/HsdJC86lFGXwnioTeOMPjV+szlFvrZLA5VMVK4y+41l4e1xfx7Z88o4hkilRUH/qKqwNVlgDgpvYCpH3XwAy5eMCRnezIUxffVXoDql2rTHFDO+pjWnTWzAfrYXn6BFECblUpWGrvPZvBipETjS5ydM7tdXpH41ZCEbBNy/+wFZu71QO2t9pgT+iZEf657Q1vpN94PQNDxUHeKR103LV9nPVOtDikcNKO+2naCw7yKBhOe9Hm79pe8C4/CfC2wDjXnqC94kEeBU3WwN7dt/2UScXas7zDl5GpkY+M8WKv2J7fd4Ib2rGTk+jsC2cleEM7jI9veF7B0MBJrsZqfKd/81q9pR2NZfwJK2JzsmIT1Ns8jUH0UusQBpU8d2JzsHiXg1zXGLqxfitUNTDT/nUUeqDBp2HZVr+Ocqi/Ty3Rf4Jn82xxfSNtAAAAAElFTkSuQmCC' - } - } + $ObjBody = Get-CIPPOfficeAppBody -Config $Request.Body + if (-not $ObjBody) { + throw 'No Office configuration could be built from the supplied settings.' } Write-Host ($ObjBody | ConvertTo-Json -Compress) $OfficeAppID = New-graphPostRequest -Uri 'https://graph.microsoft.com/beta/deviceAppManagement/mobileApps' -tenantid $tenant -Body (ConvertTo-Json -InputObject $ObjBody -Depth 10) -type POST diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-ExecCompareIntunePolicy.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-ExecCompareIntunePolicy.ps1 index 553520cd687f9..8ee45df653588 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-ExecCompareIntunePolicy.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Endpoint/MEM/Invoke-ExecCompareIntunePolicy.ps1 @@ -34,6 +34,74 @@ function Invoke-ExecCompareIntunePolicy { throw 'Both sourceA and sourceB are required' } + # Load a stored Intune template. When a tenant is supplied the template is put through the + # same preparation the IntuneTemplate standard uses - nesting repair, reusable settings sync + # and text replacement - so a comparison made here matches what drift reports for that tenant. + function Get-ComparisonTemplate { + param( + [Parameter(Mandatory = $true)] + [string]$TemplateGuid, + [string]$TenantFilter, + [string]$Label + ) + + $Table = Get-CippTable -tablename 'templates' + $TemplateEntity = Get-CIPPAzDataTableEntity @Table -Filter "PartitionKey eq 'IntuneTemplate' and RowKey eq '$TemplateGuid'" + + if (-not $TemplateEntity) { + throw "$Label : Template with GUID '$TemplateGuid' not found" + } + + $JSONData = $TemplateEntity.JSON | ConvertFrom-Json -Depth 100 + $JSONData = Repair-CIPPIntuneTemplateNesting -Template $JSONData -Table $Table + $RawJSON = $JSONData.RAWJson + + if ($TenantFilter) { + try { + $ReusableSync = Sync-CIPPReusablePolicySettings -TemplateInfo $JSONData -Tenant $TenantFilter -ErrorAction Stop + if ($ReusableSync.RawJSON) { + $RawJSON = $ReusableSync.RawJSON + } + } catch { + Write-Warning "$Label : Failed to sync reusable policy settings - $($_.Exception.Message)" + } + $RawJSON = Get-CIPPTextReplacement -Text $RawJSON -TenantFilter $TenantFilter -EscapeForJson + } + + return @{ + Object = $RawJSON | ConvertFrom-Json -Depth 100 + TemplateType = Get-CIPPIntuneTemplateType -Type $JSONData.Type -RawJson $RawJSON + DisplayName = $JSONData.Displayname + } + } + + # A standard can be configured to replace a similarly named policy on deployment rather than + # create a new one. That setting lives on the standards template, keyed by the Intune + # template GUID, and is stored as a string by the settings form. + function Get-StandardFuzzyDistance { + param( + [string]$StandardsTemplateId, + [string]$TemplateGuid + ) + + if (-not $StandardsTemplateId) { return 0 } + + try { + $Table = Get-CippTable -tablename 'templates' + $Entity = Get-CIPPAzDataTableEntity @Table -Filter "PartitionKey eq 'StandardsTemplateV2' and RowKey eq '$StandardsTemplateId'" + if (-not $Entity) { return 0 } + + $Standards = ($Entity.JSON | ConvertFrom-Json -Depth 100).standards.IntuneTemplate + $Match = @($Standards) | Where-Object { $_.TemplateList.value -eq $TemplateGuid } | Select-Object -First 1 + + if ([string]::IsNullOrWhiteSpace($Match.levenshteinDistance)) { return 0 } + return [int]$Match.levenshteinDistance + } catch { + Write-Warning "Could not read the fuzzy match distance from standards template '$StandardsTemplateId': $($_.Exception.Message)" + return 0 + } + } + # Resolve a source descriptor to its policy object and metadata function Resolve-PolicySource { param( @@ -46,23 +114,95 @@ function Invoke-ExecCompareIntunePolicy { if (-not $Source.templateGuid) { throw "$Label : templateGuid is required for template sources" } - $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'IntuneTemplate' and RowKey eq '$($Source.templateGuid)'" - $TemplateEntity = Get-CIPPAzDataTableEntity @Table -Filter $Filter - if (-not $TemplateEntity) { - throw "$Label : Template with GUID '$($Source.templateGuid)' not found" + # tenantFilter is optional here - supplying it resolves the template the way the + # standard would for that tenant instead of comparing the stored template verbatim. + $Template = Get-ComparisonTemplate -TemplateGuid $Source.templateGuid -TenantFilter $Source.tenantFilter -Label $Label + $LabelSuffix = if ($Source.tenantFilter) { "Template, resolved for $($Source.tenantFilter)" } else { 'Template' } + + return @{ + Object = $Template.Object + TemplateType = $Template.TemplateType + Label = "$($Template.DisplayName) ($LabelSuffix)" + RawData = $Template.Object + } + + } elseif ($Source.type -eq 'tenantPolicyByTemplate') { + # Used by the drift and standards pages, which know the template a standard points at + # but not which policy in the tenant it landed on. Matches the standard's own lookup: + # by the template's display name and type. + if (-not $Source.templateGuid -or -not $Source.tenantFilter) { + throw "$Label : templateGuid and tenantFilter are required for tenantPolicyByTemplate sources" + } + + $Template = Get-ComparisonTemplate -TemplateGuid $Source.templateGuid -Label $Label + + if (-not $Template.TemplateType) { + throw "$Label : Template '$($Template.DisplayName)' has no policy type and none could be inferred. Re-import the template to fix this." } - $JSONData = $TemplateEntity.JSON | ConvertFrom-Json -Depth 100 - $PolicyObj = $JSONData.RAWJson | ConvertFrom-Json -Depth 100 - $TemplateType = $JSONData.Type + $Policy = Get-CIPPIntunePolicy -TemplateType $Template.TemplateType -DisplayName $Template.DisplayName -tenantFilter $Source.tenantFilter -Headers $Headers -APINAME $APIName + $MatchType = 'exact' + $MatchedName = $Template.DisplayName + + # Without this the comparison would report the policy as missing while remediation + # would happily overwrite an existing, similarly named one. Mirrors the candidate + # selection Set-CIPPIntunePolicy performs at deployment time. + $MaxDistance = Get-StandardFuzzyDistance -StandardsTemplateId $Source.standardsTemplateId -TemplateGuid $Source.templateGuid + + if (-not $Policy -and $MaxDistance -gt 0) { + $AllPolicies = @(Get-CIPPIntunePolicy -TemplateType $Template.TemplateType -tenantFilter $Source.tenantFilter -Headers $Headers -APINAME $APIName) + + $FuzzyParams = @{ + DisplayName = $Template.DisplayName + ExistingPolicies = $AllPolicies + MaxDistance = $MaxDistance + } + # Same sub-type guards the deployment applies, so a similarly named policy of a + # different type is not offered as the match. + if ($Template.TemplateType -eq 'Catalog') { + $FuzzyParams.NameProperty = 'name' + if ($Template.Object.templateReference.templateId) { + $FuzzyParams.TemplateId = $Template.Object.templateReference.templateId + } + } elseif ($Template.Object.'@odata.type') { + $FuzzyParams.ODataType = $Template.Object.'@odata.type' + } + + $FuzzyResult = Find-CIPPFuzzyPolicyMatch @FuzzyParams + if ($FuzzyResult) { + $MatchType = $FuzzyResult.MatchType + $MatchedName = $FuzzyResult.OriginalName + # Re-read by id so nested settings come back expanded the way the + # by-name lookup returns them. + $Policy = Get-CIPPIntunePolicy -TemplateType $Template.TemplateType -PolicyId $FuzzyResult.Policy.id -tenantFilter $Source.tenantFilter -Headers $Headers -APINAME $APIName + } + } + + if (-not $Policy) { + # Not an error. A template that has just been added to a drift or standards + # template legitimately has no policy in the tenant yet, and the caller can still + # show the baseline on its own, which is more useful than a failed comparison. + return @{ + Object = $null + Missing = $true + MissingName = $Template.DisplayName + FuzzyDistance = $MaxDistance + TemplateType = $Template.TemplateType + Label = "$($Template.DisplayName) (not deployed to $($Source.tenantFilter))" + RawData = $null + } + } + + $PolicyObj = $Policy.cippconfiguration | ConvertFrom-Json -Depth 100 return @{ Object = $PolicyObj - TemplateType = $TemplateType - Label = "$($JSONData.Displayname) (Template)" + TemplateType = $Template.TemplateType + Label = "$MatchedName ($($Source.tenantFilter))" RawData = $PolicyObj + MatchType = $MatchType + MatchedName = $MatchedName } } elseif ($Source.type -eq 'tenantPolicy') { @@ -142,13 +282,41 @@ function Invoke-ExecCompareIntunePolicy { } } else { - throw "$Label : Invalid source type '$($Source.type)'. Must be 'template', 'tenantPolicy', or 'communityRepo'" + throw "$Label : Invalid source type '$($Source.type)'. Must be 'template', 'tenantPolicy', 'tenantPolicyByTemplate', or 'communityRepo'" } } $ResolvedA = Resolve-PolicySource -Source $SourceA -Label 'Source A' $ResolvedB = Resolve-PolicySource -Source $SourceB -Label 'Source B' + # With one side absent there is nothing to diff. Report that as its own state and hand back + # whichever side does exist, so the caller can still show it. + if ($ResolvedA.Missing -or $ResolvedB.Missing) { + $MissingBody = @{ + Results = @() + sourceALabel = $ResolvedA.Label + sourceBLabel = $ResolvedB.Label + sourceAData = $ResolvedA.RawData + sourceBData = $ResolvedB.RawData + identical = $false + policyMissing = $true + # The name that was searched for, and which side is absent, so the caller can say + # exactly what is missing rather than just that something is. + missingPolicyName = $ResolvedA.Missing ? $ResolvedA.MissingName : $ResolvedB.MissingName + missingSide = $ResolvedA.Missing ? 'baseline' : 'tenant' + # Tells the caller whether fuzzy matching was even in play, so a "not found" can be + # explained as "exact name only" rather than looking like a broader search failed. + fuzzyDistance = $ResolvedA.Missing ? $ResolvedA.FuzzyDistance : $ResolvedB.FuzzyDistance + } + + Write-LogMessage -headers $Headers -API $APIName -message "Compared Intune policies: $($ResolvedA.Label) vs $($ResolvedB.Label) - one side does not exist" -Sev 'Info' + + return ([HttpResponseContext]@{ + StatusCode = [HttpStatusCode]::OK + Body = ConvertTo-Json -Depth 100 -InputObject $MissingBody + }) + } + # Determine compare type $CompareParams = @{ ReferenceObject = $ResolvedA.Object @@ -170,6 +338,10 @@ function Invoke-ExecCompareIntunePolicy { sourceAData = $ResolvedA.RawData sourceBData = $ResolvedB.RawData identical = ($ComparisonResults.Count -eq 0) + # Non-exact means the tenant policy was found under a different name, which changes how + # the result should be read - the caller says so rather than implying a name match. + matchType = $ResolvedB.MatchType ?? $ResolvedA.MatchType + matchedName = $ResolvedB.MatchedName ?? $ResolvedA.MatchedName } Write-LogMessage -headers $Headers -API $APIName -message "Compared Intune policies: $($ResolvedA.Label) vs $($ResolvedB.Label) - $($ComparisonResults.Count) differences found" -Sev 'Info' diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment.ps1 index 83e3d96a5f1fb..f80c5dd02d95e 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment.ps1 @@ -4,6 +4,8 @@ Function Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment { Entrypoint .ROLE Teams.Voice.ReadWrite + .DESCRIPTION + Unassigns a phone number from a user or resource account via the Teams administration Graph API. #> [CmdletBinding()] param($Request, $TriggerMetadata) @@ -11,7 +13,6 @@ Function Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment { $APIName = $Request.Params.CIPPEndpoint $Headers = $Request.Headers - # Interact with query parameters or the body of the request. $TenantFilter = $Request.Body.tenantFilter $AssignedTo = $Request.Body.AssignedTo @@ -19,8 +20,14 @@ Function Invoke-ExecRemoveTeamsVoicePhoneNumberAssignment { $PhoneNumberType = $Request.Body.PhoneNumberType try { - $null = New-TeamsRequest -TenantFilter $TenantFilter -Cmdlet 'Remove-CsPhoneNumberAssignment' -CmdParams @{Identity = $AssignedTo; PhoneNumber = $PhoneNumber; PhoneNumberType = $PhoneNumberType; ErrorAction = 'Stop' } - $Result = "Successfully unassigned $PhoneNumber from $AssignedTo" + # unassignNumber is keyed on the number alone - AssignedTo is kept only for the audit log. + $Body = @{ + telephoneNumber = $PhoneNumber + numberType = Get-CippTeamsNumberType -NumberType $PhoneNumberType + } + # Asynchronous: 202 Accepted with a Location header for the operation. + $null = New-GraphPOSTRequest -uri 'https://graph.microsoft.com/v1.0/admin/teams/telephoneNumberManagement/numberAssignments/unassignNumber' -tenantid $TenantFilter -body ($Body | ConvertTo-Json -Compress) -type POST + $Result = "Successfully submitted unassignment of $PhoneNumber from $AssignedTo" Write-LogMessage -headers $Headers -API $APIName -tenant $($TenantFilter) -message $Result -Sev 'Info' $StatusCode = [HttpStatusCode]::OK } catch { diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecTeamsVoicePhoneNumberAssignment.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecTeamsVoicePhoneNumberAssignment.ps1 index 94097e2f46ec1..744c35d9312d9 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecTeamsVoicePhoneNumberAssignment.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ExecTeamsVoicePhoneNumberAssignment.ps1 @@ -4,6 +4,9 @@ Function Invoke-ExecTeamsVoicePhoneNumberAssignment { Entrypoint .ROLE Teams.Voice.ReadWrite + .DESCRIPTION + Assigns a phone number to a user or resource account, or sets the emergency location on a + number, via the Teams administration Graph API. #> [CmdletBinding()] param($Request, $TriggerMetadata) @@ -12,15 +15,37 @@ Function Invoke-ExecTeamsVoicePhoneNumberAssignment { $Headers = $Request.Headers $Identity = $Request.Body.input.value + $PhoneNumber = $Request.Body.PhoneNumber + $TenantFilter = $Request.Body.TenantFilter + $BaseUri = 'https://graph.microsoft.com/v1.0/admin/teams/telephoneNumberManagement/numberAssignments' - $tenantFilter = $Request.Body.TenantFilter try { if ($Request.Body.locationOnly) { - $null = New-TeamsRequest -TenantFilter $TenantFilter -Cmdlet 'Set-CsPhoneNumberAssignment' -CmdParams @{LocationId = $Identity; PhoneNumber = $Request.Body.PhoneNumber; ErrorAction = 'stop' } - $Results = [pscustomobject]@{'Results' = "Successfully assigned emergency location to $($Request.Body.PhoneNumber)" } + # updateNumber is synchronous (200) and only touches the optional attributes. + $Body = @{ + telephoneNumber = $PhoneNumber + locationId = $Identity + } + $null = New-GraphPOSTRequest -uri "$BaseUri/updateNumber" -tenantid $TenantFilter -body ($Body | ConvertTo-Json -Compress) -type POST + $Results = [pscustomobject]@{'Results' = "Successfully assigned emergency location to $PhoneNumber" } } else { - $null = New-TeamsRequest -TenantFilter $TenantFilter -Cmdlet 'Set-CsPhoneNumberAssignment' -CmdParams @{Identity = $Identity; PhoneNumber = $Request.Body.PhoneNumber; PhoneNumberType = $Request.Body.PhoneNumberType; ErrorAction = 'stop' } - $Results = [pscustomobject]@{'Results' = "Successfully assigned $($Request.Body.PhoneNumber) to $($Identity)" } + # Graph wants the object ID; the UI sends a UPN, so resolve it when it isn't a GUID. + $TargetId = $Identity + if ($Identity -notmatch '^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$') { + $TargetId = (New-GraphGetRequest -uri "https://graph.microsoft.com/v1.0/users/$([uri]::EscapeDataString($Identity))?`$select=id" -tenantid $TenantFilter).id + if (-not $TargetId) { throw "Could not resolve $Identity to a user or resource account." } + } + + $Body = @{ + telephoneNumber = $PhoneNumber + assignmentTargetId = $TargetId + numberType = Get-CippTeamsNumberType -NumberType $Request.Body.PhoneNumberType + } + if ($Request.Body.AssignmentCategory) { $Body.assignmentCategory = $Request.Body.AssignmentCategory } + + # assignNumber is asynchronous: 202 Accepted with a Location header for the operation. + $null = New-GraphPOSTRequest -uri "$BaseUri/assignNumber" -tenantid $TenantFilter -body ($Body | ConvertTo-Json -Compress) -type POST + $Results = [pscustomobject]@{'Results' = "Successfully submitted assignment of $PhoneNumber to $Identity" } } Write-LogMessage -Headers $Headers -API $APINAME -tenant $($TenantFilter) -message $($Results.Results) -Sev Info $StatusCode = [HttpStatusCode]::OK diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListSharepointAdminUrl.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListSharepointAdminUrl.ps1 index 355facd78999b..a630624ad9533 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListSharepointAdminUrl.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListSharepointAdminUrl.ps1 @@ -5,7 +5,11 @@ function Invoke-ListSharepointAdminUrl { .ROLE CIPP.Core.Read .DESCRIPTION - Retrieves the SharePoint Admin Center URL for a tenant. + Retrieves the SharePoint Admin Center URL for a tenant and redirects to it. Pass ReturnUrl to + get the URL back as JSON instead of being redirected. + + The URL cannot be derived from the tenant name - it has to be resolved through Graph - so the + result is cached on the tenant, which lets ListTenants hand out a direct link from then on. #> [CmdletBinding()] param( @@ -13,40 +17,55 @@ function Invoke-ListSharepointAdminUrl { $TriggerMetadata ) - if ($Request.Query.TenantFilter) { - $TenantFilter = $Request.Query.TenantFilter + $APIName = $Request.Params.CIPPEndpoint + $Headers = $Request.Headers + $TenantFilter = $Request.Query.TenantFilter + + if (!$TenantFilter) { + return ([HttpResponseContext]@{ + StatusCode = [HttpStatusCode]::BadRequest + Body = @{ Results = 'TenantFilter is required' } + }) + } - $Tenant = Get-Tenants -TenantFilter $TenantFilter + try { + $Tenant = Get-Tenants -TenantFilter $TenantFilter | Select-Object -First 1 + if (!$Tenant) { + throw "Tenant '$TenantFilter' was not found." + } if ($Tenant.SharepointAdminUrl) { $AdminUrl = $Tenant.SharepointAdminUrl } else { - $SharePointInfo = Get-SharePointAdminLink -Public $false -tenantFilter $TenantFilter - $Tenant | Add-Member -MemberType NoteProperty -Name SharepointAdminUrl -Value $SharePointInfo.AdminUrl + # Throws rather than returning a placeholder if the name can't be resolved, so we never + # cache a URL that points nowhere. + $AdminUrl = (Get-SharePointAdminLink -Public $false -TenantFilter $TenantFilter).AdminUrl + + $Tenant | Add-Member -MemberType NoteProperty -Name 'SharepointAdminUrl' -Value $AdminUrl -Force $Table = Get-CIPPTable -TableName 'Tenants' Add-CIPPAzDataTableEntity @Table -Entity $Tenant -Force - $AdminUrl = $SharePointInfo.AdminUrl } + } catch { + $ErrorMessage = Get-NormalizedError -Message $_.Exception.Message + Write-LogMessage -headers $Headers -API $APIName -tenant $TenantFilter -message "Failed to resolve the SharePoint admin URL: $ErrorMessage" -Sev 'Error' + return ([HttpResponseContext]@{ + StatusCode = [HttpStatusCode]::InternalServerError + Body = @{ Results = "Could not resolve the SharePoint admin URL for $TenantFilter. $ErrorMessage" } + }) + } - if ($Request.Query.ReturnUrl) { - return ([HttpResponseContext]@{ - StatusCode = [HttpStatusCode]::OK - Body = @{ - AdminUrl = $AdminUrl - } - }) - } else { - return ([HttpResponseContext]@{ - StatusCode = [HttpStatusCode]::Found - Headers = @{ - Location = $AdminUrl - } - }) - } - } else { + if ($Request.Query.ReturnUrl) { return ([HttpResponseContext]@{ - StatusCode = [HttpStatusCode]::BadRequest - Body = 'TenantFilter is required' + StatusCode = [HttpStatusCode]::OK + Body = @{ AdminUrl = $AdminUrl } }) } + + # The body is not decoration: a browser that follows the redirect never sees it, but it means a + # caller whose runtime drops the Location header gets the URL instead of a bare 'null' page. + return ([HttpResponseContext]@{ + StatusCode = [HttpStatusCode]::Found + Headers = @{ Location = $AdminUrl } + Body = @{ AdminUrl = $AdminUrl } + }) } diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsLisLocation.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsLisLocation.ps1 index a348bf6a9ac80..318af9a8e8b1a 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsLisLocation.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsLisLocation.ps1 @@ -11,7 +11,43 @@ Function Invoke-ListTeamsLisLocation { param($Request, $TriggerMetadata) $TenantFilter = $Request.Query.TenantFilter try { - $EmergencyLocations = New-TeamsRequest -TenantFilter $TenantFilter -Cmdlet 'Get-CsOnlineLisLocation' + # Skype.Ncs/locations returns a bare array; the tenant comes from the token, not the path. + # Property names are mapped to the shape Get-CsOnlineLisLocation returned so the UI contract + # (Description / LocationId) is unchanged. + $Locations = New-TeamsRequestV2 -TenantFilter $TenantFilter -Path 'Skype.Ncs/locations' + $EmergencyLocations = foreach ($Location in @($Locations)) { + [PSCustomObject]@{ + LocationId = $Location.id + CivicAddressId = $Location.civicAddressId + TenantId = $Location.tenantId + Description = $Location.description + Location = $Location.location + CompanyName = $Location.companyName + CompanyTaxId = $Location.companyId + PartnerId = $Location.partnerId + HouseNumber = $Location.houseNumber + HouseNumberSuffix = $Location.houseNumberSuffix + PreDirectional = $Location.preDirectional + StreetName = $Location.streetName + StreetSuffix = $Location.streetSuffix + PostDirectional = $Location.postDirectional + City = $Location.cityOrTown + CityAlias = $Location.cityOrTownAlias + StateOrProvince = $Location.stateOrProvince + CountyOrDistrict = $Location.countyOrDistrict + PostalCode = $Location.postalOrZipCode + CountryOrRegion = $Location.country + Latitude = $Location.latitude + Longitude = $Location.longitude + Confidence = $Location.confidence + Elin = $Location.elin + IsDefault = $Location.isDefault + ValidationStatus = $Location.validationStatus + # The service returns -1 for these rather than a real count. + NumberOfVoiceUsers = $Location.numberOfVoiceUsers + NumberOfTelephoneNumbers = $Location.numberOfTelephoneNumbers + } + } $StatusCode = [HttpStatusCode]::OK } catch { $ErrorMessage = Get-NormalizedError -Message $_.Exception.Message diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsVoice.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsVoice.ps1 index a52f51d00d543..ea94c42912585 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsVoice.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Teams-Sharepoint/Invoke-ListTeamsVoice.ps1 @@ -29,13 +29,19 @@ function Invoke-ListTeamsVoice { $TenantId = (Get-Tenants -TenantFilter $TenantFilter).customerId $Users = (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users?`$top=999&`$select=id,userPrincipalName,displayName" -tenantid $TenantFilter) + # The number list only carries LocationId GUIDs; resolve them to a readable label. + $LocationLookup = Get-CippTeamsLocationLookup -TenantFilter $TenantFilter $Skip = 0 $GraphRequest = do { Write-Host "Getting page $Skip" - $Results = New-TeamsAPIGetRequest -uri "https://api.interfaces.records.teams.microsoft.com/Skype.TelephoneNumberMgmt/Tenants/$($TenantId)/telephone-numbers?skip=$($Skip)&locale=en-US&top=999" -tenantid $TenantFilter + $Results = New-TeamsRequestV2 -TenantFilter $TenantFilter -Path "Skype.TelephoneNumberMgmt/Tenants/$TenantId/telephone-numbers" ` + -QueryParameters @{ skip = $Skip; locale = 'en-US'; top = 999 } ` + -AdditionalHeaders @{ 'x-ms-tnm-applicationid' = '045268c0-445e-4ac1-9157-d58f67b167d9' } #Write-Information ($Results | ConvertTo-Json -Depth 10) $data = $Results.TelephoneNumbers | ForEach-Object { - $CompleteRequest = $_ | Select-Object *, @{Name = 'AssignedTo'; Expression = { $users | Where-Object -Property id -EQ $_.TargetId } } + $CompleteRequest = $_ | Select-Object *, + @{Name = 'AssignedTo'; Expression = { $users | Where-Object -Property id -EQ $_.TargetId } }, + @{Name = 'EmergencyLocation'; Expression = { if ($_.LocationId) { $LocationLookup[[string]$_.LocationId] } } } if ($CompleteRequest.AcquisitionDate) { $CompleteRequest.AcquisitionDate = $_.AcquisitionDate -split 'T' | Select-Object -First 1 } else { diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Administration/Tenant/Invoke-ListTenants.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Administration/Tenant/Invoke-ListTenants.ps1 index bc9e541f0dd0a..78b5577f9ce73 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Administration/Tenant/Invoke-ListTenants.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Administration/Tenant/Invoke-ListTenants.ps1 @@ -145,7 +145,14 @@ function Invoke-ListTenants { @{Name = 'portal_intune'; Expression = { "https://intune.microsoft.com/$($_.defaultDomainName)" } }, @{Name = 'portal_security'; Expression = { "https://security.microsoft.com/?tid=$($_.customerId)" } }, @{Name = 'portal_compliance'; Expression = { "https://purview.microsoft.com/?tid=$($_.customerId)" } }, - @{Name = 'portal_sharepoint'; Expression = { "/api/ListSharePointAdminUrl?tenantFilter=$($_.defaultDomainName)" } }, + @{Name = 'portal_sharepoint'; Expression = { + # Unlike the other portals, SharePoint's host name cannot be derived from the + # tenant - it has to be resolved through Graph. Hand out the cached URL when we + # have one so the link behaves like every other portal, and fall back to the + # endpoint that resolves (and caches) it on first use. + if ($_.SharepointAdminUrl) { $_.SharepointAdminUrl } else { "/api/ListSharePointAdminUrl?tenantFilter=$($_.defaultDomainName)" } + } + }, @{Name = 'portal_platform'; Expression = { "https://admin.powerplatform.microsoft.com/account/login/$($_.customerId)" } }, @{Name = 'portal_bi'; Expression = { "https://app.powerbi.com/admin-portal?ctid=$($_.customerId)" } } } diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-ExecCAExclusion.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-ExecCAExclusion.ps1 index 8f2c3ffaf4031..6561156b262df 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-ExecCAExclusion.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-ExecCAExclusion.ps1 @@ -35,11 +35,17 @@ function Invoke-ExecCAExclusion { throw "Policy with ID $PolicyId not found in tenant $TenantFilter." } - $VacationGroupName = "Vacation Exclusion - $($Policy.displayName)" - $escapedGroupName = $VacationGroupName -replace "'", "''" - $groupFilter = "displayName eq '$escapedGroupName' and mailEnabled eq false and securityEnabled eq true" - $encodedGroupFilter = [System.Uri]::EscapeDataString($groupFilter) - $VacationGroups = @(New-GraphGetRequest -uri "https://graph.microsoft.com/beta/groups?`$select=id,displayName&`$filter=$encodedGroupFilter" -tenantid $TenantFilter) + $GroupNamePrefix = 'Vacation Exclusion - ' + $VacationGroupName = "$GroupNamePrefix$($Policy.displayName)" + if ($VacationGroupName.Length -gt 120) { + $PolicyIdSuffix = " [$($Policy.id.Substring(0, 8))]" + $MaxNameLength = 120 - $GroupNamePrefix.Length - $PolicyIdSuffix.Length + $VacationGroupName = '{0}{1}{2}' -f $GroupNamePrefix, $Policy.displayName.Substring(0, $MaxNameLength).TrimEnd(), $PolicyIdSuffix + } + + $EscapedGroupName = $VacationGroupName -replace "'", "''" + $GroupFilter = [System.Uri]::EscapeDataString("displayName eq '$EscapedGroupName' and mailEnabled eq false and securityEnabled eq true") + $VacationGroups = @(New-GraphGetRequest -uri "https://graph.microsoft.com/beta/groups?`$select=id,displayName&`$count=true&`$filter=$GroupFilter" -tenantid $TenantFilter -ComplexFilter) $DuplicateGroupWarning = $null if ($VacationGroups.Count -eq 0) { @@ -64,7 +70,7 @@ function Invoke-ExecCAExclusion { } if ($Policy.conditions.users.excludeGroups -notcontains $GroupId) { - Set-CIPPCAExclusion -TenantFilter $TenantFilter -ExclusionType 'Add' -PolicyId $PolicyId -Groups @{ value = @($GroupId); addedFields = @{ displayName = @("Vacation Exclusion - $($Policy.displayName)") } } -Headers $Headers + Set-CIPPCAExclusion -TenantFilter $TenantFilter -ExclusionType 'Add' -PolicyId $PolicyId -Groups @{ value = @($GroupId); addedFields = @{ displayName = @($VacationGroupName) } } -Headers $Headers } $PolicyName = $Policy.displayName diff --git a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/GDAP/Invoke-ExecGDAPInvite.ps1 b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/GDAP/Invoke-ExecGDAPInvite.ps1 index 98021647278a5..d5472f996b01f 100644 --- a/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/GDAP/Invoke-ExecGDAPInvite.ps1 +++ b/Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/Tenant/GDAP/Invoke-ExecGDAPInvite.ps1 @@ -106,7 +106,7 @@ function Invoke-ExecGDAPInvite { } } catch { $Message = 'Error creating GDAP relationship, failed at step: ' + $Step - Write-Host "GDAP ERROR: $($_.InvocationInfo.PositionMessage)" + Write-Information "GDAP ERROR: on line $($_.InvocationInfo.PositionMessage) | $(($_ | ConvertTo-Json -Compress))" if ($Step -eq 'Creating GDAP relationship' -and $_.Exception.Message -match 'The user (principal) does not have the required permissions to perform the specified action on the resource.') { $Message = 'Error creating GDAP relationship, ensure that all users have MFA enabled and enforced without exception. Please see the Microsoft Partner Security Requirements documentation for more information. https://learn.microsoft.com/en-us/partner-center/security/partner-security-requirements' diff --git a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneAppTemplateDeploy.ps1 b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneAppTemplateDeploy.ps1 index cc1b5013d9e57..a416b4879cfe9 100644 --- a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneAppTemplateDeploy.ps1 +++ b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneAppTemplateDeploy.ps1 @@ -52,6 +52,9 @@ function Invoke-CIPPStandardIntuneAppTemplateDeploy { $Table = Get-CIPPTable -TableName 'templates' $MissingApps = [System.Collections.Generic.List[PSCustomObject]]::new() $CurrentAppNames = @($CurrentApps.displayName) + # Office is a singleton per tenant that Graph always names 'Microsoft 365 Apps for Windows 10 + # and later', which never matches the name the template stores, so track it by type instead. + $OfficeDeployed = @($CurrentApps | Where-Object { $_.'@odata.type' -eq '#microsoft.graph.officeSuiteApp' }).Count -gt 0 foreach ($TemplateId in $TemplateIds) { $Entity = Get-CIPPAzDataTableEntity @Table -Filter "PartitionKey eq 'AppTemplate' and RowKey eq '$TemplateId'" @@ -69,14 +72,17 @@ function Invoke-CIPPStandardIntuneAppTemplateDeploy { for ($i = 0; $i -lt $AppTypes.Count; $i++) { $RawConfig = $AppConfigs[$i] $Config = if ($RawConfig -is [string]) { $RawConfig | ConvertFrom-Json -Depth 100 } else { $RawConfig } + $AppType = [string]$AppTypes[$i] $DisplayName = [string]($Config.ApplicationName ?? $Config.displayName ?? $AppNames[$i]) - if ($DisplayName -notin $CurrentAppNames) { + $IsDeployed = if ($AppType -eq 'officeApp') { $OfficeDeployed } else { $DisplayName -in $CurrentAppNames } + + if (-not $IsDeployed) { $MissingApps.Add([PSCustomObject]@{ TemplateId = [string]$TemplateId TemplateName = [string]$TemplateName AppName = [string]$DisplayName - AppType = [string]$AppTypes[$i] + AppType = $AppType Config = $Config }) } diff --git a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 index 2158e121f8c21..fa01079680b95 100644 --- a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 +++ b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 @@ -78,18 +78,7 @@ function Invoke-CIPPStandardIntuneTemplate { # Fallback: infer type from RAWJson content when stored template has no Type if (-not $TemplateType) { - try { - $parsedRaw = $rawJsonFromTemplate | ConvertFrom-Json -ErrorAction SilentlyContinue - $odataType = $parsedRaw.'@odata.type' - $TemplateType = if ($null -ne $parsedRaw.settings -and $null -ne $parsedRaw.technologies) { 'Catalog' } - elseif ($null -ne $parsedRaw.scheduledActionsForRule -or $odataType -match 'CompliancePolicy') { 'deviceCompliancePolicies' } - elseif ($odataType -match 'windowsDriverUpdateProfile') { 'windowsDriverUpdateProfiles' } - elseif ($odataType -match 'ManagedApp|managedAppProtection') { 'AppProtection' } - elseif ($odataType -match 'deviceConfiguration|#microsoft\.graph\.\w+Configuration$') { 'Device' } - else { $null } - } catch { - $TemplateType = $null - } + $TemplateType = Get-CIPPIntuneTemplateType -Type $TemplateType -RawJson $rawJsonFromTemplate if ($TemplateType) { Write-Information "[IntuneTemplate][$Tenant] Inferred template type '$TemplateType' from content for '$displayname'" } else { diff --git a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardTeamsDisableResourceAccounts.ps1 b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardTeamsDisableResourceAccounts.ps1 index cb58fe3f1a7f4..522283712d966 100644 --- a/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardTeamsDisableResourceAccounts.ps1 +++ b/Modules/CIPPStandards/Public/Standards/Invoke-CIPPStandardTeamsDisableResourceAccounts.ps1 @@ -40,9 +40,18 @@ function Invoke-CIPPStandardTeamsDisableResourceAccounts { } try { - # Get-CsOnlineApplicationInstance returns the Auto Attendant / Call Queue resource accounts. - # Without -First it only returns the first page, so request a large page explicitly. - $ResourceAccounts = @(New-TeamsRequest -TenantFilter $Tenant -Cmdlet 'Get-CsOnlineApplicationInstance' -CmdParams @{ First = 1000 }) + # Teams.PlatformService returns the Auto Attendant / Call Queue resource accounts along + # with the applicationId that distinguishes the two. Graph's admin/teams/userConfigurations + # does not surface resource accounts at all, so this surface is the only source. + $ResourceAccounts = [System.Collections.Generic.List[object]]::new() + $SkipToken = $null + do { + $QueryParameters = @{ pageSize = 100 } + if ($SkipToken) { $QueryParameters['skipToken'] = $SkipToken } + $Page = New-TeamsRequestV2 -TenantFilter $Tenant -Path 'Teams.PlatformService/v2/ApplicationInstances' -QueryParameters $QueryParameters + foreach ($Instance in @($Page.applicationInstances)) { $ResourceAccounts.Add($Instance) } + $SkipToken = $Page.skipToken + } while ($SkipToken) # Cross-reference the cached user objects for sign-in state; cloud-only accounts only, # as the account state of synced accounts is managed in the on-premises AD. @@ -58,13 +67,12 @@ function Invoke-CIPPStandardTeamsDisableResourceAccounts { } $EnabledResourceAccounts = foreach ($Account in $ResourceAccounts) { - if ($Account.ObjectId -and $EnabledUserIds -contains $Account.ObjectId) { + if ($Account.objectId -and $EnabledUserIds -contains $Account.objectId) { [PSCustomObject]@{ - DisplayName = $Account.DisplayName - UserPrincipalName = $Account.UserPrincipalName - ObjectId = $Account.ObjectId - ApplicationType = $ApplicationTypes[[string]$Account.ApplicationId] ?? 'Custom' - PhoneNumber = $Account.PhoneNumber + DisplayName = $Account.displayName + UserPrincipalName = $Account.userPrincipalName + ObjectId = $Account.objectId + ApplicationType = $ApplicationTypes[[string]$Account.applicationId] ?? 'Custom' } } } @@ -119,6 +127,11 @@ function Invoke-CIPPStandardTeamsDisableResourceAccounts { Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to refresh user cache after remediation: $($_.Exception.Message)" -sev Warning } } + } elseif ($ResourceAccounts.Count -eq 0) { + # Distinct from "all blocked": Teams classifies an account as a resource account based + # on licensing, so an account carrying user licences (or none) drops out of this list + # entirely. Saying "already blocked" there would be a false pass. + Write-LogMessage -API 'Standards' -tenant $Tenant -message 'No Teams resource accounts were returned for this tenant, so there was nothing to evaluate. If Auto Attendants or Call Queues exist, check that their resource accounts hold the Microsoft Teams Phone Resource Account license.' -sev Info } else { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Sign-in is already blocked for all Teams resource accounts.' -sev Info } @@ -128,6 +141,8 @@ function Invoke-CIPPStandardTeamsDisableResourceAccounts { if ($EnabledResourceAccounts.Count -gt 0) { Write-StandardsAlert -message "Teams resource accounts with sign-in enabled: $($EnabledResourceAccounts.Count)" -object $EnabledResourceAccounts -tenant $Tenant -standardName 'TeamsDisableResourceAccounts' -standardId $Settings.standardId Write-LogMessage -API 'Standards' -tenant $Tenant -message "Teams resource accounts with sign-in enabled: $($EnabledResourceAccounts.Count)" -sev Info + } elseif ($ResourceAccounts.Count -eq 0) { + Write-LogMessage -API 'Standards' -tenant $Tenant -message 'No Teams resource accounts were returned for this tenant, so there was nothing to evaluate.' -sev Info } else { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Sign-in is blocked for all Teams resource accounts.' -sev Info } diff --git a/Modules/MicrosoftTeams/7.8.0/GetTeamSettings.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/GetTeamSettings.format.ps1xml deleted file mode 100644 index beed66c14b8b5..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/GetTeamSettings.format.ps1xml +++ /dev/null @@ -1,268 +0,0 @@ - - - - TeamSettings - - Microsoft.Teams.PowerShell.TeamsCmdlets.Model.TeamSettings - - - - - 36 - - - 18 - - - 11 - - - 9 - - - 18 - - - 18 - - - - - - - GroupId - - - DisplayName - - - Visibility - - - Archived - - - MailNickName - - - Description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/LICENSE.txt b/Modules/MicrosoftTeams/7.8.0/LICENSE.txt deleted file mode 100644 index 8b9ecf6f57348..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/LICENSE.txt +++ /dev/null @@ -1,76 +0,0 @@ -Your use of the Microsoft Teams PowerShell is subject to the terms and conditions of the agreement you agreed to when you signed up for the Microsoft Teams subscription and by which you acquired a license for the software. For instance, if you are: - -• a volume license customer, use of this software is subject to your volume license agreement. -• a Microsoft Online Subscription customer, use of this software is subject to the Microsoft Online Subscription agreement. - -You may not use the service or software if you have not validly acquired a license from Microsoft or its licensed distributors. - -----------------START OF THIRD PARTY NOTICE-------------------------------- -The software includes the Polly library ("Polly"). The New BSD License set out below is provided for informational purposes only. It is not the license that governs any part of the software. - -Copyright (c) 2015-2020, App vNext -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of App vNext nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----END OF LICENSE--------- - -The software includes the Polly.Contrib.WaitAndRetry library ("Polly-Contrib"). The New BSD License set out below is provided for informational purposes only. It is not the license that governs any part of the software. - -Copyright (c) 2015-2020, App vNext and contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of App vNext nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----END OF LICENSE--------- - -The software includes Newtonsoft.Json. The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. - -Newtonsoft.Json - -The MIT License (MIT) -Copyright (c) 2007 James Newton-King -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----END OF LICENSE--------- - --------------END OF THIRD PARTY NOTICE---------------------------------------- \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml deleted file mode 100644 index e0777e23e4ca7..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml deleted file mode 100644 index 445c278c69f73..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml +++ /dev/null @@ -1,18352 +0,0 @@ - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.XdsConfiguration - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.XdsConfiguration - - - - - - - - - - - - - - - Identity - - - BeforeJson - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BridgeId - - - City - - - IsShared - - - Number - - - PrimaryLanguage - - - SecondaryLanguages - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadAssignedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadAssignedPlan - - - - - - - - - - - - - - - - - - - - - AssignedDateTime - - - CapabilityStatus - - - Service - - - ServicePlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedPlan1 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedPlan1 - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignedTimestamp - - - Capability - - - CapabilityStatus - - - ServiceInstance - - - ServicePlanId - - - SubscribedPlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LoginPwd - - - LoginUserName - - - Type - - - AdminApiUrl - - - CookieAuthUrl - - - EssApiUrl - - - FederatedAuthUrl - - - RetailWebApiUrl - - - SiteManagerUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LoginPwd - - - LoginUserName - - - Type - - - ApiUrl - - - AppKey - - - ClientId - - - ClientSecret - - - SsoUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportResponseReferenceLinks - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportResponseReferenceLinks - - - - - - - - - - - - Item - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantAssignedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantAssignedPlan - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignedTimestamp - - - Capability - - - CapabilityStatus - - - ServiceInstance - - - ServicePlanId - - - SubscribedPlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedTelephoneNumber - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedTelephoneNumber - - - - - - - - - - - - - - - AssignmentCategory - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EffectivePolicyAssignment - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EffectivePolicyAssignment - - - - - - - - - - - - PolicyType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Number - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Number - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ActivationState - - - BridgeNumber - - - CallingProfile - - - CityCode - - - CivicAddressId - - - DisplayNumber - - - InventoryType - - - IsManagedByServiceDesk - - - LocationId - - - O365Region - - - PortInOrderStatus - - - SourceType - - - TargetType - - - TenantId - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PolicyAssignment - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PolicyAssignment - - - - - - - - - - - - - - - - - - - - - DisplayName - - - AssignmentType - - - PolicyId - - - GroupId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ProvisionedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ProvisionedPlan - - - - - - - - - - - - - - - - - - CapabilityStatus - - - ProvisioningStatus - - - Service - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAssignedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAssignedPlan - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignedTimestamp - - - Capability - - - CapabilityStatus - - - GracePeriodExpiryDate - - - IsInGracePeriod - - - ServiceInstance - - - ServicePlanId - - - SubscribedPlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserPolicyDefinition - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserPolicyDefinition - - - - - - - - - - - - - - - Authority - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserProvisionedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserProvisionedPlan - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignedTimestamp - - - Capability - - - CapabilityStatus - - - ProvisionedTimestamp - - - ProvisioningStatus - - - ServiceInstance - - - ServicePlanId - - - SubscribedPlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserValidationError - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserValidationError - - - - - - - - - - - - - - - ErrorCode - - - ErrorDescription - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadAssignedLicense - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadAssignedLicense - - - - - - - - - - - - - - - DisabledPlan - - - SkuId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadProvisionedPlans - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadProvisionedPlans - - - - - - - - - - - - - - - - - - CapabilityStatus - - - ProvisioningStatus - - - Service - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadProvisionErrors - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadProvisionErrors - - - - - - - - - - - - - - - - - - - - - ErrorDetail - - - Resolved - - - Service - - - Timestamp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadUserAssignedPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadUserAssignedPlan - - - - - - - - - - - - - - - - - - - - - AssignedTimestamp - - - CapabilityStatus - - - Service - - - ServicePlanId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadVerifiedDomains - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AadVerifiedDomains - - - - - - - - - - - - - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Agent - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Agent - - - - - - - - - - - - - - - ObjectId - - - OptIn - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgent - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BotHandle - - - CallingApiVersion - - - Channel - - - Cid - - - IsTeamsIvrEnabled - - - IsTeamsVoiceEnabled - - - MessagingApiVersion - - - MsaAppId - - - MsaAppTenantId - - - ProviderId - - - PublishState - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentConfigurationDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentConfigurationDtoModel - - - - - - - - - - - - - - - - - - - - - - - - AgentId - - - AgentTargetTagTemplateId - - - AgentType - - - ConfigurationId - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentDescription - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentDescription - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AgentId - - - AgentType - - - Capability - - - Category - - - Description - - - DeveloperName - - - DeveloperPrivacyStatement - - - DeveloperTermsOfService - - - Disclosure - - - DisplayName - - - ETag - - - Extra - - - IsTrusted - - - Keyword - - - PublisherCountry - - - PublisherEmail - - - SkypeDisplayName - - - StarRating - - - SupportedLocale - - - UserTileExtraLargeUrl - - - UserTileLargeUrl - - - UserTileMediumUrl - - - UserTileSmallUrl - - - UserTileStaticUrl - - - Webpage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentQueryResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentQueryResult - - - - - - - - - - - - - - - AgentCount - - - ContinuationToken - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItem - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CorrelationId - - - Message - - - Target - - - TimeStampUtc - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemAutoGenerated - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemAutoGenerated - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CorrelationId - - - Message - - - Target - - - TimeStampUtc - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemAutoGenerated2 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemAutoGenerated2 - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CorrelationId - - - Message - - - Target - - - TimeStampUtc - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemObject - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApiErrorItemObject - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CorrelationId - - - Message - - - Target - - - TimeStampUtc - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AppAccessRequestConfig - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AppAccessRequestConfig - - - - - - - - - - - - - - - AdminInstructionMessage - - - ApprovalPortalUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationEndpointRoutingDetails - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationEndpointRoutingDetails - - - - - - - - - - - - - - - - - - ApplicationEndpointId - - - ApplicationId - - - CallbackUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstance - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstance - - - - - - - - - - - - - - - - - - Id - - - Name - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceAssociation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceAssociation - - - - - - - - - - - - - - - - - - - - - ApplicationConfigurationType - - - CallPriority - - - ConfigurationId - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceAutoGenerated - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceAutoGenerated - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AcsResourceId - - - ApplicationId - - - DisplayName - - - ObjectId - - - PhoneNumber - - - TenantId - - - UserPrincipalName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceCreateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceCreateRequest - - - - - - - - - - - - - - - - - - ApplicationId - - - DisplayName - - - UserPrincipalName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceSearchResults - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceSearchResults - - - - - - - - - - - - SkipToken - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceUpdateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstanceUpdateRequest - - - - - - - - - - - - - - - - - - - - - AcsResourceId - - - ApplicationId - - - DisplayName - - - OnpremPhoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationObject - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationObject - - - - - - - - - - - - - - - - - - - - - Context - - - Id - - - IsAppLevelAutoInstallEnabled - - - IsEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedLicense - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AssignedLicense - - - - - - - - - - - - - - - DisabledPlan - - - SkuId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AudioFile - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AudioFile - - - - - - - - - - - - - - - - - - DownloadUri - - - FileName - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AudioFileDto - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AudioFileDto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApplicationId - - - GroupId - - - Id - - - Content - - - ContextId - - - ConvertedFilename - - - DeletionTimestampOffset - - - DownloadUri - - - DownloadUriExpiryTimestampOffset - - - Duration - - - LastAccessedTimestampOffset - - - OriginalFilename - - - UploadedTimestampOffset - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoAttendant - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoAttendant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApplicationInstance - - - AuthorizedUser - - - AutoRecordingTemplateId - - - DialByNameResourceId - - - HideAuthorizedUser - - - Id - - - LanguageId - - - MainlineAttendantAgentVoiceId - - - MainlineAttendantEnabled - - - Name - - - TenantId - - - TimeZoneId - - - UserNameExtension - - - VoiceId - - - VoiceResponseEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoRecordingTemplateDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoRecordingTemplateDtoModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AgentViewPermission - - - AutoRecordingAnnouncementAudioFileId - - - AutoRecordingAnnouncementAudioFileName - - - AutoRecordingAnnouncementTextToSpeechPrompt - - - Description - - - Id - - - Name - - - RecordingDocumentOwner - - - RecordingEnabled - - - SharePointHostName - - - SharePointSiteName - - - TranscriptionEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchAssignBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchAssignBody - - - - - - - - - - - - Identity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchAssignPayload - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchAssignPayload - - - - - - - - - - - - Identity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchJobStatus - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchJobStatus - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OperationId - - - OperationName - - - OverallStatus - - - CreatedBy - - - CreatedTime - - - CompletedTime - - - CompletedCount - - - ErrorCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchOperationId - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BatchOperationId - - - - - - - - - - - - OperationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BeginMoveRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BeginMoveRequestBody - - - - - - - - - - - - - - - MajorVersion - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BridgeUpdateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BridgeUpdateRequest - - - - - - - - - - - - - - - - - - DefaultServiceNumber - - - Name - - - SetDefault - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CacheClearRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CacheClearRequest - - - - - - - - - - - - - - - KeysToDelete - - - Region - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CacheClearResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CacheClearResponse - - - - - - - - - - - - - - - FailedKeys - - - Region - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallableEntity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallableEntity - - - - - - - - - - - - - - - - - - - - - - - - - - - CallPriority - - - EnableSharedVoicemailSystemPromptSuppression - - - EnableTranscription - - - Id - - - SharedVoicemailHistoryTemplateId - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallFlow - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallFlow - - - - - - - - - - - - - - - - - - - - - ForceListenMenuEnabled - - - Id - - - Name - - - RingResourceAccountDelegate - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupDetails - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupDetails - - - - - - - - - - - - - - - - - - Delay - - - Order - - - Target - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupMembershipDetails - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupMembershipDetails - - - - - - - - - - - - - - - CallGroupOwnerId - - - NotificationSetting - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupMembershipSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallGroupMembershipSettings - - - - - - - - - - - - CallGroupNotificationOverride - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallHandlingAssociation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallHandlingAssociation - - - - - - - - - - - - - - - - - - - - - - - - CallFlowId - - - Enabled - - - Priority - - - ScheduleId - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallQueue - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallQueue - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AgentAlertTime - - - AgentsCapped - - - AgentsInSyncWithDistributionList - - - AllowOptOut - - - ApplicationInstance - - - AuthorizedUser - - - AutoRecordingTemplateId - - - CallToAgentRatioThresholdBeforeOfferingCallback - - - CallbackOfferAudioFilePromptFileName - - - CallbackOfferAudioFilePromptResourceId - - - CallbackOfferTextToSpeechPrompt - - - CallbackRequestDtmf - - - ComplianceRecordingForCallQueueTemplateId - - - ConferenceMode - - - CustomAudioFileAnnouncementForCr - - - CustomAudioFileAnnouncementForCrFailure - - - Description - - - DistributionList - - - DistributionListsLastExpanded - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - - EnableNoAgentSharedVoicemailTranscription - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - - EnableOverflowSharedVoicemailTranscription - - - EnableResourceAccountsForObo - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - - EnableTimeoutSharedVoicemailTranscription - - - HideAuthorizedUser - - - Identity - - - IsCallbackEnabled - - - LanguageId - - - MusicOnHoldFileDownloadUri - - - MusicOnHoldFileName - - - MusicOnHoldResourceId - - - Name - - - NoAgentAction - - - NoAgentActionCallPriority - - - NoAgentApplyTo - - - NoAgentDisconnectAudioFilePrompt - - - NoAgentDisconnectAudioFilePromptFileName - - - NoAgentDisconnectTextToSpeechPrompt - - - NoAgentRedirectPersonAudioFilePrompt - - - NoAgentRedirectPersonAudioFilePromptFileName - - - NoAgentRedirectPersonTextToSpeechPrompt - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - - NoAgentRedirectPhoneNumberAudioFilePromptFileName - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - - NoAgentRedirectVoiceAppAudioFilePrompt - - - NoAgentRedirectVoiceAppAudioFilePromptFileName - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - - NoAgentRedirectVoicemailAudioFilePrompt - - - NoAgentRedirectVoicemailAudioFilePromptFileName - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - - NoAgentSharedVoicemailAudioFilePrompt - - - NoAgentSharedVoicemailAudioFilePromptFileName - - - NoAgentSharedVoicemailTextToSpeechPrompt - - - NumberOfCallsInQueueBeforeOfferingCallback - - - OverflowAction - - - OverflowActionCallPriority - - - OverflowDisconnectAudioFilePrompt - - - OverflowDisconnectAudioFilePromptFileName - - - OverflowDisconnectTextToSpeechPrompt - - - OverflowRedirectPersonAudioFilePrompt - - - OverflowRedirectPersonAudioFilePromptFileName - - - OverflowRedirectPersonTextToSpeechPrompt - - - OverflowRedirectPhoneNumberAudioFilePrompt - - - OverflowRedirectPhoneNumberAudioFilePromptFileName - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - - OverflowRedirectVoiceAppAudioFilePrompt - - - OverflowRedirectVoiceAppAudioFilePromptFileName - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - - OverflowRedirectVoicemailAudioFilePrompt - - - OverflowRedirectVoicemailAudioFilePromptFileName - - - OverflowRedirectVoicemailTextToSpeechPrompt - - - OverflowSharedVoicemailAudioFilePrompt - - - OverflowSharedVoicemailAudioFilePromptFileName - - - OverflowSharedVoicemailTextToSpeechPrompt - - - OverflowThreshold - - - PresenceAwareRouting - - - RoutingMethod - - - ServiceLevelThresholdResponseTimeInSecond - - - SharedCallQueueHistoryTemplateId - - - ShiftsSchedulingGroupId - - - ShiftsTeamId - - - ShouldOverwriteCallableChannelProperty - - - TenantId - - - TextAnnouncementForCr - - - TextAnnouncementForCrFailure - - - ThreadId - - - TimeoutAction - - - TimeoutActionCallPriority - - - TimeoutDisconnectAudioFilePrompt - - - TimeoutDisconnectAudioFilePromptFileName - - - TimeoutDisconnectTextToSpeechPrompt - - - TimeoutRedirectPersonAudioFilePrompt - - - TimeoutRedirectPersonAudioFilePromptFileName - - - TimeoutRedirectPersonTextToSpeechPrompt - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - - TimeoutRedirectPhoneNumberAudioFilePromptFileName - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - - TimeoutRedirectVoiceAppAudioFilePrompt - - - TimeoutRedirectVoiceAppAudioFilePromptFileName - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - - TimeoutRedirectVoicemailAudioFilePrompt - - - TimeoutRedirectVoicemailAudioFilePromptFileName - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - - TimeoutSharedVoicemailAudioFilePrompt - - - TimeoutSharedVoicemailAudioFilePromptFileName - - - TimeoutSharedVoicemailTextToSpeechPrompt - - - TimeoutThreshold - - - UseDefaultMusicOnHold - - - User - - - WaitTimeBeforeOfferingCallbackInSecond - - - WelcomeMusicFileDownloadUri - - - WelcomeMusicFileName - - - WelcomeMusicResourceId - - - WelcomeTextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallQueueStatistic - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CallQueueStatistic - - - - - - - - - - - - - - - StatName - - - StatValue - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CancellationToken - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CancellationToken - - - - - - - - - - - - - - - CanBeCanceled - - - IsCancellationRequested - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ChannelTabTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ChannelTabTemplate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - Key - - - MessageId - - - Name - - - SortOrderIndex - - - TeamsAppId - - - WebUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ChannelTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ChannelTemplate - - - - - - - - - - - - - - - - - - - - - Description - - - DisplayName - - - Id - - - IsFavoriteByDefault - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CivicAddress - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CivicAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AdditionalLocationInfo - - - City - - - CityAlias - - - CivicAddressId - - - CompanyName - - - CompanyTaxId - - - Confidence - - - CountryOrRegion - - - CountyOrDistrict - - - DefaultLocationId - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - Latitude - - - Longitude - - - NumberOfTelephoneNumbers - - - NumberOfVoiceUsers - - - PartnerId - - - PostDirectional - - - PostalCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - TenantId - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ClearScheduleRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ClearScheduleRequest - - - - - - - - - - - - - - - - - - - - - - - - ClearSchedulingGroup - - - DesignatedActorId - - - EntityType - - - TeamId - - - TimeZone - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudAudioConferencingProviderInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudAudioConferencingProviderInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Default - - - Domain - - - Name - - - ParticipantPassCode - - - TollFreeNumber - - - TollNumber - - - Url - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudCallDataConnection - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudCallDataConnection - - - - - - - - - - - - Token - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudMSRtcServiceAttributes - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CloudMSRtcServiceAttributes - - - - - - - - - - - - - - - - - - - - - ApplicationOption - - - DeploymentLocator - - - HideFromAddressList - - - OptionFlag - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CompanyPartnership - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CompanyPartnership - - - - - - - - - - - - - - - - - - - - - LoggingEnabled - - - PartnerContextId - - - PartnerType - - - SupportPartner - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CompleteMoveRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CompleteMoveRequestBody - - - - - - - - - - - - - - - MajorVersion - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ComplianceRecordingForCallQueueDomainModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ComplianceRecordingForCallQueueDomainModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BotConcurrentInvitationCount - - - BotId - - - BotRequiredBeforeCall - - - BotRequiredDuringCall - - - Description - - - Id - - - Name - - - PairedApplication - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ComplianceRecordingForCallQueueDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ComplianceRecordingForCallQueueDtoModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BotId - - - ConcurrentInvitationCount - - - Description - - - Id - - - Name - - - PairedApplication - - - RequiredBeforeCall - - - RequiredDuringCall - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingBridge - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingBridge - - - - - - - - - - - - - - - - - - - - - - - - Identity - - - IsDefault - - - IsShared - - - Name - - - Region - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowPstnOnlyMeeting - - - AllowTollFreeDialIn - - - BridgeId - - - BridgeName - - - ConferenceId - - - ObjectId - - - ServiceNumber - - - TollFreeServiceNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingUser - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingUser - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowPstnOnlyMeeting - - - AllowTollFreeDialIn - - - BridgeId - - - BridgeName - - - ConferenceId - - - DefaultTollFreeNumber - - - DefaultTollNumber - - - DisplayName - - - Identity - - - LeaderPin - - - ServiceNumber - - - SipAddress - - - TenantId - - - TollFreeServiceNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingUserSearchResults - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingUserSearchResults - - - - - - - - - - - - NextLink - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConfigApiBasedCmdletsIdentity - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AppId - - - AudioFileId - - - Bssid - - - CallerNumber - - - ChassisId - - - CivicAddressId - - - ConfigName - - - ConfigType - - - ConnectionId - - - ConnectorInstanceId - - - Country - - - DialedNumber - - - EndpointId - - - ErrorReportId - - - GroupId - - - Id - - - Identity - - - Locale - - - LocationId - - - MemberId - - - Name - - - ObjectId - - - OdataId - - - OperationId - - - OrchestrationId - - - OrderId - - - OwnerId - - - PackageName - - - PartitionKey - - - PolicyType - - - PublicTemplateLocale - - - Region - - - SubnetId - - - Table - - - TeamId - - - TelephoneNumber - - - TenantId - - - UserId - - - Version - - - WfmTeamId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConfigDefinition - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConfigDefinition - - - - - - - - - - - - - - - ConfigName - - - ConfigType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceBaseRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceBaseRequest - - - - - - - - - - - - - - - ConnectorId - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - ConnectionId - - - ConnectorAdminEmail - - - DesignatedActorId - - - Name - - - State - - - SyncFrequencyInMin - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorInstanceResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ConnectionId - - - ConnectorAdminEmail - - - ConnectorId - - - CreatedDateTime - - - DesignatedActorId - - - Etag - - - Id - - - LastModifiedDateTime - - - Name - - - State - - - SyncFrequencyInMin - - - TenantId - - - WorkforceIntegrationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorResponse - - - - - - - - - - - - - - - - - - Id - - - Name - - - Version - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - AdminApiUrl - - - CookieAuthUrl - - - EssApiUrl - - - FederatedAuthUrl - - - RetailWebApiUrl - - - SiteManagerUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - - - - - - - - - - - - - - - - - LoginPwd - - - LoginUserName - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AdminApiUrl - - - ApiUrl - - - AppKey - - - ClientId - - - CookieAuthUrl - - - EssApiUrl - - - FederatedAuthUrl - - - RetailWebApiUrl - - - SiteManagerUrl - - - SsoUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsResponse - - - - - - - - - - - - - - - - - - ApiUrl - - - ClientId - - - SsoUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectPowershellTelemetry - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectPowershellTelemetry - - - - - - - - - - - - - - - - - - - - - ConfigApiPowershellModuleVersion - - - MicrosoftTeamsPsVersion - - - SfBOnlineConnectorPsversion - - - TeamsModuleAuthTypeUsed - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateApplicationInstanceAssociationsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateApplicationInstanceAssociationsRequest - - - - - - - - - - - - - - - - - - - - - CallPriority - - - ConfigurationId - - - ConfigurationType - - - EndpointsId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateAppointmentBookingFlowRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateAppointmentBookingFlowRequest - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - ApiDefinition - - - CallerAuthenticationMethod - - - Description - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateAutoAttendantRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateAutoAttendantRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AuthorizedUser - - - AutoRecordingTemplateId - - - HideAuthorizedUser - - - LanguageId - - - MainlineAttendantAgentVoiceId - - - MainlineAttendantEnabled - - - Name - - - TimeZoneId - - - UserNameExtension - - - VoiceId - - - VoiceResponseEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallableEntityRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallableEntityRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - CallPriority - - - EnableSharedVoicemailSystemPromptSuppression - - - EnableTranscription - - - Id - - - SharedVoicemailHistoryTemplateId - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallFlowRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallFlowRequest - - - - - - - - - - - - - - - - - - ForceListenMenuEnabled - - - Name - - - RingResourceAccountDelegate - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallHandlingAssociationRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallHandlingAssociationRequest - - - - - - - - - - - - - - - - - - - - - CallFlowId - - - Enabled - - - ScheduleId - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallQueueRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateCallQueueRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AgentAlertTime - - - AllowOptOut - - - AuthorizedUser - - - AutoRecordingTemplateId - - - CallToAgentRatioThresholdBeforeOfferingCallback - - - CallbackEmailNotificationTarget - - - CallbackOfferAudioFilePromptResourceId - - - CallbackOfferTextToSpeechPrompt - - - CallbackRequestDtmf - - - ComplianceRecordingForCallQueueId - - - ConferenceMode - - - CustomAudioFileAnnouncementForCr - - - CustomAudioFileAnnouncementForCrFailure - - - DistributionList - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - - EnableNoAgentSharedVoicemailTranscription - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - - EnableOverflowSharedVoicemailTranscription - - - EnableResourceAccountsForObo - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - - EnableTimeoutSharedVoicemailTranscription - - - HideAuthorizedUser - - - IsCallbackEnabled - - - LanguageId - - - MusicOnHoldAudioFileId - - - Name - - - NoAgentAction - - - NoAgentActionCallPriority - - - NoAgentActionTarget - - - NoAgentApplyTo - - - NoAgentDisconnectAudioFilePrompt - - - NoAgentDisconnectTextToSpeechPrompt - - - NoAgentRedirectPersonAudioFilePrompt - - - NoAgentRedirectPersonTextToSpeechPrompt - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - - NoAgentRedirectVoiceAppAudioFilePrompt - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - - NoAgentRedirectVoicemailAudioFilePrompt - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - - NoAgentSharedVoicemailAudioFilePrompt - - - NoAgentSharedVoicemailTextToSpeechPrompt - - - NumberOfCallsInQueueBeforeOfferingCallback - - - OboResourceAccountId - - - OverflowAction - - - OverflowActionCallPriority - - - OverflowActionTarget - - - OverflowDisconnectAudioFilePrompt - - - OverflowDisconnectTextToSpeechPrompt - - - OverflowRedirectPersonAudioFilePrompt - - - OverflowRedirectPersonTextToSpeechPrompt - - - OverflowRedirectPhoneNumberAudioFilePrompt - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - - OverflowRedirectVoiceAppAudioFilePrompt - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - - OverflowRedirectVoicemailAudioFilePrompt - - - OverflowRedirectVoicemailTextToSpeechPrompt - - - OverflowSharedVoicemailAudioFilePrompt - - - OverflowSharedVoicemailTextToSpeechPrompt - - - OverflowThreshold - - - PresenceAwareRouting - - - RoutingMethod - - - ServiceLevelThresholdResponseTimeInSecond - - - SharedCallQueueHistoryId - - - ShiftsSchedulingGroupId - - - ShiftsTeamId - - - ShouldOverwriteCallableChannelProperty - - - TextAnnouncementForCr - - - TextAnnouncementForCrFailure - - - ThreadId - - - TimeoutAction - - - TimeoutActionCallPriority - - - TimeoutActionTarget - - - TimeoutDisconnectAudioFilePrompt - - - TimeoutDisconnectTextToSpeechPrompt - - - TimeoutRedirectPersonAudioFilePrompt - - - TimeoutRedirectPersonTextToSpeechPrompt - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - - TimeoutRedirectVoiceAppAudioFilePrompt - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - - TimeoutRedirectVoicemailAudioFilePrompt - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - - TimeoutSharedVoicemailAudioFilePrompt - - - TimeoutSharedVoicemailTextToSpeechPrompt - - - TimeoutThreshold - - - UseDefaultMusicOnHold - - - User - - - WaitTimeBeforeOfferingCallbackInSecond - - - WelcomeMusicAudioFileId - - - WelcomeTextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateComplianceRecordingForCallQueueRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateComplianceRecordingForCallQueueRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BotId - - - ConcurrentInvitationCount - - - Description - - - Name - - - PairedApplication - - - RequiredBeforeCall - - - RequiredDuringCall - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateDateTimeRangeRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateDateTimeRangeRequest - - - - - - - - - - - - - - - End - - - Start - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateGroupDialScopeRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateGroupDialScopeRequest - - - - - - - - - - - - GroupId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateIvrTagRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateIvrTagRequest - - - - - - - - - - - - TagName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateIvrTagsTemplateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateIvrTagsTemplateRequest - - - - - - - - - - - - - - - Description - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateMenuOptionRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateMenuOptionRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Action - - - AgentTarget - - - AgentTargetTagTemplateId - - - AgentTargetType - - - Description - - - DtmfResponse - - - MainlineAttendantTarget - - - VoiceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateMenuRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateMenuRequest - - - - - - - - - - - - - - - - - - DialByNameEnabled - - - DirectorySearchMethod - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateOrUpdateRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateOrUpdateRequestBody - - - - - - - - - - - - - - - - - - - - - EnableLobbyBackgroundBranding - - - EnableLobbyLogoBranding - - - EnableMeetingBackgroundImage - - - EnableNdiAssuranceSlate - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreatePromptRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreatePromptRequest - - - - - - - - - - - - - - - ActiveType - - - TextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateQuestionAnswerFlowRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateQuestionAnswerFlowRequest - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - Description - - - KnowledgeBase - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateScheduleRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateScheduleRequest - - - - - - - - - - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateSharedCallHistoryTemplateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateSharedCallHistoryTemplateRequest - - - - - - - - - - - - - - - - - - - - - - - - AnsweredAndOutboundCall - - - Description - - - IncomingMissedCall - - - IncomingRedirectedCall - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateTeamFromTemplateResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateTeamFromTemplateResponse - - - - - - - - - - - - - - - - - - WorkflowId - - - GroupId - - - ThreadId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateTimeRangeRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CreateTimeRangeRequest - - - - - - - - - - - - - - - End - - - Start - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CustomHandlerPayload - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.CustomHandlerPayload - - - - - - - - - - - - - - - HandlerFullyQualifiedName - - - Payload - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DateRange - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DateRange - - - - - - - - - - - - - - - EndDate - - - StartDate - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DateTimeRange - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DateTimeRange - - - - - - - - - - - - - - - End - - - Start - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DefaultHttpErrorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DefaultHttpErrorResponse - - - - - - - - - - - - - - - Action - - - Code - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DelegateAllowedActions - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DelegateAllowedActions - - - - - - - - - - - - - - - - - - - - - - - - JoinActiveCall - - - MakeCall - - - ManageSetting - - - PickUpHeldCall - - - ReceiveCall - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DelegationDetail - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DelegationDetail - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DeploymentInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DeploymentInfo - - - - - - - - - - - - - - - - - - - - - HostingProviderFqdn - - - MajorVersion - - - PresenceFqdn - - - RegistrarFqdn - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Details - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Details - - - - - - - - - - - - - - - - - - Code - - - Message - - - Target - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DiagnosticRecord - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DiagnosticRecord - - - - - - - - - - - - - - - Level - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Diagnostics - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Diagnostics - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CorrelationId - - - DebugContent - - - GenevaLogsUrl - - - Reason - - - SubCode - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialPlanRulesTestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialPlanRulesTestBody - - - - - - - - - - - - - - - - - - EffectiveTenantDialPlanName - - - Identity - - - TenantScopeOnly - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialPlanTestResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialPlanTestResult - - - - - - - - - - - - - - - MatchingRule - - - TranslatedNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialScope - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DialScope - - - - - - - - - - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DictionaryOfString - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DictionaryOfString - - - - - - - - - - - - Item - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DsRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.DsRequestBody - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DeploymentName - - - IsValidationRequest - - - ObjectClass - - - ObjectId - - - ObjectIds - - - ReSyncOption - - - ScenariosToSuppress - - - ServiceInstance - - - SynchronizeTenantWithAllObject - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EffectivePolicy - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EffectivePolicy - - - - - - - - - - - - - - - - - - PolicyType - - - PolicyName - - - PolicySource - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerReturnType - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerReturnType - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Content - - - CorrelationId - - - Country - - - IsCurrent - - - IsDebug - - - Locale - - - OriginalUserAgent - - - TargetStore - - - TenantId - - - UserAgent - - - Version - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerUserResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerUserResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Content - - - CorrelationId - - - Country - - - Locale - - - RespondedByObjectId - - - Response - - - ResponseTimestamp - - - Version - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerUserResponseInput - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EmergencyDisclaimerUserResponseInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Content - - - Country - - - ForceAccept - - - Locale - - - RespondedByObjectId - - - Response - - - ResponseTimestamp - - - Version - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EntityProperty - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.EntityProperty - - - - - - - - - - - - - - - - - - Name - - - Type - - - Value - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorDetailsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorDetailsResponse - - - - - - - - - - - - - - - - - - Code - - - Message - - - Target - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorObject - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorObject - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReport - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReport - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - CreatedAt - - - Culture - - - ErrorType - - - Id - - - IntermediateIncident - - - Message - - - Operation - - - Parameter - - - Procedure - - - ResolvedAt - - - RevisitIntervalInMinute - - - RevisitedAt - - - ScheduleSequenceNumber - - - Severity - - - TeamId - - - TenantId - - - TotalIncident - - - Ttl - - - WfmConnectorInstanceId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportCreate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportCreate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - Message - - - Operation - - - Parameter - - - Procedure - - - ReferenceLink - - - RevisitInterval - - - TeamId - - - TenantId - - - Ttl - - - WfmConnectorInstanceId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportReferenceLinks - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportReferenceLinks - - - - - - - - - - - - Item - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorReportResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - ConnectionId - - - CreatedAt - - - Culture - - - ErrorNotificationSent - - - ErrorType - - - Id - - - IntermediateIncident - - - Message - - - Operation - - - Parameter - - - Procedure - - - ResolvedAt - - - ResolvedNotificationSentOn - - - RevisitIntervalInMinute - - - RevisitedAt - - - ScheduleSequenceNumber - - - Severity - - - TeamId - - - TenantId - - - TotalIncident - - - Ttl - - - WfmConnectorInstanceId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponse - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated3 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated3 - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated4 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated4 - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated5 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ErrorResponseAutoGenerated5 - - - - - - - - - - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ExportHolidaysResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ExportHolidaysResult - - - - - - - - - - - - SerializedHolidayRecord - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FileContentDto - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FileContentDto - - - - - - - - - - - - Content - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FileItemTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FileItemTemplate - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - IsFolder - - - Name - - - PreviewUrl - - - Type - - - Url - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FlwoServiceModelsFlwosBatchRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FlwoServiceModelsFlwosBatchRequest - - - - - - - - - - - - - - - DeploymentCsv - - - UsersToNotify - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FlwoServiceModelsFlwosBatchRequestResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.FlwoServiceModelsFlwosBatchRequestResponse - - - - - - - - - - - - - - - ExecutionId - - - InstanceId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ForwardingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ForwardingSettings - - - - - - - - - - - - - - - - - - - - - ForwardingType - - - IsEnabled - - - Target - - - TargetType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetAiAgentConfigurationsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetAiAgentConfigurationsResponse - - - - - - - - - - - - AgentCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetApplicationInstanceAssociationResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetApplicationInstanceAssociationResponse - - - - - - - - - - - - - - - - - - - - - Id - - - ConfigurationType - - - ConfigurationId - - - CallPriority - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetCustomAppSettingResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetCustomAppSettingResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IsAppsEnabled - - - IsAppsPurchaseEnabled - - - IsExternalAppsEnabledByDefault - - - IsLicenseBasedPinnedAppsEnabled - - - IsSideloadedAppsInteractionEnabled - - - IsTenantWideAutoInstallEnabled - - - LobBackground - - - LobLogo - - - LobLogomark - - - LobTextColor - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetOperationResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetOperationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CreatedDateTime - - - Id - - - LastActionDateTime - - - Status - - - TenantId - - - Type - - - WfmConnectorInstanceId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponse - - - - - - - - - - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponseChannel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponseChannel - - - - - - - - - - - - - - - - - - - - - Index - - - Reference - - - Status - - - UpdateTimestamp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponseItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GetTeamTemplateStatusResponseItem - - - - - - - - - - - - - - - - - - - - - Index - - - Reference - - - Status - - - UpdateTimestamp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GrantActionStatus - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GrantActionStatus - - - - - - - - - - - - - - - - - - Id - - - Result - - - State - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Group - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Group - - - - - - - - - - - - - - - DisplayName - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupAssignment - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupAssignment - - - - - - - - - - - - - - - - - - - - - - - - - - - GroupId - - - PolicyType - - - PolicyName - - - Priority - - - CreatedTime - - - CreatedBy - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupAssignPayload - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupAssignPayload - - - - - - - - - - - - - - - PolicyName - - - Priority - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupDialScope - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupDialScope - - - - - - - - - - - - GroupId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupGrantPayload - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupGrantPayload - - - - - - - - - - - - - - - PolicyName - - - Priority - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupUpdatePayload - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.GroupUpdatePayload - - - - - - - - - - - - - - - PolicyName - - - Priority - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.HolidayVisualizationRecord - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.HolidayVisualizationRecord - - - - - - - - - - - - - - - Name - - - Year - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.HybridTelephoneNumber - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.HybridTelephoneNumber - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - O365Region - - - SourceType - - - TargetType - - - TelephoneNumber - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ImportAutoAttendantHolidaysRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ImportAutoAttendantHolidaysRequest - - - - - - - - - - - - - - - - - - Id - - - SerializedHolidayRecord - - - TenantId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ImportHolidayStatus - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ImportHolidayStatus - - - - - - - - - - - - - - - - - - FailureReason - - - Name - - - Succeeded - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.InvitationTicket - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.InvitationTicket - - - - - - - - - - - - - - - Ticket - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IvrTagDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IvrTagDtoModel - - - - - - - - - - - - TagName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IvrTagsTemplateDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IvrTagsTemplateDtoModel - - - - - - - - - - - - - - - - - - Description - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.KeyValuePairStringItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.KeyValuePairStringItem - - - - - - - - - - - - - - - Key - - - Value - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Language - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Language - - - - - - - - - - - - - - - - - - DisplayName - - - Id - - - VoiceResponseSupported - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LicenseAssignmentState - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LicenseAssignmentState - - - - - - - - - - - - - - - - - - - - - - - - AssignedByGroup - - - DisabledPlan - - - Error - - - SkuId - - - State - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LobbyBackgroundBrandingModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LobbyBackgroundBrandingModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BackgroundImage - - - Id - - - IsDefault - - - Name - - - Status - - - ValidateNewRequest - - - ValidateUpdateRequest - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LobbyLogoBrandingModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LobbyLogoBrandingModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - IsDefault - - - LogoImage - - - Name - - - Status - - - ValidateNewRequest - - - ValidateUpdateRequest - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - City - - - CityAlias - - - CivicAddressId - - - CompanyName - - - CompanyTaxId - - - Confidence - - - CountryOrRegion - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - Latitude - - - Location - - - LocationId - - - Longitude - - - NumberOfTelephoneNumber - - - NumberOfVoiceUser - - - PostDirectional - - - PostalCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - TenantId - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationProperties - - - - - - - - - - - - - - - - - - - - - - - - Default - - - InitialDomain - - - Name - - - ServiceInstance - - - ServiceInstance1 - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationSchema - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.LocationSchema - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - City - - - CityAlias - - - CivicAddressId - - - CompanyName - - - CompanyTaxId - - - Confidence - - - CountryOrRegion - - - CountyOrDistrict - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - IsDefault - - - Latitude - - - Location - - - LocationId - - - Longitude - - - NumberOfTelephoneNumbers - - - NumberOfVoiceUsers - - - PartnerId - - - PostDirectional - - - PostalCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - TenantId - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantAppointmentBookingFlow - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantAppointmentBookingFlow - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - ApiDefinition - - - CallerAuthenticationMethod - - - Description - - - Identity - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantFlowDomainModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantFlowDomainModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - ApiDefinition - - - CallerAuthenticationMethod - - - Description - - - Identity - - - KnowledgeBase - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantLanguage - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantLanguage - - - - - - - - - - - - - - - DisplayName - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantQuestionAnswerFlow - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantQuestionAnswerFlow - - - - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - Description - - - Identity - - - KnowledgeBase - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantTenantInformation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantTenantInformation - - - - - - - - - - - - - - - - - - DefaultLanguage - - - DefaultTimeZone - - - DefaultVoice - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantVoice - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MainlineAttendantVoice - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasSchemaResultTypes - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasSchemaResultTypes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - IsTombstone - - - TenantId - - - UpdatedBy - - - UserId - - - Version - - - VersionCreatedTime - - - VersionObsoleteTime - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasTenantProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasTenantProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - C - - - CompanyTag - - - DirSyncEnabled - - - DisabledDomain - - - DisplayName - - - L - - - PostalCode - - - PreferredLanguage - - - SchemaName - - - ServiceInstance - - - St - - - Street - - - TelephoneNumber - - - VerifiedDomain - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasUserAuthoredPropsProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasUserAuthoredPropsProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EffectiveDataRegion - - - HostingProvider - - - PartitioningScheme - - - RegistrarPool - - - SchemaName - - - SipAddress - - - SipAddressStatus - - - SipDomain - - - SipEnabled - - - SourceOfAuthority - - - UserCategory - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasUserProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MasUserProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AccountEnabled - - - Department - - - DisplayName - - - GivenName - - - LastSyncTime - - - Mail - - - MailNickname - - - PreferredLanguage - - - ProxyAddress - - - SchemaName - - - ServiceInstance - - - Sn - - - StsRefreshTokensValidFrom - - - Title - - - UsageLocation - - - UserPrincipalName - - - UserType - - - WindowsLiveNetId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MediaFileDto - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MediaFileDto - - - - - - - - - - - - - - - - - - ApplicationId - - - GroupId - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingBackgroundImageModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingBackgroundImageModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - IsDefault - - - MeetingBackgroundImage - - - Name - - - Order - - - Status - - - ValidateNewRequest - - - ValidateUpdateRequest - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStateSummary - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStateSummary - - - - - - - - - - - - - - - State - - - UserCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStatusResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStatusResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CorrelationId - - - CreateDate - - - EnqueueReason - - - FailedMeeting - - - InvitesUpdate - - - LastMessage - - - MigrationType - - - ModifiedDate - - - RetryCount - - - State - - - SucceededMeeting - - - TotalMeeting - - - UserId - - - UserPrincipalName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStatusSummaryResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationStatusSummaryResponse - - - - - - - - - - - - MigrationType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationTransactionHistoryResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MeetingMigrationTransactionHistoryResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CorrelationId - - - FailedMeeting - - - InternalErrorMessage - - - InvitesUpdated - - - LastErrorMessage - - - ModifiedDate - - - Operation - - - State - - - SucceededMeeting - - - TotalMeeting - - - TriggerSource - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Menu - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Menu - - - - - - - - - - - - - - - - - - DialByNameEnabled - - - DirectorySearchMethod - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MenuOption - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MenuOption - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Action - - - AgentTarget - - - AgentTargetTagTemplateId - - - AgentTargetType - - - Description - - - DtmfResponse - - - MainlineAttendantTarget - - - VoiceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MigrationData - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.MigrationData - - - - - - - - - - - - Datastr - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NdiAssuranceSlateModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NdiAssuranceSlateModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Id - - - IsDefault - - - Name - - - NdiImage - - - Status - - - ValidateNewRequest - - - ValidateUpdateRequest - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NewCivicAddress - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NewCivicAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CityOrTown - - - CityOrTownAlias - - - CompanyId - - - CompanyName - - - Confidence - - - Country - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - Latitude - - - Longitude - - - PostDirectional - - - PostalOrZipCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NewLocation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NewLocation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AdditionalInfo - - - CityOrTown - - - CityOrTownAlias - - - CivicAddressId - - - CompanyId - - - CompanyName - - - Confidence - - - Country - - - CountyOrDistrict - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - IsDefault - - - Latitude - - - Longitude - - - PartnerId - - - PostDirectional - - - PostalOrZipCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - TenantId - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NormalizationRuleForTest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.NormalizationRuleForTest - - - - - - - - - - - - - - - - - - Name - - - Pattern - - - Translation - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OboResourceAccountInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OboResourceAccountInfo - - - - - - - - - - - - - - - - - - DisplayName - - - ObjectId - - - PhoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OnlineNumberAssignmentRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OnlineNumberAssignmentRequest - - - - - - - - - - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResponseDetail - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResponseDetail - - - - - - - - - - - - - - - Error - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResponseDetailProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResponseDetailProperties - - - - - - - - - - - - Item - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResult - - - - - - - - - - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResultAutoGenerated - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.OperationResultAutoGenerated - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsApplyPackageGroupRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsApplyPackageGroupRequest - - - - - - - - - - - - - - - GroupId - - - PackageName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsApplyPackageGroupResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsApplyPackageGroupResponse - - - - - - - - - - - - ResponseMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsBatchPostPackageResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsBatchPostPackageResponse - - - - - - - - - - - - - - - OperationId - - - ResponseMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsCreateCustomPackageRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsCreateCustomPackageRequest - - - - - - - - - - - - - - - Description - - - PackageName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsCustomPackageResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsCustomPackageResponse - - - - - - - - - - - - ResponseMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsFormattedPackageRecommendation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsFormattedPackageRecommendation - - - - - - - - - - - - - - - - - - Name - - - Description - - - RecommendationType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsFormattedPackageSummary - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsFormattedPackageSummary - - - - - - - - - - - - - - - Name - - - Description - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPackageResponseBase - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPackageResponseBase - - - - - - - - - - - - ResponseMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageBatchRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageBatchRequest - - - - - - - - - - - - - - - PackageType - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageResponse - - - - - - - - - - - - ResponseMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageResponseFailedUserErrorMessages - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsPostPackageResponseFailedUserErrorMessages - - - - - - - - - - - - LegacyUser - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsRequestsPolicyRanking - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsRequestsPolicyRanking - - - - - - - - - - - - - - - PolicyType - - - Rank - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsRequestsPolicyTypeAndName - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsRequestsPolicyTypeAndName - - - - - - - - - - - - - - - PolicyName - - - PolicyType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsUpdateCustomPackageRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PackageServiceModelsUpdateCustomPackageRequest - - - - - - - - - - - - - - - Description - - - PackageName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PartitionMovementError - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PartitionMovementError - - - - - - - - - - - - - - - ErrorCode - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PartitionMovementRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PartitionMovementRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BasePartitionKey - - - BatchSize - - - ContainerName - - - NumberOfDocument - - - PercentageOfPartition - - - SourcePartitionKey - - - TargetPartitionKey - - - Workload - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PasswordProfile - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PasswordProfile - - - - - - - - - - - - - - - - - - EnforceChangePasswordPolicy - - - ForceChangePasswordNextLogin - - - Password - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PersonalAttendantSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PersonalAttendantSettings - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowInboundFederatedCalls - - - AllowInboundInternalCalls - - - AllowInboundPSTNCalls - - - BookingCalendarId - - - CalleeName - - - DefaultLanguage - - - DefaultTone - - - DefaultVoice - - - IsAutomaticRecordingEnabled - - - IsAutomaticTranscriptionEnabled - - - IsBookingCalendarEnabled - - - IsCallScreeningEnabled - - - IsNonContactCallbackEnabled - - - IsPersonalAttendantEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PolicyDefinition - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PolicyDefinition - - - - - - - - - - - - - - - PolicyName - - - PolicyType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PortRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PortRequest - - - - - - - - - - - - - - - - - - - - - ChassisId - - - Description - - - LocationId - - - PortId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PortResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PortResponse - - - - - - - - - - - - - - - - - - - - - ChassisId - - - Description - - - LocationId - - - PortId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PrivacyProfile - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PrivacyProfile - - - - - - - - - - - - - - - ContactEmail - - - StatementUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ProcessingException - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ProcessingException - - - - - - - - - - - - - - - - - - CorrelationId - - - ErrorId - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Prompt - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Prompt - - - - - - - - - - - - - - - ActiveType - - - TextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RehomeUserRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RehomeUserRequestBody - - - - - - - - - - - - - - - MoveToCloud - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RelatedConfiguration - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RelatedConfiguration - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RemoveApplicationInstanceAssociationsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.RemoveApplicationInstanceAssociationsRequest - - - - - - - - - - - - EndpointsId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ResourceStatusRecord - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ResourceStatusRecord - - - - - - - - - - - - - - - - - - - - - - - - - - - AuxiliaryData - - - ErrorCode - - - Id - - - Message - - - Status - - - StatusTimestamp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ResyncRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ResyncRequestBody - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IsValidationRequest - - - ObjectClass - - - ObjectId - - - ReSyncOption - - - ScenariosToSuppress - - - ServiceInstance - - - SynchronizeTenantWithAllObject - - - TenantId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SafeWaitHandle - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SafeWaitHandle - - - - - - - - - - - - - - - IsClosed - - - IsInvalid - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Schedule - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Schedule - - - - - - - - - - - - - - - - - - - - - AssociatedConfigurationId - - - Id - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ScheduleRecurrenceRange - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ScheduleRecurrenceRange - - - - - - - - - - - - - - - - - - - - - End - - - NumberOfOccurrence - - - Start - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInBatchStatusItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInBatchStatusItem - - - - - - - - - - - - - - - - - - - - - Error - - - HardwareId - - - Status - - - UserName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestItem - - - - - - - - - - - - - - - HardwareId - - - UserName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestsSummaryResponseItem - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestsSummaryResponseItem - - - - - - - - - - - - - - - - - - - - - - - - - - - BatchId - - - BatchItemsCount - - - BatchStatus - - - Region - - - RequestTime - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestStatusResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestStatusResult - - - - - - - - - - - - - - - - - - - - - - - - BatchId - - - BatchStatus - - - Region - - - RequestTime - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInResponse - - - - - - - - - - - - - - - BatchId - - - BatchItemsCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTaggingRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTaggingRequest - - - - - - - - - - - - - - - - - - - - - - - - HardwareId - - - IcmId - - - OceUserName - - - SdhRegion - - - TenantId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTaggingResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTaggingResponse - - - - - - - - - - - - - - - CorrelationId - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTransferResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgDeviceTransferResponse - - - - - - - - - - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgErrorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgErrorResponse - - - - - - - - - - - - - - - ErrorCode - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgUnauthorizedAccessErrorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgUnauthorizedAccessErrorResponse - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SelfServePasswordResetData - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SelfServePasswordResetData - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AlternateAuthenticationPhoneRegisteredTime - - - AlternateEmailRegisteredTime - - - AuthenticationEmailRegisteredTime - - - AuthenticationPhoneRegisteredTime - - - DeferralCount - - - DeferredTime - - - LastRegisteredTime - - - MobilePhoneRegisteredTime - - - ReinforceAfterTime - - - SecurityAnswersRegisteredTime - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceAttributesPropertiesPublishedAttributesSfbServiceAttributes - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceAttributesPropertiesPublishedAttributesSfbServiceAttributes - - - - - - - - - - - - - - - - - - - - - ApplicationOption - - - DeploymentLocator - - - HideFromAddressList - - - OptionFlag - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceInfoDetail - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceInfoDetail - - - - - - - - - - - - - - - - - - - - - BusinessVoiceDirectoryUrl - - - HostingProvider - - - ServiceInstance - - - TenantMajorRegistrarPool - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceNumberUpdateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceNumberUpdateRequest - - - - - - - - - - - - - - - - - - PrimaryLanguage - - - RestoreDefaultLanguage - - - SecondaryLanguage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetCivicAddress - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetCivicAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CityAlias - - - CityOrTown - - - CompanyName - - - CompanyTaxId - - - Confidence - - - Country - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - Id - - - Latitude - - - Longitude - - - PostDirectional - - - PostalOrZipCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetLocation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetLocation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AdditionalInfo - - - CityOrTown - - - CityOrTownAlias - - - CivicAddressId - - - CompanyId - - - CompanyName - - - Confidence - - - Country - - - CountyOrDistrict - - - Description - - - Elin - - - HouseNumber - - - HouseNumberSuffix - - - Id - - - IsDefault - - - Latitude - - - Longitude - - - NumberOfTelephoneNumber - - - NumberOfVoiceUser - - - PartnerId - - - PostDirectional - - - PostalOrZipCode - - - PreDirectional - - - StateOrProvince - - - StreetName - - - StreetSuffix - - - TenantId - - - ValidationStatus - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetMovedResourceDataRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SetMovedResourceDataRequestBody - - - - - - - - - - - - - - - MajorVersion - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplate - - - - - - - - - - - - - - - - - - - - - - - - - - - AnsweredAndOutboundCall - - - Description - - - Id - - - IncomingMissedCall - - - IncomingRedirectedCall - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplateDomainModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplateDomainModel - - - - - - - - - - - - - - - - - - - - - - - - - - - AnsweredAndOutboundCall - - - Description - - - Id - - - IncomingMissedCall - - - IncomingRedirectedCall - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplateDtoModel - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SharedCallHistoryTemplateDtoModel - - - - - - - - - - - - - - - - - - - - - - - - - - - AnsweredAndOutboundCall - - - Description - - - Id - - - IncomingMissedCall - - - IncomingRedirectedCall - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SimpleBatchJobStatus - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SimpleBatchJobStatus - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OperationId - - - OperationName - - - OverallStatus - - - CreatedBy - - - CreatedTime - - - CompletedTime - - - CompletedCount - - - ErrorCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SingleGrantTenantRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SingleGrantTenantRequest - - - - - - - - - - - - - - - ForceSwitchPresent - - - PolicyName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SingleGrantUserRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SingleGrantUserRequest - - - - - - - - - - - - PolicyName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtAvailabilityInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtAvailabilityInfo - - - - - - - - - - - - - - - - - - - - - - - - Acquired - - - Allowed - - - MaximumSearchSize - - - Reason - - - SearchAvailability - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletAcquiredTelephoneNumber - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletAcquiredTelephoneNumber - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ActivationState - - - AssignedPstnTargetId - - - AssignmentBlockedState - - - AssignmentBlockedUntil - - - AssignmentCategory - - - Capability - - - City - - - CivicAddressId - - - IsoCountryCode - - - IsoSubdivision - - - LocationId - - - LocationUpdateSupported - - - NetworkSiteId - - - NumberSource - - - NumberType - - - OperatorId - - - PortInOrderStatus - - - PstnAssignmentStatus - - - PstnPartnerId - - - PstnPartnerName - - - ReverseNumberLookup - - - SmsActivationState - - - Tag - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCapabilityUpdateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCapabilityUpdateRequest - - - - - - - - - - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCapabilityUpdateResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCapabilityUpdateResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCreateSearchOrderRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletCreateSearchOrderRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AreaCode - - - CivicAddressId - - - Country - - - Description - - - Name - - - NumberPrefix - - - NumberType - - - Quantity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest - - - - - - - - - - - - - - - - - - - - - - - - Description - - - EndingNumber - - - FileContent - - - StartingNumber - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletPhoneNumberUsageChangeOrderRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletPhoneNumberUsageChangeOrderRequest - - - - - - - - - - - - - - - TelephoneNumber - - - Usage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletPhoneNumberUsageUpdateResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletPhoneNumberUsageUpdateResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseOrderRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseOrderRequest - - - - - - - - - - - - - - - - - - - - - EndingNumber - - - FileContent - - - StartingNumber - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseOrderResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseOrderResponse - - - - - - - - - - - - - - - - - - - - - - - - NumberIdsAssigned - - - NumberIdsDeleteFailed - - - NumberIdsDeleted - - - NumberIdsManagedByServiceDesk - - - NumberIdsNotOwnedByTenant - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletReleaseRequest - - - - - - - - - - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletSearchOrder - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletSearchOrder - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AreaCode - - - CivicAddressId - - - CountryCode - - - CreatedAt - - - Description - - - ErrorCode - - - Id - - - InventoryType - - - IsManual - - - Name - - - NumberPrefix - - - NumberType - - - Quantity - - - ReservationExpiryDate - - - SearchType - - - SendToServiceDesk - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletSetAssignmentBlockRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletSetAssignmentBlockRequest - - - - - - - - - - - - - - - - - - AssignmentBlockedDay - - - AssignmentBlockedForever - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletsSetResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletsSetResponse - - - - - - - - - - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletTenantTagRecord - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCmdletTenantTagRecord - - - - - - - - - - - - TagValue - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCountry - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCountry - - - - - - - - - - - - - - - Name - - - Value - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCreateExportAcquiredTelephoneNumbersResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCreateExportAcquiredTelephoneNumbersResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCreateSearchOrderResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtCreateSearchOrderResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtDirectRoutingNumberCreationOrderResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtDirectRoutingNumberCreationOrderResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtErrorResponseDetails - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtErrorResponseDetails - - - - - - - - - - - - - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtGetExportAcquiredTelephoneNumbersResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtGetExportAcquiredTelephoneNumbersResponse - - - - - - - - - - - - - - - - - - - - - - - - CreatedAt - - - DownloadLink - - - DownloadLinkExpiry - - - Id - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtGetTenantConfigurationResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtGetTenantConfigurationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowOnPremToOnlineMigration - - - AssignmentBlockedDays - - - AssignmentBlockedForever - - - AssignmentEmailEnabled - - - TenantId - - - UnassignmentEmailEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPhoneNumberPolicyAssignmentCmdletResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPhoneNumberPolicyAssignmentCmdletResponse - - - - - - - - - - - - NextLink - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPhoneNumberPolicyAssignmentCmdletResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPhoneNumberPolicyAssignmentCmdletResult - - - - - - - - - - - - - - - - - - - - - TelephoneNumber - - - PolicyType - - - PolicyName - - - Reference - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPrefixSearchOptions - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtPrefixSearchOptions - - - - - - - - - - - - - - - CountryCallingCode - - - MinimumPrefixLength - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtReleaseResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtReleaseResponse - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTelephoneNumberSearchResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTelephoneNumberSearchResult - - - - - - - - - - - - - - - Location - - - TelephoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateAcquiredCapabilitiesRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateAcquiredCapabilitiesRequest - - - - - - - - - - - - - - - - - - AcquiredCapabilitiesToAdd - - - AcquiredCapabilitiesToRemove - - - PhoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateLocationIdRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateLocationIdRequest - - - - - - - - - - - - - - - LocationId - - - PhoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateNetworkSiteIdRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateNetworkSiteIdRequest - - - - - - - - - - - - - - - NetworkSiteId - - - PhoneNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse - - - - - - - - - - - - - - - Id - - - OrderType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateReverseNumberLookupRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateReverseNumberLookupRequest - - - - - - - - - - - - - - - - - - PhoneNumber - - - ReverseNumberLookupToAdd - - - ReverseNumberLookupToRemove - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateTagsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtTenantTnUpdateTagsRequest - - - - - - - - - - - - - - - - - - PhoneNumber - - - TagsToAdd - - - TagsToRemove - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtUpdateSearchOrderRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SkypeTelephoneNumberMgmtUpdateSearchOrderRequest - - - - - - - - - - - - Action - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SourceEntry - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SourceEntry - - - - - - - - - - - - - - - - - - - - - AssignmentType - - - PolicyType - - - PolicyName - - - Reference - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StartMeetingMigrationEnqueueResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StartMeetingMigrationEnqueueResponse - - - - - - - - - - - - OperationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StartMeetingMigrationRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StartMeetingMigrationRequestBody - - - - - - - - - - - - - - - - - - Identity - - - SourceMeetingType - - - TargetMeetingType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord - - - - - - - - - - - - - - - - - - AuxiliaryData - - - Message - - - WarningCode - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord2 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AuxiliaryData - - - ErrorCode - - - Id - - - Message - - - Status - - - StatusTimestamp - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord3 - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.StatusRecord3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AuxiliaryData - - - ErrorCode - - - Id - - - Message - - - Status - - - StatusTimestamp - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SubnetResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SubnetResponse - - - - - - - - - - - - - - - - - - Description - - - LocationId - - - Subnet - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SupportedLanguage - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SupportedLanguage - - - - - - - - - - - - - - - Code - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SupportedSyncScenarios - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SupportedSyncScenarios - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OfferShiftRequest - - - OpenShift - - - OpenShiftRequest - - - Shift - - - SwapRequest - - - TimeCard - - - TimeOff - - - TimeOffRequest - - - UserShiftPreference - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SwitchResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SwitchResponse - - - - - - - - - - - - - - - - - - ChassisId - - - Description - - - LocationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SyncScenarioSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SyncScenarioSettings - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OfferShiftRequest - - - OpenShift - - - OpenShiftRequest - - - Shift - - - SwapRequest - - - TimeCard - - - TimeOff - - - TimeOffRequest - - - UserShiftPreference - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TagErrorObject - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TagErrorObject - - - - - - - - - - - - - - - - - - Action - - - Code - - - Message - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Target - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Target - - - - - - - - - - - - - - - Id - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamConnectResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamConnectResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - State - - - TeamId - - - TeamName - - - TimeZone - - - WfmTeamId - - - WfmTeamName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamConnectsResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamConnectsResponse - - - - - - - - - - - - - - - - - - - - - CreatedDateTime - - - LastActionDateTime - - - OperationId - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamDefinition - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamDefinition - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Alias - - - Classification - - - Description - - - DisplayName - - - IsDynamicMembership - - - IsMembershipLimitedToOwner - - - OwnerUserObjectId - - - SensitivityLabelId - - - SmtpAddress - - - Specialization - - - Visibility - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamDiscoverySettings - - - - - - - - - - - - ShowInTeamsSearchAndSuggestion - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamFunSettings - - - - - - - - - - - - - - - - - - - - - AllowCustomMeme - - - AllowGiphy - - - AllowStickersAndMeme - - - GiphyContentRating - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamGuestSettings - - - - - - - - - - - - - - - AllowCreateUpdateChannel - - - AllowDeleteChannel - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMapping - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMapping - - - - - - - - - - - - - - - - - - TeamId - - - TimeZone - - - WfmTeamId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMemberSettings - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowAddRemoveApp - - - AllowCreatePrivateChannel - - - AllowCreateUpdateChannel - - - AllowCreateUpdateRemoveConnector - - - AllowCreateUpdateRemoveTab - - - AllowDeleteChannel - - - UploadCustomApp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMessagingSettings - - - - - - - - - - - - - - - - - - - - - - - - AllowChannelMention - - - AllowOwnerDeleteMessage - - - AllowTeamMention - - - AllowUserDeleteMessage - - - AllowUserEditMessage - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMiddletierErrorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamMiddletierErrorResponse - - - - - - - - - - - - OperationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsAppTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsAppTemplate - - - - - - - - - - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsData - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsData - - - - - - - - - - - - - - - - - - CheckCpc - - - CheckEnterpriseVoice - - - MoveToTeam - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsTabConfiguration - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamsTabConfiguration - - - - - - - - - - - - - - - - - - - - - ContentUrl - - - EntityId - - - RemoveUrl - - - WebsiteUrl - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplateExtendedProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplateExtendedProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - Category - - - ModifiedBy - - - ModifiedOn - - - PublishedBy - - - PublisherUrl - - - ShortDescription - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplateSummary - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplateSummary - - - - - - 120 - - - - 30 - - - - 30 - - - - 5 - - - - 5 - - - - - - - OdataId - - - Name - - - ShortDescription - - - ChannelCount - - - AppCount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantAudioFileDto - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantAudioFileDto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApplicationId - - - Id - - - Content - - - ContextId - - - ConvertedFilename - - - DeletionTimestampOffset - - - DownloadUri - - - DownloadUriExpiryTimestampOffset - - - Duration - - - LastAccessedTimestampOffset - - - OriginalFilename - - - UploadedTimestampOffset - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantDialPlan - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantDialPlan - - - - - - - - - - - - - - - EffectiveTenantDialPlanName - - - NormalizationRule - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantInformation - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantInformation - - - - - - - - - - - - - - - - - - DefaultLanguage - - - DefaultTimeZone - - - EnabledFeature - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMediaFileDto - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMediaFileDto - - - - - - - - - - - - - - - ApplicationId - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMigration - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMigration - - - - - - - - - - - - - - - MoveOption - - - TargetServiceInstance - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMigrationResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantMigrationResult - - - - - - - - - - - - - - - - - - JobName - - - OrderId - - - TenantId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantSipDomainRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantSipDomainRequest - - - - - - - - - - - - - - - Action - - - DomainName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantSyncInLyncAdInfo - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantSyncInLyncAdInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - IsSyncDisabledAtTenantCreation - - - IsUserSyncDisabled - - - IsUserSyncStateChanging - - - StopSyncRevertCompleteTimestamp - - - StopSyncRevertTimestamp - - - StopSyncTimestamp - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantVerifiedSipDomain - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantVerifiedSipDomain - - - - - - - - - - - - - - - Name - - - Status - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestInboundBlockedNumberResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestInboundBlockedNumberResponse - - - - - - - - - - - - - - - IsNumberBlocked - - - ResourceAccount - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestTeamsTranslationRuleResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestTeamsTranslationRuleResponse - - - - - - - - - - - - - - - - - - - - - Identity - - - Pattern - - - PhoneNumberTranslated - - - Translation - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestUnassignedNumberTreatmentResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TestUnassignedNumberTreatmentResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - Description - - - Pattern - - - Priority - - - Target - - - TargetType - - - TreatmentId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TimeRange - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TimeRange - - - - - - - - - - - - - - - End - - - Start - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TimeZone - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TimeZone - - - - - - - - - - - - - - - DisplayName - - - Id - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UnansweredSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UnansweredSettings - - - - - - - - - - - - - - - - - - - - - Delay - - - IsEnabled - - - Target - - - TargetType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateAppointmentBookingFlowRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateAppointmentBookingFlowRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - ApiDefinition - - - CallerAuthenticationMethod - - - Description - - - Identity - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateCallQueueRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateCallQueueRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AgentAlertTime - - - AllowOptOut - - - AuthorizedUser - - - AutoRecordingTemplateId - - - CallToAgentRatioThresholdBeforeOfferingCallback - - - CallbackEmailNotificationTarget - - - CallbackOfferAudioFilePromptResourceId - - - CallbackOfferTextToSpeechPrompt - - - CallbackRequestDtmf - - - ComplianceRecordingForCallQueueId - - - ConferenceMode - - - CustomAudioFileAnnouncementForCr - - - CustomAudioFileAnnouncementForCrFailure - - - DistributionList - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - - EnableNoAgentSharedVoicemailTranscription - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - - EnableOverflowSharedVoicemailTranscription - - - EnableResourceAccountsForObo - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - - EnableTimeoutSharedVoicemailTranscription - - - HideAuthorizedUser - - - IsCallbackEnabled - - - LanguageId - - - MusicOnHoldAudioFileId - - - Name - - - NoAgentAction - - - NoAgentActionCallPriority - - - NoAgentActionTarget - - - NoAgentApplyTo - - - NoAgentDisconnectAudioFilePrompt - - - NoAgentDisconnectTextToSpeechPrompt - - - NoAgentRedirectPersonAudioFilePrompt - - - NoAgentRedirectPersonTextToSpeechPrompt - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - - NoAgentRedirectVoiceAppAudioFilePrompt - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - - NoAgentRedirectVoicemailAudioFilePrompt - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - - NoAgentSharedVoicemailAudioFilePrompt - - - NoAgentSharedVoicemailTextToSpeechPrompt - - - NumberOfCallsInQueueBeforeOfferingCallback - - - OboResourceAccountId - - - OverflowAction - - - OverflowActionCallPriority - - - OverflowActionTarget - - - OverflowDisconnectAudioFilePrompt - - - OverflowDisconnectTextToSpeechPrompt - - - OverflowRedirectPersonAudioFilePrompt - - - OverflowRedirectPersonTextToSpeechPrompt - - - OverflowRedirectPhoneNumberAudioFilePrompt - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - - OverflowRedirectVoiceAppAudioFilePrompt - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - - OverflowRedirectVoicemailAudioFilePrompt - - - OverflowRedirectVoicemailTextToSpeechPrompt - - - OverflowSharedVoicemailAudioFilePrompt - - - OverflowSharedVoicemailTextToSpeechPrompt - - - OverflowThreshold - - - PresenceAwareRouting - - - RoutingMethod - - - ServiceLevelThresholdResponseTimeInSecond - - - SharedCallQueueHistoryId - - - ShiftsSchedulingGroupId - - - ShiftsTeamId - - - ShouldOverwriteCallableChannelProperty - - - TextAnnouncementForCr - - - TextAnnouncementForCrFailure - - - ThreadId - - - TimeoutAction - - - TimeoutActionCallPriority - - - TimeoutActionTarget - - - TimeoutDisconnectAudioFilePrompt - - - TimeoutDisconnectTextToSpeechPrompt - - - TimeoutRedirectPersonAudioFilePrompt - - - TimeoutRedirectPersonTextToSpeechPrompt - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - - TimeoutRedirectVoiceAppAudioFilePrompt - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - - TimeoutRedirectVoicemailAudioFilePrompt - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - - TimeoutSharedVoicemailAudioFilePrompt - - - TimeoutSharedVoicemailTextToSpeechPrompt - - - TimeoutThreshold - - - UseDefaultMusicOnHold - - - User - - - WaitTimeBeforeOfferingCallbackInSecond - - - WelcomeMusicAudioFileId - - - WelcomeTextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateConnectorInstanceFieldsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateConnectorInstanceFieldsRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ConnectionId - - - ConnectorAdminEmail - - - DesignatedActorId - - - Etag - - - Name - - - State - - - SyncFrequencyInMin - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateConnectorInstanceRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateConnectorInstanceRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ConnectionId - - - ConnectorAdminEmail - - - DesignatedActorId - - - Etag - - - Name - - - State - - - SyncFrequencyInMin - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateCustomAppSettingRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateCustomAppSettingRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IsAppsEnabled - - - IsAppsPurchaseEnabled - - - IsExternalAppsEnabledByDefault - - - IsLicenseBasedPinnedAppsEnabled - - - IsSideloadedAppsInteractionEnabled - - - IsTenantWideAutoInstallEnabled - - - LobBackground - - - LobLogo - - - LobLogomark - - - LobTextColor - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateGreetingRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateGreetingRequest - - - - - - - - - - - - - - - - - - AudioFilePromptId - - - AudioFilePromptName - - - TextToSpeechPrompt - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateQuestionAnswerFlowRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateQuestionAnswerFlowRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - ApiAuthenticationType - - - Description - - - Identity - - - KnowledgeBase - - - Name - - - Type - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateWfmConnectionFieldsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateWfmConnectionFieldsRequest - - - - - - - - - - - - - - - - - - - - - ConnectorId - - - Etag - - - Name - - - State - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateWfmConnectionRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UpdateWfmConnectionRequest - - - - - - - - - - - - - - - - - - - - - ConnectorId - - - Etag - - - Name - - - State - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAdminAuthoredPropsSchemaProperties - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAdminAuthoredPropsSchemaProperties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EnterpriseVoiceEnabled - - - IsPhoneNumberSynergy - - - LineUri - - - LineUriValidationError - - - OptionFlag - - - PartitioningScheme - - - PolicyAssignment - - - UserEntityType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserApiSearchResults - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserApiSearchResults - - - - - - - - - - - - NextLink - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAutoGenerated - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserAutoGenerated - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserConnectResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserConnectResponse - - - - - - - - - - - - - - - - - - - - - UserId - - - UserName - - - WfmUserId - - - WfmUserName - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserData - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserData - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AllowTollFreeDialIn - - - BridgeId - - - BridgeName - - - ResetLeaderPin - - - SendEmail - - - SendEmailToAddress - - - ServiceNumber - - - TollFreeServiceNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserDelicensingAccelerationPatch - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserDelicensingAccelerationPatch - - - - - - - - - - - - - - - Action - - - Capability - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserRoutingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserRoutingSettings - - - - - - - - - - - - SipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UsersDefaultNumberUpdateRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UsersDefaultNumberUpdateRequest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AreaOrState - - - BridgeId - - - BridgeName - - - CapitalOrMajorCity - - - CountryOrRegion - - - FromNumber - - - NumberType - - - RescheduleMeeting - - - ToNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserSipUriRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserSipUriRequestBody - - - - - - - - - - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserVoiceState - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.UserVoiceState - - - - - - - - - - - - - - - - - - - - - LineUri - - - OptionFlag - - - PolicyAssignment - - - UsageLocation - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidateUserRequestBody - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidateUserRequestBody - - - - - - - - - - - - - - - - - - - - - CmdletVersion - - - Force - - - MoveToCloud - - - UserSipUri - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationBatchParameters - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationBatchParameters - - - - - - - - - - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationParameters - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationParameters - - - - - - - - - - - - - - - - - - - - - Authority - - - PolicyName - - - PolicyType - - - UserId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationPolicyDefinition - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ValidationPolicyDefinition - - - - - - - - - - - - - - - PolicyName - - - PolicyType - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Voice - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.Voice - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.VoicemailSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.VoicemailSettings - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CallAnswerRule - - - DefaultGreetingPromptOverwrite - - - DefaultOofGreetingPromptOverwrite - - - OofGreetingEnabled - - - OofGreetingFollowAutomaticRepliesEnabled - - - PromptLanguage - - - ShareData - - - TransferTarget - - - VoicemailEnabled - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.VoiceNormalizationTestResult - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.VoiceNormalizationTestResult - - - - - - - - - - - - TranslatedNumber - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WaPResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WaPResponse - - - - - - - - - - - - - - - - - - Bssid - - - Description - - - LocationId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WeeklyRecurrentSchedule - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WeeklyRecurrentSchedule - - - - - - - - - - - - IsComplemented - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectionRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectionRequest - - - - - - - - - - - - - - - - - - ConnectorId - - - Name - - - State - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectionResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectionResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ConnectorId - - - CreatedDateTime - - - Etag - - - Id - - - LastModifiedDateTime - - - Name - - - State - - - TenantId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectorResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmConnectorResponse - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmTeam - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmTeam - - - - - - - - - - - - - - - Id - - - Name - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmTeamResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WfmTeamResponse - - - - - - - - - - - - - - - - - - - - - ConnectorInstanceId - - - Id - - - Name - - - TeamId - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WorkflowResponse - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.WorkflowResponse - - - - - - - - - - - - WorkflowId - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psd1 deleted file mode 100644 index ff2e23a2e77b5..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psd1 +++ /dev/null @@ -1,243 +0,0 @@ -@{ - GUID = '82b0bf19-c5cd-4c30-8db4-b458a4b84495' - RootModule = './Microsoft.Teams.ConfigAPI.Cmdlets.psm1' - ModuleVersion = '9.0514.3' - CompatiblePSEditions = 'Core', 'Desktop' - Author="Microsoft Corporation" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation. All rights reserved." - Description="Microsoft Teams Configuration PowerShell module" - PowerShellVersion = '5.1' - DotNetFrameworkVersion = '4.7.2' - FormatsToProcess = @( - './Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml', - './Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml', - './SfbRpsModule.format.ps1xml') - CmdletsToExport = '*' - FunctionsToExport = '*' - AliasesToExport = '*' - PrivateData = @{ - PSData = @{ - # For dev test set Prerelease to preview. This will ensure devtest module get all preview ECS features. - Prerelease = 'preview' - Tags = '' - LicenseUri = '' - ProjectUri = '' - ReleaseNotes = '' - } - } -} - -# SIG # Begin signature block -# MIIncQYJKoZIhvcNAQcCoIInYjCCJ14CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCA3EdxHUQ8g5rK -# 40bSduahzSgE/z6HH2OGEGaAFHf8Z6CCDMkwggYEMIID7KADAgECAhMzAAACHPrN -# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1 -# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP -# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC -# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf -# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j -# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT -# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL -# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT -# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw -# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w -# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl -# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC -# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN -# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK -# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK -# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY -# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu -# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE -# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz -# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6 -# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO -# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD -# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC -# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS -# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX -# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq -# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo -# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv -# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a -# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1 -# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO -# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7 -# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ -# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS -# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm -# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3 -# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E -# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX -# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB -# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP -# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw -# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC -# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D -# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY -# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI -# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6 -# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w -# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7 -# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK -# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK -# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw -# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT -# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn+MIIZ+gIBATBu -# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x -# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc -# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG -# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI -# hvcNAQkEMSIEICIRTTIzzZ4kEj5A2HkJyi72L9YcAeZoicCoJ7oyFB7NMEIGCisG -# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAn/Ig4pkXqOojsTRuCfhL -# rOLbAJYgdKL4vStftiU0D3NYj8MHCb+RgJFraYI9KnYfqA3Xf9KN0JOD5Q08uX+q -# BDaVJgpcpIJUPxLnZWNF8NnPR5PJvpcPyabrL+rKQVbiM+dcyAzjP6pZf0hx2hJk -# VeR9xbUCPLikO/+jAJ3XYThAaT9UMVdbbM1xuxofkKmn8VChNE1h0gxf/KhI5xhq -# 2rvzxbo/5vWjDfZvuz2R4SJxSBnQZEB3nO6RKa74hg8R90A2HeptGe6who9ECROQ -# vjd16Z5uXH4aNBiLBNeFOVVAoz0W/aeEResuuX0wTkJKvw/JLJIph5Up8ldrgqoO -# GaGCF7AwghesBgorBgEEAYI3AwMBMYIXnDCCF5gGCSqGSIb3DQEHAqCCF4kwgheF -# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFaBgsqhkiG9w0BCRABBKCCAUkEggFFMIIB -# QQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCCaLQu3vehRnT5JeVos -# 1Fyph/F3O021jNeZDimSlfBUxwIGaeu5ysKGGBMyMDI2MDUxNTEwMDYzMi4xMjRa -# MASAAgH0oIHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo0MDFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCCEf4wggcoMIIFEKAD -# AgECAhMzAAACGV6y2FR19LGNAAEAAAIZMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTI1MDgxNDE4NDgyNloXDTI2MTExMzE4 -# NDgyNlowgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTAr -# BgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEnMCUG -# A1UECxMeblNoaWVsZCBUU1MgRVNOOjQwMUEtMDVFMC1EOTQ3MSUwIwYDVQQDExxN -# aWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOC -# Ag8AMIICCgKCAgEApqFIyUkzIyxpL3Q03WmLuy4G9YIUScznhKr+cHOT+/u7Parx -# I96gxxb1WrWuAxB8qjGLfsbImx8V3ouK1nUcf+R/nsnXas5/iTgV/Tl3QTRGT0De -# uXBNbpHqc+wC1NiTyA76gLnirvSBEoBzlrpNQFEnuwdbPLCLpTS3KWSCu5J02b+R -# FWR/kcFzVxnhoE3gIaeURtrGKGBZGKLBXvqggkDENtKkvtvRT32xLvAvL/RpReu5 -# z18ZojCs72ZSoa74Dy8YbaWsDm3OZOpJRZxZsPKCHZ6xNqgFKf0xNHj0t9v0Q3W+ -# 2z5gAVaasJJCvR52Sl0XJ2AOf3l0LSetXgUA5gD5IQ1RvEslTmNnSouTrGID3D1n -# jY7mBu0puiIdPK2jK/1Weef2+YR4cQpWQkeBZmXidh9AuWdlwxKQL15LJ6K2dw8y -# /t/PBhmLyt6QAf0CepWRdgZnMytVAUuWHwlZRV9JLY7aX8D55eL9+cOLpX3bGNOm -# N24UpIW8qtZaqXaesFvIOW23JNLhaaQVvObr1eu7GE/5Mn43e+/DbtdYl/bLP2IQ -# 1xYEJdSbcUkDFfW3KlZEh+nBKDtaRnNRkbgIgxIbKdT38OKQwZ/aA4uSsiAg6nEP -# iWBHGuytIo5wU75M5VdjhEqqTHfXYu8BJi6GTzvWT+9ekfMXezqCkksxaG8CAwEA -# AaOCAUkwggFFMB0GA1UdDgQWBBSAaOo5HWatNzqZn1IF1fcD6nr3ITAfBgNVHSME -# GDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1l -# LVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsG -# AQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01p -# Y3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMB -# Af8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIHgDAN -# BgkqhkiG9w0BAQsFAAOCAgEAXxzVZLLXBFfoCCCTiY7MHXdb7civJSTfrHYJC5Ok -# 2NN75NpzTMT9V2TcIQjfQ3AFUbh1NBAYtMUuwxC6D4ceEXG5lXAnbvkC9YjeLVDR -# yImXYYmft7z+Qpl9t3C/8a0tiqnOz8Ue8/DYLtMTgvWMnsqLNjILDaImOfnHI36T -# LCjGFe8RYLXGdCUdOLlfAdMGePxSTA3TAAOc+GQbmPWjrguLWbxvnl3NVjRvrBZV -# kxFMoVZH0f7qGwDOShjpnv5nYnQ48ufL0uBz52RbPGdX4Fv9+UGOrBprmcHzmIut -# FtJec2Y4kujNtTK2wBGgWscEOVhFiaVdje8VLJ7MVNKE5TmsuGM3jTLr1nuR5AFG -# s3UKkP7g3cQD4cHK7XdLiTm7e606QJ+WqeQsADYE9dvU9wIUbI9Dl4UcIErFw+FH -# aWSTrkfJ4SvLmhKnl5khhpJ1sF3z6e1BxepUliXHqzRLiHWihWIWESF8IHElF3PO -# xbP4VJqHBiYvaXMV0SyRgwoD6zXddbUnX9WR6JL2BlqAjjHxINwelsp/VhxAWThz -# uMA58LxvE/VAzjfFF4Wm7a1ZALmJVw3oL/s/uxo1Op4tcT+hfZ9uN1htC1JN4DuR -# qFfLttjuoAmUQobO5zUFRzvCn8Ck/hiO+bzR15sqkjlxLMyMjpkc/ef4SUUikD46 -# 8vUwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0GCSqGSIb3DQEB -# CwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD -# VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAe -# Fw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5OGm -# TOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9uT4XYDP/XE/H -# ZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZrBxTzxXb1hlDc -# wUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk2pg7uhp7M62A -# W36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxRnOlwaQ3KNi1w -# jjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uDRedGbsoy1cCG -# MFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGaRnXNxF803RKJ -# 1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fzpk03dJQcNIIP -# 8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG4tG9ahhaYQFz -# ymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGUlNi5UPkLiWHz -# NgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLEhReTwDwV2xo3 -# xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0wggHZMBIGCSsG -# AQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+gpE8RjUpzxD/ -# LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNVHSAEVTBTMFEG -# DCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29m -# dC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8G -# A1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQw -# VgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j -# cmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUF -# BwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br -# aS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJKoZIhvcNAQEL -# BQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEGk5c9MTO1OdfC -# cTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2LpypglYAA7AF -# vonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7ndn/OOPcbzaN9l -# 9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSFQrP8DJ6LGYnn -# 8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy87JGA0j3mSj5m -# O0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8x1RtnWN0SCyx -# TkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2fpCjcZxkoJLo4 -# S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz/gq77EFmPWn9 -# y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQKBqJC4822rpM -# +Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAxM328y+l7vzhw -# RNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGbyoYIDWTCCAkEC -# AQEwggEBoYHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo0MDFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcGBSsOAwIa -# AxUAMXYp/Wqqdyb0enigrLfxl0InAz6ggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1T -# dGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQsFAAIFAO2xPZMwIhgPMjAyNjA1MTUw -# NjM3MDdaGA8yMDI2MDUxNjA2MzcwN1owdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA -# 7bE9kwIBADAKAgEAAgISSQIB/zAHAgEAAgIS/DAKAgUA7bKPEwIBADA2BgorBgEE -# AYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAIDAYag -# MA0GCSqGSIb3DQEBCwUAA4IBAQBroQF+Sg81bfeOfHJUk6/JFGs8PLV1TknveBB4 -# 98iwKHprD0olwrJVTcjUSM5fyZZhMn9aCH5WZqhW4s2o0Hol7hy7yFH2Z81SGtF8 -# +DW3gLyzgZ/C1rv/pJg2iXgHEqKcrtTjYUGgsJ3C65u4gUCtG0xWfiqrQ5XN/Oqa -# OsQwxRVyBPqoeJg9PxHmvCjd45hGuWQ8TktD3AdfkZm0PkXMcKP0N4Oy795DtoRY -# dAnmrPajxmGWjqtafQo4TxhcG5WTbBn+9zTAYxpbkbkHcSdvPF+V5H6yVS4LkZ4g -# kbGLQ7JTlyzbTpVazSsmwIZUQSCWg0ZByaSh1feqogLGHyM1MYIEDTCCBAkCAQEw -# gZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAIZXrLYVHX0sY0A -# AQAAAhkwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0B -# CRABBDAvBgkqhkiG9w0BCQQxIgQgHtJLpWsmppeW2x+jpzUcmpkzy0shoaSmuIkL -# LPx17uowgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCDckX633E1y1EF32V18 -# zQcrsgjzI9+3Le7mlvk2OebthjCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAACGV6y2FR19LGNAAEAAAIZMCIEIKWsQBDGBzfeuI1tFFic -# wvRWT+IhHHQU4U/KIZUDA7BEMA0GCSqGSIb3DQEBCwUABIICAI/5s+lMbMrPfhgQ -# 3jw0Bl8XmBaGdwzWT0UtEebrgkyOGfilq7+g+USXZeKteVHtkUv8icp7ia/liPMr -# dp69f1R9d42Co23WHNaGJK5nagkmosgv99xy8IAvh7l/Db4Sth95VSBM6rp+zjz/ -# CuEPbwEQH5VV0WBa82bhpC0o7XJqnPpi80rJvi8VUfMrT590Xl0g4i2sGbLsi8Vj -# qRNjmaRiLeQOB+2+nE6FV5kICvTyfOXmCAaLAexP5X1SkxgpXVnXTGjn7nPUj5Oc -# 2txqQ6xVCxuU/sz/86CF5BJH3Zp99Dy3jV2wpLOQ8Dq4W+5u+SZFeRVwxihSk7Fq -# 7MuLivhZLkxKvLH8J7AVAKyeUhWc/lqRPU4TC5jd+k/5drPrYSK7QwvksyzHn/s3 -# gnDP89SV4vbRI7d3V57VxYgZ6G07ZkwBSuFWNAxxt6Xx1aOF7r8f2kN+R93NCXno -# +0Yn3FbKFM7/RYd1VhZlElz9R3WfslG5TBBo05hATtqVNXGIek7SucL3zddgz6s4 -# pQGvOop4AN3iqdpwLvfE2kH4i2/R/x4LiSs65ZFztjU0zwvAkKnoLQ0CVQf5jozS -# LkaKe4Ys06GWoDNPh15gGPg1amim15TBza6SMMbePMiSrkMCqSxYpdrmmkLiHBVY -# ge5PzVpjJf6yPoyy3IPOIpCQB/HY -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psm1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psm1 deleted file mode 100644 index f71e9e86b17f0..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.ConfigAPI.Cmdlets.psm1 +++ /dev/null @@ -1,262 +0,0 @@ -# region Generated - # Load the private module dll - $null = Import-Module -Name (Join-Path $PSScriptRoot './bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.dll') - - # Get the private module's instance - $instance = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Module]::Instance - - # Load the custom module - $customModulePath = Join-Path $PSScriptRoot './custom/Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1' - if(Test-Path $customModulePath) { - $null = Import-Module -Name $customModulePath - } - - # Export nothing to clear implicit exports - Export-ModuleMember - - # Export proxy cmdlet scripts - $exportsPath = Join-Path $PSScriptRoot './exports' - $directories = Get-ChildItem -Directory -Path $exportsPath - $profileDirectory = $null - if($instance.ProfileName) { - if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { - $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } - } else { - # Don't export anything if the profile doesn't exist for the module - $exportsPath = $null - Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." - } - } elseif(($directories | Measure-Object).Count -gt 0) { - # Load the last folder if no profile is selected - $profileDirectory = $directories | Select-Object -Last 1 - } - - if($profileDirectory) { - Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" - $exportsPath = $profileDirectory.FullName - } - - if($exportsPath) { - Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } - $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath - #Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) - } - - # Finalize initialization of this module - $instance.Init(); - Export-ModuleMember -Function $instance.FunctionsToExport.Split(",") - Write-Information "Loaded Module '$($instance.Name)'" -# endregion - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA11zYyqhtEZno0 -# vnR835d32vg185cJKudkjxJ9lgIViKCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIL/XKtNB -# JBHJGGbe7wFtIYIfMWxPHreyoYsrh/7+1ayVMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEADjO7jDaX9TnJwdmBxB6WzObWYr3gxa0314WLd7sK -# KREdfRnRYAPTUgc70gSQyyilzO9xpprXp/Q7BuH0+w+3kUch6ErUASjfQSh3rk62 -# 1kOrkV4/t88GVH5+CXzqV72U+C9tqbbFpk28s/L+kH/kQpTqj2mrKQm8bKK8yxC2 -# +wyDmpnq8RvqHmVrMebdn9MW3itLLLVWo9B4oNO2O+qeovmy6Sb4WcMEuoGNmFPc -# QJ4PUleWuFZ5yUWJOejzRPF1dseNuPZUhdxaF9CQCdHvx2uRYJluN6VWIxczV0+H -# hBvDXCFKkq1Pt/7ZAmgARduAw2wshQl1U6NPNatQZCIr6aGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDBOWhQTmgAmejSmwbp4qD7vk7D1H1LkJe7Hf8h -# VCFyAQIGaftH7fFxGBMyMDI2MDUxNTEwMDY0My4zNTRaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046QTkzNS0wM0UwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAifVwIPDsS5XLQABAAAC -# JzANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDRaFw0yNzA1MTcxOTQwMDRaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046QTkzNS0wM0Uw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDixWy1fDOSL4qj3A1pady+elID -# LwnF3UuLzJIOWwGHcEgrxxwtnyviUIDmmxylTUl1u+2rBPp2zT4BwwQhvGaJpExq -# vPLlDFlbfmSflKI86eFqofiZ7j8NTRO4l7wGg9Njm+muNauTcFW2qdfIjKE950Ok -# rm9MnMOGYy+fibNYdxTPRPq1T4MLZK3s3vdMyMEOldcOQkSKpxD6/1Gk6gOmCu2K -# gI8f0ex6vYxnKDl9W0OLSEa/6y82oIbsm+1QBifOQ47xWKTG1CmvtGr85LzA75/M -# AcUmRw5/of/qET0UFV1WulMcJrI6DASAsNCNB+6WLrotuBZAj+VMlqbn5RMZ6Q4I -# Y7JwaAiIXh7VjxrnwUOYZG8WEGhfrA98di+7LEn9AqvvEOyG+UQcjVhCCbMGXigJ -# XSApeyeWupCsD0jgQMNCxfB5BLBDWxgdY3dJBEPgxfkgTDQLBggtVv2d5CYxHKgI -# ItB4bI5eSb5jkIG2WotnFetT0legpw/Eozwf39ao6tENY21eVWIzRw/GsmvwjYQF -# 6vVrxOD0pGVsfqGF8s3VPeY7hI2TxHFMqNA0IB/a2NLY7JTxYAKAP/11EJZt7xbq -# DLMgD1YDdGEzGpQijm3nAPCL2CebP/jmu90abJ2W425yglGHTI/nCBrwSpfRCgwz -# rfFelJaCKM6+35aFfwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFNLW58N4MGSG6ud7 -# jWqgT92orfReMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAqncud4PSC1teb2H6n -# Ruy7sDiKK13FXJirVB4Tfwjdo2Mb+QL4j7wZ/k4G9P0CANHZFrDQcK0VFDTysrYu -# 8Z0Aha14acDZPsyIoPvAGRRhaHEuf7NckRjkfa/ylo1KyII8jbL9N9sJAqBPL8V4 -# FNBjljv+1GHDOw127rZz5ZSTPoAPb2SA0v5yDgcpUMfxglPyp6cnPPoQpTtD9OGx -# 8Dwm2P+o1TPxBIy6I0T9RauulogVCvKwflfeLTcKAvnSG1rCjerSXmU1DNXOsAD/ -# bsrSjgbX5mAbD7XTRMF/vawAWESFcn/BjjizxeWZb00aYSlkJA2rVtFlMM481aVW -# XdAbXPP5RzUiWTlgyHf/G7lCxHYWGIZuB13T3aI6Y8mEgn/ou40aiFJo8r0+i0P5 -# GdNneWtxiR0CMKUfko+5s/73cwe1Wfp8BKXa270cicVQasFf5sRV7pFm+V7fNRXw -# Cu7anTOmga76zO7/2t+zOlibvphT+Q6Zd+B2qYsSn4xBaY+YzHpnycLW5cvJyhPx -# BCcb1oRYfhRzCADb2utI2EtGCjc2P2ii4LyR4QMb/n8cOweL9IqVTKKzzVk+zZJx -# V3vrp4LyuQXw0O30la6BcHdNAAAB9UC83zs3G9d+AlIfZLM97tMUNKWjbBpIirFx -# 6LTDFXVtZQd7hqzLYByjbjH0ujCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOkE5MzUtMDNFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQAjHzqthPwO0GDckDMA6x54lIiMKqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bD59jAiGA8y -# MDI2MDUxNTAxNDgzOFoYDzIwMjYwNTE2MDE0ODM4WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsPn2AgEAMAoCAQACAiXoAgH/MAcCAQACAhOFMAoCBQDtskt2AgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAGQpsfsgsIUZp+qf85AV1/3nhjzI -# v1dQw8kciRSw5SY9hV9UBXvqF3q6NQshoqIMiLJGOKRBcIKVRrqwX8RbiKBvCwwE -# qvYa3FOKQukUkdbC85KYgnfTtuAuCUzzpRSLKwCN+gYKnE8NFDaYgN7l5f52+Cb7 -# iT/QXnrFCfQnW2MQOLCuQVGVYGjCmus++U633FwI5THKVle3eoemU3GfV51281Hg -# i/H/VSlSLq5+2T5km2TrtUG6pNS8jvguZe7uTgYvj706pavdHdST1epCq6UK+e+d -# /A+1yIwnVs3YQrH10jSRwAhJROU4QxpSMOSlls81JZRHpUUOryTJca7awEYxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAifV -# wIPDsS5XLQABAAACJzANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCC0LSdBXFq7ivk9aq4eViz9+kA8 -# HIKg8ohFk8jWBXJ6wDCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIOXnARo1 -# oVIcOLJKDqlE0adq/jZ9TXdlnXWRcXGThBFyMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIn1cCDw7EuVy0AAQAAAicwIgQgZ5SGyoeJ -# 71UQUT9agTZQOoo92jm7RfFaBUQ9oL6SHAswDQYJKoZIhvcNAQELBQAEggIAbiep -# UAKtvzCyVz7iwZkFcsZWJd3PsR8Zi+cv+YAMzlBXxAMphnI6VktAKL3wXpEksxIw -# 91vbsJpEcwgRkSQbYkDgIz3cjkSWB83ftPDtKEt6a2FT5Bd7NWUwhW9/a6o02F4a -# ANLf05v/jsZVTyh6mZrkdGoxNxvqHFZIjAdK77b/vsNh3TvrLV5pGjLfPjNUawJS -# 91qlS+YFRqwH6y8EXIECw0+ndW4dnsBXzXiGmrqmt/Lbi0Tj2TvxHIPSa3cjZm3T -# 2SrgF9pzPIHvuc5kqPC6DdtRh70k99mk1bOvuYZ4S5XKsc0NCz5uo1/EsmfcYfLv -# zn7+ST0Ap2xjY/s67PCpLvR0l3syOK3f5ybujCXy1OLormQtScFlH4WjlcWxLAow -# SkAvppZYx3MAIj0LMbZPGgZP2qc8xY06pOKdN0zB54huMCw83Nf8MAxy4H5GocYd -# 32iG/pLgDyzQNRwBdatcpRqXITOf3QjfNlVvyiMBDZisUfmYwpPLqyPclDaiRuzB -# bfSkpSdJQIQgr85byfDWzajXngTO785SvatdEk2ffoE/3C0Q+ULhJnxjLBuYGOpV -# pHoiyMMmkplBec1qXh+kKXRoPOV5XeB32JvwdjfJxO2WzU8rvIFk+7xQ6s4PXpbZ -# Kn4H7Zb7C8oCsAQav3MPYp3IZlYPGvndd4r3oog= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml deleted file mode 100644 index 086bae8d728b8..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml +++ /dev/null @@ -1,247 +0,0 @@ - - - - - OnlineDialinConferencingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.OnlineDialinConferencingPolicy - - - - - - - - - Identity - - - - AllowService - - - - Description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml deleted file mode 100644 index f8ec0e1b26340..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml +++ /dev/null @@ -1,286 +0,0 @@ - - - - - OnlineVoicemailPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.OnlineVoicemailPolicy - - - - - - - - - Identity - - - - Description - - - - EnableTranscription - - - - ShareData - - - - EnableTranscriptionProfanityMasking - - - - EnableEditingCallAnswerRulesSetting - - - - MaximumRecordingLength - - - - EnableTranscriptionTranslation - - - - PrimarySystemPromptLanguage - - - - SecondarySystemPromptLanguage - - - - PreambleAudioFile - - - - PostambleAudioFile - - - - PreamblePostambleMandatory - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml deleted file mode 100644 index 1f4f4f5e93b7f..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml +++ /dev/null @@ -1,247 +0,0 @@ - - - - - TeamsAppPolicyConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.TeamsAppPolicyConfiguration - - - - - - - - - Identity - - - - AppCatalogUri - - - - ResourceUri - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml deleted file mode 100644 index 17952c82aeb00..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml +++ /dev/null @@ -1,306 +0,0 @@ - - - - - TeamsMeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.TeamsMeetingConfiguration - - - - - - - - - Identity - - - - LogoURL - - - - LegalURL - - - - HelpURL - - - - CustomFooterText - - - - DisableAnonymousJoin - - - - DisableAppInteractionForAnonymousUsers - - - - EnableQoS - - - - ClientAudioPort - - - - ClientAudioPortRange - - - - ClientVideoPort - - - - ClientVideoPortRange - - - - ClientAppSharingPort - - - - ClientAppSharingPortRange - - - - ClientMediaPortRangeEnabled - - - - LimitPresenterRolePermissions - - - - FeedbackSurveyForAnonymousUsers - - - - ReportMeeting - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml deleted file mode 100644 index 2b711e0aacf23..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsMigrationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.TeamsMigrationConfiguration - - - - - - - - - Identity - - - - EnableLegacyClientInterop - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml deleted file mode 100644 index 86eff296f3672..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsMultiTenantOrganizationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.TeamsMultiTenantOrganizationConfiguration - - - - - - - - - Identity - - - - CopilotFromHomeTenant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml deleted file mode 100644 index 1175483919dd2..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml +++ /dev/null @@ -1,295 +0,0 @@ - - - - - TeamsRoutingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.TeamsRoutingConfiguration - - - - - - - - - Identity - - - - VoiceGatewayFqdn - - - - EnableMessagingGatewayProxy - - - - MessagingConversationRequestUrl - - - - MessagingConversationResponseUrl - - - - MgwRedirectUrlTemplate - - - - EnablePoollessTeamsOnlyUserFlighting - - - - EnablePoollessTeamsOnlyCallingFlighting - - - - EnablePoollessTeamsOnlyMessagingFlighting - - - - EnablePoollessTeamsOnlyConferencingFlighting - - - - EnablePoollessTeamsOnlyPresenceFlighting - - - - HybridEdgeFqdn - - - - DisableTeamsOnlyUsersConfCreateFlighting - - - - TenantDisabledForTeamsOnlyUsersConfCreate - - - - EnableTenantLevelPolicyCheck - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml deleted file mode 100644 index bd6f3c8f93dc3..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsSipDevicesConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.TeamsSipDevicesConfiguration - - - - - - - - - Identity - - - - BulkSignIn - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml deleted file mode 100644 index 8a90ce39841ae..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml +++ /dev/null @@ -1,293 +0,0 @@ - - - - - TenantConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.TenantConfiguration - - - - - - - - - Identity - - - - MaxAllowedDomains - - - - MaxBlockedDomains - - - - - - - - TenantLicensingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.TenantLicensingConfiguration - - - - - - - - - Identity - - - - Status - - - - - - - - TenantWebServiceConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.TenantWebServiceConfiguration - - - - - - - - - Identity - - - - CertificateValidityPeriodInHours - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml deleted file mode 100644 index 6cf6ee0c0ff8a..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml +++ /dev/null @@ -1,246 +0,0 @@ - - - - - OnlineVoicemailValidationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.OnlineVoicemailValidationConfiguration - - - - - - - - - Identity - - - - AudioFileValidationEnabled - - - - AudioFileValidationUri - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml deleted file mode 100644 index b4a103df54af2..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml +++ /dev/null @@ -1,7967 +0,0 @@ - - - - - ApplicationAccessPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ApplicationAccessPolicy - - - - - - - - - Identity - - - - AppIds - - - - Description - - - - - - - - BroadcastMeetingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.BroadcastMeetingPolicy - - - - - - - - - Identity - - - - AllowBroadcastMeeting - - - - AllowOpenBroadcastMeeting - - - - AllowBroadcastMeetingRecording - - - - AllowAnonymousBroadcastMeeting - - - - BroadcastMeetingRecordingEnforced - - - - - - - - CallerIdPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CallerIdPolicy - - - - - - - - - Identity - - - - Description - - - - Name - - - - EnableUserOverride - - - - ServiceNumber - - - - CallerIDSubstitute - - - - - - - - CallingLineIdentityView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CallingLineIdentity - - - - - - - - - Identity - - - - Description - - - - EnableUserOverride - - - - ServiceNumber - - - - CallingIDSubstitute - - - - BlockIncomingPstnCallerID - - - - ResourceAccount - - - - CompanyName - - - - - - - - CloudMeetingOpsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudMeetingOpsPolicy - - - - - - - - - Identity - - - - ActivationLocation - - - - - - - - CloudMeetingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudMeetingPolicy - - - - - - - - - Identity - - - - AllowAutoSchedule - - - - IsModernSchedulingEnabled - - - - - - - - CloudVideoInteropPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudVideoInteropPolicy - - - - - - - - - Identity - - - - EnableCloudVideoInterop - - - - - - - - ConversationRolesSettingView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ConversationRolesSetting - - - - - - - - - Identity - - - - ConversationRoles - - - - - - - - ConversationRoleView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ConversationRole - - - - - - - - - Identity - - - - Permissions - - - - Id - - - - Name - - - - IsAssignable - - - - CreatedAt - - - - UpdatedAt - - - - - - - - ConversationRolePermissionsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ConversationRolePermissions - - - - - - - - - Chat - - - - Calling - - - - - - - - ChatPermissionsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ChatPermissions - - - - - - - - - AddParticipants - - - - RemoveSelf - - - - RemoveParticipants - - - - ListParticipants - - - - GetOwnDetails - - - - GetOthersDetails - - - - UpdateOwnDetails - - - - UpdateOthersDetails - - - - ShareHistory - - - - GetChatThreadProperties - - - - UpdateChatThreadProperties - - - - DeleteChatThread - - - - SendMessage - - - - ReceiveMessage - - - - EditOwnMessage - - - - EditOthersMessage - - - - DeleteOwnMessage - - - - DeleteOthersMessage - - - - - - - - CallingPermissionsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CallingPermissions - - - - - - - - - AddParticipants - - - - AddPhoneNumbers - - - - RemoveParticipants - - - - SendVideo - - - - RestrictOthersVideo - - - - SendAudio - - - - RestrictOthersAudio - - - - ShareScreen - - - - MuteSelf - - - - UnmuteSelf - - - - MuteOthers - - - - SpotlightParticipants - - - - RemoveSpotlights - - - - - - - - ExternalAccessPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalAccessPolicy - - - - - - - - - Identity - - - - AllowedExternalDomains - - - - BlockedExternalDomains - - - - Description - - - - EnableFederationAccess - - - - EnableXmppAccess - - - - EnablePublicCloudAudioVideoAccess - - - - EnableTeamsSmsAccess - - - - EnableOutsideAccess - - - - EnableAcsFederationAccess - - - - EnableTeamsConsumerAccess - - - - EnableTeamsConsumerInbound - - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - - - FederatedBilateralChats - - - - CommunicationWithExternalOrgs - - - - - - - - HostedVoicemailPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.HostedVoicemailPolicy - - - - - - - - - Identity - - - - Description - - - - Destination - - - - Organization - - - - BusinessVoiceEnabled - - - - NgcEnabled - - - - - - - - LocationPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.LocationPolicy - - - - - - - - - Identity - - - - EmergencyNumbers - - - - Description - - - - EnhancedEmergencyServicesEnabled - - - - LocationRequired - - - - UseLocationForE911Only - - - - PstnUsage - - - - EmergencyDialString - - - - EmergencyDialMask - - - - NotificationUri - - - - ConferenceUri - - - - ConferenceMode - - - - LocationRefreshInterval - - - - EnhancedEmergencyServiceDisclaimer - - - - UseHybridVoiceForE911 - - - - EnablePlusPrefix - - - - AllowEmergencyCallsWithoutLineURI - - - - - - - - EmergencyNumberView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.EmergencyNumber - - - - - - - - - DialString - - - - DialMask - - - - - - - - LocationProfileView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.LocationProfile - - - - - - - - - Identity - - - - Description - - - - DialinConferencingRegion - - - - NormalizationRules - - - - PriorityNormalizationRules - - - - CountryCode - - - - State - - - - City - - - - ExternalAccessPrefix - - - - SimpleName - - - - OptimizeDeviceDialing - - - - ITUCountryPrefix - - - - - - - - NormalizationRuleView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NormalizationRule - - - - - - - - - Identity - - - Priority - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - IsInternalExtension - - - - - - - - MeetingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MeetingPolicy - - - - - - - - - Identity - - - - AllowIPAudio - - - - AllowIPVideo - - - - AllowMultiView - - - - Description - - - - AllowParticipantControl - - - - AllowAnnotations - - - - DisablePowerPointAnnotations - - - - AllowUserToScheduleMeetingsWithAppSharing - - - - ApplicationSharingMode - - - - AllowNonEnterpriseVoiceUsersToDialOut - - - - AllowAnonymousUsersToDialOut - - - - AllowAnonymousParticipantsInMeetings - - - - AllowFederatedParticipantJoinAsSameEnterprise - - - - AllowExternalUsersToSaveContent - - - - AllowExternalUserControl - - - - AllowExternalUsersToRecordMeeting - - - - AllowPolls - - - - AllowSharedNotes - - - - AllowQandA - - - - AllowOfficeContent - - - - EnableDialInConferencing - - - - EnableAppDesktopSharing - - - - AllowConferenceRecording - - - - EnableP2PRecording - - - - EnableFileTransfer - - - - EnableP2PFileTransfer - - - - EnableP2PVideo - - - - AllowLargeMeetings - - - - EnableOnlineMeetingPromptForLyncResources - - - - EnableDataCollaboration - - - - MaxVideoConferenceResolution - - - - MaxMeetingSize - - - - AudioBitRateKb - - - - VideoBitRateKb - - - - AppSharingBitRateKb - - - - FileTransferBitRateKb - - - - TotalReceiveVideoBitRateKb - - - - EnableMultiViewJoin - - - - CloudRecordingServiceSupport - - - - EnableReliableConferenceDeletion - - - - - - - - NgcBvMigrationPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NgcBvMigrationPolicy - - - - - - - - - Identity - - - - Description - - - - PstnOut - - - - - - - - OnlineAudioConferencingRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineAudioConferencingRoutingPolicy - - - - - - - - - Identity - - - - OnlinePstnUsages - - - - Description - - - - RouteType - - - - - - - - OnlinePstnUsagesView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlinePstnUsages - - - - - - - - - Identity - - - - Usage - - - - - - - - OnlineDialOutPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialOutPolicy - - - - - - - - - Identity - - - - AllowPSTNConferencingDialOutType - - - - AllowPSTNOutboundCallingType - - - - - - - - OnlineRouteView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineRoute - - - - - - - - - Identity - - - Priority - - - - Description - - - - NumberPattern - - - - OnlinePstnUsages - - - - OnlinePstnGatewayList - - - - BridgeSourcePhoneNumber - - - - Name - - - - - - - - OnlinePstnRoutingSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlinePstnRoutingSettings - - - - - - - - - Identity - - - - OnlineRoute - - - - - - - - OnlineVoiceRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoiceRoutingPolicy - - - - - - - - - Identity - - - - OnlinePstnUsages - - - - Description - - - - RouteType - - - - - - - - PstnUsagesView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PstnUsages - - - - - - - - - Identity - - - - Usage - - - - - - - - TeamsAppPermissionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPermissionPolicy - - - - - - - - - Identity - - - - DefaultCatalogApps - - - - GlobalCatalogApps - - - - PrivateCatalogApps - - - - Description - - - - DefaultCatalogAppsType - - - - GlobalCatalogAppsType - - - - PrivateCatalogAppsType - - - - - - - - DefaultCatalogAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - GlobalCatalogAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - PrivateCatalogAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - TeamsAppSetupPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppSetupPolicy - - - - - - - - - Identity - - - - AppPresetList - - - - PinnedAppBarApps - - - - PinnedMessageBarApps - - - - AppPresetMeetingList - - - - AdditionalCustomizationApps - - - - PinnedCallingBarApps - - - - Description - - - - AllowSideLoading - - - - AllowUserPinning - - - - - - - - AppPresetView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - PinnedAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - Order - - - - - - - - PinnedMessageBarAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - Order - - - - - - - - AppPresetMeetingView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - AdditionalCustomizationAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - AdditionalCustomizationId - - - - - - - - PinnedCallingBarAppView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp - - - - - - - - - Identity - - - Priority - - - - Id - - - - - - - - TeamsBranchSurvivabilityPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsBranchSurvivabilityPolicy - - - - - - - - - Identity - - - - BranchApplianceFqdns - - - - - - - - TeamsCallHoldPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCallHoldPolicy - - - - - - - - - Identity - - - - Description - - - - AudioFileId - - - - StreamingSourceUrl - - - - StreamingSourceAuthType - - - - - - - - TeamsCallingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCallingPolicy - - - - - - - - - Identity - - - - Description - - - - AllowPrivateCalling - - - - AllowWebPSTNCalling - - - - AllowSIPDevicesCalling - - - - AllowVoicemail - - - - AllowCallGroups - - - - AllowDelegation - - - - AllowCallForwardingToUser - - - - AllowCallForwardingToPhone - - - - PreventTollBypass - - - - BusyOnBusyEnabledType - - - - MusicOnHoldEnabledType - - - - AllowCloudRecordingForCalls - - - - ExplicitRecordingConsent - - - - PreventComplianceRecording - - - - EnableRecordingAndTranscriptionCustomMessage - - - - RecordingAndTranscriptionCustomMessageIdentifier - - - - AllowTranscriptionForCalling - - - - RecordingAndTranscriptionAudioNotification - - - - PopoutForIncomingPstnCalls - - - - PopoutAppPathForIncomingPstnCalls - - - - LiveCaptionsEnabledTypeForCalling - - - - AutoAnswerEnabledType - - - - SpamFilteringEnabledType - - - - CallRecordingExpirationDays - - - - AllowCallRedirect - - - - InboundPstnCallRoutingTreatment - - - - InboundFederatedCallRoutingTreatment - - - - EnableWebPstnMediaBypass - - - - EnableSpendLimits - - - - CallingSpendUserLimit - - - - Copilot - - - - ShowTeamsCallsInCallLog - - - - RealTimeText - - - - AIInterpreter - - - - VoiceSimulationInInterpreter - - - - ReportCall - - - - - - - - TeamsCallParkPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCallParkPolicy - - - - - - - - - Identity - - - - Description - - - - AllowCallPark - - - - PickupRangeStart - - - - PickupRangeEnd - - - - ParkTimeoutSeconds - - - - - - - - TeamsCarrierEmergencyCallRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCarrierEmergencyCallRoutingPolicy - - - - - - - - - Identity - - - - LocationPolicyId - - - - Description - - - - - - - - TeamsChannelsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsChannelsPolicy - - - - - - - - - Identity - - - - Description - - - - AllowOrgWideTeamCreation - - - - EnablePrivateTeamDiscovery - - - - AllowPrivateChannelCreation - - - - AllowSharedChannelCreation - - - - AllowChannelSharingToExternalUser - - - - AllowUserToParticipateInExternalSharedChannel - - - - ThreadedChannelCreation - - - - - - - - TeamsComplianceRecordingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsComplianceRecordingPolicy - - - - - - - - - Identity - - - - ComplianceRecordingApplications - - - - Enabled - - - - WarnUserOnRemoval - - - - DisableComplianceRecordingAudioNotificationForCalls - - - - Description - - - - RecordReroutedCalls - - - - CustomPromptsEnabled - - - - CustomPromptsPackageId - - - - CustomBanner - - - - - - - - ComplianceRecordingApplicationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ComplianceRecordingApplication - - - - - - - - - Identity - - - Priority - - - - ComplianceRecordingPairedApplications - - - - Id - - - - RequiredBeforeMeetingJoin - - - - RequiredBeforeCallEstablishment - - - - RequiredDuringMeeting - - - - RequiredDuringCall - - - - ConcurrentInvitationCount - - - - - - - - ComplianceRecordingPairedApplicationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ComplianceRecordingPairedApplication - - - - - - - - - Id - - - - - - - - TeamsCortanaPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCortanaPolicy - - - - - - - - - Identity - - - - Description - - - - CortanaVoiceInvocationMode - - - - AllowCortanaVoiceInvocation - - - - AllowCortanaAmbientListening - - - - AllowCortanaInContextSuggestions - - - - - - - - TeamsEducationAssignmentsAppPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEducationAssignmentsAppPolicy - - - - - - - - - Identity - - - - ParentDigestEnabledType - - - - MakeCodeEnabledType - - - - TurnItInEnabledType - - - - TurnItInApiUrl - - - - TurnItInApiKey - - - - - - - - TeamsEmergencyCallingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingPolicy - - - - - - - - - Identity - - - - ExtendedNotifications - - - - NotificationGroup - - - - NotificationDialOutNumber - - - - ExternalLocationLookupMode - - - - NotificationMode - - - - EnhancedEmergencyServiceDisclaimer - - - - Description - - - - - - - - TeamsEmergencyCallingExtendedNotificationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification - - - - - - - - - EmergencyDialString - - - - NotificationGroup - - - - NotificationDialOutNumber - - - - NotificationMode - - - - - - - - TeamsEmergencyCallRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallRoutingPolicy - - - - - - - - - Identity - - - - EmergencyNumbers - - - - AllowEnhancedEmergencyServices - - - - Description - - - - - - - - TeamsEmergencyNumberView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyNumber - - - - - - - - - EmergencyDialString - - - - EmergencyDialMask - - - - OnlinePSTNUsage - - - - - - - - TeamsEnhancedEncryptionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEnhancedEncryptionPolicy - - - - - - - - - Identity - - - - CallingEndtoEndEncryptionEnabledType - - - - MeetingEndToEndEncryption - - - - Description - - - - - - - - TeamsEventsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEventsPolicy - - - - - - - - - Identity - - - - AllowWebinars - - - - EventAccessType - - - - AllowTownhalls - - - - TownhallEventAttendeeAccess - - - - ExternalPresenterJoinVerification - - - - AllowEmailEditing - - - - AllowedQuestionTypesInRegistrationForm - - - - AllowEventIntegrations - - - - AllowedWebinarTypesForRecordingPublish - - - - AllowedTownhallTypesForRecordingPublish - - - - RecordingForTownhall - - - - RecordingForWebinar - - - - TranscriptionForTownhall - - - - TranscriptionForWebinar - - - - TownhallChatExperience - - - - BroadcastPremiumApps - - - - UseMicrosoftECDN - - - - ImmersiveEvents - - - - TownhallMaxResolution - - - - HighBitrateForTownhall - - - - BackroomChat - - - - Registration - - - - Description - - - - - - - - TeamsFeedbackPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsFeedbackPolicy - - - - - - - - - Identity - - - - UserInitiatedMode - - - - ReceiveSurveysMode - - - - AllowScreenshotCollection - - - - AllowEmailCollection - - - - AllowLogCollection - - - - EnableFeatureSuggestions - - - - - - - - TeamsFilesPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsFilesPolicy - - - - - - - - - Identity - - - - NativeFileEntryPoints - - - - SPChannelFilesTab - - - - DefaultFileUploadAppId - - - - FileSharingInChatswithExternalUsers - - - - - - - - TeamsInteropPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsInteropPolicy - - - - - - - - - Identity - - - - AllowEndUserClientOverride - - - - CallingDefaultClient - - - - ChatDefaultClient - - - - - - - - TeamsIPPhonePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsIPPhonePolicy - - - - - - - - - Identity - - - - Description - - - - SignInMode - - - - SearchOnCommonAreaPhoneMode - - - - AllowHomeScreen - - - - AllowBetterTogether - - - - AllowHotDesking - - - - HotDeskingIdleTimeoutInMinutes - - - - - - - - TeamsMediaLoggingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMediaLoggingPolicy - - - - - - - - - Identity - - - - Description - - - - AllowMediaLogging - - - - - - - - TeamsMeetingBrandingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingBrandingPolicy - - - - - - - - - Identity - - - - NdiAssuranceSlateImages - - - - MeetingBackgroundImages - - - - MeetingBrandingThemes - - - - DefaultTheme - - - - EnableMeetingOptionsThemeOverride - - - - EnableNdiAssuranceSlate - - - - EnableMeetingBackgroundImages - - - - RequireBackgroundEffect - - - - - - - - NdiAssuranceSlateView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate - - - - - - - - - Id - - - - Name - - - - NdiImageUri - - - - IsDefault - - - - - - - - MeetingBackgroundImageView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MeetingBackgroundImage - - - - - - - - - Id - - - - Order - - - - Name - - - - IsRequired - - - - IsHidden - - - - ImageUri - - - - - - - - MeetingBrandingThemeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MeetingBrandingTheme - - - - - - - - - MeetingReactions - - - - DisplayName - - - - LogoImageLightUri - - - - LogoImageDarkUri - - - - BackgroundImageLightUri - - - - BackgroundImageDarkUri - - - - LogoImageLightPreAuthUri - - - - LogoImageDarkPreAuthUri - - - - MeetingInviteLogoImageLightPreAuthUri - - - - MeetingInviteLogoImageDarkPreAuthUri - - - - BackgroundImageLightPreAuthUri - - - - BackgroundImageDarkPreAuthUri - - - - BrandAccentColor - - - - Enabled - - - - Identity - - - - - - - - MeetingReactionItemModelView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MeetingReactionItemModel - - - - - - - - - Id - - - - ReactionImageUrl - - - - ReactionSpriteImageUrl - - - - ReactionType - - - - - - - - TeamsMeetingBroadcastPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingBroadcastPolicy - - - - - - - - - Identity - - - - Description - - - - AllowBroadcastScheduling - - - - AllowBroadcastTranscription - - - - BroadcastAttendeeVisibilityMode - - - - BroadcastRecordingMode - - - - - - - - TeamsMeetingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingPolicy - - - - - - - - - Identity - - - - Description - - - - AllowChannelMeetingScheduling - - - - AllowMeetNow - - - - AllowPrivateMeetNow - - - - MeetingChatEnabledType - - - - AllowExternalNonTrustedMeetingChat - - - - CopyRestriction - - - - LiveCaptionsEnabledType - - - - DesignatedPresenterRoleMode - - - - AllowIPAudio - - - - AllowIPVideo - - - - AllowEngagementReport - - - - AllowTrackingInReport - - - - IPAudioMode - - - - IPVideoMode - - - - AllowAnonymousUsersToDialOut - - - - AllowAnonymousUsersToStartMeeting - - - - AllowAnonymousUsersToJoinMeeting - - - - BlockedAnonymousJoinClientTypes - - - - AllowedStreamingMediaInput - - - - ExplicitRecordingConsent - - - - PreventComplianceRecording - - - - EnableRecordingAndTranscriptionCustomMessage - - - - RecordingAndTranscriptionCustomMessageIdentifier - - - - AllowLocalRecording - - - - AutoRecording - - - - ParticipantNameChange - - - - AllowPrivateMeetingScheduling - - - - AutoAdmittedUsers - - - - AllowCloudRecording - - - - SetRecordingAndTranscriptOwnership - - - - RecordingAndTranscriptionAudioNotification - - - - FilterProfanityInTranscript - - - - AllowRecordingStorageOutsideRegion - - - - RecordingStorageMode - - - - AllowMeetingKnowledgeGeneration - - - - MeetingKnowledgeExpirationDays - - - - AllowOutlookAddIn - - - - AllowPowerPointSharing - - - - AllowParticipantGiveRequestControl - - - - AllowExternalParticipantGiveRequestControl - - - - AllowSharedNotes - - - - AllowWhiteboard - - - - AllowTranscription - - - - AllowNetworkConfigurationSettingsLookup - - - - MediaBitRateKb - - - - ScreenSharingMode - - - - AllowMultipleScreenshare - - - - VideoFiltersMode - - - - AllowPSTNUsersToBypassLobby - - - - AllowOrganizersToOverrideLobbySettings - - - - PreferredMeetingProviderForIslandsMode - - - - AllowNDIStreaming - - - - SpeakerAttributionMode - - - - EnrollUserOverride - - - - RoomAttributeUserOverride - - - - StreamingAttendeeMode - - - - AttendeeIdentityMasking - - - - AllowBreakoutRooms - - - - TeamsCameraFarEndPTZMode - - - - AllowMeetingReactions - - - - AllowMeetingRegistration - - - - WhoCanRegister - - - - AllowScreenContentDigitization - - - - AllowCarbonSummary - - - - RoomPeopleNameUserOverride - - - - AllowMeetingCoach - - - - NewMeetingRecordingExpirationDays - - - - LiveStreamingMode - - - - MeetingInviteLanguages - - - - ChannelRecordingDownload - - - - AllowCartCaptionsScheduling - - - - AllowTasksFromTranscript - - - - InfoShownInReportMode - - - - LiveInterpretationEnabledType - - - - QnAEngagementMode - - - - AllowImmersiveView - - - - AllowAvatarsInGallery - - - - AllowAnnotations - - - - AllowDocumentCollaboration - - - - AllowWatermarkForScreenSharing - - - - AllowWatermarkForCameraVideo - - - - AllowWatermarkCustomizationForCameraVideo - - - - WatermarkForCameraVideoOpacity - - - - WatermarkForCameraVideoPattern - - - - AllowWatermarkCustomizationForScreenSharing - - - - WatermarkForScreenSharingOpacity - - - - WatermarkForScreenSharingPattern - - - - WatermarkForAnonymousUsers - - - - DetectSensitiveContentDuringScreenSharing - - - - AudibleRecordingNotification - - - - ConnectToMeetingControls - - - - Copilot - - - - AutomaticallyStartCopilot - - - - VoiceIsolation - - - - ExternalMeetingJoin - - - - ContentSharingInExternalMeetings - - - - AllowedUsersForMeetingDetails - - - - SmsNotifications - - - - CaptchaVerificationForMeetingJoin - - - - UsersCanAdmitFromLobby - - - - LobbyChat - - - - BackroomChat - - - - AnonymousUserAuthenticationMethod - - - - NoiseSuppressionForDialInParticipants - - - - RealTimeText - - - - AIInterpreter - - - - VoiceSimulationInInterpreter - - - - ParticipantSlideControl - - - - PasscodeComplexity - - - - ExternalBotAccessMode - - - - DisableAudioAnnouncementsForResourceAccounts - - - - - - - - TeamsMeetingTemplatePermissionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingTemplatePermissionPolicy - - - - - - - - - Identity - - - - HiddenMeetingTemplates - - - - Description - - - - - - - - HiddenMeetingTemplateView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenMeetingTemplate - - - - - - - - - Id - - - - - - - - TeamsMessagingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMessagingPolicy - - - - - - - - - Identity - - - - Description - - - - AllowUrlPreviews - - - - AllowOwnerDeleteMessage - - - - AllowUserEditMessage - - - - AllowUserDeleteMessage - - - - UsersCanDeleteBotMessages - - - - AllowUserDeleteChat - - - - AllowUserChat - - - - AllowRemoveUser - - - - AllowGiphy - - - - GiphyRatingType - - - - AllowGiphyDisplay - - - - AllowPasteInternetImage - - - - AllowMemes - - - - AllowImmersiveReader - - - - AllowStickers - - - - AllowUserTranslation - - - - ReadReceiptsEnabledType - - - - AllowPriorityMessages - - - - AllowSmartReply - - - - AllowSmartCompose - - - - ChannelsInChatListEnabledType - - - - AudioMessageEnabledType - - - - ChatPermissionRole - - - - AllowFullChatPermissionUserToDeleteAnyMessage - - - - AllowFluidCollaborate - - - - AllowVideoMessages - - - - AllowCommunicationComplianceEndUserReporting - - - - AllowChatWithGroup - - - - AllowSecurityEndUserReporting - - - - InOrganizationChatControl - - - - AllowGroupChatJoinLinks - - - - CreateCustomEmojis - - - - UseB2BInvitesToAddExternalUsers - - - - AllowProactiveSummaries - - - - DeleteCustomEmojis - - - - AutoShareFilesInExternalChats - - - - DesignerForBackgroundsAndImages - - - - AllowCustomGroupChatAvatars - - - - - - - - TeamsMobilityPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMobilityPolicy - - - - - - - - - Identity - - - - Description - - - - IPVideoMobileMode - - - - IPAudioMobileMode - - - - MobileDialerPreference - - - - LinksInTeams - - - - - - - - TeamsNetworkRoamingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsNetworkRoamingPolicy - - - - - - - - - Identity - - - - AllowIPVideo - - - - MediaBitRateKb - - - - Description - - - - - - - - TeamsNotificationAndFeedsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsNotificationAndFeedsPolicy - - - - - - - - - Identity - - - - Description - - - - SuggestedFeedsEnabledType - - - - TrendingFeedsEnabledType - - - - - - - - TeamsOwnersPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsOwnersPolicy - - - - - - - - - Identity - - - - Description - - - - AllowPrivateTeams - - - - AllowOrgwideTeams - - - - AllowPublicTeams - - - - - - - - TeamsRemoteLogCollectionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRemoteLogCollectionPolicy - - - - - - - - - Identity - - - - Devices - - - - - - - - TeamsRemoteLogDeviceView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRemoteLogDevice - - - - - - - - - Identity - - - - Id - - - - DeviceId - - - - ExpireAfter - - - - - - - - TeamsRoomVideoTeleConferencingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoomVideoTeleConferencingPolicy - - - - - - - - - Identity - - - - Description - - - - Enabled - - - - AreaCode - - - - ReceiveExternalCalls - - - - ReceiveInternalCalls - - - - PlaceExternalCalls - - - - PlaceInternalCalls - - - - - - - - TeamsSharedCallingRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSharedCallingRoutingPolicy - - - - - - - - - Identity - - - - EmergencyNumbers - - - - ResourceAccount - - - - Description - - - - - - - - TeamsShiftsAppPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsShiftsAppPolicy - - - - - - - - - Identity - - - - AllowTimeClockLocationDetection - - - - - - - - TeamsShiftsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsShiftsPolicy - - - - - - - - - Identity - - - - ShiftNoticeFrequency - - - - ShiftNoticeMessageType - - - - ShiftNoticeMessageCustom - - - - AccessType - - - - AccessGracePeriodMinutes - - - - EnableScheduleOwnerPermissions - - - - - - - - TeamsSyntheticAutomatedCallPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSyntheticAutomatedCallPolicy - - - - - - - - - Identity - - - - Description - - - - SyntheticAutomatedCallsMode - - - - - - - - TeamsTargetingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsTargetingPolicy - - - - - - - - - Identity - - - - Description - - - - ManageTagsPermissionMode - - - - TeamOwnersEditWhoCanManageTagsMode - - - - SuggestedPresetTags - - - - CustomTagsMode - - - - ShiftBackedTagsMode - - - - AutomaticTagsMode - - - - - - - - TeamsTasksPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsTasksPolicy - - - - - - - - - Identity - - - - TasksMode - - - - AllowActivityWhenTasksPublished - - - - - - - - TeamsTemplatePermissionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsTemplatePermissionPolicy - - - - - - - - - Identity - - - - HiddenTemplates - - - - Description - - - - - - - - HiddenTemplateView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate - - - - - - - - - Id - - - - - - - - TeamsUpdateManagementPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsUpdateManagementPolicy - - - - - - - - - Identity - - - - DisabledInProductMessages - - - - Description - - - - AllowManagedUpdates - - - - AllowPreview - - - - UpdateDayOfWeek - - - - UpdateTime - - - - $_.UpdateTimeOfDay.ToShortTimeString() - - - - AllowPublicPreview - - - - UseNewTeamsClient - - - - BlockLegacyAuthorization - - - - - - - - TeamsUpgradeOverridePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsUpgradeOverridePolicy - - - - - - - - - Identity - - - - Description - - - - ProvisionedAsTeamsOnly - - - - SkypePoolMode - - - - Action - - - - Enabled - - - - - - - - TeamsUpgradePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsUpgradePolicy - - - - - - - - - Identity - - - - Description - - - - Mode - - - - NotifySfbUsers - - - - Action - - - - - - - - TeamsVdiPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsVdiPolicy - - - - - - - - - Identity - - - - DisableCallsAndMeetings - - - - DisableAudioVideoInCallsAndMeetings - - - - VDI2Optimization - - - - - - - - TeamsVerticalPackagePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsVerticalPackagePolicy - - - - - - - - - Identity - - - - PackageIncludedPolices - - - - Description - - - - PackageId - - - - FirstRunExperienceId - - - - - - - - PolicyTypeToPolicyInstanceView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PolicyTypeToPolicyInstance - - - - - - - - - PolicyType - - - - PolicyName - - - - - - - - TeamsVideoInteropServicePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsVideoInteropServicePolicy - - - - - - - - - Identity - - - - Description - - - - ProviderName - - - - Enabled - - - - - - - - TeamsVoiceApplicationsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsVoiceApplicationsPolicy - - - - - - - - - Identity - - - - Description - - - - AllowAutoAttendantBusinessHoursGreetingChange - - - - AllowAutoAttendantAfterHoursGreetingChange - - - - AllowAutoAttendantHolidayGreetingChange - - - - AllowAutoAttendantBusinessHoursChange - - - - AllowAutoAttendantTimeZoneChange - - - - AllowAutoAttendantLanguageChange - - - - AllowAutoAttendantHolidaysChange - - - - AllowAutoAttendantBusinessHoursRoutingChange - - - - AllowAutoAttendantAfterHoursRoutingChange - - - - AllowAutoAttendantHolidayRoutingChange - - - - AllowCallQueueWelcomeGreetingChange - - - - AllowCallQueueMusicOnHoldChange - - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - - - AllowCallQueueOptOutChange - - - - AllowCallQueueAgentOptChange - - - - AllowCallQueueMembershipChange - - - - AllowCallQueueRoutingMethodChange - - - - AllowCallQueuePresenceBasedRoutingChange - - - - CallQueueAgentMonitorMode - - - - CallQueueAgentMonitorNotificationMode - - - - AllowCallQueueLanguageChange - - - - AllowCallQueueOverflowRoutingChange - - - - AllowCallQueueTimeoutRoutingChange - - - - AllowCallQueueNoAgentsRoutingChange - - - - AllowCallQueueConferenceModeChange - - - - AllowCallQueueNoAgentSharedVoicemailGreetingChange - - - - RealTimeAutoAttendantMetricsPermission - - - - RealTimeCallQueueMetricsPermission - - - - RealTimeAgentMetricsPermission - - - - HistoricalAutoAttendantMetricsPermission - - - - HistoricalCallQueueMetricsPermission - - - - HistoricalAgentMetricsPermission - - - - - - - - TeamsWatermarkPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsWatermarkPolicy - - - - - - - - - Identity - - - - AllowForScreenSharing - - - - AllowForCameraVideo - - - - Description - - - - - - - - TeamsWorkLoadPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsWorkLoadPolicy - - - - - - - - - Identity - - - - Description - - - - AllowMeeting - - - - AllowMeetingPinned - - - - AllowMessaging - - - - AllowMessagingPinned - - - - AllowCalling - - - - AllowCallingPinned - - - - - - - - TenantBlockedCallingNumbersView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantBlockedCallingNumbers - - - - - - - - - Identity - - - - InboundBlockedNumberPatterns - - - - InboundExemptNumberPatterns - - - - Enabled - - - - Name - - - - - - - - InboundBlockedNumberPatternView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.InboundBlockedNumberPattern - - - - - - - - - Identity - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - ResourceAccount - - - - - - - - InboundExemptNumberPatternView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.InboundExemptNumberPattern - - - - - - - - - Identity - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - - - - - TenantDialPlanView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantDialPlan - - - - - - - - - Identity - - - - Description - - - - NormalizationRules - - - - ExternalAccessPrefix - - - - SimpleName - - - - OptimizeDeviceDialing - - - - - - - - VoicePolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicePolicy - - - - - - - - - Identity - - - - PstnUsages - - - - CustomCallForwardingSimulRingUsages - - - - Description - - - - AllowSimulRing - - - - AllowCallForwarding - - - - AllowPSTNReRouting - - - - Name - - - - EnableDelegation - - - - EnableTeamCall - - - - EnableCallTransfer - - - - EnableCallPark - - - - EnableBusyOptions - - - - EnableMaliciousCallTracing - - - - EnableBWPolicyOverride - - - - PreventPSTNTollBypass - - - - EnableFMC - - - - CallForwardingSimulRingUsageType - - - - VoiceDeploymentMode - - - - EnableVoicemailEscapeTimer - - - - PSTNVoicemailEscapeTimer - - - - TenantAdminEnabled - - - - BusinessVoiceEnabled - - - - - - - - VoiceRoutingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoiceRoutingPolicy - - - - - - - - - Identity - - - - PstnUsages - - - - Description - - - - Name - - - - AllowInternationalCalls - - - - HybridPSTNSiteIndex - - - - - - - - TeamsAcsFederationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAcsFederationConfiguration - - - - - - - - - Identity - - - - AllowedAcsResources - - - - EnableAcsUsers - - - - RequireAcsFederationForMeeting - - - - LabelForAllowedAcsUsers - - - - HideBannerForAllowedAcsUsers - - - - - - - - DialInConferencingDtmfConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DialInConferencingDtmfConfiguration - - - - - - - - - Identity - - - - CommandCharacter - - - - MuteUnmuteCommand - - - - AudienceMuteCommand - - - - LockUnlockConferenceCommand - - - - HelpCommand - - - - PrivateRollCallCommand - - - - EnableDisableAnnouncementsCommand - - - - AdmitAll - - - - OperatorLineUri - - - - - - - - DialInConferencingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DialInConferencingConfiguration - - - - - - - - - Identity - - - - EntryExitAnnouncementsType - - - - BatchToneAnnouncements - - - - EnableNameRecording - - - - EntryExitAnnouncementsEnabledByDefault - - - - UsePinAuth - - - - PinAuthType - - - - EnableInterpoolTransfer - - - - EnableAccessibilityOptions - - - - EnableAnnouncementServiceTransfer - - - - - - - - DialInConferencingLanguageListView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DialInConferencingLanguageList - - - - - - - - - Identity - - - - Languages - - - - - - - - TenantFederationSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantFederationSettings - - - - - - - - - Identity - - - - AllowedDomains - - - - BlockedDomains - - - - AllowedTrialTenantDomains - - - - AllowFederatedUsers - - - - AllowTeamsSms - - - - AllowTeamsConsumer - - - - AllowTeamsConsumerInbound - - - - TreatDiscoveredPartnersAsUnverified - - - - SharedSipAddressSpace - - - - RestrictTeamsConsumerToExternalUserProfiles - - - - BlockAllSubdomains - - - - ExternalAccessWithTrialTenants - - - - DomainBlockingForMDOAdminsInTeams - - - - SecurityTeamAllowBlockListDelegation - - - - EnableExternalAccessRestrictionsForChatPartipants - - - - EnableMutualFederationForChatPartipants - - - - - - - - AllowedDomainsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AllowedDomains - - - - - - - - - AllowedDomainsChoice - - - - - - - - AllowListView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AllowList - - - - - - - - - AllowedDomain - - - - - - - - DomainPatternView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DomainPattern - - - - - - - - - Domain - - - - - - - - AllowedDomainView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AllowedDomain - - - - - - - - - Identity - - - - Domain - - - - ProxyFqdn - - - - VerificationLevel - - - - Comment - - - - MarkForMonitoring - - - - - - - - BlockedDomainView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.BlockedDomain - - - - - - - - - Identity - - - - Domain - - - - Comment - - - - - - - - AdditionalInternalDomainView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalInternalDomain - - - - - - - - - Identity - - - - Domain - - - - - - - - MediaRelaySettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MediaRelaySettings - - - - - - - - - Identity - - - - MaxTokenLifetime - - - - MaxBandwidthPerUserKb - - - - MaxBandwidthPerPortKb - - - - PermissionListIgnoreSeconds - - - - MaxAverageConnPps - - - - MaxPeakConnPps - - - - TRAPUrl - - - - TRAPCallDistribution - - - - TRAPHttpclientRetryCount - - - - TRAPHttpclientTimeoutInMilliSeconds - - - - HideMrasInternalFqdnForClientRequest - - - - - - - - OnlineDialinPageConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinPageConfiguration - - - - - - - - - Identity - - - - MaximumConcurrentBvdGetSipResourceRequests - - - - MaximumConcurrentBvdGetBridgeRequests - - - - EnablePinServicesUserLookup - - - - EnableRedirectToAzureDialinPage - - - - AzureDialinPageUrl - - - - - - - - OnlineDialinConferencingTenantConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencingTenantConfiguration - - - - - - - - - Identity - - - - Status - - - - EnableCustomTrunking - - - - ThirdPartyNumberStatus - - - - - - - - SharedResourcesConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.SharedResourcesConfiguration - - - - - - - - - Identity - - - - SupportedRings - - - - TelephoneNumberManagementV2ServiceUrl - - - - TenantAdminApiServiceUrl - - - - BusinessVoiceDirectoryUrl - - - - TgsServiceUrl - - - - AgentProvisioningServiceUrl - - - - SipDomain - - - - ProxyFqdn - - - - EmailServiceUrl - - - - MicrosoftEmailServiceUrl - - - - MicrosoftAuthenticationUrl - - - - EmailFlightPercentage - - - - DialOutInformationLink - - - - MediaStorageServiceUrl - - - - GlobalMediaStorageServiceUrl - - - - MediaStorageServiceRegion - - - - TelephoneNumberManagementServiceUrl - - - - NameDictionaryServiceUrl - - - - OrganizationalAutoAttendantAdminServiceUrl - - - - IsEcsProdEnvironment - - - - DialinBridgeFormatEnabled - - - - ApplicationConfigurationServiceUrl - - - - RecognizeServiceEndpointUrl - - - - RecognizeServiceAadResourceUrl - - - - AuthorityUrl - - - - ConferenceAutoAttendantApplicationId - - - - SchedulerMaxBvdConcurrentCalls - - - - - - - - OnlineDialinConferencingServiceConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencingServiceConfiguration - - - - - - - - - Identity - - - - AnonymousCallerGracePeriod - - - - AnonymousCallerMeetingRuntime - - - - AuthenticatedCallerMeetingRuntime - - - - - - - - OnlineDialInConferencingNumberMapView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialInConferencingNumberMap - - - - - - - - - Identity - - - Priority - - - - Geocodes - - - - Name - - - - Shared - - - - - - - - OnlineDialInConferencingMarketProfileView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialInConferencingMarketProfile - - - - - - - - - Identity - - - Priority - - - - NumberMaps - - - - Name - - - - Code - - - - Region - - - - DefaultBridgeGeocode - - - - - - - - OnlineDialinConferencingDefaultLanguageView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencingDefaultLanguage - - - - - - - - - Identity - - - - DefaultLanguages - - - - - - - - DefaultLanguageEntryView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultLanguageEntry - - - - - - - - - SecondaryLanguages - - - - Geocode - - - - PrimaryLanguage - - - - - - - - OnlineDialInConferencingTenantSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialInConferencingTenantSettings - - - - - - - - - Identity - - - - AllowedDialOutExternalDomains - - - - EnableEntryExitNotifications - - - - EntryExitAnnouncementsType - - - - EnableNameRecording - - - - IncludeTollFreeNumberInMeetingInvites - - - - MaskPstnNumbersType - - - - PinLength - - - - AllowPSTNOnlyMeetingsByDefault - - - - AutomaticallySendEmailsToUsers - - - - SendEmailFromOverride - - - - SendEmailFromAddress - - - - SendEmailFromDisplayName - - - - AutomaticallyReplaceAcpProvider - - - - UseUniqueConferenceIds - - - - AutomaticallyMigrateUserMeetings - - - - MigrateServiceNumbersOnCrossForestMove - - - - EnableDialOutJoinConfirmation - - - - AllowFederatedUsersToDialOutToSelf - - - - AllowFederatedUsersToDialOutToThirdParty - - - - DynamicCallerIdMode - - - - - - - - OnlineDialInConferencingAllowedDomainView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialInConferencingAllowedDomain - - - - - - - - - Identity - - - - Domain - - - - - - - - PlatformApplicationsConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PlatformApplicationsConfiguration - - - - - - - - - Identity - - - - PublicApplicationList - - - - PublicApplicationListMode - - - - - - - - ApplicationMeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ApplicationMeetingConfiguration - - - - - - - - - Identity - - - - AllowRemoveParticipantAppIds - - - - - - - - TeamsAudioConferencingCustomPromptsConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAudioConferencingCustomPromptsConfiguration - - - - - - - - - Identity - - - - Prompts - - - - Packages - - - - - - - - CustomPromptView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CustomPrompt - - - - - - - - - Id - - - - Name - - - - AudioPrompt - - - - TextPrompt - - - - Type - - - - Locale - - - - - - - - CustomPromptPackageView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CustomPromptPackage - - - - - - - - - InboundStartRecordingPrompt - - - - InboundEndRecordingPrompt - - - - OutboundStartRecordingPrompt - - - - OutboundEndRecordingPrompt - - - - MeetingStartRecordingPrompt - - - - MeetingEndRecordingPrompt - - - - Id - - - - Name - - - - DefaultLocale - - - - - - - - TeamsCallHoldValidationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsCallHoldValidationConfiguration - - - - - - - - - Identity - - - - AudioFileValidationEnabled - - - - AudioFileValidationUri - - - - - - - - TeamsClientConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsClientConfiguration - - - - - - - - - Identity - - - - AllowEmailIntoChannel - - - - RestrictedSenderList - - - - AllowDropBox - - - - AllowBox - - - - AllowGoogleDrive - - - - AllowShareFile - - - - AllowEgnyte - - - - AllowOrganizationTab - - - - AllowSkypeBusinessInterop - - - - ContentPin - - - - AllowResourceAccountSendMessage - - - - ResourceAccountContentAccess - - - - AllowGuestUser - - - - AllowScopedPeopleSearchandAccess - - - - AllowRoleBasedChatPermissions - - - - ExtendedWorkInfoInPeopleSearch - - - - UseUnifiedDomain - - - - - - - - TeamsConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsConfiguration - - - - - - - - - Identity - - - - EnabledForVoice - - - - EnabledForMessaging - - - - - - - - CustomBannerTextView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CustomBannerText - - - - - - - - - Identity - - - - Id - - - - Text - - - - Description - - - - - - - - TeamsEducationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEducationConfiguration - - - - - - - - - Identity - - - - ParentGuardianPreferredContactMethod - - - - EduGenerativeAIEnhancements - - - - UpdateParentInformation - - - - - - - - TeamsEffectiveMeetingSurveyConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEffectiveMeetingSurveyConfiguration - - - - - - - - - Identity - - - - Survey - - - - DefaultOrganizerMode - - - - - - - - TeamsExternalAccessConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsExternalAccessConfiguration - - - - - - - - - Identity - - - - BlockedUsers - - - - BlockExternalUserAccess - - - - - - - - TeamsGuestCallingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsGuestCallingConfiguration - - - - - - - - - Identity - - - - AllowPrivateCalling - - - - - - - - TeamsGuestMeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsGuestMeetingConfiguration - - - - - - - - - Identity - - - - AllowIPVideo - - - - ScreenSharingMode - - - - AllowMultipleScreenshare - - - - AllowMeetNow - - - - LiveCaptionsEnabledType - - - - AllowTranscription - - - - AllowParticipantGiveRequestControl - - - - AllowExternalParticipantGiveRequestControl - - - - - - - - TeamsGuestMessagingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsGuestMessagingConfiguration - - - - - - - - - Identity - - - - AllowUserEditMessage - - - - AllowUserDeleteMessage - - - - UsersCanDeleteBotMessages - - - - AllowUserDeleteChat - - - - AllowUserChat - - - - AllowGiphy - - - - GiphyRatingType - - - - AllowMemes - - - - AllowImmersiveReader - - - - AllowStickers - - - - - - - - TeamsMeetingBroadcastConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingBroadcastConfiguration - - - - - - - - - Identity - - - - SupportURL - - - - AllowSdnProviderForBroadcastMeeting - - - - - - - - TeamsMeetingTemplateConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingTemplateConfiguration - - - - - - - - - Identity - - - - TeamsMeetingTemplates - - - - Description - - - - - - - - TeamsMeetingTemplateTypeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingTemplateType - - - - - - - - - Identity - - - - TeamsMeetingOptions - - - - Description - - - - Name - - - - Category - - - - - - - - TeamsMeetingOptionView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingOption - - - - - - - - - IsLocked - - - - IsHidden - - - - Value - - - - Name - - - - - - - - TeamsFirstPartyMeetingTemplateConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsFirstPartyMeetingTemplateConfiguration - - - - - - - - - Identity - - - - TeamsMeetingTemplates - - - - Description - - - - - - - - TeamsMessagingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMessagingConfiguration - - - - - - - - - Identity - - - - EnableVideoMessageCaptions - - - - EnableInOrganizationChatControl - - - - CustomEmojis - - - - Storyline - - - - Communities - - - - MessagingNotes - - - - FileTypeCheck - - - - UrlReputationCheck - - - - ContentBasedPhishingCheck - - - - ReportIncorrectSecurityDetections - - - - - - - - TeamsRecordingAndTranscriptionCustomMessagesConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRecordingAndTranscriptionCustomMessagesConfiguration - - - - - - - - - Identity - - - - CustomMessageList - - - - - - - - TeamsRecordingAndTranscriptionCustomMessageView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRecordingAndTranscriptionCustomMessage - - - - - - - - - Identity - - - - RecordingAndTranscriptionLocalizationCustomMessage - - - - Id - - - - Description - - - - - - - - RecordingAndTranscriptionLocalizationCustomMessageView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.RecordingAndTranscriptionLocalizationCustomMessage - - - - - - - - - Language - - - - InitiatorImplicit - - - - ParticipantImplicit - - - - InitiatorExplicit - - - - ParticipantExplicitRequested - - - - ParticipantExplicitProvided - - - - AgreementDialogue - - - - - - - - TeamsRemoteLogCollectionConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRemoteLogCollectionConfiguration - - - - - - - - - Identity - - - - Devices - - - - - - - - TeamsRemoteLogCollectionDeviceView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRemoteLogCollectionDevice - - - - - - - - - Identity - - - - Id - - - - DeviceId - - - - ExpireAfter - - - - UserId - - - - - - - - SurvivableBranchApplianceView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.SurvivableBranchAppliance - - - - - - - - - Identity - - - - Fqdn - - - - Site - - - - Description - - - - - - - - TeamsTenantAbuseConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsTenantAbuseConfiguration - - - - - - - - - Identity - - - - BlockedTenants - - - - LowSeatLimit - - - - TrialTenantValidation - - - - SkipValidation - - - - CreateThreadThresholdPerSeat - - - - AddMemberThresholdPerSeat - - - - SendMessageThresholdPerSeat - - - - CreateThreadThresholdForTrialTenants - - - - AddMemberThresholdForTrialTenants - - - - SendMessageThresholdForTrialTenants - - - - - - - - TeamsUpgradeConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsUpgradeConfiguration - - - - - - - - - Identity - - - - DownloadTeams - - - - SfBMeetingJoinUx - - - - BlockLegacyAuthorization - - - - - - - - TenantMigrationConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantMigrationConfiguration - - - - - - - - - Identity - - - - MeetingMigrationEnabled - - - - - - - - TenantNetworkConfigurationSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantNetworkConfigurationSettings - - - - - - - - - Identity - - - - NetworkRegions - - - - NetworkSites - - - - Subnets - - - - PostalCodes - - - - - - - - NetworkRegionTypeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NetworkRegionType - - - - - - - - - Identity - - - - Description - - - - CentralSite - - - - NetworkRegionID - - - - - - - - NetworkSiteTypeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NetworkSiteType - - - - - - - - - Identity - - - - Description - - - - NetworkRegionID - - - - LocationPolicyID - - - - SiteAddress - - - - NetworkSiteID - - - - OnlineVoiceRoutingPolicyTagID - - - - EnableLocationBasedRouting - - - - EmergencyCallRoutingPolicyTagID - - - - EmergencyCallingPolicyTagID - - - - NetworkRoamingPolicyTagID - - - - EmergencyCallRoutingPolicyName - - - - EmergencyCallingPolicyName - - - - NetworkRoamingPolicyName - - - - - - - - SubnetTypeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.SubnetType - - - - - - - - - Identity - - - - Description - - - - NetworkSiteID - - - - MaskBits - - - - SubnetID - - - - - - - - PostalCodeTypeView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PostalCodeType - - - - - - - - - Identity - - - - Description - - - - NetworkSiteID - - - - PostalCode - - - - CountryCode - - - - - - - - TrustedIPView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TrustedIP - - - - - - - - - Identity - - - - MaskBits - - - - Description - - - - IPAddress - - - - - - - - VideoInteropServiceProviderView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.VideoInteropServiceProvider - - - - - - - - - Identity - - - - Name - - - - AadApplicationIds - - - - TenantKey - - - - InstructionUri - - - - AllowAppGuestJoinsAsAuthenticated - - - - - - - - UcPhoneSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.UcPhoneSettings - - - - - - - - - Identity - - - - CalendarPollInterval - - - - EnforcePhoneLock - - - - PhoneLockTimeout - - - - MinPhonePinLength - - - - SIPSecurityMode - - - - VoiceDiffServTag - - - - Voice8021p - - - - LoggingLevel - - - - - - - - UnassignedNumberTreatmentView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.UnassignedNumberTreatment - - - - - - - - - Identity - - - - TreatmentId - - - - Pattern - - - - TargetType - - - - Target - - - - TreatmentPriority - - - - Description - - - - - - - - UserServicesSettingsView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.UserServicesSettings - - - - - - - - - Identity - - - - PresenceProviders - - - - $_.MaintenanceTimeOfDay.ToShortTimeString() - - - - MinSubscriptionExpiration - - - - MaxSubscriptionExpiration - - - - DefaultSubscriptionExpiration - - - - AnonymousUserGracePeriod - - - - DeactivationGracePeriod - - - - MaxScheduledMeetingsPerOrganizer - - - - AllowNonRoomSystemNotification - - - - MaxSubscriptions - - - - MaxContacts - - - - MaxPersonalNotes - - - - SubscribeToCollapsedDG - - - - StateReplicationFlag - - - - TestFeatureList - - - - TestParameterList - - - - - - - - PresenceProviderView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PresenceProvider - - - - - - - - - Identity - - - - Fqdn - - - - - - - - PrivacyConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivacyConfiguration - - - - - - - - - Identity - - - - EnablePrivacyMode - - - - AutoInitiateContacts - - - - PublishLocationDataDefault - - - - DisplayPublishedPhotoDefault - - - - - - - - MeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.MeetingConfiguration - - - - - - - - - Identity - - - - PstnCallersBypassLobby - - - - EnableAssignedConferenceType - - - - DesignateAsPresenter - - - - AssignedConferenceTypeByDefault - - - - AdmitAnonymousUsersByDefault - - - - RequireRoomSystemsAuthorization - - - - LogoURL - - - - LegalURL - - - - HelpURL - - - - CustomFooterText - - - - AllowConferenceRecording - - - - AllowCloudRecordingService - - - - EnableMeetingReport - - - - UserUriFormatForStUser - - - - - - - - RoutingDataSyncAgentConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.RoutingDataSyncAgentConfiguration - - - - - - - - - Identity - - - - Enabled - - - - BatchesPerTransaction - - - - - - - - UserStoreConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.UserStoreConfiguration - - - - - - - - - Identity - - - - UserStoreServiceUri - - - - UserStoreSyncAgentSyncIntervalSeconds - - - - UserStoreSyncAgentSyncIntervalSecondsForPush - - - - UserStoreSyncAgentSyncIntervalTimeoutSeconds - - - - UserStoreClientRetryCount - - - - UserStoreClientWaitBeforeRetryMilliseconds - - - - UserStoreClientTimeoutPerTrySeconds - - - - UserStoreClientRetryCountForPush - - - - UserStoreClientWaitBeforeRetryMillisecondsForPush - - - - UserStoreClientTimeoutPerTrySecondsForPush - - - - MaxConcurrentPulls - - - - MaxConfDocsToPull - - - - HealthProbeRtcSrvIntervalSeconds - - - - HealthProbeReplicationAppIntervalSeconds - - - - UserStoreClientUseIfxLogging - - - - UserStoreClientLoggingIfxSessionName - - - - UserStoreClientLoggingFileLocation - - - - UserStoreClientEnableHttpTracing - - - - UserStoreClientHttpTimeoutSeconds - - - - UserStoreClientConnectionLimit - - - - UserStorePhase - - - - BackfillFrequencySeconds - - - - BackfillQueueSizeThreshold - - - - BackfillBatchSize - - - - RoutingGroupPartitionHealthExpirationInMinutes - - - - RoutingGroupPartitionUnhealthyThresholdInMinutes - - - - RoutingGroupPartitionFailuresThreshold - - - - PartitionKeySuffix - - - - EnablePullStatusReporting - - - - EnableSlowPullBackOff - - - - BackOffValueMaximumThresholdInSeconds - - - - BackOffInitialValueInSeconds - - - - BackOffFactor - - - - PushControllerBatchSize - - - - HttpIdleConnectionTimeInSeconds - - - - - - - - BroadcastMeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.BroadcastMeetingConfiguration - - - - - - - - - Identity - - - - EnableBroadcastMeeting - - - - EnableOpenBroadcastMeeting - - - - EnableBroadcastMeetingRecording - - - - EnableAnonymousBroadcastMeeting - - - - EnforceBroadcastMeetingRecording - - - - BroadcastMeetingSupportUrl - - - - EnableSdnProviderForBroadcastMeeting - - - - SdnFallbackAttendeeThresholdCountForBroadcastMeeting - - - - EnableTechPreviewFeatures - - - - - - - - CloudMeetingConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudMeetingConfiguration - - - - - - - - - Identity - - - - EnableAutoSchedule - - - - - - - - CloudVideoInteropConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudVideoInteropConfiguration - - - - - - - - - Identity - - - - EnableCloudVideoInterop - - - - AllowLobbyBypass - - - - - - - - CloudMeetingServiceConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.CloudMeetingServiceConfiguration - - - - - - - - - Identity - - - - SchedulingUrl - - - - DiscoveryUrl - - - - - - - - TestConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.TestConfiguration - - - - - - - - - Identity - - - - Name - - - - DialedNumber - - - - TargetDialplan - - - - TargetVoicePolicy - - - - ExpectedTranslatedNumber - - - - ExpectedUsage - - - - ExpectedRoute - - - - - - - - VoiceConfigurationView - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoiceConfiguration - - - - - - - - - Identity - - - - VoiceTestConfigurations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1 deleted file mode 100644 index 07502fc3bdc89..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1 +++ /dev/null @@ -1,581 +0,0 @@ -# -# Module manifest for module 'Microsoft.Teams.Policy.Administration.Core' -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1' - -# Version number of this module. -ModuleVersion = '31.6.0.1' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = '048c99d9-471a-4935-a810-542687c5f950' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams OCE cmdlets module for Policy Administration' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# Removed this script from here because this module is used in SAW machines as well where Contraint Language Mode is on. -# Because of CLM constraint we were not able to import Teams module to SAW machines, that is why removing this script. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = '*' - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @( - 'New-CsTeamsAppSetupPolicy', - 'Get-CsTeamsAppSetupPolicy', - 'Remove-CsTeamsAppSetupPolicy', - 'Set-CsTeamsAppSetupPolicy', - 'Grant-CsTeamsAppSetupPolicy', - - - 'New-CsTeamsAppPermissionPolicy', - 'Get-CsTeamsAppPermissionPolicy', - 'Remove-CsTeamsAppPermissionPolicy', - 'Set-CsTeamsAppPermissionPolicy', - 'Grant-CsTeamsAppPermissionPolicy', - - 'New-CsTeamsMessagingPolicy', - 'Set-CsTeamsMessagingPolicy', - 'Get-CsTeamsMessagingPolicy', - 'Remove-CsTeamsMessagingPolicy', - - 'New-CsTeamsChannelsPolicy', - 'Get-CsTeamsChannelsPolicy', - 'Remove-CsTeamsChannelsPolicy', - 'Set-CsTeamsChannelsPolicy', - - 'New-CsTeamsUpdateManagementPolicy', - 'Get-CsTeamsUpdateManagementPolicy', - 'Remove-CsTeamsUpdateManagementPolicy', - 'Set-CsTeamsUpdateManagementPolicy', - - 'Get-CsTeamsUpgradeConfiguration', - 'Set-CsTeamsUpgradeConfiguration', - - 'New-CsTeamsMeetingPolicy', - 'Get-CsTeamsMeetingPolicy', - 'Remove-CsTeamsMeetingPolicy', - 'Set-CsTeamsMeetingPolicy', - - 'Get-CsOnlineVoicemailPolicy', - 'New-CsOnlineVoicemailPolicy', - 'Remove-CsOnlineVoicemailPolicy', - 'Set-CsOnlineVoicemailPolicy', - - 'Get-CsOnlineVoicemailValidationConfiguration', - 'Set-CsOnlineVoicemailValidationConfiguration', - - 'New-CsTeamsFeedbackPolicy', - 'Get-CsTeamsFeedbackPolicy', - 'Remove-CsTeamsFeedbackPolicy', - 'Set-CsTeamsFeedbackPolicy', - - 'New-CsTeamsMeetingBrandingPolicy', - 'Get-CsTeamsMeetingBrandingPolicy', - 'Remove-CsTeamsMeetingBrandingPolicy', - 'Set-CsTeamsMeetingBrandingPolicy', - 'Grant-CsTeamsMeetingBrandingPolicy' - - 'New-CsTeamsMeetingBrandingTheme', - 'New-CsTeamsMeetingBackgroundImage', - 'New-CsTeamsNdiAssuranceSlate', - - 'New-CsTeamsEmergencyCallingPolicy', - 'Get-CsTeamsEmergencyCallingPolicy', - 'Remove-CsTeamsEmergencyCallingPolicy', - 'Set-CsTeamsEmergencyCallingPolicy', - 'New-CsTeamsEmergencyCallingExtendedNotification', - - 'New-CsTeamsCallHoldPolicy', - 'Get-CsTeamsCallHoldPolicy', - 'Remove-CsTeamsCallHoldPolicy', - 'Set-CsTeamsCallHoldPolicy', - - 'Get-CsOnlineVoicemailValidationConfiguration', - 'Set-CsOnlineVoicemailValidationConfiguration', - 'Get-CsTeamsMessagingConfiguration', - 'Set-CsTeamsMessagingConfiguration', - - 'New-CsTeamsVoiceApplicationsPolicy', - 'Get-CsTeamsVoiceApplicationsPolicy', - 'Remove-CsTeamsVoiceApplicationsPolicy', - 'Set-CsTeamsVoiceApplicationsPolicy', - - 'New-CsTeamsHiddenMeetingTemplate', - - 'New-CsTeamsMeetingTemplatePermissionPolicy', - 'Get-CsTeamsMeetingTemplatePermissionPolicy', - 'Set-CsTeamsMeetingTemplatePermissionPolicy', - 'Remove-CsTeamsMeetingTemplatePermissionPolicy', - 'Grant-CsTeamsMeetingTemplatePermissionPolicy', - - "Get-CsTeamsAudioConferencingCustomPromptsConfiguration", - "Set-CsTeamsAudioConferencingCustomPromptsConfiguration", - "New-CsCustomPrompt", - "New-CsCustomPromptPackage", - - 'Get-CsTeamsMeetingTemplateConfiguration', - 'Get-CsTeamsFirstPartyMeetingTemplateConfiguration', - - 'New-CsTeamsEventsPolicy', - 'Get-CsTeamsEventsPolicy', - 'Remove-CsTeamsEventsPolicy', - 'Set-CsTeamsEventsPolicy', - 'Grant-CsTeamsEventsPolicy', - - 'New-CsTeamsCallingPolicy', - 'Get-CsTeamsCallingPolicy', - 'Remove-CsTeamsCallingPolicy', - 'Set-CsTeamsCallingPolicy', - 'Grant-CsTeamsCallingPolicy', - - 'New-CsTeamsPersonalAttendantPolicy', - 'Get-CsTeamsPersonalAttendantPolicy', - 'Remove-CsTeamsPersonalAttendantPolicy', - 'Set-CsTeamsPersonalAttendantPolicy', - 'Grant-CsTeamsPersonalAttendantPolicy', - - 'New-CsExternalAccessPolicy', - 'Get-CsExternalAccessPolicy', - 'Remove-CsExternalAccessPolicy', - 'Set-CsExternalAccessPolicy', - 'Grant-CsExternalAccessPolicy', - - 'Get-CsTeamsMultiTenantOrganizationConfiguration', - 'Set-CsTeamsMultiTenantOrganizationConfiguration', - - 'New-CsLocationPolicy', - 'Get-CsLocationPolicy', - 'Remove-CsLocationPolicy', - 'Set-CsLocationPolicy', - - 'New-CsTeamsCarrierEmergencyCallRoutingPolicy', - 'Get-CsTeamsCarrierEmergencyCallRoutingPolicy', - 'Remove-CsTeamsCarrierEmergencyCallRoutingPolicy', - 'Set-CsTeamsCarrierEmergencyCallRoutingPolicy', - 'Grant-CsTeamsCarrierEmergencyCallRoutingPolicy', - - 'Get-CsTenantConfiguration', - 'Set-CsTenantConfiguration', - - 'Get-CsTenantNetworkSite', - - 'New-CsTeamsShiftsPolicy', - 'Get-CsTeamsShiftsPolicy', - 'Remove-CsTeamsShiftsPolicy', - 'Set-CsTeamsShiftsPolicy', - 'Grant-CsTeamsShiftsPolicy', - - 'New-CsTeamsHiddenTemplate', - - 'New-CsTeamsTemplatePermissionPolicy', - 'Get-CsTeamsTemplatePermissionPolicy', - 'Remove-CsTeamsTemplatePermissionPolicy', - 'Set-CsTeamsTemplatePermissionPolicy', - - 'Get-CsTeamsAppPolicyConfiguration', - 'Set-CsTeamsAppPolicyConfiguration', - - 'Get-CsTeamsSipDevicesConfiguration', - 'Set-CsTeamsSipDevicesConfiguration', - - 'New-CsTeamsVirtualAppointmentsPolicy', - 'Get-CsTeamsVirtualAppointmentsPolicy', - 'Remove-CsTeamsVirtualAppointmentsPolicy', - 'Set-CsTeamsVirtualAppointmentsPolicy', - 'Grant-CsTeamsVirtualAppointmentsPolicy', - - 'New-CsTeamsComplianceRecordingPolicy', - 'Get-CsTeamsComplianceRecordingPolicy', - 'Remove-CsTeamsComplianceRecordingPolicy', - 'Set-CsTeamsComplianceRecordingPolicy', - - 'New-CsTeamsComplianceRecordingApplication', - 'Get-CsTeamsComplianceRecordingApplication', - 'Remove-CsTeamsComplianceRecordingApplication', - 'Set-CsTeamsComplianceRecordingApplication', - - 'New-CsTeamsComplianceRecordingPairedApplication', - - 'New-CsTeamsSharedCallingRoutingPolicy', - 'Get-CsTeamsSharedCallingRoutingPolicy', - 'Remove-CsTeamsSharedCallingRoutingPolicy', - 'Set-CsTeamsSharedCallingRoutingPolicy', - 'Grant-CsTeamsSharedCallingRoutingPolicy', - - 'New-CsTeamsVdiPolicy', - 'Get-CsTeamsVdiPolicy', - 'Remove-CsTeamsVdiPolicy', - 'Set-CsTeamsVdiPolicy', - 'Grant-CsTeamsVdiPolicy', - - 'Get-CsTeamsMeetingConfiguration', - 'Set-CsTeamsMeetingConfiguration', - - 'New-CsTeamsCustomBannerText', - 'Get-CsTeamsCustomBannerText', - 'Set-CsTeamsCustomBannerText', - 'Remove-CsTeamsCustomBannerText', - - 'Get-CsTeamsEducationConfiguration', - 'Set-CsTeamsEducationConfiguration', - - 'New-CsTeamsWorkLocationDetectionPolicy', - 'Get-CsTeamsWorkLocationDetectionPolicy', - 'Remove-CsTeamsWorkLocationDetectionPolicy', - 'Set-CsTeamsWorkLocationDetectionPolicy', - 'Grant-CsTeamsWorkLocationDetectionPolicy', - - 'New-CsTeamsMediaConnectivityPolicy', - 'Get-CsTeamsMediaConnectivityPolicy', - 'Remove-CsTeamsMediaConnectivityPolicy', - 'Set-CsTeamsMediaConnectivityPolicy', - 'Grant-CsTeamsMediaConnectivityPolicy', - - 'New-CsTeamsRecordingRollOutPolicy', - 'Get-CsTeamsRecordingRollOutPolicy', - 'Remove-CsTeamsRecordingRollOutPolicy', - 'Set-CsTeamsRecordingRollOutPolicy', - 'Grant-CsTeamsRecordingRollOutPolicy', - - 'New-CsTeamsFilesPolicy', - 'Get-CsTeamsFilesPolicy', - 'Remove-CsTeamsFilesPolicy', - 'Set-CsTeamsFilesPolicy', - 'Grant-CsTeamsFilesPolicy', - - 'Get-CsTeamsExternalAccessConfiguration', - 'Set-CsTeamsExternalAccessConfiguration', - - 'New-CsConversationRole', - 'Remove-CsConversationRole', - 'Get-CsConversationRole', - 'Set-CsConversationRole', - - 'Get-CsConversationRolesSetting', - 'Set-CsConversationRolesSetting', - - 'Get-CsTeamsAIPolicy', - 'Set-CsTeamsAIPolicy', - 'New-CsTeamsAIPolicy', - 'Remove-CsTeamsAIPolicy', - 'Grant-CsTeamsAIPolicy', - - 'New-CsTeamsBYODAndDesksPolicy', - 'Get-CsTeamsBYODAndDesksPolicy', - 'Remove-CsTeamsBYODAndDesksPolicy', - 'Set-CsTeamsBYODAndDesksPolicy', - 'Grant-CsTeamsBYODAndDesksPolicy', - - 'Get-CsTeamsTenantAbuseConfiguration', - 'Set-CsTeamsTenantAbuseConfiguration', - - 'Get-CsTeamsEducationAssignmentsAppPolicy', - 'Set-CsTeamsEducationAssignmentsAppPolicy', - - 'Get-CsPrivacyConfiguration', - 'Set-CsPrivacyConfiguration', - - 'Get-CsTeamsNotificationAndFeedsPolicy', - 'Set-CsTeamsNotificationAndFeedsPolicy', - 'Remove-CsTeamsNotificationAndFeedsPolicy' - - 'Get-CsTeamsClientConfiguration', - 'Set-CsTeamsClientConfiguration', - - 'Get-CsTeamsAcsFederationConfiguration', - 'Set-CsTeamsAcsFederationConfiguration', - - 'Get-DirectToGroupAssignmentsMigrationStatus', - 'Get-GroupAssignmentRecommendationsPerPolicyName' - 'Get-GroupAssignmentRecommendationsPerPolicyType', - 'Get-GroupPolicyAssignmentConflict', - 'Invoke-ClearDirectToGroupAssignmentMigration', - 'Invoke-StartDirectToGroupAssignmentMigration' -) - -# Variables to export from this module -VariablesToExport = @() - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{} - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD4G32j3Z30B+0l -# jWZzTAHqNQXashLb2xzHsXWyQJVJ4KCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIB9f5iqC -# bL2SbrjbdsmdptKcMNmoIfQweNyvHL41vxt8MEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAYYlwzxXdEVqPqQggl2An2/Qo8FVr7Xxtp4l4mljY -# 6DZPVimNS80A7D5TazrzJhkE4SapSaHFNT72IMrwoMtHI0UjrujcKo3pVTWknRe7 -# aR3IhQ4qAX8lIqSrkunKm8HgLPtCTUG9nU/ejMNOh6DEwQc0BbDvF2wEKhkaqfLj -# rSLnjG5cckhbBHHibC3tyR5Jp9hn6zxXt4fQ7ghomWGDSatDDinI5rEXVCOavQsj -# nmMD55QnDqhb+Qx8z4+IthxGcosmtfk4zafKxFTFmVOJFQWlX3OfXmj6y0X92k42 -# +wLdxZyQMQi9IhEOPNhPCTw/9LgZPRjtxl401k3NKgCSzKGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCBoFrh1W/WJuMdA+evzMT6vsbApDUev5Xcv2S8N -# vtZPVQIGagXdk1zNGBMyMDI2MDUxNTEwMDY0MC43MTJaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODkwMC0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiJB0vaq/8i1/wABAAAC -# IjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTM5NTZaFw0yNzA1MTcxOTM5NTZaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODkwMC0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC1ueKJukIuUsAAJo/AY5DZRqH7 -# bhgv7CWGNlEdbRGoITrdE6Wsn57NaNu1BTdjBbFcv7Rfixte0x+HRvXSqsD+WeSX -# /6/y9wE0Mz+xRPTGIY20K7aQDa68OyzVyUeUCypyZC/gW/3ytO/ZOnU9H2ri77kJ -# P8ABrqyy1UxX/OseEgvHsj8yikWT0ARtrjWbXMHFzSOo5hQcfUmMXKqWWz6+N0+U -# ynhGy1n+doW4WZgpH8Y5W7hpSokWj1M/Lu4wi3o6Dz9vVWukcgUFGjLAl4YZpOha -# h7HuiC/alXImMQf8C3A8q/6/1hFoeIZB4UGkywxB/OSTOSsL6+39pDqzM7CgOpf4 -# V799kN94yM9uXJI5T/SiA5MdIZIhEW0+bh85RqDh5YW3/oav54RPxw5OPlH64QV6 -# KJkl0FIElMVoLNo8UWRQcMD179x7WASjC6LsaNZ7yK0qcESIsL1wiQmdfQBxcqrF -# CpIQfnmQFkOp9IyXUWqza8tmpz8E6aXg9b1eiAT3PVTgrOlPi/hYZCfPxX/6jGty -# Pjy1CiwOmJamohmSU//COAenfRT2G2HMRUpCX1zs+AmDmdQM1XRab4YSALLAlDzG -# CsgI77nnuJjoXAliJmv7NfrvWAcA5KqCUOWQ6kSPt5r28MfKXWJJpSXtFeS/MkDz -# Jy/iJRVyHcFy/B+MtwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFFkHwGoDJ5ZbEEiu -# 8KstiusqaozQMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQBiAM+nqrpwG29txSXv -# 42o+CsTe2C4boaRfFju9JaWkLTHwq7pknNONL3n+UG3x/B083EKXiFYrAmul7BTH -# CGXU63/xRsZ2wj3ZmR0A4d9nf9saCJVm4juPVFBai/oktOOYH2j+1+zM70woN5on -# gB/pvy7X8AfY6JB4XPvb80Qz7fY5eddbnwjzg1sZhUPFbbcweWeACINrzqFK62mM -# eXKmhtufMraoogJeJXfWY3x4/pbubgENT3+pXT65203CPF9kfdKE7GKAIRYy3xkB -# TDvFd8dufjOpCn38nK6qMlVtnBjDhWQG0PM3E/oxBs5UBrI6pBYkmIHtbjifDquH -# T+ThaVV7xHc6InoSc3aNzX49JHUgQmuvDdMjLkbYXeA0/1q5IxSg2U+ycZBOvAi3 -# udZPKhA5VzODjf/ucu/vFtXrYcRkmGKN3jujaK3/yMZi2Ju5NEL3ISWorwp7RjeZ -# g+JMIK0fosuVj+YCm5r64LH/D9QJDAj+XfZaNeFdv90K5A0QRRGP/poB9yTIVjEX -# j/uJzp8L4Dd44sAquqDOiHdkLgxfK8nPqpCSWPZ9G+RCPm85o9cAfxENtrSuOwcp -# yKzxsRCYCL+PK4+98orit9EVJ/LLoCeG+jLlj0KaD4Qy6sZe4rWMr1brQLosTBZN -# wFnXxNjInCWBd0i7is1yTS/4qTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg5MDAtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQC7ycXVZx3bsDpJkr7VucgpksozuKCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bEEtjAiGA8y -# MDI2MDUxNTAyMzQzMFoYDzIwMjYwNTE2MDIzNDMwWjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsQS2AgEAMAoCAQACAgWmAgH/MAcCAQACAhJlMAoCBQDtslY2AgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAMnzxlgACHgug8/waMWz4/ELvZIE -# KqVI7MNoSmqwjR2tebywd4nc5Wcd6iOOaD8O+6scFdfha4YzFq1M16FsQHN7r562 -# gKzTg/2am6LdpRNhf5GPIJdsGDAut9BuR94FA0VosoX6Kh1UZWWYiqHFJGksop9D -# 5/NM/rWIUPdcAjwb7ec90p2asp78LaExGO36qXUmxHiqd8x+C3BfuUVP4oXqnVkE -# 100zulhN0UXTPL+xRfwd+Z0FdJqmtiFAi7zl0OQegvlhlkpjsnTI1H8iTy47Sr6M -# wt8oQUPm2CGw4yPDNNkjcgUoK9UsuNRFwxgmQ9NWlscLppa0+56lUf9TrokxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiJB -# 0vaq/8i1/wABAAACIjANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCCYfzIOdis2CEbmpRc4t/65k2qo -# TTgER1no83rAC0BrdzCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIAVgXQEK -# BOfGgjNskmDOmbcEIOnHGNwA+QcRufDR5AkTMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIiQdL2qv/Itf8AAQAAAiIwIgQg26aIE62W -# z1dC7WTJ6HmsxCxiLFwniz2h+z8y+/p+gwUwDQYJKoZIhvcNAQELBQAEggIADSXJ -# EprNJ5IyJnCjdVtltUMD+cBFzIp7o7Dd/MWr/+aNiADUAoTxqRemh8FXrR7b0Lqc -# SmQdwoMHLsX9c26HV2xzVCH3fn92EFG96eSTl0PWsIekvY6rmdltpxIlj8p/D24l -# Nw5srET0WdwUYgX1bbhm0LS92yI/1ZDVjOcQxsWqJLNucPyXOWTDeYwb0lxn/mYD -# QIpyP1jqGw7Hhm5HDqlewjJDRRediFc2oug7V/riTY4mHmyZvtPfe42nEniYEs9B -# go06vLEjTbkJacjFFoN4sYVeyBUs29ZNpsaAB9+jzvWWfgmQHjKnak3MMX98tW6j -# pXUaTwcn0jxyzv/6iPRNUcqbaKuHGom8NHIcRhSS2jkFVzk6UfdAej/7sAGrI929 -# iKOeYaa4FW0CtMekbIcNG+LGXUl0ma2pVY9NXCtpYYdP0L+gEeIZ8ODTvZCwBe8E -# A7vxYOLNqbkLxyP0lZoTiOdOhxPOxarY4+wTpwhkGMk4EWtglZxr9oXwlmHmxgro -# HAPh8+0ivvzCM19OBZkmaO9zVUxu5MOhHPDs708fD/7XuXsucnyYr72BlKzQPQbo -# XkKTxYEfj+pyC5D8IJkYRhRT3fk7Fr6ssrK0ZUODzL/kYElTkHgjGztSmeWugQ+R -# m7a1Fvj7fZfEtGOWNaErfrtwjb5H+5ugozshz5w= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1 deleted file mode 100644 index eb8324c4aa3f7..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1 +++ /dev/null @@ -1,530 +0,0 @@ -# -# Module manifest for module 'Microsoft.Teams.Policy.Administration.Core' -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1' - -# Version number of this module. -ModuleVersion = '31.6.0.1' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = '048c99d9-471a-4935-a810-542687c5f950' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams preview cmdlets module for Policy Administration' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# Removed this script from here because this module is used in SAW machines as well where Contraint Language Mode is on. -# Because of CLM constraint we were not able to import Teams module to SAW machines, that is why removing this script. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = '*' - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @( - 'New-CsTeamsAppSetupPolicy', - 'Get-CsTeamsAppSetupPolicy', - 'Remove-CsTeamsAppSetupPolicy', - 'Set-CsTeamsAppSetupPolicy', - 'Grant-CsTeamsAppSetupPolicy', - - 'New-CsTeamsAppPermissionPolicy', - 'Get-CsTeamsAppPermissionPolicy', - 'Remove-CsTeamsAppPermissionPolicy', - 'Set-CsTeamsAppPermissionPolicy', - 'Grant-CsTeamsAppPermissionPolicy', - - 'New-CsTeamsMessagingPolicy', - 'Get-CsTeamsMessagingPolicy', - 'Remove-CsTeamsMessagingPolicy', - 'Set-CsTeamsMessagingPolicy', - - 'New-CsTeamsChannelsPolicy', - 'Get-CsTeamsChannelsPolicy', - 'Remove-CsTeamsChannelsPolicy', - 'Set-CsTeamsChannelsPolicy', - - 'New-CsTeamsUpdateManagementPolicy', - 'Get-CsTeamsUpdateManagementPolicy', - 'Remove-CsTeamsUpdateManagementPolicy', - 'Set-CsTeamsUpdateManagementPolicy', - - 'Get-CsTeamsUpgradeConfiguration', - 'Set-CsTeamsUpgradeConfiguration', - - 'Get-CsTeamsSipDevicesConfiguration', - 'Set-CsTeamsSipDevicesConfiguration', - - 'New-CsTeamsMeetingPolicy', - 'Get-CsTeamsMeetingPolicy', - 'Remove-CsTeamsMeetingPolicy', - 'Set-CsTeamsMeetingPolicy', - - 'New-CsOnlineVoicemailPolicy', - 'Get-CsOnlineVoicemailPolicy', - 'Remove-CsOnlineVoicemailPolicy', - 'Set-CsOnlineVoicemailPolicy', - - 'New-CsTeamsFeedbackPolicy', - 'Get-CsTeamsFeedbackPolicy', - 'Remove-CsTeamsFeedbackPolicy', - 'Set-CsTeamsFeedbackPolicy', - - 'New-CsTeamsMeetingBrandingPolicy', - 'Get-CsTeamsMeetingBrandingPolicy', - 'Remove-CsTeamsMeetingBrandingPolicy', - 'Set-CsTeamsMeetingBrandingPolicy', - 'Grant-CsTeamsMeetingBrandingPolicy' - - 'New-CsTeamsMeetingBrandingTheme', - 'New-CsTeamsMeetingBackgroundImage', - 'New-CsTeamsNdiAssuranceSlate', - - 'New-CsTeamsEmergencyCallingPolicy', - 'Get-CsTeamsEmergencyCallingPolicy', - 'Remove-CsTeamsEmergencyCallingPolicy', - 'Set-CsTeamsEmergencyCallingPolicy', - 'New-CsTeamsEmergencyCallingExtendedNotification', - - 'New-CsTeamsCallHoldPolicy', - 'Get-CsTeamsCallHoldPolicy', - 'Remove-CsTeamsCallHoldPolicy', - 'Set-CsTeamsCallHoldPolicy', - - 'Get-CsTeamsMessagingConfiguration', - 'Set-CsTeamsMessagingConfiguration', - - 'New-CsTeamsVoiceApplicationsPolicy', - 'Get-CsTeamsVoiceApplicationsPolicy', - 'Remove-CsTeamsVoiceApplicationsPolicy', - 'Set-CsTeamsVoiceApplicationsPolicy', - - "Get-CsTeamsAudioConferencingCustomPromptsConfiguration", - "Set-CsTeamsAudioConferencingCustomPromptsConfiguration", - "New-CsCustomPrompt", - "New-CsCustomPromptPackage", - - 'New-CsTeamsEventsPolicy', - 'Get-CsTeamsEventsPolicy', - 'Remove-CsTeamsEventsPolicy', - 'Set-CsTeamsEventsPolicy', - 'Grant-CsTeamsEventsPolicy', - - 'New-CsTeamsCallingPolicy', - 'Get-CsTeamsCallingPolicy', - 'Remove-CsTeamsCallingPolicy', - 'Set-CsTeamsCallingPolicy', - 'Grant-CsTeamsCallingPolicy', - - 'New-CsTeamsPersonalAttendantPolicy', - 'Get-CsTeamsPersonalAttendantPolicy', - 'Remove-CsTeamsPersonalAttendantPolicy', - 'Set-CsTeamsPersonalAttendantPolicy', - 'Grant-CsTeamsPersonalAttendantPolicy', - - 'New-CsExternalAccessPolicy', - 'Get-CsExternalAccessPolicy', - 'Remove-CsExternalAccessPolicy', - 'Set-CsExternalAccessPolicy', - 'Grant-CsExternalAccessPolicy', - - 'Get-CsTeamsMultiTenantOrganizationConfiguration', - 'Set-CsTeamsMultiTenantOrganizationConfiguration', - - 'New-CsTeamsHiddenMeetingTemplate', - - 'New-CsTeamsMeetingTemplatePermissionPolicy', - 'Get-CsTeamsMeetingTemplatePermissionPolicy', - 'Set-CsTeamsMeetingTemplatePermissionPolicy', - 'Remove-CsTeamsMeetingTemplatePermissionPolicy', - 'Grant-CsTeamsMeetingTemplatePermissionPolicy', - - 'Get-CsTeamsMeetingTemplateConfiguration', - 'Get-CsTeamsFirstPartyMeetingTemplateConfiguration', - - 'Get-CsTenantNetworkSite', - - 'New-CsTeamsShiftsPolicy', - 'Get-CsTeamsShiftsPolicy', - 'Remove-CsTeamsShiftsPolicy', - 'Set-CsTeamsShiftsPolicy', - 'Grant-CsTeamsShiftsPolicy', - - 'New-CsTeamsHiddenTemplate', - - 'New-CsTeamsTemplatePermissionPolicy', - 'Get-CsTeamsTemplatePermissionPolicy', - 'Remove-CsTeamsTemplatePermissionPolicy', - 'Set-CsTeamsTemplatePermissionPolicy', - - 'New-CsTeamsVirtualAppointmentsPolicy', - 'Get-CsTeamsVirtualAppointmentsPolicy', - 'Remove-CsTeamsVirtualAppointmentsPolicy', - 'Set-CsTeamsVirtualAppointmentsPolicy', - 'Grant-CsTeamsVirtualAppointmentsPolicy', - - 'New-CsTeamsComplianceRecordingPolicy', - 'Get-CsTeamsComplianceRecordingPolicy', - 'Remove-CsTeamsComplianceRecordingPolicy', - 'Set-CsTeamsComplianceRecordingPolicy', - - 'New-CsTeamsComplianceRecordingApplication', - 'Get-CsTeamsComplianceRecordingApplication', - 'Remove-CsTeamsComplianceRecordingApplication', - 'Set-CsTeamsComplianceRecordingApplication', - - 'New-CsTeamsComplianceRecordingPairedApplication', - - 'New-CsTeamsSharedCallingRoutingPolicy', - 'Get-CsTeamsSharedCallingRoutingPolicy', - 'Remove-CsTeamsSharedCallingRoutingPolicy', - 'Set-CsTeamsSharedCallingRoutingPolicy', - 'Grant-CsTeamsSharedCallingRoutingPolicy', - - 'New-CsTeamsVdiPolicy', - 'Get-CsTeamsVdiPolicy', - 'Remove-CsTeamsVdiPolicy', - 'Set-CsTeamsVdiPolicy', - 'Grant-CsTeamsVdiPolicy', - - - 'Get-CsTeamsMeetingConfiguration', - 'Set-CsTeamsMeetingConfiguration', - - 'New-CsTeamsCustomBannerText', - 'Get-CsTeamsCustomBannerText', - 'Remove-CsTeamsCustomBannerText', - 'Set-CsTeamsCustomBannerText', - - 'New-CsTeamsWorkLocationDetectionPolicy', - 'Get-CsTeamsWorkLocationDetectionPolicy', - 'Remove-CsTeamsWorkLocationDetectionPolicy', - 'Set-CsTeamsWorkLocationDetectionPolicy', - 'Grant-CsTeamsWorkLocationDetectionPolicy', - - 'New-CsTeamsMediaConnectivityPolicy', - 'Get-CsTeamsMediaConnectivityPolicy', - 'Remove-CsTeamsMediaConnectivityPolicy', - 'Set-CsTeamsMediaConnectivityPolicy', - 'Grant-CsTeamsMediaConnectivityPolicy', - - 'New-CsTeamsRecordingRollOutPolicy', - 'Get-CsTeamsRecordingRollOutPolicy', - 'Remove-CsTeamsRecordingRollOutPolicy', - 'Set-CsTeamsRecordingRollOutPolicy', - 'Grant-CsTeamsRecordingRollOutPolicy', - - 'New-CsTeamsFilesPolicy', - 'Get-CsTeamsFilesPolicy', - 'Remove-CsTeamsFilesPolicy', - 'Set-CsTeamsFilesPolicy', - 'Grant-CsTeamsFilesPolicy', - - 'Get-CsTeamsExternalAccessConfiguration', - 'Set-CsTeamsExternalAccessConfiguration', - - 'New-CsConversationRole', - 'Remove-CsConversationRole', - 'Get-CsConversationRole', - 'Set-CsConversationRole', - - 'New-CsTeamsBYODAndDesksPolicy', - 'Get-CsTeamsBYODAndDesksPolicy', - 'Remove-CsTeamsBYODAndDesksPolicy', - 'Set-CsTeamsBYODAndDesksPolicy', - 'Grant-CsTeamsBYODAndDesksPolicy', - - 'Get-CsTeamsAIPolicy', - 'Set-CsTeamsAIPolicy', - 'New-CsTeamsAIPolicy', - 'Remove-CsTeamsAIPolicy', - 'Grant-CsTeamsAIPolicy', - - 'Get-CsTeamsClientConfiguration', - 'Set-CsTeamsClientConfiguration' -) - -# Variables to export from this module -VariablesToExport = @() - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{} - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} -# SIG # Begin signature block -# MIInRgYJKoZIhvcNAQcCoIInNzCCJzMCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAnLUOG5vnf8sJr -# Pv0TeMHGLfntG4IUyeHbwWN+2Kx8PqCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghniMIIZ3gIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIH8KAf+g -# dDVI3r2QCFqTs/PlIhVIsGLEdCcsO9iRoR6mMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAkTIDqn2CNR1lH/zSdPSziTa24nP8SDo6dH/SBQid -# lTRRLmspaxXFHHfrDlWAboWPstSdbPYNjLsEs9hP3X0XhWDJL9P/No7J2GFZpJ6k -# 81dMeHiKn3YlFjrpdKTskoZPQ1ijEoGqzfe6yG1aG0DelOOuqM1REIid45GLXbfz -# 3G5hjLNvtIbXEWdzFV3cqKjpRqbqo+bPauYzGO1R3S7ZMKJdiGG1apsUBjvna1YP -# DMTa8Y3MqNCkxLMkubkkiIOS7Q9OTiQfbHLK4aPCXn9TKQyDjtj+N+2E24xyRJwL -# 13nVuA5ifoRa9q84J3zkphk4ZUM90mHQ8F2TFLmupeeV2qGCF5QwgheQBgorBgEE -# AYI3AwMBMYIXgDCCF3wGCSqGSIb3DQEHAqCCF20wghdpAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCCXmhzJjU1OC2PDOn2KpBR7qvJ1VKRg2gWrVhng -# I1XccAIGagOsLA4LGBMyMDI2MDUxNTEwMDYzMi43MTNaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046RjAwMi0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHqMIIHIDCCBQigAwIBAgITMwAAAiAk4ebgF7m0jgABAAAC -# IDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTM5NTJaFw0yNzA1MTcxOTM5NTJaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046RjAwMi0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDRYY7yr7ijW6CR178uKveIMufu -# tWOicxgJwKOce/2GOQceus6ZWfX14i3jNg3JOP7MGJMkOAucwWBwiA8URp+ZYkGj -# pVoVkGZsV27WjqLwpf2AwqBsJ/TzqwE7JFFaxup3Ldxj8GjdJymDFRrdVN/pYHoB -# FrjD1IkIDu8b1CWn8tgomiKRSY+STvJq99mVkdphMBIUGOegQny8qRd24VME0xi8 -# Oomks9Zq9EjDeKHGpvAbXUEQ6m3cROoEPhTE/miweQH9TqJt3IOsqPv3L8urojB7 -# 47XBC2y0CDIHlKLcLl3ZG8D7JXKnWTFen3msMPJpcvrQ3zUBVJrH/mI3RxHmCh9p -# pDP0uG1+PJwk6H/x+sfoG9hW64xoXkpx6DEfNZNfcXdKbXF28XEXdLNnzo3SLNVy -# meQJhNqOSKhnU84QnKmrjEk541JiurlDCkCWO9lUBUMb9x0nyfXUbNRPVLgP+PTM -# RdXOowJdYCzCQfN2ZqL0s4YI28F1Dbn7Bgw2E4P1E9unsvMzJHtzhS2Th3TpCfBb -# OGalIlF9x/DJZ/ssm/yyzT9YtIFeqmfNxBPTE3aOuh6HxmTICzfYAATvWNhBbo19 -# QwsjPeA9JvhqTLC2KUNgrXroGy4eDZo0n7jFYjZkUih1Ty+8E6qEvV2Na6Z5gUyD -# 5a+tHGDmq69CmUiHfwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFNvInOCIhxGA8mY7 -# l1g07UHvyNgzMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQCtKGBto1BSvm4WFI+J -# 0NSyVhU1LHL7F3fbjZ2d7F5Kn/FCTBZXpzrDVl63FLRNcIFpnJy4/nlg43r7T5sJ -# Pdo4Ms8ADSHQEJnHSu3x9UpjCzREBPi9+nHhvDgRx/1WmBD6gQUZJLOhcN2TxW4K -# JyhinMtiBFtkNRZ2vmZ1MAdNXTm5d0Lwk3wzj+/f7VCCTWCXJSoqNa3VU/6sACHI -# 97Evbnzg8bd3hxrfz6CcCVuf77egvRHinthJuwSRePP7aVmcevb1nWUIAICdBebH -# QOrzNIeWBIQwvcFaS3SFc+49rqrwQOMFDR4FYBzS7b0QeBVxFuLL2iVu4KAHMNUh -# LLSD4iKLDFBNTOtTzTlhGvMgG77A1cjeQrDMHa6oReMDeUDqHUrxv8g7IRdIh+h0 -# gDLkzN0xIuzli0Bv7JtybGJbV6JxaDF4CzSCIMRpK59nI6iKo4LgnbQBZJW7+6ak -# YsKG/pXPlfxNv2InpD10tSCkCvw9kr6W1+NRN+EuZczRgAwWlcK9XJZ3uu/v/oxH -# tO7/kmVIs51F9qV6Y2QNXd6tU46YPrK98m2QDys+lvLNimK0e1xZ7Z1GawKohKGv -# lLALWDlZQqgHfJ31CB0LlIDI7iLyYTpd2iyKjqskbQiyMtICH+RmH/oCg7JOK0ZA -# 3XIMba9aSWgBF3QZ6pG3EGeQqjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNNMIICNQIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOkYwMDItMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQCTGA9vpsJ6glqCLmI0rggGx4YEEqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDNSDAiGA8y -# MDI2MDUxNDIyMzgwMFoYDzIwMjYwNTE1MjIzODAwWjB0MDoGCisGAQQBhFkKBAEx -# LDAqMAoCBQDtsM1IAgEAMAcCAQACAgn2MAcCAQACAhIDMAoCBQDtsh7IAgEAMDYG -# CisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEA -# AgMBhqAwDQYJKoZIhvcNAQELBQADggEBAIuX7qksHNghtOwa8JapHDmPqxGRIzHK -# e/qQHcVgQawdvhDNpjdJvINUt1a1Y/4bi/izxyhPtbQs5xwR233REEtwo8vToHFm -# o8Z92T73OtKm39S/xbwJLXu5oGtr6+Sw1WnAx501ufnu0tluCbjeIt6wj8amlVuk -# coTZGMR03Yy/1kzJH5Rm9fivPVvrqWMZ0EB+8OCljdvfRG1LfFaV1ferBE4rx3Mn -# y7tYGkIUK/WRZNwKAQp2w8Z6iL5tGtpjZDD6l5KmGnEkUYzw/PyQ7v6owOFf7Iw0 -# uzdMrULUTJWcZcJxTleKzcW+tUnM4V/gL2W43bOAueYAuCXheowVji4xggQNMIIE -# CQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYw -# JAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiAk4ebg -# F7m0jgABAAACIDANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqG -# SIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCBPlClLyBWYZBNSxc3a32vkB6Q+xnEe -# UzA2B1FK9/W6FzCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EION7vyOlPA1V -# qlEp0QIVGlNd8S5YWBnKj97LuTWHSO2vMIGYMIGApH4wfDELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUt -# U3RhbXAgUENBIDIwMTACEzMAAAIgJOHm4Be5tI4AAQAAAiAwIgQgbGEDOpUXNytV -# 8dPapiufm9u7Qfddo7Pz9rs6+6XXIQgwDQYJKoZIhvcNAQELBQAEggIAKf1qtEI0 -# KSARjhQ8kplB6c0KxvWVw4Das1StnETZP899fmyUeVMbMCwZ5u+YE6c1IJuQ6TlG -# N/stIvrX3EiwEZZd3+rh4jMfRiL9kXdpYfij+jwLXMtF2t4kiosTcM1CeiG6BsXm -# 1TQtgIkZ5wISCcxeVIqpWC8Pk0fgw7qDlcmlmFoGVvUQhx4mmtfIFUj1guFjBJcT -# psdRKk0YHnb46ohm+HcW0XI/av/gUXwwpG1kaowq8Pl0REMOvGzIcecdJPKIF7bv -# XNsgq4f5aH4+mieHtuvw2Y3GqvNSv+wgnW2zyP2Z9R0f06IwsaL3ndvpyxif31+L -# /uu4Ejoge+Tutg9KFFFBv9vlWO9SYDqumIE2yZ8uPOB+OGelpboOH1jbHxz/p21V -# kniDV6keXvEmLl1yeckhzXsfDnYmwbDTWzflTwxNzlo5gMmm/1vWC28decHOwGV7 -# 1UiG6TZvqBFvsdypo9bdbdyF5tBnBveJp3KKQLOW7bK+ShqOWAgLsuEHLli0zfs8 -# EUifWA6aknir5Tf0WRukXCavKdvEeerOeQM9IRvM4C39DmudG6GNg51qS2asphuH -# G4KnlrEFtHr7VIta6bCI5vcXnTnuuZ6bqvDqLu/6QDn67XF/zIhNFn+JfL9JmTOU -# mc6ddIL8fdvmzLWzpHRUuLayjtw38D/iOco= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1 deleted file mode 100644 index 1e1a8c9d845cf..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1 +++ /dev/null @@ -1,309 +0,0 @@ -# -# Module manifest for module 'Microsoft.Teams.Policy.Administration.Core' -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1' - -# Version number of this module. -ModuleVersion = '31.6.0.1' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = '048c99d9-471a-4935-a810-542687c5f950' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams cmdlets module for Policy Administration' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# Removed this script from here because this module is used in SAW machines as well where Contraint Language Mode is on. -# Because of CLM constraint we were not able to import Teams module to SAW machines, that is why removing this script. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = '*' - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = "*" - -# Variables to export from this module -VariablesToExport = @() - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{} - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOiYK41IgK6pFM -# LTgDCyEfNpFvTwV0fgS2/x5QUQ7ZRqCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEINCHjzgd -# 6vgGAvbBGPaKRuMglt47frhKAMk0qOkE3i9dMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAgdTuJXJStldXpwCzoodQw+hHd0MBK4FxAkKl5eLe -# 0cIVzv4u/qbHhJ+51dfGURjs2yWSfeWIBeNhaYTH+O0BLdRT/piAKBJc5fkccDSI -# DTl66vlebqPLTx2ArZs9zJqID3keE2j9uGD3MPPWtNcP8V9NGykaI9zvs3/G2UJl -# JcdNC9rRXFym997Hbo2LQyTS5Y1tM0zgvIFA/E8YcLofaeMtwvapYEOme3cc+ACH -# H1dpgqKItE1m2fS+KhYh1oZJqLJN0GO42QzyQtmNSjR/tiwavfelcdbgM4DB231J -# M2xyIIMuSPM94luaSbvgVvflXPfu0SRrHV5eYGd0xlmicqGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDl2s+kvztsTwOHcTIhZjVqpOHtuFr4oRMkykpe -# KPwEpAIGagXdk1sWGBMyMDI2MDUxNTEwMDYzMC45MjZaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODkwMC0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiJB0vaq/8i1/wABAAAC -# IjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTM5NTZaFw0yNzA1MTcxOTM5NTZaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODkwMC0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC1ueKJukIuUsAAJo/AY5DZRqH7 -# bhgv7CWGNlEdbRGoITrdE6Wsn57NaNu1BTdjBbFcv7Rfixte0x+HRvXSqsD+WeSX -# /6/y9wE0Mz+xRPTGIY20K7aQDa68OyzVyUeUCypyZC/gW/3ytO/ZOnU9H2ri77kJ -# P8ABrqyy1UxX/OseEgvHsj8yikWT0ARtrjWbXMHFzSOo5hQcfUmMXKqWWz6+N0+U -# ynhGy1n+doW4WZgpH8Y5W7hpSokWj1M/Lu4wi3o6Dz9vVWukcgUFGjLAl4YZpOha -# h7HuiC/alXImMQf8C3A8q/6/1hFoeIZB4UGkywxB/OSTOSsL6+39pDqzM7CgOpf4 -# V799kN94yM9uXJI5T/SiA5MdIZIhEW0+bh85RqDh5YW3/oav54RPxw5OPlH64QV6 -# KJkl0FIElMVoLNo8UWRQcMD179x7WASjC6LsaNZ7yK0qcESIsL1wiQmdfQBxcqrF -# CpIQfnmQFkOp9IyXUWqza8tmpz8E6aXg9b1eiAT3PVTgrOlPi/hYZCfPxX/6jGty -# Pjy1CiwOmJamohmSU//COAenfRT2G2HMRUpCX1zs+AmDmdQM1XRab4YSALLAlDzG -# CsgI77nnuJjoXAliJmv7NfrvWAcA5KqCUOWQ6kSPt5r28MfKXWJJpSXtFeS/MkDz -# Jy/iJRVyHcFy/B+MtwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFFkHwGoDJ5ZbEEiu -# 8KstiusqaozQMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQBiAM+nqrpwG29txSXv -# 42o+CsTe2C4boaRfFju9JaWkLTHwq7pknNONL3n+UG3x/B083EKXiFYrAmul7BTH -# CGXU63/xRsZ2wj3ZmR0A4d9nf9saCJVm4juPVFBai/oktOOYH2j+1+zM70woN5on -# gB/pvy7X8AfY6JB4XPvb80Qz7fY5eddbnwjzg1sZhUPFbbcweWeACINrzqFK62mM -# eXKmhtufMraoogJeJXfWY3x4/pbubgENT3+pXT65203CPF9kfdKE7GKAIRYy3xkB -# TDvFd8dufjOpCn38nK6qMlVtnBjDhWQG0PM3E/oxBs5UBrI6pBYkmIHtbjifDquH -# T+ThaVV7xHc6InoSc3aNzX49JHUgQmuvDdMjLkbYXeA0/1q5IxSg2U+ycZBOvAi3 -# udZPKhA5VzODjf/ucu/vFtXrYcRkmGKN3jujaK3/yMZi2Ju5NEL3ISWorwp7RjeZ -# g+JMIK0fosuVj+YCm5r64LH/D9QJDAj+XfZaNeFdv90K5A0QRRGP/poB9yTIVjEX -# j/uJzp8L4Dd44sAquqDOiHdkLgxfK8nPqpCSWPZ9G+RCPm85o9cAfxENtrSuOwcp -# yKzxsRCYCL+PK4+98orit9EVJ/LLoCeG+jLlj0KaD4Qy6sZe4rWMr1brQLosTBZN -# wFnXxNjInCWBd0i7is1yTS/4qTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg5MDAtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQC7ycXVZx3bsDpJkr7VucgpksozuKCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bEEtjAiGA8y -# MDI2MDUxNTAyMzQzMFoYDzIwMjYwNTE2MDIzNDMwWjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsQS2AgEAMAoCAQACAgWmAgH/MAcCAQACAhJlMAoCBQDtslY2AgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAMnzxlgACHgug8/waMWz4/ELvZIE -# KqVI7MNoSmqwjR2tebywd4nc5Wcd6iOOaD8O+6scFdfha4YzFq1M16FsQHN7r562 -# gKzTg/2am6LdpRNhf5GPIJdsGDAut9BuR94FA0VosoX6Kh1UZWWYiqHFJGksop9D -# 5/NM/rWIUPdcAjwb7ec90p2asp78LaExGO36qXUmxHiqd8x+C3BfuUVP4oXqnVkE -# 100zulhN0UXTPL+xRfwd+Z0FdJqmtiFAi7zl0OQegvlhlkpjsnTI1H8iTy47Sr6M -# wt8oQUPm2CGw4yPDNNkjcgUoK9UsuNRFwxgmQ9NWlscLppa0+56lUf9TrokxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiJB -# 0vaq/8i1/wABAAACIjANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCBlUgD++jB6PYU6yJzH0b10LInz -# PvYAPVm0dhrWZfDSITCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIAVgXQEK -# BOfGgjNskmDOmbcEIOnHGNwA+QcRufDR5AkTMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIiQdL2qv/Itf8AAQAAAiIwIgQg26aIE62W -# z1dC7WTJ6HmsxCxiLFwniz2h+z8y+/p+gwUwDQYJKoZIhvcNAQELBQAEggIADhnd -# Ey/0MEes02cgLML8o4kaEvYcjVAuWwmoAgiR/Xp5mSL+Q6Rp5eYz4/6np4pClbyQ -# rp2HnqGN00O1TeftjW7+aIOzYjArwvMFJkOR7oBBsIHf0HxKaoSMtkXRdGDc4q2O -# xJsxVq/wetwY3eWu8uMGuMqZg8tIrUm+XbdxLZqDLVc6Uk/Y+OPPqEN/3oWRMuiu -# J72NEywfeEm6N5oCXcqFOaCdBus//5l9JWkOIczVpBcH3mrA69K3G5SlUAHa5RaV -# CS5S/6GT2ow9XOJfyvqJYYSNbP1EbvLGlug6kYQq+j/5KEbVCcg5MCQv9El4QUUw -# t68p6G183MAZg298zgbG6a0psO49HbDlpyL51MHvux6CJEdn7Xuhvzj0jVdtXm4n -# 72NFXOIYU+jHLtZ6JA/0nz4SjD5oOTzEbI/u1kRy/UhCdZF4zRD5MD+1aEfGD1EO -# cOLyz4myntshokt4Hy+oZoitZtHzVqFsm9rNA2pHEdFu+32JyOeViWSSLzUGBu7Y -# gW4qqp6nltT9O5etxUgX0CNh1qmPR+vYM4aMbykXTT3oKkZtxdT+0dxpk5zQvl8z -# jo+5AQ/mx7TxCqhqHFFV3Sns8xjblSSPKTBEIXEgpy0v8gX2vmh81AmhKD52oHaf -# wixcbiFuc/XLjo87B8p5a4DAJDwYDOgQbgLN1YI= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1 deleted file mode 100644 index df6fbb654de39..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1 +++ /dev/null @@ -1,232 +0,0 @@ -$path = Join-Path $PSScriptRoot 'Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll' - -if (test-path $path) -{ - $null = Import-Module -Name $path -} -else -{ - if ($PSEdition -ne 'Desktop') - { - $null = Import-Module -Name (Join-Path $PSScriptRoot 'netcoreapp3.1\Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll') - } - else - { - $null = Import-Module -Name (Join-Path $PSScriptRoot 'net472\Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll') - } -} - -gci (Join-Path $PSScriptRoot 'Microsoft.Teams.Policy.Administration.Cmdlets.Core.*.ps1xml') | % {Update-FormatData -PrependPath $_ } - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAkAcLpsaJGFDbZ -# eSS41J6zw7DVHNDwNlPCWsROSiOFqaCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIPfanlNF -# BOVfSygxXiGchjDoSjX9DIEVGb2vyXmTS6s/MEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAaA9Tbs8euMmo4V+G7zcLKi9d+O1JFnEOyy6Jv6nq -# 7NIRXmN/jKt30YsccsDX0uPtqpkgOXFgeqAKg9ZJLPeKXKrqupJBEVdSxoRRXwY3 -# ZWsQMOydSB0CknigdFznXWRUBGsd4EjGsfkjFDZ8hFZ9e+al5tLvSEkwkvu+PFME -# XrJs2/q3F87zg6/musaf8/iwz/6Os0KzggWFEEmkMthCWRY4vlfi5ZIn72FSzFMC -# 5+WVaBwtos7ZbEKLmOqnY4tz4X9z3jxVnXdWqX17l8P9ghbfArrDK3S/RkfiKjEH -# GPWoar66Rbd69f0Wfz9GnxoLFnu4AF6/w8wVdK+PGV2hSaGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDyCQkjohf00Hdqntda5azqe7dqqawaoX9+kXYd -# E7aoNQIGaef637J8GBMyMDI2MDUxNTEwMDYyNy4yMzlaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046RTAwMi0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAikO1WQqtJfyGgABAAAC -# KTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDdaFw0yNzA1MTcxOTQwMDdaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046RTAwMi0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCeItFq4z1oCYSmUZmpYDsbJWEu -# ++1bbc/Mz7Pa3I0ZX5EON+WirB0FvnGlyFRUylzO5TJXZfU8QFPOU95P1Y1OZ8J+ -# quA5G+AWSBOr/48scl0s9RBpqgTMq/lbyqBz4CMmvVR2QevAgVp4a1hbmOm9G7YW -# ey68N5F5rSDYV0wMlg4Iy8YRuFgRN2eBpVXt9IvFaFmBnQLZfo22KZ3L8PWEHUhX -# U5dLOSZoTfqqQ/B+deW56ACMnnHjPxZu+szHhZMLUrMWTgs9J7Cn8DtelcKj9aM+ -# 0Zq7tkSDHCrwo6eCSfw3clktXRRrdmsccal8RCDiNFFgZsypwF2aGAF6kg41+Ql+ -# thXpnOMUH4mPCAJZWp0zDWowsK/Yo5jHL1pT/AgbL3FoAy4cbhOI4Pb1eQFG+jT7 -# skS2F/b+ZACUA1EDZ830K+Bu0yw+FpSGy8tpd1szk3cUYjIpzIG4z3oFNmiSJN8Y -# dNd4SHsER5Dks5bxiKbpvmfrOA39jTb7EW2TT7ySWgJISfvTezuLmQsTVSzNsvap -# VlHhE2zBqDw409nvOtitCFbnhhXNfatzb2+Gf2tX2s6YBa151CC/8+emJvvegXbW -# NudzYt8cFRom0PZ+fJRhhBfdSqCqr8QeOGJ8VYlmxFXqx1SdDSkTCSgpsskGqZwh -# /6umA1g4L7zeGBNngQIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFCdNRaSL9AW8QvaQ -# 21WjRAXKN4M7MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQA9wc72lf/czDhp09T3 -# PGAMOQhxl/x04jpE7t39FeqQSn2Up6DVzhgwnzCqY3NIhLtUaWrd7NxvrhZDca+J -# 4xzvrRQNPHeRQpnJVeHsyTu53gTBlUB1TRI6OnZt/AVmR9oMJ/NBOqB+d+SOb8Px -# 6zRgRwk62sFkOkB5lig/DMnYEeR/amW9Hdo8vXcKmaa/DbSOAHSdfZFt+iqMZfNl -# kEOn71/RAKTNv4Qpq/2FhcjMMmSkIhshBdBVB0VjmkwFfhVUf5TTuLJ9sDR4EyCv -# OZJ3B6g7Iw6WjQxycjwkfzsVMTpfusJ5SwdOHL8yGPWZOePjwa8ISXWs6kiVK/6S -# 0/JVb1LpxpyYKREQjnU/5OecKt2OXlHdwFWZrwAi98RPZa6EExcb/LGLf10tNHju -# 1eTlohY0jzNZQ0BDgSuMZgMU+8EEjtMQMIDnlPGEUON7LHXHH0KL0FA01PEWVZKr -# r/LUOuuDTNFzw543FPMp4gkCIFlKdRuciR1IXOk+Xse6rj9tJFYgVn+44BHou2XQ -# e5RX30ef3AQWa0mxyGDqJzGsV3X5+bNQeMV88iWulJPq5sgnGG9O/H1/HH4HsO9Z -# KGX/WrJpQmFuQrTOR49XjveaC0xaFmGsNg+RhbtD5qTkn+ISDvw0IJ/E/VXNdz/y -# Wgol6r507hT8sAMupnhkF2uw1DCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOkUwMDItMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQC3v9iSO22xob7ZxN5dXCEq+9Iv/6CBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDKqDAiGA8y -# MDI2MDUxNDIyMjY0OFoYDzIwMjYwNTE1MjIyNjQ4WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsMqoAgEAMAoCAQACAgHFAgH/MAcCAQACAhMqMAoCBQDtshwoAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAL842BdKTXdX69+HDxihyLeaRHEQ -# CmgSEZI22cjkswJozTcnDDr5ymyKiDASb5+wKI8pKxW91n1WXDRlToz1AvixxJrx -# BEXhgmNDR2pAIeckHbUxkSV0QIJocCkb1g+e0WWWTnJRCSCcVIqHnMQyUATwgiVU -# 8IPdgSRCSwUYila8TVB1LkhmzkDZcMq5UybUrno8GYf6cCZPAJEA3WadgFliGGTc -# ojFqKcl9RbpLM5CCJAEPfKXJthdYvNumpRyu2AwqKTRLMiwodSnTgVBQpGVwLkxb -# GzEm16r02e7qcEYSylRSzFJAtuTGHuQR+qmjLMGJeakvjKcB36pNBkVDi70xggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAikO -# 1WQqtJfyGgABAAACKTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAt8xfe0HMwXIbbREylnnPgwyG8 -# 4UKJ5RgfaLilTLyFcDCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EILfKPfEi -# tvD/lSvEumxqPkkeOEtgkmKFEVMuel9oOrqSMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIpDtVkKrSX8hoAAQAAAikwIgQgi6EaS1V7 -# N6Ya92o6L7CDvDuo3OnDV+cRl61x8bHGex8wDQYJKoZIhvcNAQELBQAEggIARqWW -# K6OVRR8lSDkyp9Tjm/MNeSU7SjNYgoQu90Li3EzJjhmsVdjFNelWlT6uaXphXyCt -# hEzTllOQiFpYsAgTHehldr3hM0fMofVm11mo2EsvoAleyrqGWSfZkgz5eCGVQ2EZ -# 4Ke8eEAvcTarvmaPQvzVvQB3566itQmS8cW+nrAl//XqWEBS+e+64XqzltbqX2Gf -# hyxxikpV6XyrsXRV7PKwGUTYYng3k5xaGT+e+JkI2sLETvWI9qOWcDeVBiMd2td9 -# VSoOpYBB6hyFR+yZtq8lSvmCOrNK+vRZ0G/a5w6/EEJvAXPHehOFODXR3D6dGqBa -# Dbdm7KeC2Zj/ThBeCMtoKqGZewvW0oz7Ws7DIAEZQcdpDCm9fhGOGr6yB9U/QKLt -# ai+kvu1QhB2dz5PGQzR7axe6Vk7ZT7QEoCidEqs83kULjhfk4LdIsKzoprTk7qoH -# s/T8GQ1DVEqOtkHJ88KsHTUuGijESP32n2m8/aBUadszul7E0cHTfoYKNg4C/l/A -# WeUyBIWs7+owpxmYMsMwc90I7OUAdzVTqQz7TR2Yzn3znUEpmKI+53sFpRG6ZtTi -# uBcazawoC7CwPSYgx8pTl1yo/+tnFaqN1I4v83adRSyHUPgRdR0zmFG1B82Fu1Oc -# ps7tFovkh3x78yJo9H8HDIs8ck3NIJpBS+BTlwM= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml deleted file mode 100644 index 235ea7c386462..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core - - - - - Gets or sets policyType. - - - - - - Gets or sets direct assignments count. - - - - - - Gets or sets policyType. - - - - - - Gets or sets direct assignments count. - - - - - - Gets or sets UserId. - - - - - Gets or sets PolicyInstance. - - - - - Gets or sets AssignmentSource. - - - - - Gets or sets total count of users with conflicts in their group policy assignment. - - - - - Gets or sets the count of users with conflicts in their group policy assignment due direct assignment. - - - - - Gets or sets users with conflicts in their group policy assignment due direct assignment. - - - - - Gets or sets the count of users with conflicts in their group policy assignment due another group assignment. - - - - - Gets or sets users with conflicts in their group policy assignment due another group assignment. - - - - - 'Applies a PSListModifier to a collection. - The collection either has the items in modifier.Add added and those in modifier.Remove removed, - or is replaced entirely with the items in modifier.Replace. - keyEqualityPredicate is called during a remove operation to determine if an item in the collection - is the same as an item in the modifier - reference equality is not sufficient. - - - - - 'Applies a PSListModifier to a collection. - The collection either has the items in modifier.Add added and those in modifier.Remove removed, - or is replaced entirely with the items in modifier.Replace. - This overload is used then the objects in the collection can be compared correctly with those - in the modifier by calling .Equals(). - - - - - - Gets or sets MigrationEventId. - - - - - Gets or sets TenantId. - - - - - Gets or sets GroupId. - - - - - Gets or sets GroupName. - - - - - Gets or sets PolicyType. - - - - - Gets or sets PolicyInstance. - - - - - Gets or sets State. - - - - - Gets or sets StartTime. - - - - - Gets or sets CompletionTime. - - - - - Gets or sets DirectAssignmentsProcessed. - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml deleted file mode 100644 index cb7659c84136b..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml +++ /dev/null @@ -1,258 +0,0 @@ - - - - - TeamsAIPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.TeamsAIPolicy - - - - - - - - - Identity - - - - Description - - - - EnrollFace - - - - EnrollVoice - - - - SpeakerAttributionForBYOD - - - - PassiveVoiceEnrollment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml deleted file mode 100644 index a46c5da25606f..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml +++ /dev/null @@ -1,246 +0,0 @@ - - - - - TeamsAudioConferencingPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.TeamsAudioConferencingPolicy - - - - - - - - - Identity - - - - MeetingInvitePhoneNumbers - - - - AllowTollFreeDialin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml deleted file mode 100644 index 1f5f21c59836c..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsBYODAndDesksPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.TeamsBYODAndDesksPolicy - - - - - - - - - Identity - - - - DeviceDataCollection - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml deleted file mode 100644 index 02eef2e810eb9..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsMediaConnectivityPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.TeamsMediaConnectivityPolicy - - - - - - - - - Identity - - - - DirectConnection - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml deleted file mode 100644 index df0773c881ebe..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml +++ /dev/null @@ -1,271 +0,0 @@ - - - - - TeamsPersonalAttendantPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.TeamsPersonalAttendantPolicy - - - - - - - - - Identity - - - - PersonalAttendant - - - - CallScreening - - - - CalendarBookings - - - - InboundInternalCalls - - - - InboundFederatedCalls - - - - InboundPSTNCalls - - - - AutomaticTranscription - - - - AutomaticRecording - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml deleted file mode 100644 index 0b8f85192a992..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - TeamsRecordingRollOutPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.TeamsRecordingRollOutPolicy - - - - - - - - - Identity - - - - MeetingRecordingOwnership - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml deleted file mode 100644 index 369790bb07297..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml +++ /dev/null @@ -1,243 +0,0 @@ - - - - - TeamsVirtualAppointmentsPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.TeamsVirtualAppointmentsPolicy - - - - - - - - - Identity - - - - EnableSmsNotifications - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml deleted file mode 100644 index ec907bc017c58..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml +++ /dev/null @@ -1,246 +0,0 @@ - - - - - TeamsWorkLocationDetectionPolicyView - - Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.TeamsWorkLocationDetectionPolicy - - - - - - - - - Identity - - - - EnableWorkLocationDetection - - - - UserSettingsDefault - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psd1 deleted file mode 100644 index 261b3826e09ff..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psd1 +++ /dev/null @@ -1,314 +0,0 @@ -# -# Module manifest for module 'MicrosoftTeamsPolicyAdministration' -# -# Generated by: Microsoft Corporation -# -# Updated on: 1/31/2022 -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './Microsoft.Teams.Policy.Administration.psm1' - -# Version number of this module. -ModuleVersion = '31.6.0.1' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = '048c99d9-471a-4935-a810-542687c5f950' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams cmdlets module for Policy Administration' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# Removed this script from here because this module is used in SAW machines as well where Contraint Language Mode is on. -# Because of CLM constraint we were not able to import Teams module to SAW machines, that is why removing this script. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = '*' - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = '*' - -# Variables to export from this module -VariablesToExport = '*' - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = '*' - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{} - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} -# SIG # Begin signature block -# MIIncAYJKoZIhvcNAQcCoIInYTCCJ10CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBl/twaPvfOAN1s -# uFcihwjVIRpZifxEkMAu/44BCX4uY6CCDMkwggYEMIID7KADAgECAhMzAAACHPrN -# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1 -# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP -# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC -# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf -# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j -# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT -# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL -# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT -# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw -# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w -# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl -# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC -# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN -# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK -# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK -# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY -# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu -# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE -# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz -# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6 -# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO -# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD -# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC -# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS -# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX -# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq -# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo -# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv -# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a -# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1 -# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO -# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7 -# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ -# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS -# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm -# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3 -# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E -# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX -# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB -# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP -# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw -# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC -# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D -# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY -# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI -# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6 -# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w -# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7 -# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK -# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK -# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw -# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT -# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn9MIIZ+QIBATBu -# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x -# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc -# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG -# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI -# hvcNAQkEMSIEIP5YPicUlGE4VW3nJg4CRpohsjCBegTTFVfNPwGGWGORMEIGCisG -# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAwTAIyXYg01LooyM8xoBs -# bBbo0ZZ6SScsnlbD2VSJTrKiOtFYMJGn3YNJyIAbGtOlCKCvoYnMqhqykK3M6ZU7 -# XKOdIOVAKAEda/Pusna9XeIhY/sdHKd4Nra4cC69LP7koVfYMLjmHgwlTaLAyk/G -# n0+7HyoJ5gUQesL39fI2ed+0O63ZHYFw01nrqLIvJ8f3RhQmjwmYFrJwfhyQkSxj -# SJE9bxCh8mItYVazroCzgNrPd+LoI3DmfpKTZvK6g0xFF7JI2c4WVbMrPBhu8ezc -# dsaTSfDUrNuvg7HA5okD3fvJZQl98FD6Ck5iHIlUFTZ5+s2Q6oLIdqXjEfFiMyTj -# XaGCF68wgherBgorBgEEAYI3AwMBMYIXmzCCF5cGCSqGSIb3DQEHAqCCF4gwgheE -# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFZBgsqhkiG9w0BCRABBKCCAUgEggFEMIIB -# QAIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCA/TZGDSlGpLSMNQtLZ -# pLC25J+R+oeyihAw5gd1gGfCbAIGaexcyffEGBIyMDI2MDUxNTEwMDYyNy43OFow -# BIACAfSggdmkgdYwgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRl -# ZDEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjU1MUEtMDVFMC1EOTQ3MSUwIwYD -# VQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloIIR/jCCBygwggUQoAMC -# AQICEzMAAAIb0LK4Amf3cs8AAQAAAhswDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE -# BhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAc -# BgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0 -# IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcNMjUwODE0MTg0ODMwWhcNMjYxMTEzMTg0 -# ODMwWjCB0zELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV -# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsG -# A1UECxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMScwJQYD -# VQQLEx5uU2hpZWxkIFRTUyBFU046NTUxQS0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1p -# Y3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIiMA0GCSqGSIb3DQEBAQUAA4IC -# DwAwggIKAoICAQCOxZ3nZlmTMHld7mD+XYaw6MDPfSyDqNXF8UlX7DjEgNXJojcs -# 7xsimbNi6XcBkeDnRQhDw+tJFkalCoWRE276jdgoniDa4ZgFGSwecdhHS5VIJCDn -# xOGRjJ6mUZfegC8ZFW48ilC0CJOxHvoD+B2hTscPARtvvdsnBPKtsoeFH5ZozL0N -# AcjiTlCjj5tkOzSSPvpu+Em90ZT5LzPFAGntQCGMmcWorEi6xIhMTvMIJHjbYQuG -# SFVU4WorbDqHUwC8gt7vqHFEhw+PRIEvavw723HmeNTj62DasB1TXnembKGprN2l -# RxxgET3ANEVR3970KhbHtN2dSJwH4xqLtFPqqx7t7loapfUHtueP9ke+ut8X4EkQ -# iVL2INcBSB6S9dn4VmaO8vA/5037T9yuH76vh7wWScXsRfogl+eY14M3/rxnn2Rt -# onV/4/macph/J0J5mbGsalLS1paQOTfoPeM9Vl+W/Gtz7WuEIiUzm/1qAsQUjXZC -# IFN+k4E4GvcAYI+T54fT6Vq2NBqO6D7b8EPXapvzbnTQtDK1RZPai1r8didGBK/W -# O9nT92aXUWzFZjM6cKuN90H/s3qk3JK3i+f48Y3p0UuKbuTGiz4H1Z9A97MmLd+4 -# rLIMAH3NIc+PVm7ydl95xkn26bjOPsMWC8ldMNOcbmqUbhl1sVFr+ut/OQIDAQAB -# o4IBSTCCAUUwHQYDVR0OBBYEFLa+n3f+XEumk0rw6Rq4nYC82YhQMB8GA1UdIwQY -# MBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1UdHwRYMFYwVKBSoFCGTmh0dHA6 -# Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUyMFRpbWUt -# U3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggrBgEFBQcBAQRgMF4wXAYIKwYB -# BQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWlj -# cm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAoMSkuY3J0MAwGA1UdEwEB -# /wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwDgYDVR0PAQH/BAQDAgeAMA0G -# CSqGSIb3DQEBCwUAA4ICAQBmRTVfFAPg5MzcZOG3fZNdKEh88Ggx9KwWwFCoU5mo -# sk7HIk6WUgEWmam860Y0+QLlnyV0bxoKm+AU2j+MNZ5PkWJbnd0CP0qdnGmxDc9/ -# l9HNIYdFzEQw51chXMMnBxlRfRyN/GdrvJ02/x5cH9eTobpLKtHY4fpLUscxbXWb -# dS8oX54uMg+XjmvGKa4MKgR35p3SU4BcDn+9k4o3mf949h4/QtFyFlfRDofyf9mZ -# I8yVuWLcw7znVDT1GZP9kYdr78V3L5YsOvBxjKRX2ZTL/hNvArDoW11Hpk8fEx0i -# LWmTxjaYL8bMKrQsKwfS5MV5DpDs1zcxGYRH/eYtZSFtpYeBfUVthyG9HbZv4G6n -# 5g9HlD/QGFpoA3oAgF9waz67+cmggHLJkoDxxPIKadQj/i9boPi/LCDdcEV/h/YP -# AUfL96+wL7nwoyX6TbBrTlfaQrRP9sI8uFqi/1lfKhtrB804tgaJq4pPYVa9vBnM -# cgUJPGMHDDo+3m5G8IT+OdRx//GGU4YyfqIo71e3j29lMTZJ8gGT/fiItNEEnoft -# oY9NNCfNrc59a7X91HJwLpaXmiezc+OcZdNIpLFeWUk+aDpH+6Uaic/9QJignqY3 -# 4ReN/IMs9cuqyv3X5VMbWtjNEKM/AEUAe/gQjBoTRqMKt/vl5QYjf6hdTRQ/quWh -# nzCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUwDQYJKoZIhvcNAQEL -# BQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH -# EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNV -# BAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDEwMB4X -# DTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3Rh -# bXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDk4aZM -# 57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg4r25PhdgM/9cT8dm -# 95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aORmsHFPPFdvWGUNzB -# RMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41JmTamDu6GnszrYBb -# fowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5LFGc6XBpDco2LXCO -# Mcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL64NF50ZuyjLVwIYw -# XE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9QZpGdc3EXzTdEonW -# /aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj0XOmTTd0lBw0gg/w -# EPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqEUUbi0b1qGFphAXPK -# Z6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0kZSU2LlQ+QuJYfM2 -# BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435UsSFF5PAPBXbGjfH -# CBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB3TCCAdkwEgYJKwYB -# BAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTEmr6CkTxGNSnPEP8v -# BO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwGA1UdIARVMFMwUQYM -# KwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0 -# LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNVHSUEDDAKBggrBgEF -# BQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYD -# VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBW -# BgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2Ny -# bC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUH -# AQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp -# L2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDANBgkqhkiG9w0BAQsF -# AAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4sQaTlz0xM7U518Jx -# Nj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th542DYunKmCVgADsAW+ -# iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRXud2f8449xvNo32X2 -# pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBewVIVCs/wMnosZiefw -# C2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0DLzskYDSPeZKPmY7 -# T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+CljdQDzHVG2dY3RILLFO -# Ry3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFrDZ+kKNxnGSgkujhL -# mm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFhbHP+CrvsQWY9af3L -# wUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7ntdAoGokLjzbaukz5 -# m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+oDEzfbzL6Xu/OHBE -# 0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6FwZvKhggNZMIICQQIB -# ATCCAQGhgdmkgdYwgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRl -# ZDEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjU1MUEtMDVFMC1EOTQ3MSUwIwYD -# VQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEwBwYFKw4DAhoD -# FQCGhXqvj0zgYF3jUrVFgHVnR/jO4KCBgzCBgKR+MHwxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bE31jAiGA8yMDI2MDUxNTA2 -# MTIzOFoYDzIwMjYwNTE2MDYxMjM4WjB3MD0GCisGAQQBhFkKBAExLzAtMAoCBQDt -# sTfWAgEAMAoCAQACAgz/AgH/MAcCAQACAhJdMAoCBQDtsolWAgEAMDYGCisGAQQB -# hFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEAAgMBhqAw -# DQYJKoZIhvcNAQELBQADggEBACYR1vi1ul16aEVYZGSWwMF/M0lRABy3kujHEaen -# Mtb4hirMBvL2OG3YcgpA3nDsdcwuB+u+2Y6EvhUmfjTPrzQ8vpvMK/vD1bTtuKrS -# LlpNpzANAsUV9qcn8QTRNIA9EEcab3jjpUcYNhmwAWb9CcnHOGGDgTjg3SUEH/S0 -# tUKS7OqoGGcdNP45Ahoubo04Vfr9oFn8TMX9MgBIaPbGAY/tJYbUjeUdUaa+SwfC -# qtG7L4MhONbc3OWRu6DTgi6UUTFgPgB21vJUdm1w9tean5Uc5tXEtRqtDDKie4aS -# lpAFNNuwtfE/xMofZNI9A1eFQ4ipA8cZpxWik9BXlhF6Fu0xggQNMIIECQIBATCB -# kzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH -# UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD -# Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAhvQsrgCZ/dyzwAB -# AAACGzANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJ -# EAEEMC8GCSqGSIb3DQEJBDEiBCCX4ly8UbnyV1yLsuOyG/8IoyFXBFgxR50i3/Qg -# HW4VazCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIDAlFJW4PaOYxxAIVd0u -# 4kDAOlRU1nptzp18lTzdDYuAMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNV -# BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv -# c29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# UENBIDIwMTACEzMAAAIb0LK4Amf3cs8AAQAAAhswIgQgLdlheXnxCPc/K9hRtPmP -# n7f36qGyBzZXXl5bVsXh7CowDQYJKoZIhvcNAQELBQAEggIALvtO2huHhEmdzOGH -# 6nS4Cpu9zWPfT6Bb1KRhbS4mQqPit61qMaxp1ZHj2whBXUsrqPrD5l5jsBhgcpaG -# smvmO00LJC4qIjHJOCKXR2fbyRG9o+VYpBy5jSoUCsE/K5xzkuaAiM/ZxA4ZMXDE -# Xz5iqCePEMdHNcz3h79fQ1CWb6Y7a6PaDto4yRCUKbomaeQB8Gs3P5FCfZV3EtGF -# LudH0EWq8ecUqBK7eD4IADX1D7GZPket6x2lYw3g/v83fHGb4VnlxX52aXkhWxw8 -# WzQkgmM8+LUe5xqPBjXmGcH9iwyzSuOt/umEXVf9jNMUdbq79NYELVXefj2bRgWS -# zXz1Bx01vGB2G0d9Z/5o9rqlTSAuX+bDgknmxUfpByLTCiTUy3miln24p4xwtbpj -# cgVGYsvY5lKlXZ8LovW7C52JrePdY0gYnjVU9gnt/LaZVA+XcLp1TxNdllBU7Ycs -# u2QXzG02UCc5HcRTVw2G30vx6vm+zMhCPiaDKmBhQs2J8uiziUc5U26PskDVkvmk -# eJrQiAl+xtupxewYlo/ylqNFvbM9zlAm8pEsB9g6ImfBOKV6b9n93lHW4VRH71Jw -# xXkq991yIf0tQlTm5GvkTeZ2Xu7Ss2DhbkGUH5FTCa7whybIXynKhffQoiMjNC2I -# b/BKjrLe1IP0ChBg/jlUoLyXB/g= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psm1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psm1 deleted file mode 100644 index 4bd07a53e7ba3..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.psm1 +++ /dev/null @@ -1,243 +0,0 @@ -# Define which modules to load based on the environment -# These environment variables are set in TPM - -if ($env:MSTeamsContextInternal -eq "IsOCEModule") { - $mpaModule = 'Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1' -} -elseif ($env:MSTeamsReleaseEnvironment -eq 'TeamsPreview') { - $mpaModule = 'Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1' -} -else { - $mpaModule = 'Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1' -} - -$path = (Join-Path $PSScriptRoot $mpaModule) - -if (test-path $path) -{ - $null = Import-Module -Name $path -} -else -{ - if ($PSEdition -ne 'Desktop') - { - $null = Import-Module -Name (Join-Path $PSScriptRoot "netcoreapp3.1\$mpaModule") - } - else - { - $null = Import-Module -Name (Join-Path $PSScriptRoot "net472\$mpaModule") - } -} -# SIG # Begin signature block -# MIInbgYJKoZIhvcNAQcCoIInXzCCJ1sCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCY/3SaRU5aX7aK -# TQZJ6IK4Qt60ySomlFTBejL/fus5QaCCDMkwggYEMIID7KADAgECAhMzAAACHPrN -# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1 -# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP -# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC -# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf -# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j -# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT -# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL -# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT -# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw -# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w -# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl -# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC -# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN -# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK -# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK -# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY -# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu -# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE -# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz -# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6 -# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO -# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD -# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC -# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS -# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX -# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq -# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo -# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv -# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a -# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1 -# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO -# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7 -# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ -# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS -# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm -# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3 -# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E -# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX -# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB -# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP -# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw -# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC -# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D -# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY -# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI -# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6 -# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w -# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7 -# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK -# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK -# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw -# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT -# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn7MIIZ9wIBATBu -# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x -# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc -# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG -# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI -# hvcNAQkEMSIEIBMwq7DKEXveX/tYp75+TAPnyE5ZJziyHVTCrrAiSia5MEIGCisG -# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAcpkzfEmZCx88AByzyeQM -# SJjy0Y+3AtSpcBfgm3HVBxyCfA1X1hiTTGpqs7DrKHPOZTl+0y9eZ9PPD7nz9GOg -# dq564rJ7mpQlQwenwF/QRL/xbDLXRsqetqo64jG7nu11s7+XHFaBHAemmEPTVH0p -# pDVc5Wd0XPdpaGJ/sL3IazKbeImGb/X6SQA8v0czN0LHDh1M0nYtMAPTw0nZmC9B -# yLqWOM+QTd/sndCIwmAKWkfYzhV34IW/VmWZpGIJofS3EySEDcP5+3hJCotXwgLH -# dICJtkrsCiFASCrQq7pV3zK3jzC8S3B3g6EOiKnxUcl7JB++6vb+/wqIHtWG876V -# NqGCF60wghepBgorBgEEAYI3AwMBMYIXmTCCF5UGCSqGSIb3DQEHAqCCF4YwgheC -# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFaBgsqhkiG9w0BCRABBKCCAUkEggFFMIIB -# QQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCD26oVz1YzfjTg4pAt7 -# 5I2rWdNPqwpal+dughemKTzLXQIGaetgzP6mGBMyMDI2MDUxNTEwMDYzNy40ODla -# MASAAgH0oIHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjozNjA1LTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCCEfswggcoMIIFEKAD -# AgECAhMzAAACE7BDNWbPr5XoAAEAAAITMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTI1MDgxNDE4NDgxN1oXDTI2MTExMzE4 -# NDgxN1owgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTAr -# BgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEnMCUG -# A1UECxMeblNoaWVsZCBUU1MgRVNOOjM2MDUtMDVFMC1EOTQ3MSUwIwYDVQQDExxN -# aWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOC -# Ag8AMIICCgKCAgEA9Jl64LoZxDINSFgz+9KS5Ozv5m548ePVzc9RXWe4T4/Mplfg -# a4eq12RGdp5cVvnjde5vxfq2ax/jnu7vUW4rZN4mOUm5vh+kcYsQlYQ53FwgIB3n -# EjcQHomrG3mZe/ozjFSAr6JbglKtIeAySPzAcFzyAer5lLNUHBEvQMM8BOjMyapC -# vh0xsg4xKFcVEJQLKEfCGBffMZI/amutHFb3CUTZ7aVpG2KHEFUNlZ1vwMKvxXTP -# RDnbwPGzyyqJJznfsLNHQ4vXt2ttS1PeCoGI0hN1Peq8yGsIXM9oocwC06DGNSM/ -# 4LAx2uKvwmUn6NwLc0+tmvny6w28rZLejskRfnVWofEv1mWY0jHUnHrwSGBS8gVP -# 9gcBs6P5g0OpJPMfxdUkHXRkcMPPW0hIP8NbW8W5Sup8HuwnSKbjpyAlGBUdM/V5 -# rZb0sZmkn714r6ULGK+cLLAN6R3FhX6N0nj64F27LTK2BbS0pJZaXjo0eDNz1Qcx -# eIFLUgF+RBsLYDn8E8cCkexK8Nlt3Gi9zJf55w6UfTZ+kwTMxMqFxh7+Tfx7+aBO -# bZ+nx961AtiqAy7zVV69o/LWRdKPZdvZn9ESyGbTnPfjkBERv22prSlETlRwzP6b -# mEVOKWLWVwxuwh7bUWUuUb1cj93zvttQYGQat5E9ALLJNmlvLKCskB7raLsCAwEA -# AaOCAUkwggFFMB0GA1UdDgQWBBQTnhBKx+FryphQWMRipH49sMFAOjAfBgNVHSME -# GDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1l -# LVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsG -# AQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01p -# Y3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMB -# Af8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIHgDAN -# BgkqhkiG9w0BAQsFAAOCAgEAgmxaJrGqQ2D6UJhZ6Ql2SZFOaNuGbW3LzB+ES+l2 -# BB1MJtBRSFdi/hVY33NpxsJQhQ5TLVp0DXYOkIoPQc17rH+IVhemO8jCt+U6I1TI -# w6cR7c+tEo/Jjp6EqEU1c4/mraMjgHhQ+raC/OUAm98A1r4bIPHtsBmLROGmeE5X -# LIFaBIZWHvh2COXITKObXVd5wGtJ1dZZdwaHACXF506jta+uoUdyzAeuNlTPLTrZ -# 8nyhxGwk9Vh6eiDQ7CQMWSSa8DJS9PUXjeoi9vTdS7ZMXqu+tv6Qz3xtoBF5+YFK -# 4uE+miGs90Fxm0VK2lWrmFhjkRl5zyoHOdwG7spNYkDomCPNWIudUQmQYKpt/Hss -# pfcb+xpnWIDQdMzgE8pj1vpwLgWEnH7LtT4dZCeoDo9PK40RxBD8kKJ769ngkEwf -# wCD2EX/MQk79eIvOhpnH12GuVByvaKZk5XZvqtPONNwr8q/qA3877IuWwWgnaeX+ -# prpw0dZ/QLtbGGVrgP+TRQjt+2dcZA5P3X4LwANhiPsy0Ol4XCdj7OxBLFvOzsCP -# DPaVnkp+dfDFG+NOBir7aqTJ68622pymg1V+6gc/1RvxC/wgvYyG033ecJqv0On0 -# ZRNYr+i/OkwgA3HP1aLD0aHrEpw6lt0263iRkCvrcdcOW8w3jC8TJuaGWyC2S9jE -# jzgwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0GCSqGSIb3DQEB -# CwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD -# VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAe -# Fw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5OGm -# TOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9uT4XYDP/XE/H -# ZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZrBxTzxXb1hlDc -# wUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk2pg7uhp7M62A -# W36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxRnOlwaQ3KNi1w -# jjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uDRedGbsoy1cCG -# MFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGaRnXNxF803RKJ -# 1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fzpk03dJQcNIIP -# 8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG4tG9ahhaYQFz -# ymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGUlNi5UPkLiWHz -# NgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLEhReTwDwV2xo3 -# xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0wggHZMBIGCSsG -# AQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+gpE8RjUpzxD/ -# LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNVHSAEVTBTMFEG -# DCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29m -# dC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8G -# A1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQw -# VgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j -# cmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUF -# BwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br -# aS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJKoZIhvcNAQEL -# BQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEGk5c9MTO1OdfC -# cTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2LpypglYAA7AF -# vonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7ndn/OOPcbzaN9l -# 9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSFQrP8DJ6LGYnn -# 8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy87JGA0j3mSj5m -# O0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8x1RtnWN0SCyx -# TkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2fpCjcZxkoJLo4 -# S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz/gq77EFmPWn9 -# y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQKBqJC4822rpM -# +Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAxM328y+l7vzhw -# RNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGbyoYIDVjCCAj4C -# AQEwggEBoYHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjozNjA1LTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcGBSsOAwIa -# AxUAmBE8SCjxgjacmy8/VEdk7NxpR6aggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1T -# dGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQsFAAIFAO2w5I0wIhgPMjAyNjA1MTUw -# MDE3MTdaGA8yMDI2MDUxNjAwMTcxN1owdDA6BgorBgEEAYRZCgQBMSwwKjAKAgUA -# 7bDkjQIBADAHAgEAAgIqwDAHAgEAAgISUjAKAgUA7bI2DQIBADA2BgorBgEEAYRZ -# CgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAIDAYagMA0G -# CSqGSIb3DQEBCwUAA4IBAQBBnavZ0q9Zuz/a0IQWvImy/wAm/5F+zbI8bDGO2NLT -# vNOpXHaotrdzW7ICg8qlHeTSthYAyDch7ECmsiQrMY9hqzOLDpg9eATW2Ihh6Iun -# 6fzqJQsV6oTjZPStyU0/vAv6NNkK2FwdhxHy85DKIXnDGSiQiq94NcEgODDbuYJA -# Wlfwd4Y/5QX1E8PgVCzVX7Osj7LcWsj/H/73gB3bUfOamthTb4dxb3xcTT+oNfyf -# XWWicgj2ejVyfjsBbblarL7rjV4TIZp2ac6wlXwrNsP2ETufWdp/fE0jMdF49Qry -# AR4bERIPlKCpJKGFl0nytvIB0ciQx8ogmHQBr8547VxAMYIEDTCCBAkCAQEwgZMw -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAITsEM1Zs+vlegAAQAA -# AhMwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRAB -# BDAvBgkqhkiG9w0BCQQxIgQgI+h6AmBzcO/MHsnguRaLrJQzSreLxmXJ1g0Sreii -# nBYwgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCDM4QltFIUz8J4DjAzP4nVo -# dZvQxYGleUIfp86Oa5xYaDCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBD -# QSAyMDEwAhMzAAACE7BDNWbPr5XoAAEAAAITMCIEIKAbIUo40Ldde8bGDVKo1Cdr -# Jm6keKHg9v7f/8mNdIlTMA0GCSqGSIb3DQEBCwUABIICAKYAWazKkWILyWClngea -# DFYvtqz6ERMuf9sVpbad1LyDLGiEphGj048+oBVlyHA7BioBMXvEOPsNm4pzQFB/ -# jgt+Gq08Y/b9J+qI3gaxTA5RnERqkKZC/0Br9AtBg5ykqRVNZ8l9EgNTjISX4ppD -# QRXho8Ip+k0q3IeT+KcmThLXSDad7wKLRA8zN8ULV3u8wX5OAlY4qxoVEI2C8rfz -# 151kb/aN4mO/aBJIht/iQNPUbfAjeTp+tfkzm+TfN/srdrvIgDTXvfnEWVeq1V81 -# JdpT1fyQ0jNZjdWscWg70z5iuQa42DyHfhrX7QkIXHdiN81keBLdwL2B2w1wa5KT -# QcA3FMrCDga3tq/Urm8dROtc5WKedmWwY4Hm3hGHQDAZhlNoVvc/wpXxohLbpzev -# j8E48v5mVsCG0Xgzx2I88fC/XU8qRdqhRdY/4bSzbXql8/Z7yt95U59V3cnQZmVC -# sPUsx7Eg7nXliIf5TnjbVfaNin5LwNKsyF3u6YXYbRDN/q/9Oflr9DFcWJEjNiY6 -# 2vIKHp5lOAtbMpIuVgRvE8A5UYzk/M1yiG2HK3HVG8sm+ZsM3r4vuOMDljvTBORY -# tZR0zY+tgygIYUKkAsnuyUUn8836JgKNsrqS/PdbqTRa+jeInymJglzfOiNs64qE -# rQ/trgxHSI/rFXIjyOSQ0LcC -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.xml deleted file mode 100644 index 22a6afd1c8b0d..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.Policy.Administration.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - Microsoft.Teams.Policy.Administration - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.Module.xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.Module.xml deleted file mode 100644 index 9c5b7f84166a5..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.Module.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - Microsoft.Teams.PowerShell.Module - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml deleted file mode 100644 index 33cdaa343deb8..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml +++ /dev/null @@ -1,5742 +0,0 @@ - - - - - Add-TeamChannelUser - Add - TeamChannelUser - - Adds an owner or member to the private channel. - Note: the command will return immediately, but the Teams application will not reflect the update immediately, please refresh the members page to see the update. - To turn an existing Member into an Owner, first Add-TeamChannelUser -User foo to add them to the members list, then Add-TeamChannelUser -User foo -Role Owner to add them to owner list. - - - - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Add-TeamChannelUser - - GroupId - - GroupId of the parent team - - String - - String - - - None - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - Owner - - String - - String - - - None - - - - - - GroupId - - GroupId of the parent team - - String - - String - - - None - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - Owner - - String - - String - - - None - - - - - - GroupId, DisplayName, User, Role - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Add-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com - - Add user dmx@example.com to private channel with name "Engineering" under the given group. - - - - -------------------------- Example 2 -------------------------- - Add-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com -Role Owner - - Promote user dmx@example.com to an owner of private channel with name "Engineering" under the given group. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/add-teamchanneluser - - - - - - Add-TeamsAppInstallation - Add - TeamsAppInstallation - - Add a Teams App to Microsoft Teams. - - - - Add a Teams App to Microsoft Teams. - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Add-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - - Add-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Add-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - This example adds a Teams App to Microsoft Teams. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Add-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -Permissions "TeamSettings.Read.Group ChannelMessage.Read.Group" - - This example adds a Teams App to Microsoft Teams with RSC Permissions. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/add-teamsappinstallation - - - - - - Add-TeamUser - Add - TeamUser - - The `Add-TeamUser` adds an owner or member to the team, and to the unified group which backs the team. - - - - This cmdlet adds an owner or member to the team, and to the unified group which backs the team. - > [!Note] > The command will return immediately, but the Teams application will not reflect the update immediately. The change can take between 24 and 48 hours to appear within the Teams client. - - - - Add-TeamUser - - GroupId - - GroupId of the team. - - String - - String - - - None - - - User - - UPN of a user of the organization (user principal name - e.g. johndoe@example.com). - - String - - String - - - None - - - Role - - Member or Owner. If Owner is specified then the user is also added as a member to the Team backed by unified group. - - String - - String - - - Member - - - - - - GroupId - - GroupId of the team. - - String - - String - - - None - - - User - - UPN of a user of the organization (user principal name - e.g. johndoe@example.com). - - String - - String - - - None - - - Role - - Member or Owner. If Owner is specified then the user is also added as a member to the Team backed by unified group. - - String - - String - - - Member - - - - - - GroupId, User, Role - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Add-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com - - This example adds the user "dmx@example.com" to a group with the id "31f1ff6c-d48c-4f8a-b2e1-abca7fd399df". - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/add-teamuser - - - - - - Get-Team - Get - Team - - This cmdlet supports retrieving teams with particular properties/information, including all teams that a specific user belongs to, all teams that have been archived, all teams with a specific display name, or all teams in the organization. - - - - This cmdlet supports retrieving teams with particular properties/information, including all teams that a specific user belongs to, all teams that have been archived, all teams with a specific display name, or all teams in the organization. - >[!NOTE] >Depending on the number of teams and O365 Groups in your organization and which filters you are using, this cmdlet can take upwards of ten minutes to run. Some of the input parameters are guaranteed unique (e.g. GroupId), and others serve as filters (e.g. -Archived). - - - - Get-Team - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Filters to return teams with a full match to the provided displayname. As displayname is not unique, this acts as a filter rather than an exact match. Note that this filter value is case-sensitive. - - String - - String - - - None - - - GroupId - - Specify the specific GroupId (as a string) of the team to be returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - Get-Team - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Filters to return teams with a full match to the provided displayname. As displayname is not unique, this acts as a filter rather than an exact match. Note that this filter value is case-sensitive. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Filters to return teams with a full match to the provided displayname. As displayname is not unique, this acts as a filter rather than an exact match. Note that this filter value is case-sensitive. - - String - - String - - - None - - - GroupId - - Specify the specific GroupId (as a string) of the team to be returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - - - UPN, UserID - - - - - - - - - - Team - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Get-Team -User dmx1@example.com - - Returns all teams that a user (dmx1@example.com) belongs to - - - - -------------------------- Example 2 -------------------------- - PS> Get-Team -Archived $true -Visibility Private - - Returns all teams that are private and have been archived. - - - - -------------------------- Example 3 -------------------------- - PS> Get-Team -MailNickName "BusinessDevelopment" - - Returns the team that matches the specified MailNickName - - - - -------------------------- Example 4 -------------------------- - PS> Get-Team -DisplayName "Sales and Marketing" - - Returns the team that matches the specified DisplayName - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-team - - - New-Team - - - - Set-Team - - - - - - - Get-TeamChannel - Get - TeamChannel - - Get all the channels for a team. - - - - - - - - Get-TeamChannel - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display, Standard or Private (available in private preview) - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display, Standard or Private (available in private preview) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamChannel -GroupId af55e84c-dc67-4e48-9005-86e0b07272f9 - - Get channels of the group. - - - - -------------------------- Example 2 -------------------------- - Get-TeamChannel -GroupId af55e84c-dc67-4e48-9005-86e0b07272f9 -MembershipType Private - - Get all private channels of the group. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamchannel - - - - - - Get-TeamChannelUser - Get - TeamChannelUser - - Returns users of a channel. - - - - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Get-TeamChannelUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Display name of the channel - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Display name of the channel - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamChannelUser -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Engineering" -Role Owner - - Get owners of channel with display name as "Engineering" - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamchanneluser - - - - - - Get-TeamFunSettings - Get - TeamFunSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To retrieve a Team's fun settings, run Get-Team. - Gets a team's fun settings. - - - - - - - - Get-TeamFunSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamFunSettings -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamfunsettings - - - - - - Get-TeamGuestSettings - Get - TeamGuestSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To retrieve a Team's guest settings, run Get-Team. - Gets Team guest settings. - - - - - - - - Get-TeamGuestSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamGuestSettings -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamguestsettings - - - - - - Get-TeamMemberSettings - Get - TeamMemberSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To retrieve a Team's member settings, run Get-Team. - Gets team member settings. - - - - - - - - Get-TeamMemberSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamMemberSettings -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teammembersettings - - - - - - Get-TeamMessagingSettings - Get - TeamMessagingSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To retrieve a Team's messaging settings, run Get-Team. - Gets team messaging settings. - - - - - - - - Get-TeamMessagingSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamMessagingSettings -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teammessagingsettings - - - - - - Get-TeamsApp - Get - TeamsApp - - Returns app information from the Teams tenant app store. - - - - Use any optional parameter to retrieve app information from the Teams tenant app store. - - - - Get-TeamsApp - - DisplayName - - Name of the app visible to users - - String - - String - - - None - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - ExternalId - - The external ID of the app, provided by the app developer and used by Azure Active Directory - - String - - String - - - None - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - DisplayName - - Name of the app visible to users - - String - - String - - - None - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - ExternalId - - The external ID of the app, provided by the app developer and used by Azure Active Directory - - String - - String - - - None - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 - - - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-TeamsApp -ExternalId b00080be-9b31-4927-9e3e-fa8024a7d98a -DisplayName <String>] [-DistributionMethod <String>] - - - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-TeamsApp -DisplayName SampleApp -DistributionMethod organization - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamsapp - - - - - - Get-TeamsAppInstallation - Get - TeamsAppInstallation - - Get a Teams App installed in Microsoft Teams. - - - - Get a Teams App installed in Microsoft Teams. - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Get-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - - Get-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - This example gets a Teams App specifying its AppId and the TeamId. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamsappinstallation - - - - - - Get-TeamUser - Get - TeamUser - - Returns users of a team. - - - - Returns an array containing the UPN, UserId, Name and Role of users belonging to an specific GroupId. - - - - Get-TeamUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamUser -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -Role Owner - - This example returns the UPN, UserId, Name, and Role of the owners of the specified GroupId. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/get-teamuser - - - - - - New-Team - New - Team - - This cmdlet lets you provision a new Team for use in Microsoft Teams and will create an O365 Unified Group to back the team. Groups created through teams cmdlets, APIs, or clients will not show up in Outlook by default. - If you want these groups to appear in Outlook clients, you can use the Set-UnifiedGroup (https://docs.microsoft.com/powershell/module/exchange/set-unifiedgroup) cmdlet in the Exchange Powershell Module to disable the switch parameter `HiddenFromExchangeClientsEnabled` (-HiddenFromExchangeClientsEnabled:$false). - - Note: The Teams application may need to be open by an Owner for up to two hours before changes are reflected. - IMPORTANT: Using this cmdlet to create a new team using a template is still in preview. You can install and use the preview module from the PowerShell test gallery. For instructions on installing and using the Teams PowerShell preview module, see Install the pre-release version of the Teams PowerShell module (https://docs.microsoft.com/microsoftteams/install-prerelease-teams-powershell-module). - - - - Creates a new team with user specified settings, and returns a Group object with a GroupID property. Note that Templates are not yet supported in our 1.0 PowerShell release. - - - - New-Team - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - For more details about the naming conventions see here: New-UnifiedGroup (https://docs.microsoft.com/powershell/module/exchange/new-unifiedgroup#parameters), Parameter: -Alias. - - String - - String - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Characters Limit - 256. - - String - - String - - - None - - - Template - - Note: this parameter is not supported in our 1.0 PowerShell release, only in Preview. - If you have an EDU license, you can use this parameter to specify which template you'd like to use for creating your group. Do not use this parameter when converting an existing group. - Valid values are: "EDU_Class" or "EDU_PLC" - - String - - String - - - None - - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. - - String - - String - - - None - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - Visibility - - Set to Public to allow all users in your organization to join the group by default. Set to Private to require that an owner approve the join request. - - String - - String - - - Private - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - - SwitchParameter - - - False - - - - New-Team - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. - - String - - String - - - None - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - GroupId - - Specify a GroupId to convert to a Team. If specified, you cannot provide the other values that are already specified by the existing group, namely: Visibility, Alias, Description, or DisplayName. If, for example, you need to create a Team from an existing Microsoft 365 Group, use the ExternalDirectoryObjectId property value returned by Get-UnifiedGroup (https://docs.microsoft.com/powershell/module/exchange/get-unifiedgroup?view=exchange-ps). - - String - - String - - - None - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - - SwitchParameter - - - False - - - - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - For more details about the naming conventions see here: New-UnifiedGroup (https://docs.microsoft.com/powershell/module/exchange/new-unifiedgroup#parameters), Parameter: -Alias. - - String - - String - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Characters Limit - 256. - - String - - String - - - None - - - Template - - Note: this parameter is not supported in our 1.0 PowerShell release, only in Preview. - If you have an EDU license, you can use this parameter to specify which template you'd like to use for creating your group. Do not use this parameter when converting an existing group. - Valid values are: "EDU_Class" or "EDU_PLC" - - String - - String - - - None - - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. - - String - - String - - - None - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - GroupId - - Specify a GroupId to convert to a Team. If specified, you cannot provide the other values that are already specified by the existing group, namely: Visibility, Alias, Description, or DisplayName. If, for example, you need to create a Team from an existing Microsoft 365 Group, use the ExternalDirectoryObjectId property value returned by Get-UnifiedGroup (https://docs.microsoft.com/powershell/module/exchange/get-unifiedgroup?view=exchange-ps). - - String - - String - - - None - - - Visibility - - Set to Public to allow all users in your organization to join the group by default. Set to Private to require that an owner approve the join request. - - String - - String - - - Private - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - GroupId - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-Team -DisplayName "Tech Reads" - - This example creates a team with all parameters with their default values. - - - - -------------------------- Example 2 -------------------------- - New-Team -DisplayName "Tech Reads" -Description "Team to post technical articles and blogs" -Visibility Public - - This example creates a team with a specific description and public visibility. - - - - -------------------------- Example 3 -------------------------- - $group = New-Team -MailNickname "TestTeam" -displayname "Test Teams" -Visibility "private" -Add-TeamUser -GroupId $group.GroupId -User "fred@example.com" -Add-TeamUser -GroupId $group.GroupId -User "john@example.com" -Add-TeamUser -GroupId $group.GroupId -User "wilma@example.com" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Q4 planning" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Exec status" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Contracts" - - This example creates a team, adds three members to it, and creates three channels within it. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/new-team - - - Remove-Team - - - - Get-Team - - - - Set-Team - - - - - - - New-TeamChannel - New - TeamChannel - - Add a new channel to a team. - - - - > [!IMPORTANT] > Modules in the PS INT gallery for Microsoft Teams run on the /beta version in Microsoft Graph and are subject to change. Int modules can be install from here <https://www.poshtestgallery.com/packages/MicrosoftTeams>. - - - - New-TeamChannel - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - Description - - Channel description. Channel description can be up to 1024 characters. - - String - - String - - - None - - - MembershipType (available in private preview) - - Channel membership type, Standard or Private. - - String - - String - - - None - - - Owner (available in private preview) - - UPN of owner that can be specified while creating a private channel. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - Description - - Channel description. Channel description can be up to 1024 characters. - - String - - String - - - None - - - MembershipType (available in private preview) - - Channel membership type, Standard or Private. - - String - - String - - - None - - - Owner (available in private preview) - - UPN of owner that can be specified while creating a private channel. - - String - - String - - - None - - - - - - GroupId, DisplayName, Description, MembershipType, Owner - - - - - - - - - - Id - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-TeamChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -DisplayName "Architecture" - - Create a standard channel with display name as "Architecture" - - - - -------------------------- Example 2 -------------------------- - New-TeamChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -DisplayName "Engineering" -MembershipType Private - - Create a private channel with display name as "Engineering" - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/new-teamchannel - - - - - - New-TeamsApp - New - TeamsApp - - Creates a new app in the Teams tenant app store. - - - - Use a Teams app manifest zip file to upload an app to the tenant app store. DistributionMethod specifies that the app should be added to the organization. - - - - New-TeamsApp - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-TeamsApp -DistributionMethod organization -Path c:\Path\SampleApp.zip - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/new-teamsapp - - - - - - Remove-Team - Remove - Team - - This cmdlet deletes a specified Team from Microsoft Teams. - NOTE: The associated Office 365 Unified Group will also be removed. - - - - Removes a specified team via GroupID and all its associated components, like O365 Unified Group... - - - - - Remove-Team - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-Team -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-team - - - New-Team - - - - - - - Remove-TeamChannel - Remove - TeamChannel - - Delete a channel. This will not delete content in associated tabs. - Note: The channel will be "soft deleted", meaning the contents are not permanently deleted for a time. So a subsequent call to Add-TeamChannel using the same channel name will fail if enough time has not passed. - - - - > [!IMPORTANT] > Modules in the PS INT gallery for Microsoft Teams run on the /beta version in Microsoft Graph and are subject to change. Int modules can be install from here <https://www.poshtestgallery.com/packages/MicrosoftTeams>. - - - - Remove-TeamChannel - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Channel name to be deleted - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Channel name to be deleted - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamChannel -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Tech Reads" - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-teamchannel - - - - - - Remove-TeamChannelUser - Remove - TeamChannelUser - - Note: the command will return immediately, but the Teams application will not reflect the update immediately, please refresh the members page to see the update. - To turn an existing Owner into an Member, specify role parameter as Owner. - Note: last owner cannot be removed from the private channel. - - - - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Remove-TeamChannelUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - Use this to demote a user from owner to member of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - Use this to demote a user from owner to member of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-teamchanneluser - - - - - - Remove-TeamsApp - Remove - TeamsApp - - Removes an app in the Teams tenant app store. - - - - Removes an app in the Teams tenant app store. - - - - Remove-TeamsApp - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-teamsapp - - - - - - Remove-TeamsAppInstallation - Remove - TeamsAppInstallation - - Removes a Teams App installed in Microsoft Teams. - - - - Removes a Teams App installed in Microsoft Teams. - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Remove-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - - Remove-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - This example removes a Teams App in Microsoft Teams specifying its AppId and TeamId. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-teamsappinstallation - - - - - - Remove-TeamUser - Remove - TeamUser - - Remove an owner or member from a team, and from the unified group which backs the team. - Note: the command will return immediately, but the Teams application will not reflect the update immediately. The Teams application may need to be open for up to an hour before changes are reflected. - Note: last owner cannot be removed from the team. - - - - - - - - Remove-TeamUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - If cmdlet is called with -Role parameter as "Owner", the specified user is removed as an owner of the team but stays as a team member. - Note: The last owner cannot be removed from the team. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Role - - If cmdlet is called with -Role parameter as "Owner", the specified user is removed as an owner of the team but stays as a team member. - Note: The last owner cannot be removed from the team. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com -Role Owner - - In this example, the user "dmx" is removed the role Owner but stays as a team member. - - - - -------------------------- Example 2 -------------------------- - Remove-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com - - In this example, the user "dmx" is removed from the team. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/remove-teamuser - - - - - - Set-Team - Set - Team - - This cmdlet allows you to update properties of a team, including its displayname, description, and team-specific settings. - - - - This cmdlet allows you to update properties of a team, including its displayname, description, and team-specific settings. This cmdlet includes all settings that used to be set using the Set-TeamFunSettings, Set-TeamGuestSettings, etc. cmdlets - - - - Set-Team - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Team display name. Team Name Characters Limit - 256. - - String - - String - - - None - - - Description - - Team description. Team Description Characters Limit - 1024. - - String - - String - - - None - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - - String - - String - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Visibility - - Team visibility. Valid values are "Private" and "Public" - - String - - String - - - None - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - None - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - None - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - None - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - None - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - None - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - None - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - None - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - None - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - None - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - None - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - DisplayName - - Team display name. Team Name Characters Limit - 256. - - String - - String - - - None - - - Description - - Team description. Team Description Characters Limit - 1024. - - String - - String - - - None - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - - String - - String - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Visibility - - Team visibility. Valid values are "Private" and "Public" - - String - - String - - - None - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - None - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - None - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - None - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - None - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - None - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - None - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - None - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - None - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - None - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - None - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-Team -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Updated TeamName" -Visibility Public - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-team - - - Get-Team - - - - New-Team - - - - - - - Set-TeamArchivedState - Set - TeamArchivedState - - This cmdlet is used to freeze all of the team activity, but Teams Administrators and team owners will still be able to add or remove members and update roles. You can unarchive the team anytime. - - - - This cmdlet is used to freeze all of the team activity and also specify whether SharePoint site should be marked as Read-Only. Teams administrators and team owners will still be able to add or remove members and update roles. You can unarchive the team anytime. - - - - Set-TeamArchivedState - - Archived - - Boolean value that determines whether or not the Team is archived. - - Boolean - - Boolean - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - SetSpoSiteReadOnlyForMembers - - Use this parameter switch to make the SharePoint site read-only for team members. - - Boolean - - Boolean - - - None - - - - - - Archived - - Boolean value that determines whether or not the Team is archived. - - Boolean - - Boolean - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - SetSpoSiteReadOnlyForMembers - - Use this parameter switch to make the SharePoint site read-only for team members. - - Boolean - - Boolean - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$true - - This example sets the group with id 105b16e2-dc55-4f37-a922-97551e9e862d as archived - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$true -SetSpoSiteReadOnlyForMembers:$true - - This example sets the group with id 105b16e2-dc55-4f37-a922-97551e9e862d as archived and makes the SharePoint site read-only for team members. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$false - - This example unarchives the group with id 105b16e2-dc55-4f37-a922-97551e9e862d. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teamarchivedstate - - - - - - Set-TeamChannel - Set - TeamChannel - - Update Team channels settings. - - - - > [!IMPORTANT] > Modules in the PS INT gallery for Microsoft Teams run on the /beta version in Microsoft Graph and are subject to change. Int modules can be install from here <https://www.poshtestgallery.com/packages/MicrosoftTeams>. - - - - Set-TeamChannel - - GroupId - - GroupId of the team - - String - - String - - - None - - - CurrentDisplayName - - Current channel name - - String - - String - - - None - - - NewDisplayName - - New Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - Description - - Updated Channel description. Channel Description Characters Limit - 1024. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - CurrentDisplayName - - Current channel name - - String - - String - - - None - - - NewDisplayName - - New Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - Description - - Updated Channel description. Channel Description Characters Limit - 1024. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamChannel -GroupId c58566a6-4bb4-4221-98d4-47677dbdbef6 -CurrentDisplayName TechReads -NewDisplayName "Technical Reads" - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teamchannel - - - - - - Set-TeamFunSettings - Set - TeamFunSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To set a Team's settings, run Set-Team. - Update Giphy, Stickers and Memes settings. - - - - - - - - Set-TeamFunSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowGiphy - - Setting to enable giphy for team - - String - - String - - - None - - - GiphyContentRating - - Settings to set content rating for giphy. Can be "Strict" or "Moderate" - - String - - String - - - None - - - AllowStickersAndMemes - - Enable Stickers and memes - - String - - String - - - None - - - AllowCustomMemes - - Allow custom memes to be uploaded - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowGiphy - - Setting to enable giphy for team - - String - - String - - - None - - - GiphyContentRating - - Settings to set content rating for giphy. Can be "Strict" or "Moderate" - - String - - String - - - None - - - AllowStickersAndMemes - - Enable Stickers and memes - - String - - String - - - None - - - AllowCustomMemes - - Allow custom memes to be uploaded - - String - - String - - - None - - - - - - GroupId, AllowGiphy, GiphyContentRating, AllowStickersAndMemes, AllowCustomMemes - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamFunSettings -GroupId 0ebb500c-f5f3-44dd-b155-cc8c4f383e2d -AllowGiphy true -GiphyContentRating Strict - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teamfunsettings - - - - - - Set-TeamGuestSettings - Set - TeamGuestSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To set a Team's settings, run Set-Team. - Updates team guest settings. - - - - - - - - Set-TeamGuestSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowCreateUpdateChannels - - Settings to create and update channels - - String - - String - - - None - - - AllowDeleteChannels - - Settings to Delete channels - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowCreateUpdateChannels - - Settings to create and update channels - - String - - String - - - None - - - AllowDeleteChannels - - Settings to Delete channels - - String - - String - - - None - - - - - - GroupId - - - - - - - - AllowCreateUpdateChannels - - - - - - - - AllowDeleteChannels - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamGuestSettings -GroupId a61f5a96-a0cf-43db-a7c8-cec05f8a8fc4 -AllowCreateUpdateChannels true - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teamguestsettings - - - - - - Set-TeamMemberSettings - Set - TeamMemberSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To set a Team's settings, run Set-Team. - Updates team member settings. - - - - - - - - Set-TeamMemberSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowCreateUpdateChannels - - Setting to create and update channels - - String - - String - - - None - - - AllowDeleteChannels - - Setting to Delete channels - - String - - String - - - None - - - AllowAddRemoveApps - - Setting to add and remove apps to teams - - String - - String - - - None - - - AllowCreateUpdateRemoveTabs - - Setting to create, update and remove tabs - - String - - String - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting to create, update and remove connectors - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowCreateUpdateChannels - - Setting to create and update channels - - String - - String - - - None - - - AllowDeleteChannels - - Setting to Delete channels - - String - - String - - - None - - - AllowAddRemoveApps - - Setting to add and remove apps to teams - - String - - String - - - None - - - AllowCreateUpdateRemoveTabs - - Setting to create, update and remove tabs - - String - - String - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting to create, update and remove connectors - - String - - String - - - None - - - - - - GroupId - - - - - - - - AllowCreateUpdateChannels - - - - - - - - AllowDeleteChannels - - - - - - - - AllowAddRemoveApps - - - - - - - - AllowCreateUpdateRemoveTabs - - - - - - - - AllowCreateUpdateRemoveConnectors - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamMemberSettings -GroupId 4ba546e6-e28d-4645-8cc1-d3575ef9d266 -AllowCreateUpdateChannels false - - - - - - -------------------------- Example 2 -------------------------- - Set-TeamMemberSettings -GroupId 4ba546e6-e28d-4645-8cc1-d3575ef9d266 -AllowDeleteChannels true -AllowAddRemoveApps false - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teammembersettings - - - - - - Set-TeamMessagingSettings - Set - TeamMessagingSettings - - Note: This cmdlet is deprecated as of our 1.0 PowerShell release, and is not supported in our 1.0 release. To set a Team's settings, run Set-Team. - Updates team messaging settings. - - - - - - - - Set-TeamMessagingSettings - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowUserEditMessages - - Setting to allow user to edit messages - - String - - String - - - None - - - AllowUserDeleteMessages - - Setting to allow user to delete messages - - String - - String - - - None - - - AllowOwnerDeleteMessages - - Setting to allow owner to Delete messages - - String - - String - - - None - - - AllowTeamMentions - - Allow @team or @[team name] mentions. This will notify everyone in the team - - String - - String - - - None - - - AllowChannelMentions - - Allow @channel or @[channel name] mentions. This wil notify members who've favorited that channel - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - AllowUserEditMessages - - Setting to allow user to edit messages - - String - - String - - - None - - - AllowUserDeleteMessages - - Setting to allow user to delete messages - - String - - String - - - None - - - AllowOwnerDeleteMessages - - Setting to allow owner to Delete messages - - String - - String - - - None - - - AllowTeamMentions - - Allow @team or @[team name] mentions. This will notify everyone in the team - - String - - String - - - None - - - AllowChannelMentions - - Allow @channel or @[channel name] mentions. This wil notify members who've favorited that channel - - String - - String - - - None - - - - - - GroupId - - - - - - - - AllowUserEditMessages - - - - - - - - AllowUserDeleteMessages - - - - - - - - AllowOwnerDeleteMessages - - - - - - - - AllowTeamMentions - - - - - - - - AllowChannelMentions - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamMessagingSettings -GroupId 4ba546e6-e28d-4645-8cc1-d3575ef9d266 -AllowUserEditMessages true - - - - - - -------------------------- Example 2 -------------------------- - Set-TeamMessagingSettings -GroupId 4ba546e6-e28d-4645-8cc1-d3575ef9d266 -AllowUserDeleteMessages false -AllowChannelMentions true - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teammessagingsettings - - - - - - Set-TeamPicture - Set - TeamPicture - - Update the team picture. - Note: the command will return immediately, but the Teams application will not reflect the update immediately. The Teams application may need to be open for up to an hour before changes are reflected. - Note: this cmdlet is not support in special government environments (TeamsGCCH and TeamsDoD) and is currently only supported in our beta release. - - - - - - - - Set-TeamPicture - - GroupId - - GroupId of the team - - String - - String - - - None - - - ImagePath - - File path and image ( .png, .gif, .jpg, or .jpeg) - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - ImagePath - - File path and image ( .png, .gif, .jpg, or .jpeg) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamPicture -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -ImagePath c:\Image\TeamPicture.png - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teampicture - - - - - - Set-TeamsApp - Set - TeamsApp - - Updates an app in the Teams tenant app store. - - - - Use a Teams app manifest zip file to upload an app to the tenant app store. - - - - Set-TeamsApp - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -Path c:\Path\SampleApp.zip - - - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/set-teamsapp - - - - - - Update-TeamsAppInstallation - Update - TeamsAppInstallation - - Update a Teams App in Microsoft Teams. - - - - Update a Teams App in Microsoft Teams. - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://docs.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://docs.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Update-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - - Update-TeamsAppInstallation - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - AppId - - Teams App identifier in Microsoft Teams. - - String - - String - - - None - - - AppInstallationId - - Installation identifier of the Teams App. - - String - - String - - - None - - - Permissions - - RSC permissions for the Teams App. - - String - - String - - - None - - - TeamId - - Team identifier in Microsoft Teams. - - String - - String - - - None - - - UserId - - User identifier in Microsoft Teams. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Update-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - This example updates a Teams App in Microsoft Teams specifying its AppId and TeamId. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Update-TeamsAppInstallation -AppId b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -TeamId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -Permissions "TeamSettings.Read.Group ChannelMessage.Read.Group" - - This example updates a Teams App in Microsoft Teams specifying its AppId and TeamId and RSC Permissions. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/teams/update-teamsappinstallation - - - - \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psd1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psd1 deleted file mode 100644 index afc502397dffd..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psd1 +++ /dev/null @@ -1,354 +0,0 @@ -# -# Module manifest for module 'Microsoft.Teams.PowerShell.TeamsCmdlets' -# -# Generated by: Microsoft Corporation -# -# Updated on: 6/30/2020 -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './Microsoft.Teams.PowerShell.TeamsCmdlets.psm1' - -# Version number of this module. -# There's a string replace for the actual module version in the build pipeline -ModuleVersion = '1.6.6' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = '3dfbed68-91ab-432e-b8bf-affe360d2c2f' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams cmdlets sub module for Windows PowerShell and PowerShell Core. - -For more information, please visit the following: https://docs.microsoft.com/MicrosoftTeams/teams-powershell-overview' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @('GetTeamSettings.format.ps1xml') - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @( - 'Add-TeamChannelUser' - ,'Add-TeamUser' - ,'Get-AssociatedTeam' - ,'Get-MultiGeoRegion' - ,'Get-Operation' - ,'Get-SharedWithTeam' - ,'Get-SharedWithTeamUser' - ,'Get-Team' - ,'Get-TeamAllChannel' - ,'Get-TeamChannel' - ,'Get-TeamChannelUser' - ,'Get-TeamIncomingChannel' - ,'Get-TeamsApp' - ,'Get-TeamsArtifacts' - ,'Get-TeamUser' - ,'Get-M365TeamsApp' - ,'Get-AllM365TeamsApps' - ,'Get-AIGeneratedKnowledgeContainer' - ,'Get-M365UnifiedTenantSettings' - ,'Get-M365UnifiedCustomPendingApps' - ,'Get-TenantPrivateChannelMigrationStatus' - ,'New-Team' - ,'New-TeamChannel' - ,'New-TeamsApp' - ,'Remove-AIGeneratedKnowledge' - ,'Remove-SharedWithTeam' - ,'Remove-Team' - ,'Remove-TeamChannel' - ,'Remove-TeamChannelUser' - ,'Remove-TeamsApp' - ,'Remove-TeamUser' - ,'Set-Team' - ,'Set-TeamArchivedState' - ,'Set-TeamChannel' - ,'Set-TeamPicture' - ,'Set-TeamsApp' - ,'Update-M365TeamsApp' - ,'Update-M365UnifiedTenantSettings' - ,'Update-M365UnifiedCustomPendingApp' - ,'Add-TeamsAppInstallation' - ,'Get-TeamsAppInstallation' - ,'Get-TeamTargetingHierarchyStatus' - ,'Remove-TeamsAppInstallation' - ,'Remove-TeamTargetingHierarchy' - ,'Set-TeamTargetingHierarchy' - ,'Update-TeamsAppInstallation' - ,'Get-LicenseReportForChangeNotificationSubscription' - ) - -# Variables to export from this module -VariablesToExport = '*' - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = '*' - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} -# SIG # Begin signature block -# MIIncQYJKoZIhvcNAQcCoIInYjCCJ14CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCC5aZGOO9snTD8D -# 3r8nYLlNFxqs/lAAbhLS3HRjZrUn1qCCDMkwggYEMIID7KADAgECAhMzAAACHPrN -# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1 -# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP -# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC -# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf -# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j -# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT -# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL -# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT -# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw -# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w -# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl -# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC -# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN -# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK -# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK -# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY -# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu -# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE -# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz -# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6 -# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO -# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD -# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC -# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS -# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX -# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq -# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo -# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv -# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a -# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1 -# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO -# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7 -# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ -# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS -# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm -# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3 -# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E -# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX -# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB -# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP -# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw -# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC -# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D -# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY -# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI -# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6 -# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w -# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7 -# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK -# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK -# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw -# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT -# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn+MIIZ+gIBATBu -# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x -# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc -# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG -# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI -# hvcNAQkEMSIEIMahmarMnKLtFsrRNkhHlrc8b7Jb+LmE5xenvSkpVqqkMEIGCisG -# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAvd9l2BA0SNcohk5z3SUQ -# ieSwKO3apam61tUa0mT8AFqZB8svs8MzDwnoSCWtHunKBvHPKKP43vcAzbdtGcEf -# 4N/ge1NGtSvrD1LZ5Yb7g2TmnTZgx7sYe35FKZgADdzHwxssVAbvH6H2Sxz793h5 -# nIfszFqy7AhUfCX1M5lUKc3/J/2OhwManWOuoOfsFWpc6BDirFF27MOjjhl/dTX0 -# 7PUhSoEjJ6+7PJyTZbay4cccj6FOM97nP4PRVIS8FB3zadKZF412eEyO/BbFGUB4 -# xXNsjRu/tVz+ET8Q+cOnmxWp6VLUOxiGhlugzTMFgSyj8OWrQK3ZQfhopCJooenE -# Q6GCF7AwghesBgorBgEEAYI3AwMBMYIXnDCCF5gGCSqGSIb3DQEHAqCCF4kwgheF -# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFaBgsqhkiG9w0BCRABBKCCAUkEggFFMIIB -# QQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCAfZ3YeSNe1b4Q3b3n6 -# YjJNC3tHXQXNT0ug2cl87M8NqQIGaeyE7ZYGGBMyMDI2MDUxNTEwMDYzMC4wOTda -# MASAAgH0oIHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo2RjFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCCEf4wggcoMIIFEKAD -# AgECAhMzAAACHAlVFdfDWQfRAAEAAAIcMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTI1MDgxNDE4NDgzMVoXDTI2MTExMzE4 -# NDgzMVowgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTAr -# BgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEnMCUG -# A1UECxMeblNoaWVsZCBUU1MgRVNOOjZGMUEtMDVFMC1EOTQ3MSUwIwYDVQQDExxN -# aWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOC -# Ag8AMIICCgKCAgEAow0xEAUaFIyyLIXeFzeI8IKyBON2u0Dr02ISE5p9G5CUXfnF -# u2S0E1gWCMvDWpopX6lRxjmgnqaL3BtnWlBVTo8xUNRZu23ie4YBMAJB7Ut6mnqn -# HVwvDJxGO4TD3SnrCd+yg35B9QFejq3o4+OByvXjynaypZyukcQaLsKQvoxE8ElH -# H7zcOXEJWmU3rnXzaW/S4SH3OPhoUbTTcy6nUgKx5pRWiQ24UEPLYzcxGJjqjkz+ -# GiCWGPFHDMdW86laWvmCslouQPsN2eBk8dxJcEZmW4l6p4TthoXcfexEA9YdYaMz -# 10aMhZNpdsNaDtDQUMDEC3k1D1My69MXSPlUmD9xFyDlkXiVa7BCEp3XcVtqTgzH -# Gwr28JD6oE7zEPYeuZOiuCBXTZSo/wk3tbDlsESbIPV6inYqrzxiMYqlxfCdzC3C -# imh9/NT/Lk9/aU+Iyyc9b3OaT0dZ8wgLaVDCGELRMrqyImdFHv0MudctzW/kPsV3 -# Ja9ufpKWujEiN3CW//X8hFa9j5ImNeQzcMit3MoSaoGwnbiZJX1IyibIphlqccXF -# k4oTTSOQBsAUw8U0gwOnM5UJD8mBUBd65Np6NBkx2cviJ4I34GyXFCWyy5Ft1QsB -# YyVfAG3KOhCfPHQf8lQzJvLr57YW0bD/xVs4Ag4gTS6KZNyFEfX9jFdRlr0CAwEA -# AaOCAUkwggFFMB0GA1UdDgQWBBRa3mOCzB8u7zpvDh8MGKVYLCk7ZDAfBgNVHSME -# GDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1l -# LVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsG -# AQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01p -# Y3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMB -# Af8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIHgDAN -# BgkqhkiG9w0BAQsFAAOCAgEAklb6w/deaid3BujQCtWFBe0n9pkyRy+yyWEg70iD -# woJ5u0e0O+4GerNzdZb1zTPsHJ8EGMyo1K7ytL21+pmdFMTl19PC8OJ5Y2p+XKUQ -# y2dD+hggRMmJgDQsgbOCxHYeO+jg4t+vg61wUrovzzLkH3z0PJXXvoNuBj9Lda9C -# iNMd60451Kube99ArSf6ZMj3t0p4rFbgSazDs+8TJ+8KA5GVaYjPHj9rlMuI3Wjo -# hEc9apnQ6hMjMck3jlHZIwluVYeUQE0qjmApfMtTAEzbMUdY8sLTunL1GkbDSeKn -# 9O7llBGnNtyM1uM9Mdv1VyWh0z/IriQKIjntqqGyoF0HvDHOFZCyUDBPLflyiu7Y -# 1zQ/sPounsb96aBfQdq3h3LOn6t+m9EnNz/G6MzzWvpJk6YgTHTIqeQN/F/XpiPv -# bfek3nq/PYbL3au+kBfRUHiCFXSvt6lor0HC626vUmz9ZNPOxwEWLuccomxsy3Jw -# WH79vsM/7ARqoG5h6d6NahfaOuRP4XI9xtdH3Pa/NCLyQjxKXyLxzwQzjddkX2Ep -# TJnlypuhPmEdea59Uz2E303LxyXSnKBvGsAnyWYAfnejr3YAiL9YrN2l2dn198Rp -# A4DCm9QtZYiwC0q2fuUvui34PfPIUZByf7wHuuWu50hY9WLx1kOMI8xyo7AI6TaN -# rnIwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0GCSqGSIb3DQEB -# CwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD -# VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAe -# Fw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5OGm -# TOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9uT4XYDP/XE/H -# ZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZrBxTzxXb1hlDc -# wUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk2pg7uhp7M62A -# W36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxRnOlwaQ3KNi1w -# jjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uDRedGbsoy1cCG -# MFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGaRnXNxF803RKJ -# 1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fzpk03dJQcNIIP -# 8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG4tG9ahhaYQFz -# ymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGUlNi5UPkLiWHz -# NgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLEhReTwDwV2xo3 -# xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0wggHZMBIGCSsG -# AQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+gpE8RjUpzxD/ -# LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNVHSAEVTBTMFEG -# DCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29m -# dC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8G -# A1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQw -# VgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j -# cmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUF -# BwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br -# aS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJKoZIhvcNAQEL -# BQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEGk5c9MTO1OdfC -# cTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2LpypglYAA7AF -# vonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7ndn/OOPcbzaN9l -# 9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSFQrP8DJ6LGYnn -# 8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy87JGA0j3mSj5m -# O0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8x1RtnWN0SCyx -# TkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2fpCjcZxkoJLo4 -# S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz/gq77EFmPWn9 -# y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQKBqJC4822rpM -# +Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAxM328y+l7vzhw -# RNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGbyoYIDWTCCAkEC -# AQEwggEBoYHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo2RjFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcGBSsOAwIa -# AxUAWmTiA01u5mxq/nVxiRJLMOskVGeggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1T -# dGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQsFAAIFAO2xX/wwIhgPMjAyNjA1MTUw -# OTAzNTZaGA8yMDI2MDUxNjA5MDM1NlowdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA -# 7bFf/AIBADAKAgEAAgIH8gIB/zAHAgEAAgISvTAKAgUA7bKxfAIBADA2BgorBgEE -# AYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAIDAYag -# MA0GCSqGSIb3DQEBCwUAA4IBAQBezY+UqlDK0SN6IX1Lfy/36iJKgGjP16y30Zr+ -# /FDT7Adm6t3oRhB+nXwQdjfASbffxLDjuDXZDLBVq73qmiW1S8bhW+gC59LBNqWf -# aiivsHmbEIWYaegkYPN2yVcFJh2c0fztOcHe5GSXw1iu9ay9Z7RKamBkqbvLHmnb -# E2ERTk4epIuX8fhLtQIkPT5TlEdJJSKN7cRXceHxlCziMwvH5drLJyc99eminzd5 -# GfE+Cqm0gejuWDL3kyc6FezMX3TBfufkhMlolGfYa4ka8LeIn42ione0qXIw3UQE -# JBTzEtVY/RlrZstJBe6wfq7Dd/hiK25auA5ba0GMGS5bXzUJMYIEDTCCBAkCAQEw -# gZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAIcCVUV18NZB9EA -# AQAAAhwwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0B -# CRABBDAvBgkqhkiG9w0BCQQxIgQg+l0E9MxjdoTbkRAbBxFMC8S9PygeBwrrNmw/ -# +HLGUwEwgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCCgIGkmNhdo7+KE7dWh -# I+E2Ctx2RLWoYvvJodCIciHHaDCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAACHAlVFdfDWQfRAAEAAAIcMCIEIPJ8eMje/ylXJVuh/XBx -# PkOl9qzzd20NOQbMpLQhkMOwMA0GCSqGSIb3DQEBCwUABIICADTfYguaJ4p6xmsM -# vkmd6IYLZ3aOyfdMLy6M0l1dLhdWbQWhkbQWd3fRQzQISTKq/fwrAtO6FaJnS5yL -# ZIBwl7jnw7PYJftR/K9EGwREjirf7ayYddLHCx/e7jF50LFCAmITd90WtFfbiMeP -# MOOkI5WfLQZaSnqCI1Yy2cCztZz8/6ZhvpOKeZULUeOD9udnFG2mFVhj2ZecPd6p -# jgTuR+LJ7YlYx2L+CGvfRsT6Uf/ISzkrNWS3aOBsZcQZc/Lf/P11m1sCo3bG36E1 -# wVfAXE9Kuzo9gDBnSUqiBZ6EJ5Sp+fZqpevIZwRz8ehYqinEp2nzBymWIjTqjMRW -# Tk7ISRUP1GSW9melpb14kEE3Q5PGGTmWsZktPv2jyQjZWl+IjZhg/cCe9ed1iBLs -# YNup+bgrU+N9trhRgl8dXQYkFvjLgq0AekJna8QhWzKQsY48Hik25aA7BlsxDFjj -# eHCVvI5vOcGI4Er1eApKvTNgrHr8n2dYXDJqCi/5iWmwZhMH5cHKjJClb+MQbp+V -# 4B3U4NZYHKCFMSXVEqDdATiF7d3b+FtYdb58NYF736g/dzIoDuHqsSCaS4S7A4VD -# gcxRIyERP9AoscSIOfQzkBCv9LtaL1AetHWovaKEgN9Agz8tbi0LYtkFOkBSXIRS -# pzvBqNqiyxpDHASSi5WjTfTS19vb -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psm1 b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psm1 deleted file mode 100644 index 6e0709d2651df..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.psm1 +++ /dev/null @@ -1,220 +0,0 @@ -if($PSEdition -ne 'Desktop') -{ - Import-Module $('{0}\netcoreapp3.1\Microsoft.Teams.PowerShell.TeamsCmdlets.dll' -f $PSScriptRoot) -} -else -{ - Import-Module $('{0}\net472\Microsoft.Teams.PowerShell.TeamsCmdlets.dll' -f $PSScriptRoot) -} -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCtJNoep0vYvS0u -# zCBbwqBqybUYNuPYHWudLYoWOcLIVqCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIF3FviB5 -# I/Ax1ZFPXrSiQ9VfQ9tIZcCOZ+89t8Pe2ekmMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAMKDVUFvgFi7imMZJb3gXTkU5s3DforLO1kUrnQ5S -# Od819UTaz6xlIeN5nftLkSJ5LbvJ2F8XpmuQr0YXd+NYb/G9S+pvFuP2epMHBwkO -# 0VIukEa4uKYxXFASrJxZlDR8gIYuWZ1qaLEwWjF2lFEXnBfJbnd7i6ffLErQoYTJ -# BHyQSg9fOZSdWTRWtuZ5a4ZMd4f7chjvnSV3ZBmKb9irNoB5GmNYFzcFStUyHcGX -# KHwmCFOqXUx2e+c8Xn/6G+ZJmNHwSrTmJuqnfJoWA0kHFRYcQ5X9W3npMgXTJHjD -# m5GNQu4U7WJEdaKGnCBVDYlfuCAtl3LHUaTukIWLVn0z3qGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCABtxS1t811IpQ1llHixuzHDD1CGUxD9JEC9JZ3 -# nJ+ffAIGaef637LfGBMyMDI2MDUxNTEwMDYyOS41NzlaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046RTAwMi0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAikO1WQqtJfyGgABAAAC -# KTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDdaFw0yNzA1MTcxOTQwMDdaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046RTAwMi0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCeItFq4z1oCYSmUZmpYDsbJWEu -# ++1bbc/Mz7Pa3I0ZX5EON+WirB0FvnGlyFRUylzO5TJXZfU8QFPOU95P1Y1OZ8J+ -# quA5G+AWSBOr/48scl0s9RBpqgTMq/lbyqBz4CMmvVR2QevAgVp4a1hbmOm9G7YW -# ey68N5F5rSDYV0wMlg4Iy8YRuFgRN2eBpVXt9IvFaFmBnQLZfo22KZ3L8PWEHUhX -# U5dLOSZoTfqqQ/B+deW56ACMnnHjPxZu+szHhZMLUrMWTgs9J7Cn8DtelcKj9aM+ -# 0Zq7tkSDHCrwo6eCSfw3clktXRRrdmsccal8RCDiNFFgZsypwF2aGAF6kg41+Ql+ -# thXpnOMUH4mPCAJZWp0zDWowsK/Yo5jHL1pT/AgbL3FoAy4cbhOI4Pb1eQFG+jT7 -# skS2F/b+ZACUA1EDZ830K+Bu0yw+FpSGy8tpd1szk3cUYjIpzIG4z3oFNmiSJN8Y -# dNd4SHsER5Dks5bxiKbpvmfrOA39jTb7EW2TT7ySWgJISfvTezuLmQsTVSzNsvap -# VlHhE2zBqDw409nvOtitCFbnhhXNfatzb2+Gf2tX2s6YBa151CC/8+emJvvegXbW -# NudzYt8cFRom0PZ+fJRhhBfdSqCqr8QeOGJ8VYlmxFXqx1SdDSkTCSgpsskGqZwh -# /6umA1g4L7zeGBNngQIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFCdNRaSL9AW8QvaQ -# 21WjRAXKN4M7MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQA9wc72lf/czDhp09T3 -# PGAMOQhxl/x04jpE7t39FeqQSn2Up6DVzhgwnzCqY3NIhLtUaWrd7NxvrhZDca+J -# 4xzvrRQNPHeRQpnJVeHsyTu53gTBlUB1TRI6OnZt/AVmR9oMJ/NBOqB+d+SOb8Px -# 6zRgRwk62sFkOkB5lig/DMnYEeR/amW9Hdo8vXcKmaa/DbSOAHSdfZFt+iqMZfNl -# kEOn71/RAKTNv4Qpq/2FhcjMMmSkIhshBdBVB0VjmkwFfhVUf5TTuLJ9sDR4EyCv -# OZJ3B6g7Iw6WjQxycjwkfzsVMTpfusJ5SwdOHL8yGPWZOePjwa8ISXWs6kiVK/6S -# 0/JVb1LpxpyYKREQjnU/5OecKt2OXlHdwFWZrwAi98RPZa6EExcb/LGLf10tNHju -# 1eTlohY0jzNZQ0BDgSuMZgMU+8EEjtMQMIDnlPGEUON7LHXHH0KL0FA01PEWVZKr -# r/LUOuuDTNFzw543FPMp4gkCIFlKdRuciR1IXOk+Xse6rj9tJFYgVn+44BHou2XQ -# e5RX30ef3AQWa0mxyGDqJzGsV3X5+bNQeMV88iWulJPq5sgnGG9O/H1/HH4HsO9Z -# KGX/WrJpQmFuQrTOR49XjveaC0xaFmGsNg+RhbtD5qTkn+ISDvw0IJ/E/VXNdz/y -# Wgol6r507hT8sAMupnhkF2uw1DCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOkUwMDItMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQC3v9iSO22xob7ZxN5dXCEq+9Iv/6CBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDKqDAiGA8y -# MDI2MDUxNDIyMjY0OFoYDzIwMjYwNTE1MjIyNjQ4WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsMqoAgEAMAoCAQACAgHFAgH/MAcCAQACAhMqMAoCBQDtshwoAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAL842BdKTXdX69+HDxihyLeaRHEQ -# CmgSEZI22cjkswJozTcnDDr5ymyKiDASb5+wKI8pKxW91n1WXDRlToz1AvixxJrx -# BEXhgmNDR2pAIeckHbUxkSV0QIJocCkb1g+e0WWWTnJRCSCcVIqHnMQyUATwgiVU -# 8IPdgSRCSwUYila8TVB1LkhmzkDZcMq5UybUrno8GYf6cCZPAJEA3WadgFliGGTc -# ojFqKcl9RbpLM5CCJAEPfKXJthdYvNumpRyu2AwqKTRLMiwodSnTgVBQpGVwLkxb -# GzEm16r02e7qcEYSylRSzFJAtuTGHuQR+qmjLMGJeakvjKcB36pNBkVDi70xggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAikO -# 1WQqtJfyGgABAAACKTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCDx3svM5t8+0uqlOi2KLqmmTO2n -# O7n/3nngfw53jHts1zCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EILfKPfEi -# tvD/lSvEumxqPkkeOEtgkmKFEVMuel9oOrqSMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIpDtVkKrSX8hoAAQAAAikwIgQgi6EaS1V7 -# N6Ya92o6L7CDvDuo3OnDV+cRl61x8bHGex8wDQYJKoZIhvcNAQELBQAEggIAb8AO -# PvLdHd8oBz5oMiKR+OFEDdCrtik7eIOLMi//Bm7SYm+XNrJHR5qOkQEuIXNTeZSA -# 8zV1/q+/u14sFMrXnz6NYw4+EhZrY8vjr4swcOOwOWxFNfbCI5X3GtzKd4j2nGmz -# LuaJsflIHsdxBs+8MtEq0iloii+8vc+AJmtWI3ib4CCJOLDlPHvcHGKmZDc1BIHC -# z2yurGsioWjuUy7Y7V5HM+KtMOt+YPW6SHhhGJumjng99hCi6zwOuq4LZ7UoP//m -# K4ISrgEOIGY8px2u0tirBcKlS5RQi+9Qc+cVwYiE+9rwI9RGGanilt/etWfvNY4r -# FcxvJT3bBs2NOd1NSO1ZcyarrpuTH5R6M7yISqbFjWK4Hk0rRt2Mvk4bUin6clPz -# 3GXZFK2JKi3sYkQ8WZ/GpFVw0r5B7920ovNyAYi3th9ShZYbACSgLppBgwxVTQoo -# kzOwvU5zVwB0uDmvlm8hRW3Oq0yULgspF6UH1fcJ3IB5npPzQg/az0g8f0ppXMOB -# miiWp32tn2uOQi8oaqeGE6I51kl2IBRAiG0XsqQt4WEfgsqsdUy9sgSnzEtc67o8 -# 2E9OGrnNwhhGVwQ0z11tsilncbYf9xgTrQC9oJeFkHiOCNMgh9oTDnEExk1u9oIh -# KaT8tfR5SKU4DJRaaw5p3HH/f85bD85EciCgzBk= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.xml b/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.xml deleted file mode 100644 index 0ea65672019b0..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/Microsoft.Teams.PowerShell.TeamsCmdlets.xml +++ /dev/null @@ -1,3772 +0,0 @@ - - - - Microsoft.Teams.PowerShell.TeamsCmdlets - - - - - Cmdlet to add user to a private channel. Role of the user can be specified for member promotion. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - The name of the cmdlet. - - - - - The AAD group id of the team. - - - - - The display name of channel. - - - - - The id or upn of the user. - - - - - The role of the user. - - - - - The tenantId of the external user. - - - - - - - - cmdlet to Add a Teams App to MS Teams. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the cmdlet. - - - - - Teams App identifier in MS Teams. - - - - - Team identifier in MS Teams. - - - - - User identifier in MS Teams. - - - - - RSC permissions for the Teams App. - - - - - Cmdlet to add user to a team. Role of the user can be specified - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Helper method which adds user to the unified group either as member (default) or as Owner. - Safe to call even if the user already exists in member or owner list for a given group. - Throws exceptions if httpClient is null, userId is (null or whitespace), when the graph api calls fail. - - Http client reference. - UserId represented as either guid or upn or emailid. - Denotes whether user should be added as Owner or not. - - - - Enum of HttpStatusCodes worth retrying when received - - - - - Determines if the returned status code is worth retring - - - - - - - JsonConverter to flatten a nested json object path into an object. - - { - "name": "Joe Doe", - "dateOfBirth": { - "month": "January", - "day": 1 - } - } - - can be serialized into the object: - - [JsonConverter(typeof(JsonPathConverter))] - class Person - { - [JsonProperty("name")] - public string Name { get; set; } - - [JsonProperty("dateOfBirth.month")] - public string DateOfBirthMonth { get; set; } - - [JsonProperty("dateOfBirth.day")] - public int DateOfBirthDay { get; set; } - } - - - - - - Deserializes the object from JSON. - - . - Type of object to deserialize into. - The existing value of the object. - Instance of . - - - - - Determines whether this instance can convert the specified object type. - - The object type that can be converted - Returns if this object can be converted by this converter. - - - - Serializes the object as JSON. - - Instance of . - The object to serialize. - Instance of . - - - - Constants for Microsoft Graph requests. - - - - - The limit imposed by Microsoft Graph for sending batch requests. - - - - - Team name character limit (from MSGraph, the limit is 64). - If alias is greater than 64 characters, we trim it to around 60 characters, so MT can append some number, if alias is already taken. - - - - - validate team alias uniqueness retry limit - - - - - team alias suffix: random number range - - - - - The installation scope of a TeamsApp. - - - - - Default installation scope. - - - - - TeamsApp installed in Team scope. - - - - - TeamsApp installed in Chat scope. - - - - - TeamsApp installed in User scope. - - - - - Channel membership type - - - - - Endpoint versions - - - - - UAM substrate endpoint version. - - - - - UAM service Admin App gesture constants. - - - - - AvailableTo gesture administered by the admin to the user(s) or group(s) for a specific app. - To make the app available to the user(s) or group(s). - - - - - DeployTo gesture administered by the admin to the user(s) or group(s) for a specific app. - To deploy the app to the specified user(s) or group(s). - - - - - Operation type that the Admin is using to perform the operation. - - - - - Add operation to add an App to user(s) or group(s) - - - - - Remove operation to remove an App from user(s) or group(s) - - - - - Available to all users. - - - - - Available to some users. - - - - - Available to no users. - - - - - Constants used by Teams Hierarchy cmdlets. - - - - - Cmdlet name for Set-TeamTargetingHierarchy. - - - - - Cmdlet name for Get-TeamTargetingHierarchyStatus. - - - - - Cmdlet name for Remove-TeamTargetingHierarchy. - - - - - Url name for latest operation in Teams Hierarchy service. - - - - - Attribute name for operation id in operation models for THS. - - - - - Attribute name for request id for get status output. - - - - - Name for the http content in upload csv requets. - - - - - Media type for the http content in upload csv requets. - - - - - Media type for the http content in hierarchy create requests. - - - - - Hierarchy display name for new hierarchies. - - - - - API Exception - - - - - Gets or sets the error code (HTTP status code) - - The error code (HTTP status code). - - - - Gets or sets the error content (body json object) - - The error content (Http response body). - - - - The Microsoft Graph error code - - The error code from the MS Graph API call - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - HTTP status code. - Error message. - - - - Initializes a new instance of the class. - - HTTP status code. - Error message. - MSGraph error code. - - - - Initializes a new instance of the class. - - HTTP status code. - Error message. - Error content. - - - - Initializes a new instance of the class. - - - - - Deserializes the http response string to MS Graph api error root. - - Http response - MSGraphApiErrorRoot object - True if deserialization succeeds, otherwise false. - - - - Deserializes the http response string to MS Graph api error root. - - The content string - MSGraphApiErrorRoot object - True if deserialization succeeds, otherwise false. - - - - Root class for DeserializeSubstrate API Error. - - - - - Deserializes the http response string to Substrate api error root. - - Http response - SubstrateErrorRoot object - True if deserialization succeeds, otherwise false. - - - - Deserializes the http response string to Substrate api error root. - - The content string - SubstrateApiErrorRoot object - True if deserialization succeeds, otherwise false. - - - - Get the display string for the response. - - Substrate error generated. - error string for the display. - - - - Root class for MS Graph API Error. - For more information go to https://graph.microsoft.io/en-us/docs/overview/errors - - - - - InnerError class for MS Graph API Error. - For more information go to https://graph.microsoft.io/en-us/docs/overview/errors - - - - - Substrate API Error class. - - - - - Code for the error. - - - - - Message for the error. - - - - - Inner error object. - - - - - Root class for Substrate API Error. - - - - - Error object. - - - - - InnerError class for Substrate API Error. - - - - - Request ID for the error. - - - - - Date - - - - - Cmdlet to list teams where the user is direct member or - indirect member because they are part of a shared channel - that is hosted under the team. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - The name of cmdlet. - - - - - User id or email. - - - - - Process record. - - - - - Returns the userId if the input is a id else fetch userId by making graph api call. - - - - - Cmdlet to get Teams usage report for users in a tenant, particularly messages sent per user, as well as a check on - whether each user has the appropriate DLP license SKU. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the cmdlet. - - - - - Indicates the period over which this usage report is generated. - - - - - Fetches user license details given the available Teams usage data for the users in a tenant. - - The Teams user activity details. - The http client. - The user license details for the users. - A collection of error strings if any calls to get license details fails. - - - - Fetches the user license details for a batch of users (max 20 due to Graph $batch limits). - - The HTTP client. - The batch of Teams user activity details for which the UPN is extracted to retrieve license details. - A dictionary of licenses mapping UPN to license details. - A collection of error strings containing error messages if any individual call within the $batch call fails. - - - - Given the Teams user activity details, AAD user details, and a mapping from UPN to license details, generates a collection of DlpUserLicenseReports. - - The Teams user activity details. - The AAD user details for the tenant. - The user UPN to license details dictionary. - A collection of DlpUserLicenseReports. - - - - Default constructor necessary for cmdlet. - - - - - Represents a cmdlet to list teams with which specified channel is shared. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The AAD group id of the host team. - - - - - The thread id of the channel. - - - - - The AAD group id of the shared with team. - - - - - - - - Represents a cmdlet to list users of a shared with team. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The AAD group id of the host team. - - - - - The thread id of the channel. - - - - - The AAD group id of the shared with team. - - - - - The role of the users. - - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Takes in the groups, divides the groups by batch size and sends the batch to be processed in parallel - If GetNextTeamBatch returns False for shouldContinue, then stop processing - - Current batch number to process - List of groups to process - List of team data; List of error messages - - - - Retrieves team properties using Graph Batch API. - - List of groups to process - List of team data - List of error messages from trying to get team data - - - - Represents a cmdlet to list all channels of a team, including incoming channels and channels hosted by the team. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The AAD group id of the team. - - - - - The membership type of the channels. - - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Represents a cmdlet to list users of a channel. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The AAD group id of the team. - - - - - The display name. - - - - - The role of the users. - - - - - - - - Represents a cmdlet to list incoming channels of a team. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The AAD group id of the team. - - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - cmdlet to get a Teams App installed in MS Teams. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the cmdlet. - - - - - Team identifier in MS Teams. - - - - - User identifier in MS Teams. - - - - - Installation identifier of the Teams App. - - - - - Teams App identifier in MS Teams. - - - - Represents the type of call, used to filter export requests. - Represents the type of artifact. - - - Recording/Transcript artifact type. - - - Notes artifact type. - - - Whiteboard artifact type. - - - Implements the Get-TeamsArtifacts cmdlet. - - - Gets or sets User. - - - Gets or sets Teams. - - - Gets or sets ArtifactType. - - - Gets or sets StartTime. - - - Gets or sets EndTime. - - - Gets or sets Usage. - - - Shows the cmdlet usage information. - - - Handles an invocation of the Get-TeamsArtifacts cmdlet. - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the Cmdlet. - - - - - Id for the request instance of an upload operation. - - - - - Version of the api service endpoints that will be used. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Cmdlet to verify the status of tenant for Private channel migration. - - - - - Default constructor. - - - - - Constructor with IHttpClientFactory. - - - - - - Cmdlet name. - - - - - - - - Represents the response model for tenant Private channel migration status. - Includes status, timestamps, and details about the migration process. - - - - - The Azure AD tenant identifier. - - - - - The current migration status for Private channels. - - - - - The timestamp when the migration status was last checked. - - - - - Additional details about the migration status. - - - - - The timestamp when the migration started. - - - - - The timestamp when the migration completed. - - - - - Get the Unified App from UAM service. - - - - - Default Constructor - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - get specific app settings: DefaultApp, GlobalApp, PrivateApp, EnableCopilotExtensibility - - - - - Get the Unified App from UAM service. - - - - - Default Constructor - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - The Id of the app to get. - - - - - Gets all unified apps from UAM service. - - - - - Default Constructor - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Gets all unified apps from UAM service. - - - - - Default Constructor - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Gets or sets a value indicating whether [account enabled]. - - - - - Description for the user - - - - - Gets or sets the display name. - - - - - Gets or sets the email. - - - - - Gets or sets the name of the given. - - - - - Gets or sets the mail. - - - - - User Mri - used for skype requests - - - - - Gets or sets the object identifier. - - - - - Gets or sets the type of the object. - - - - - Gets or sets the surname. - - - - - Gets or sets the telephone number. - - - - - Gets or sets the type. - - - - - Gets or sets the name of the user principal. - - - - - Gets or sets the preferred language of the user. - - - - - The response from the Batch request - - - - - Represents MS Graph channel source. - https://docs.microsoft.com/en-us/graph/api/resources/channel?view=graph-rest-beta - - - - - The odata id. - - - - - Channel id - - - - - Channel display name - - - - - Channel description - - - - - Channel membership type - - - - - The tenant id. - - - - - Represents channel enhanced info used to model cmdlet response. - - - - - Initializes a new instance of the ChannelEnhancedInfo class. - - - - - Initializes a new instance of the ChannelEnhancedInfo class with an object of Channel class. - - The graph channel object used to initialize the instance. - - - - The thread id of the channel. - - - - - The display name of the channel. - - - - - The description of the channel. - - - - - The membership type of the channel. - - - - - The id of the host team. - - - - - The tenant id. - - - - - Represents channel basic info used to model cmdlet response. - - - - - Initializes a new instance of the ChannelInfo class. - - - - - Initializes a new instance of the ChannelInfo class with an object of Channel class. - - The graph channel object used to initialize the instance. - - - - The thread id of the channel. - - - - - The display name of the channel. - - - - - The description of the channel. - - - - - The membership type of the channel. - - - - - Class representing the Dlp User License report for a Teams user. - - - - - Gets or sets the UPN of the user for this report. - - - - - Gets or sets the display name of the user. - - - - - Gets or sets the number of messages sent by the user. - - - - - Gets or sets a boolean string describing whether or not a user is licensed by a Microsoft DLP license plan. - - - - - EnityType - - - - - Team giphy rating setting - - - - - Represents a model of conversation member. - - - - - Initializes a new instance of the GraphAadUserConversationMember class. - - - - - Member object id - - - - - Member UPN - - - - - Member Id (composite id generated from channel id and user id) - - - - - Member roles - - - - - Member display name. - - - - - Member email. - - - - - The tenant id. - - - - - Gets role of the conversation member. - - The role of the member. - - - - Group id. MSGraph version "v1.0"/ "beta" uses this property name. - Please use GetId() method when seeking group ids - - - - - Group id. MSGraph version "edu" uses this property name. - Please use GetId() method when seeking group ids - - - - - Display Name - - - - - Group Description - - - - - Group Types - - - - - Group classification - - - - - Mail Enabled - - - - - Group Mail Nickname - - - - - Security Enabled - - - - - Members - - - - - Members - - - - - Group Visiblilty - - - - - creation Options - - - - - Resource Behavior Options - - - - - Education Object Type - - - - - Get Group Id - MSGraph version "v1.0" uses "Id" property name. - MSGraph version "edu" uses "ObjectId" property name. - Please use GetId() method when seeking group ids - - Returns group id - - - - Represents a model of user info. - - - - - The id of AAD user. - - - - - The upn of user. - - - - - Abstract definition which registers a and corresponding dictionary for use when serializing/deserializing an object. - - - - - Gets or sets the dynamic properties populated during JSON serialization/deserialization. - - - - - MS Graph License Details object. - https://docs.microsoft.com/en-us/graph/api/resources/licensedetails?view=graph-rest-1.0 - - - - - Unique identifier for the license detail object. - - - - - Information about the service plans assigned with the license. - - - - - Unique identifier (GUID) for the service SKU. - - - - - Unique SKU display name. - - - - - Represents a response to a Microsoft Graph API that returns a collection. - - Type of items. - - - - Gets or sets the value of the collection. - - - - - Response received which support paging - - The type of item the collection contains. - - - - Check if Objects count exceed team members limit or not - - Team Members Limit - True if exceeded or False - - - - Contains information about a service plan associated with a subscribed SKU. - - - - - The unique identifier of the service plan. - - - - - The name of the service plan. - - - - - The provisioning status of the service plan. - - - - - Enum describing the provisioning status of a service plan. - - - - - Represents a model of shared with team info. - - - - - The AAD group id of the team. - - - - - The name of the team. - - - - - The tenant id. - - - - - Indicates whether the team is the host of the channel. - - - - - Id of the request - - - - - Http Method used for the request - - - - - Uri used for the request - - - - - Id of the response, maps to the id of the request - - - - - Http Status Code of the request - - - - - Body of the response which contains the License details object or an Error bject - - - - - The body can either be a LicenseDetails model or an Error model - - - - - Body of the response which contains the Team object - - - - - Id of the response, maps to the id of the request - - - - - Http Status Code of the request - - - - - Body of the response which contains the License details object or an Error bject - - - - - - Body of the response which contains the Team object - - - - - Id of the response, maps to the id of the request - - - - - Http Status Code - - - - - Response headers (e.g. Retry-After for 429 responses) - - - - - Body of the response which contains the Team object or an Error bject - - - - - The body can either be a Team model or an Error model - - - - - Body of the response which contains the Team object - - - - - Code of the error, NOT Http status code - - - - - Code of the error, NOT Http status code - - - - - Staged App Details Response - - - - - The Staged App Entitlement - - - - - Staged App Entitlement - - - - - The Staged App Details Definition Etag - - - - - Staged App Update Request Body - - - - - Gets or sets the App Id for the Staged App - - - - - Gets or sets the Review Status for the Staged App - Published | Rejected - - - - - Gets or sets the Staged App Definition Etag - - - - - Team Id - - - - - Internal Id - - - - - Display Name - - - - - Group Description - - - - - Group Visibility - - - - - Group MailNickName - - - - - Group Classification - - - - - Archived - - - - - Team Member settings - For example: Can user create/update channels? etc. - - - - - Team guest settings - For example: Can guest create/update channels? etc. - - - - - Team Messaging settings - For example: Can user edit/delete messages? etc. - - - - - Team fun settings - For example: Can user post giphy etc. - - - - - Team discovery settings - For example: If team visible in search results/suggestions in Teams client - - - - - Team settings which determine team's discoverability. - - - - - Represents a team with basic information. - - - - - Team Id - - - - - Display Name - - - - - Tenant Id. - - - - - App data returned by Graph API - - - - - The app's internal, generated app ID (different from the external ID) - - - - - The display name of the app - - - - - The method by which the app is distributed - Although this is an Enum in Middle Tier, marking this as a string here - so that Json deserialization doesn't break if we add a new Enum value to MT - without making a code change in these cmdlets - - - - - MS Graph TeamsAppInstallation Object - - - - - The TeamsAppInstallationId - - - - - A unique id (not the teams appid). - - - - - The id from the Teams App manifest. - - - - - The name of the app provided by the app developer. - - - - - The version number of the application. - - - - - Gets or sets the operation id that uniquely identifies a specific instance of the async operation. - - - - - Gets or sets the type of async operation. - - - - - Gets or sets the latest status of the async operation. - - - - - Gets or sets the UTC time when the async operation was created. - - - - - Gets or sets the UTC time when the async operation was last updated. - - - - - Gets or sets the number of times the operation was attempted before being marked suceeded/failed. - - - - - Gets or sets the target resource id. - - - - - Gets or sets the target resource location. - - - - - Invalid value. - - - - - Operation to clone a team. - - - - - Operation to archive a team. - - - - - Operation to unarchive a team. - - - - - Operation to create a team. - - - - - Operation to teamify an existing group. - - - - - Operation to create a channel. - - - - - Invalid value. - - - - - Indicates that the operation has not started. - - - - - Indicates that the operation in running. - - - - - Indicates that the operation has succeeded. - - - - - Indicates that the operation has failed. - - - - - Team Id - - - - - Internal Id - - - - - Display Name - - - - - Description - - - - - Visibility - - - - - MailNickName - - - - - Classification - - - - - Archived - - - - - App data returned by Graph API - - - - - The external ID provided by the app developer - - - - - A report that details the activity of a particular user on Teams. - - - - - The user principal name of the user. - - - - - The number of messages the user sent to team/channel threads. - - - - - The number of messages the user sent to private chats. - - - - - Model for the Hierarchy object returned by Hierarchy service's APIs. - - - - - Version for Teams Hierarchy cmdlets that defines which service are the cmdlets pointing to. - - - - - Version of the API pointing to the Retail service. - - - - - Version of the API pointing to the Hierarchy service. - - - - - Model for import hierarchy operation status comming from Retail service. - - - - - Model for import hierarchy operation status comming from Teams Hierarchy service. - - - - - Enum for the long running operation status. - - - - - Not Started Graph Long Running Operation status. - - - - - Running Graph Long Running Operation status. - - - - - Succeeded Graph Long Running Operation status. - - - - - Failed Graph Long Running Operation status. - - - - - Unknown Graph Long Running Operation status. - - - - - Enum for the retail operation status. - - - - - Starting Retail Operation status. - - - - - Ingesting Retail Operation status. - - - - - Successful Retail Operation status. - - - - - Failed Graph Long Running Operation status. - - - - - Unknown Graph Long Running Operation status. - - - - - Template - - - - - Unified App response! - - - - - Gets or sets the app id for the Enhanced teams app or Teams app. - - - - - Gets or Sets the app blocked state. - if true then the app is blocked.If false then the app is unblocked. - Denotes whether the app is blocked by the administrator. - - - - - App Type. - - - - - Gets or sets the app Available to data. - - - - - Gets or sets the app Deploy to data. - - - - - Gets or sets the app name for the Enhanced teams app or Teams app. - - - - - available To data for the pscmdlet response (V2). - - - - - available To data for the unified app response. - - - - - Gets or sets the list of user assignment for available data. - - - - - Gets or sets the list of group assignment for available data. - - - - - Last updated timestamp - - - - - UserId of the assigner - - - - - deployed To data for the pscmdlet response (V2). - - - - - available To data for the unified app response. - - - - - Last updated date - - - - - UserId of the deployer - - - - - Deploy reason - - - - - Version - - - - - Gets or sets the list of user assignment for available data. - - - - - Gets or sets the list of group assignment for available data. - - - - - Group or user assignment id with assignment details - - - - - Group or User Id - - - - - Last updated timestamp - - - - - UserId of the assigner - - - - - Group or user assignment id with assignment details - - - - - Group or User Id - - - - - Last updated timestamp - - - - - UserId of the assigner - - - - - Class for GetUnifiedAppsResponse. - - - - - Gets or sets the app id for the Enhanced teams app or Teams app. - - - - - Gets or Sets the app blocked state. - if true then the app is blocked.If false then the app is unblocked. - Denotes whether the app is blocked by the administrator. - - - - - Gets or sets the app Available to data. - - - - - Gets or sets the app Deployed to data. - - - - - Gets or sets the app name for the Enhanced teams app or Teams app. - - - - - AvailableTo details for the unified app (V2). - - - - - available To data for the unified app response. - - - - - Last updated timestamp - - - - - UserId of the assigner - - - - - DeployedTo details for the unified app (V2). - - - - - deployed To data for the unified app response. - - - - - Last updated date - - - - - UserId of the deployer - - - - - Deploy reason - - - - - Version - - - - - Class for UnifiedAppsTenantSettingsResponse. - - - - - Add or Remove users/groups - - - - - Class for UnifiedAppsTenantSettingsResponse. - - - - - Gets or Sets the Setting Name. Applicable values DefaultApp|GlobalApp|PrivateApp|CoPilotApp - - - - - Gets or Sets the Setting Value. Applicable values Some|All|None - - - - - Gets or sets List of user guid for Apps with EnableCopilotExtensibility. - - - - - Gets or sets List of group guid for Apps with EnableCopilotExtensibility. - - - - - Unified App Update Request Body - - - - - Gets or sets app ID for the m365 App / unified app. - - - - - Gets or Sets the app blocked state. - if true then the app is blocked.If false then the app is unblocked. - Denotes whether the app is blocked by the administrator. - - - - - Gets or sets the available to information of the app. - - - - - Gets or sets the deploy to information of the app. - - - - - Available To Request - - - - - Gets or Sets the type of availability Information none | some | all. - - - - - Gets or sets List of user guid for available data. - - - - - Gets or sets List of group guid for available data. - - - - - Gets or Sets the operation add | remove. - - - - - Deploy To Request - - - - - Gets or Sets the type of deployTo Information none | some | all. - - - - - Gets or sets List of user guid for available data. - - - - - Gets or sets List of group guid for available data. - - - - - Gets or Sets the operation add | remove. - - - - - Gets or Sets the version. - - - - - Class for UnifiedStagedAppsResponse. - - - - - Gets or sets the app id for the Enhanced teams app or Teams app. - - - - - The app ID provided by the developer - - - - - Indicating how many times the app has been updated - - - - - Indicates who created this app. - - - - - Last timestamp when the app is being updated - - - - - The app review status - - - - - Metadata data - - - - - App metadata for the Admin - - - - - The user facing app name - - - - - Terms of Use URL of the app - - - - - A long description of the app - - - - - A short description of the app - - - - - Large image URL. Can contain raw image data. - - - - - Smallimage URL. Can contain raw image data. - - - - - Developer name - - - - - Developer link - - - - - Version of the manifest of the app - - - - - The latest published app version - - - - - Indicates whether or not the title has Copilot capabilities. - - - - - A list of the different hubs. - - - - - Gets the date the title was published. - - - - - Represents a model of user enhanced info. - - - - - Initializes a new instance of the UserEnhancedInfo class. - - - - - Initializes a new instance of the UserEnhancedInfo class with an object of GraphAadUserConversationMember class. - - - - - - The id of AAD user. - - - - - The upn of user. - - - - - The display name of the user. - - - - - The role of the user. - - - - - The tenant id of the user. - - - - - Represents a model of user info. - - - - - Initializes a new instance of the UserInfo class. - - - - - Initializes a new instance of the UserInfo class with an object of GraphAadUserConversationMember class. - - - - - - The id of AAD user. - - - - - The upn of user. - - - - - The display name of the user. - - - - - The role of the user. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Max number of attempts check if group is available for team creation - - - - - Max number of attempts to try creating a team. - - - - - Sleep time to check for group availability in milliseconds - - - - - Sleep time in milliseconds. - - - - - Set group properties based on template value. - - - - Group - - - - Create new unified group - - - New created group - - - - Provision team portion of an unified group. - - http client - Unified group id - If successful, return created Team object, else return null - - - - Generates unique team alias - 1. Generate valid alias base on DisplayName - 2. Check if the alias exists in MsGraph, if exists, check "originalAlias"+"3 digits random numbers" as alias again, this logic up to 3 times - - http client - Team alias - Unique Alias - - - - Validate that the group is available before trying to create a team. - Tries to validate up to and waits - inbetween validation attempts. - - - Group Id to validate. - True if group with corresponding groupId is available, else false. - - - - Handles scenario when group is created but not yet ready or when team creation fails - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Support specifying owner during channel creation - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Represents a cmdlet to unshare a channel with a team. - - - - - Initializes a new instance of . - - - - - Initializes a new instance of with an implementation of . - - The http client factory. - - - - The name of the cmdlet. - - - - - The aad group id of the host team. - - - - - The thread id of the shared channel. - - - - - The aad group id of the shared with team. - - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Cmdlet to remove user from a private channel. Role of the user can be specified for member demotion. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - The name of the cmdlet. - - - - - The AAD group id of the team. - - - - - The display name of channel. - - - - - The id or upn of the user. - - - - - The role of the user. - - - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - cmdlet to remove a Teams App from MS Teams. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the cmdlet. - - - - - Installation identifier of the Teams App. - - - - - Teams App identifier in MS Teams. - - - - - Team identifier in MS Teams. - - - - - User identifier in MS Teams. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Id for the request instance of an upload operation. - - - - - Name of the Cmdlet. - - - - - Version of the api service endpoints that will be used. - - - - - Cmdlet to add user to a team. Role of the user can be specified - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - The groupid to be archived. - - - - - If true, archive team (API above). If false, unarchive team. - - - - - Optional parameter. Used with Archived == $true. - This optional parameter defines whether to set permissions for team members to read-only on the Sharepoint Online site associated with the team. - See the following API docs for shouldSetSpoSiteReadOnlyForMembers - https://docs.microsoft.com/en-us/graph/api/team-archive?view=graph-rest-beta - https://docs.microsoft.com/en-us/graph/api/team-archive?view=graph-rest-1.0 - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Channel model without membershiptype as the property is not supported on Graph patch endpoint - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the Cmdlet. - - - - - Path for the CSV file that will be consumed. - - - - - Version of the api service endpoints that will be used. - - - - - Base class for all teams cmdlet which need AUTH. - - - - - Used to detect system interrupts - - - - - Check whether user is authenticated or not. - - - - - Signal for when the user sends a cancel interrupt (ctrl + c) - - - - - - - Updates the Review Status of a Staged App with Published/Rejected - - - - - Default Constructor - - - - - Constructor with an implementation of - Creates an instance of - - - - - - Commandlet name - - - - - App Id of the Staged App - - - - - Review Status of the Staged App - This can be Published|Rejected - - - - - - - - Create and validate the StagedAppUpdateRequestBody - - - Base URL - Staged App Updated Request Body - - - - Fetches the Staged App Definition Etag - - - Base URL - The Staged App Definition Etag - - - - cmdlet to update a Teams App in MS Teams. - - - - - Default constructor necessary for cmdlet. - - - - - Constructor with an implementation of . - Creates an instance of - - - - - - Name of the cmdlet. - - - - - Installation identifier of the Teams App. - - - - - Teams App identifier in MS Teams. - - - - - Team identifier in MS Teams. - - - - - User identifier in MS Teams. - - - - - RSC permissions for the Teams App. - - - - - Update unified app in the UAMService cmdlet - - - - - Default Constructor - - - - - Constructor with an implementation of . - Updates an instance of - - - - - - Cmdlet Name. - - - - - Gets or Sets the Setting Name. Applicable values DefaultApp | GlobalApp | PrivateApp | EnableCopilotExtensibility - - - - - Gets or Sets the Setting Value. Applicable values Some|All|None - - - - - Gets or sets List of user guid for CoPilot Apps. - - - - - Gets or sets List of group guid for CoPilot Apps. - - - - - Gets or Sets the Setting Value. Applicable values add|remove - - - - - Update unified app in the UAMService cmdlet - - - - - Default Constructor - - - - - Constructor with an implementation of . - Updates an instance of - - - - - - Cmdlet Name. - - - - - Id of the Unified App required. - - - - - IsBlocked flag for the Unified App. - - - - - AppAssignmentType for the Unified App. - This can be 'UsersAndGroups', 'Everyone' or 'Noone'. - - - - - OperationType for the Unified App. - This is either 'Add' or 'Remove' and it represents the operation to be performed on the Users or Groups. - It is a required parameter. - - - - - Users to be added or removed from the Unified App. - If not provided the default value is null. - - - - - Groups to be added or removed from the Unified App. - If not provided the default value is null. - - - - - AppAssignmentType for the Unified App. - This can be 'UsersAndGroups', 'Everyone' or 'Noone'. - - - - - OperationType for the Unified App. - This is either 'Add' or 'Remove' and it represents the operation to be performed on the Users or Groups. - It is a required parameter. - - - - - Users to be added or removed from the Unified App. - If not provided the default value is null. - - - - - Groups to be added or removed from the Unified App. - If not provided the default value is null. - - - - - DeployVersion for the Unified App. - Only applicable for deployTo - - - - - Create and validate the UnifiedAppUpdateRequestBody - - - - - - - HttpClient handler class that handles token refresh and retries due to throttling. - - - - - Initializes a new instance of the class. - - The "Application (client) ID" (GUID) for this app from the Entra portal. - The tenantId (GUID) where this will be run. - The client secret generated for this app from the Entra portal. - - - - Sends an HTTP request with authentication and retries in the event of throttling, and handles token refresh. - - The HTTP request message to send. - The cancellation token to cancel operation. - The task object representing the asynchronous operation. - - - - Represents a single export job. - - - - - Initializes a new instance of the class. - - The HTTP client to be used for requests. - Where to output the data. - Optionally limit single to a single user's ODB. - Optionally limit search to SharePoint and not ODB. - Optional single type of artifact to be exported (default is all types). - Optional start time to return artifacts created on or after this time. - Optional end time to return artifacts created on or before this time. - - - - Starts the export job. - - The number of artifacts found. - The number of errors encountered during the export. - - - - The utilities of graph APIs. - - - - - Return the current user user id. - - http client - graph resource - AAD user id - - - - Given a user UPN or email Id, return user Id. - - http client - user's upn - graph resource - AAD user id - - - - Given a list of userIds, get the dictionary of userId - upn. - - httpClient - list of userIds - graph resource - dictionary of userId - upn - - - - GET all AAD members of a channel. - - http client - graph resource - AAD group id - Channel object - list of AAD members - - - - Maximum number of retries for each http call under special conditions (ex. Service Unavailable) - - - - - JSON Serializer settings. - - - - - Send a GET request to the specified Uri. - - Return type - The Uri the request is sent to. - Returns resource as specified type T - - - - Send a GET request to the specified Uri with headers - - Return type - The Uri the request is sent to. - Custom headers sent with the request. - Returns resource. - - - - GET all entities from Graph - - Return type - The Uri the request is sent to. - List of resources. - - - - Send a POST request to the specified Uri - - Input type - http client - The Uri the request is sent to. - Resource to post - Returns created resource. - - - - Special POST for APIs that return async operation ids via Location header. - - http client - The Uri the request is sent to. - Resource to post - Returns created resource. - - - - Special POST for batch requests. Takes in a GraphBatchRequest and returns a BatchResponse. The response will have an id which maps to the id in the request - - - - - - - - - Send a PUT request to the specified Uri - - Input type - http client - The Uri the request is sent to. - Resource to update - Returns updated resource. - - - - Send a PATCH request to the specified Uri - - Input type - http client - The Uri the request is sent to. - Resource to update - - - - Send a patch request to the UAM service for updating an app. - - Body type - http client - The uri the request is sent to - App to update - - - - - Send a DELETE request to the specified Uri - - Input type - http client - The Uri the request is sent to. - - - - Send a async GET request to the specified Uri. - - - - - - - - - - Send a GET request to the specified Uri with headers - - Return type - http client - The Uri the request is sent to. - Custom headers sent with the request. - Function for refreshing authorization token when we get a 401. - Returns resource. - - - - Sends requests and handles retries, backoff and wait-after time spans - Will only retry if the status code returned is worth retrying - If header has retry-after then wait for the timespan specified - Else uses a decorrelated jitter exponential backoff strategry, useful for multithreaded applications - Creates a new HttpRequestMessage for every request since it cannot be reused with the same HttpClient - - - - - - - - - - - Function for creating HttpRequestMessages - - - - - - - - - - The maximum number of users that can get returned per page in the GET /users API. - - - - - The maximum number of Teams user activity details that can get returned per page in the GET /getTeamsUserActivityUserDetail API. - - - - - The valid report periods for the Teams usage report API. - https://docs.microsoft.com/en-us/graph/api/reportroot-getteamsuseractivityuserdetail?view=graph-rest-beta - - - - - Validates and returns the scope and the scope identifier based on the identifier arguments provided. - - Instance of . - Team Id in MS Teams. - Chat Id in MS Teams. - User Id in MS Teams. - scope and scope identifier. - - - - Fetches the TeamsAppInstallation for a given scope, scopeIdentifier and appId. - - Instance of . - . - Base MS Graph URL. - Scope of the app installation . - Identifier of the scope where the app is installed. - Installation identifier of the Teams App. - The corresponding Teams App installed. - - - - Creates the base url for Teams App lifecycle management. - - Instance of . - The MS Graph base url. - Scope of the app installation . - Identifier of the scope where the app is installed. - The url for Teams App lifecycle management - - - - Fetches the license details for a number of users. - - Instance of . - . - Base MS Graph URL. - The unique IDs or UPNs of the users for which to retrieve license details. - A dictionary representing the license details for a number of users, mapping the UPN to the license details. - A list of error messages from the batch request. - - - - Fetches the details of all users in the tenant. - - Instance of . - . - Base MS Graph URL. - The details about all users in the tenant. - - - - Fetches the Teams user activity details for all users in a tenant. - - Instance of . - . - Base MS Graph URL. - The period for which we want to fetch teh user activity details. - The Teams user activity details for all users in a tenant. - - - - ParameterSet name for resource management in Team scope - - - - - ParameterSet name for resource management in User scope - - - - - Default team alias used when the input alias contains invalid characters - - - - - Team alias suffix length - For example: Team alias is "msteams_d010ac", suffix will be "_"+"d010ac" - - - - - Allowed set of characters in team alias - - - - - Generates valid team alias - This function will be used for generate original alias base on displayName - 1. Only Keeps allowed characters and alias can't exceeds - 2. If genenrated alias in step 1 don't contain alphanumeric characters, MT generate a new alias - - Team alias - Prefix/Suffix Length - If use default alias which starts with "DefaultTeamAlias" - Valid team alias - - - - Generates (0-9, a-f) alias suffix base on Guid - - Valid team alias - - - - Generates unique team alias - This function will be used for generate new alias base on orginal alias if the original alias duplicated - The new alias length must less than alias.Length + suffix.Length - - Team alias - Team alias suffix - Office365 mailNickname Prefix/Suffix Length - Valid team alias - - - - Keeps allowed characters and removes the not allowed ones. - - Input string - Allowed character set - Input string with only the allowed characters - - - - Represents some utilities for user objects. - - - - - Gets the list of UserInfo objects to output. - - The list of graph aad users. - Http client. - Graph resource. - The specified role of users. - The type used to create objects. - The list of objects which implement IUserInfo. - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psd1 b/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psd1 deleted file mode 100644 index 42cd98a2f881b..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psd1 +++ /dev/null @@ -1,1087 +0,0 @@ -# -# Module manifest for module 'MicrosoftTeams' -# -# Generated by: Microsoft Corporation -# -# Updated on: 6/30/2020 -# - -@{ -# Script module or binary module file associated with this manifest. -RootModule = './MicrosoftTeams.psm1' - -# Version number of this module. -ModuleVersion = '7.8.0' - -# Supported PSEditions -CompatiblePSEditions = 'Core', 'Desktop' - -# ID used to uniquely identify this module -GUID = 'd910df43-3ca6-4c9c-a2e3-e9f45a8e2ad9' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = 'Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = 'Microsoft Teams cmdlets module for Windows PowerShell and PowerShell Core. - -For more information, please visit the following: https://docs.microsoft.com/MicrosoftTeams/teams-powershell-overview' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -DotNetFrameworkVersion = '4.7.2' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -CLRVersion = '4.0' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'Amd64' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# Removed this script from here because this module is used in SAW machines as well where Contraint Language Mode is on. -# Because of CLM constraint we were not able to import Teams module to SAW machines, that is why removing this script. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -#NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = @( - 'Clear-CsOnlineTelephoneNumberOrder' - ,'Complete-CsOnlineTelephoneNumberOrder' - ,'Disable-CsOnlineSipDomain' -#preview ,'Disable-CsTeamsShiftsConnectionErrorReport' - ,'Enable-CsOnlineSipDomain' - ,'Export-CsAcquiredPhoneNumber' - ,'Export-CsAutoAttendantHolidays' - ,'Export-CsOnlineAudioFile' - ,'Find-CsGroup' - ,'Find-CsOnlineApplicationInstance' - ,'Get-CsApplicationAccessPolicy' - ,'Get-CsApplicationMeetingConfiguration' - ,'Get-CsAutoAttendant' - ,'Get-CsAutoAttendantHolidays' - ,'Get-CsAutoAttendantStatus' - ,'Get-CsAutoAttendantSupportedLanguage' - ,'Get-CsAutoAttendantSupportedTimeZone' - ,'Get-CsAutoAttendantTenantInformation' - ,'Get-CsAutoRecordingTemplate' - ,'Get-CsBatchPolicyAssignmentOperation' - ,'Get-CsCallingLineIdentity' - ,'Get-CsCallQueue' - ,'Get-CsCloudCallDataConnection' - ,'Get-CsEffectiveTenantDialPlan' - ,'Get-CsExportAcquiredPhoneNumberStatus' - ,'Get-CsGroupPolicyAssignment' - ,'Get-CsHybridTelephoneNumber' - ,'Get-CsInboundBlockedNumberPattern' - ,'Get-CsInboundExemptNumberPattern' - ,'Get-CsMainlineAttendantAppointmentBookingFlow' - ,'Get-CsMainlineAttendantFlow' - ,'Get-CsMainlineAttendantSupportedLanguages' - ,'Get-CsMainlineAttendantSupportedVoices' - ,'Get-CsMainlineAttendantTenantInformation' - ,'Get-CsMainlineAttendantQuestionAnswerFlow' - ,'Get-CsMeetingMigrationStatus' - ,'Get-CsOnlineApplicationInstance' - ,'Get-CsOnlineApplicationInstanceAssociation' - ,'Get-CsOnlineApplicationInstanceAssociationStatus' - ,'Get-CsOnlineAudioConferencingRoutingPolicy' - ,'Get-CsOnlineAudioFile' - ,'Get-CsOnlineDialInConferencingBridge' - ,'Get-CsOnlineDialInConferencingLanguagesSupported' - ,'Get-CsOnlineDialinConferencingPolicy' - ,'Get-CsOnlineDialInConferencingServiceNumber' - ,'Get-CsOnlineDialinConferencingTenantConfiguration' - ,'Get-CsOnlineDialInConferencingTenantSettings' - ,'Get-CsOnlineDialInConferencingUser' - ,'Get-CsOnlineDialOutPolicy' - ,'Get-CsOnlineDirectoryTenant' - ,'Get-CsOnlineEnhancedEmergencyServiceDisclaimer' - ,'Get-CsOnlineLisCivicAddress' - ,'Get-CsOnlineLisLocation' - ,'Get-CsOnlineLisPort' - ,'Get-CsOnlineLisSubnet' - ,'Get-CsOnlineLisSwitch' - ,'Get-CsOnlineLisWirelessAccessPoint' - ,'Get-CsOnlinePSTNGateway' - ,'Get-CsOnlinePstnUsage' - ,'Get-CsOnlineSchedule' - ,'Get-CsOnlineSipDomain' - ,'Get-CsOnlineTelephoneNumber' - ,'Get-CsOnlineTelephoneNumberCountry' - ,'Get-CsOnlineTelephoneNumberOrder' - ,'Get-CsOnlineTelephoneNumberType' - ,'Get-CsOnlineUser' - ,'Get-CsOnlineVoicemailUserSettings' - ,'Get-CsOnlineVoiceRoute' - ,'Get-CsOnlineVoiceRoutingPolicy' - ,'Get-CsOnlineVoiceUser' - ,'Get-CsPhoneNumberAssignment' - ,'Get-CsPhoneNumberPolicyAssignment' - ,'Get-CsPhoneNumberTag' - ,'Get-CsPhoneNumberTenantConfiguration' - ,'Get-CsPolicyPackage' - ,'Get-CsSdgBulkSignInRequestStatus' - ,'Get-CsSDGBulkSignInRequestsSummary' - ,'Get-CsTeamsAudioConferencingPolicy' - ,'Get-CsTeamsCallParkPolicy' - ,'Get-CsTeamsCortanaPolicy' - ,'Get-CsTeamsEmergencyCallRoutingPolicy' - ,'Get-CsTeamsEnhancedEncryptionPolicy' - ,'Get-CsTeamsGuestCallingConfiguration' - ,'Get-CsTeamsGuestMessagingConfiguration' - ,'Get-CsTeamsIPPhonePolicy' - ,'Get-CsTeamsMediaLoggingPolicy' - ,'Get-CsTeamsMeetingBroadcastConfiguration' - ,'Get-CsTeamsMeetingBroadcastPolicy' - ,'Get-CsTeamsMigrationConfiguration' - ,'Get-CsTeamsNetworkRoamingPolicy' - ,'Get-CsTeamsRoomVideoTeleConferencingPolicy' - ,'Get-CsTeamsSettingsCustomApp' - ,'Get-CsTeamsShiftsAppPolicy' - ,'Get-CsTeamsShiftsConnectionConnector' - ,'Get-CsTeamsShiftsConnectionErrorReport' - ,'Get-CsTeamsShiftsConnection' - ,'Get-CsTeamsShiftsConnectionInstance' - ,'Get-CsTeamsShiftsConnectionOperation' - ,'Get-CsTeamsShiftsConnectionSyncResult' - ,'Get-CsTeamsShiftsConnectionTeamMap' - ,'Get-CsTeamsShiftsConnectionWfmTeam' - ,'Get-CsTeamsShiftsConnectionWfmUser' - ,'Get-CsTeamsSurvivableBranchAppliance' - ,'Get-CsTeamsSurvivableBranchAppliancePolicy' - ,'Get-CsTeamsTargetingPolicy' - ,'Get-CsTeamsTranslationRule' - ,'Get-CsTeamsUnassignedNumberTreatment' - ,'Get-CsTeamsUpgradePolicy' - ,'Get-CsTeamsVdiPolicy' - ,'Get-CsTeamsVideoInteropServicePolicy' - ,'Get-CsTeamsWorkLoadPolicy' - ,'Get-CsTeamTemplate' - ,'Get-CsTeamTemplateList' - ,'Get-CsTenant' - ,'Get-CsTenantBlockedCallingNumbers' - ,'Get-CsTenantDialPlan' - ,'Get-CsTenantFederationConfiguration' - ,'Get-CsTenantLicensingConfiguration' - ,'Get-CsTenantMigrationConfiguration' - ,'Get-CsTenantNetworkConfiguration' - ,'Get-CsTenantNetworkRegion' - ,'Get-CsTenantNetworkSubnet' - ,'Get-CsTenantTrustedIPAddress' - ,'Get-CsUserCallingSettings' - ,'Get-CsUserPolicyAssignment' - ,'Get-CsUserPolicyPackage' - ,'Get-CsUserPolicyPackageRecommendation' - ,'Get-CsVideoInteropServiceProvider' - ,'Get-CsAgent' - ,'Get-CsAiAgents' - ,'Grant-CsApplicationAccessPolicy' - ,'Get-CsComplianceRecordingForCallQueueTemplate' - ,'Get-CsSharedCallQueueHistoryTemplate' - ,'Get-CsTagsTemplate' - ,'Get-CsSharedCallHistoryTemplate' - ,'Grant-CsCallingLineIdentity' - ,'Grant-CsDialoutPolicy' - ,'Grant-CsGroupPolicyPackageAssignment' - ,'Grant-CsOnlineAudioConferencingRoutingPolicy' - ,'Grant-CsOnlineVoicemailPolicy' - ,'Grant-CsOnlineVoiceRoutingPolicy' - ,'Grant-CsTeamsAudioConferencingPolicy' - ,'Grant-CsTeamsCallHoldPolicy' - ,'Grant-CsTeamsCallParkPolicy' - ,'Grant-CsTeamsChannelsPolicy' - ,'Grant-CsTeamsCortanaPolicy' - ,'Grant-CsTeamsEmergencyCallingPolicy' - ,'Grant-CsTeamsEmergencyCallRoutingPolicy' - ,'Grant-CsTeamsEnhancedEncryptionPolicy' - ,'Grant-CsTeamsFeedbackPolicy' - ,'Grant-CsTeamsIPPhonePolicy' - ,'Grant-CsTeamsMediaLoggingPolicy' - ,'Grant-CsTeamsMeetingBroadcastPolicy' - ,'Grant-CsTeamsMeetingPolicy' - ,'Grant-CsTeamsMessagingPolicy' - ,'Grant-CsTeamsRoomVideoTeleConferencingPolicy' - ,'Grant-CsTeamsSurvivableBranchAppliancePolicy' - ,'Grant-CsTeamsUpdateManagementPolicy' - ,'Grant-CsTeamsUpgradePolicy' - ,'Grant-CsTeamsVideoInteropServicePolicy' - ,'Grant-CsTeamsVoiceApplicationsPolicy' - ,'Grant-CsTeamsWorkLoadPolicy' - ,'Grant-CsTenantDialPlan' - ,'Grant-CsUserPolicyPackage' - ,'Grant-CsTeamsComplianceRecordingPolicy' - ,'Import-CsAutoAttendantHolidays' - ,'Import-CsOnlineAudioFile' - ,'Invoke-CsInternalPSTelemetry' - ,'Move-CsInternalHelper' - ,'New-CsAgent' - ,'New-CsApplicationAccessPolicy' - ,'New-CsAutoAttendant' - ,'New-CsAutoAttendantCallableEntity' - ,'New-CsAutoAttendantCallFlow' - ,'New-CsAutoAttendantCallHandlingAssociation' - ,'New-CsAutoAttendantDialScope' - ,'New-CsAutoAttendantMenu' - ,'New-CsAutoAttendantMenuOption' - ,'New-CsAutoAttendantPrompt' - ,'New-CsAutoRecordingTemplate' - ,'New-CsBatchPolicyAssignmentOperation' - ,'New-CsBatchPolicyPackageAssignmentOperation' - ,'New-CsCallingLineIdentity' - ,'New-CsCallQueue' - ,'New-CsCloudCallDataConnection' - ,'New-CsCustomPolicyPackage' - ,'New-CsEdgeAllowAllKnownDomains' - ,'New-CsEdgeAllowList' - ,'New-CsEdgeDomainPattern' - ,'New-CsGroupPolicyAssignment' - ,'New-CsHybridTelephoneNumber' - ,'New-CsInboundBlockedNumberPattern' - ,'New-CsInboundExemptNumberPattern' - ,'New-CsMainlineAttendantAppointmentBookingFlow' - ,'New-CsMainlineAttendantQuestionAnswerFlow' - ,'New-CsOnlineApplicationInstance' - ,'New-CsOnlineApplicationInstanceAssociation' - ,'New-CsOnlineAudioConferencingRoutingPolicy' - ,'New-CsOnlineDateTimeRange' - ,'New-CsOnlineLisCivicAddress' - ,'New-CsOnlineLisLocation' - ,'New-CsOnlinePSTNGateway' - ,'New-CsOnlineSchedule' - ,'New-CsOnlineTelephoneNumberOrder' - ,'New-CsOnlineTimeRange' - ,'New-CsOnlineVoiceRoute' - ,'New-CsOnlineVoiceRoutingPolicy' - ,'New-CsSdgBulkSignInRequest' - ,'New-CsTeamsAudioConferencingPolicy' - ,'New-CsTeamsCallParkPolicy' - ,'New-CsTeamsCortanaPolicy' - ,'New-CsTeamsEmergencyCallRoutingPolicy' - ,'New-CsTeamsEmergencyNumber' - ,'New-CsTeamsEnhancedEncryptionPolicy' - ,'New-CsTeamsIPPhonePolicy' - ,'New-CsTeamsMeetingBroadcastPolicy' - ,'New-CsTeamsNetworkRoamingPolicy' - ,'New-CsTeamsRoomVideoTeleConferencingPolicy' - ,'New-CsTeamsShiftsConnectionBatchTeamMap' - ,'New-CsTeamsShiftsConnection' - ,'New-CsTeamsShiftsConnectionInstance' - ,'New-CsTeamsSurvivableBranchAppliance' - ,'New-CsTeamsSurvivableBranchAppliancePolicy' - ,'New-CsTeamsTranslationRule' - ,'New-CsTeamsUnassignedNumberTreatment' - ,'New-CsTeamsVdiPolicy' - ,'New-CsTeamsWorkLoadPolicy' - ,'New-CsTeamTemplate' - ,'New-CsTenantDialPlan' - ,'New-CsTenantNetworkRegion' - ,'New-CsTenantNetworkSite' - ,'New-CsTenantNetworkSubnet' - ,'New-CsTenantTrustedIPAddress' - ,'New-CsUserCallingDelegate' - ,'New-CsVideoInteropServiceProvider' - ,'New-CsVoiceNormalizationRule' - ,'New-CsOnlineDirectRoutingTelephoneNumberUploadOrder' - ,'New-CsOnlineTelephoneNumberReleaseOrder' - ,'New-CsComplianceRecordingForCallQueueTemplate' - ,'New-CsPhoneNumberBulkUpdateTagsOrder' - ,'New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder' - ,'New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder' - ,'New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder' - ,'New-CsPhoneNumberBulkUpdateLocationIdOrder' - ,'New-CsTagsTemplate' - ,'New-CsTag' - ,'New-CsSharedCallQueueHistoryTemplate' - ,'New-CsSharedCallHistoryTemplate' - ,'Register-CsOnlineDialInConferencingServiceNumber' - ,'Remove-CsAgent' - ,'Remove-CsApplicationAccessPolicy' - ,'Remove-CsAutoAttendant' - ,'Remove-CsAutoRecordingTemplate' - ,'Remove-CsCallingLineIdentity' - ,'Remove-CsCallQueue' - ,'Remove-CsCustomPolicyPackage' - ,'Remove-CsGroupPolicyAssignment' - ,'Remove-CsHybridTelephoneNumber' - ,'Remove-CsInboundBlockedNumberPattern' - ,'Remove-CsInboundExemptNumberPattern' - ,'Remove-CsMainlineAttendantAppointmentBookingFlow' - ,'Remove-CsMainlineAttendantQuestionAnswerFlow' - ,'Remove-CsOnlineApplicationInstanceAssociation' - ,'Remove-CsOnlineAudioConferencingRoutingPolicy' - ,'Remove-CsOnlineAudioFile' - ,'Remove-CsOnlineDialInConferencingTenantSettings' - ,'Remove-CsOnlineLisCivicAddress' - ,'Remove-CsOnlineLisLocation' - ,'Remove-CsOnlineLisPort' - ,'Remove-CsOnlineLisSubnet' - ,'Remove-CsOnlineLisSwitch' - ,'Remove-CsOnlineLisWirelessAccessPoint' - ,'Remove-CsOnlinePSTNGateway' - ,'Remove-CsOnlineSchedule' - ,'Remove-CsOnlineTelephoneNumber' - ,'Remove-CsOnlineVoiceRoute' - ,'Remove-CsOnlineVoiceRoutingPolicy' - ,'Remove-CsPhoneNumberAssignment' - ,'Remove-CsPhoneNumberAssignmentBlock' - ,'Remove-CsPhoneNumberSmsActivation' - ,'Remove-CsPhoneNumberTag' - ,'Remove-CsPhoneNumberTenantConfiguration' - ,'Remove-CsTeamsAudioConferencingPolicy' - ,'Remove-CsTeamsCallParkPolicy' - ,'Remove-CsTeamsCortanaPolicy' - ,'Remove-CsTeamsEmergencyCallRoutingPolicy' - ,'Remove-CsTeamsEnhancedEncryptionPolicy' - ,'Remove-CsTeamsIPPhonePolicy' - ,'Remove-CsTeamsMeetingBroadcastPolicy' - ,'Remove-CsTeamsNetworkRoamingPolicy' - ,'Remove-CsTeamsRoomVideoTeleConferencingPolicy' - ,'Remove-CsTeamsShiftsConnection' - ,'Remove-CsTeamsShiftsConnectionInstance' - ,'Remove-CsTeamsShiftsConnectionTeamMap' - ,'Remove-CsTeamsShiftsScheduleRecord' - ,'Remove-CsTeamsSurvivableBranchAppliance' - ,'Remove-CsTeamsSurvivableBranchAppliancePolicy' - ,'Remove-CsTeamsTargetingPolicy' - ,'Remove-CsTeamsTranslationRule' - ,'Remove-CsTeamsUnassignedNumberTreatment' - ,'Remove-CsTeamsVdiPolicy' - ,'Remove-CsTeamsWorkLoadPolicy' - ,'Remove-CsTeamTemplate' - ,'Remove-CsTenantDialPlan' - ,'Remove-CsTenantNetworkRegion' - ,'Remove-CsTenantNetworkSite' - ,'Remove-CsTenantNetworkSubnet' - ,'Remove-CsTenantTrustedIPAddress' - ,'Remove-CsUserCallingDelegate' - ,'Remove-CsUserLicenseGracePeriod' - ,'Remove-CsVideoInteropServiceProvider' - ,'Remove-CsComplianceRecordingForCallQueueTemplate' - ,'Remove-CsTagsTemplate' - ,'Remove-CsSharedCallQueueHistoryTemplate' - ,'Remove-CsSharedCallHistoryTemplate' - ,'Set-CsAgent' - ,'Set-CsApplicationAccessPolicy' - ,'Set-CsApplicationMeetingConfiguration' - ,'Set-CsAutoAttendant' - ,'Set-CsAutoRecordingTemplate' - ,'Set-CsCallingLineIdentity' - ,'Set-CsCallQueue' - ,'Set-CsInboundBlockedNumberPattern' - ,'Set-CsInboundExemptNumberPattern' - ,'Set-CsMainlineAttendantAppointmentBookingFlow' - ,'Set-CsMainlineAttendantQuestionAnswerFlow' - ,'Set-CsOnlineApplicationInstance' - ,'Set-CsOnlineAudioConferencingRoutingPolicy' - ,'Set-CsOnlineDialInConferencingBridge' - ,'Set-CsOnlineDialInConferencingServiceNumber' - ,'Set-CsOnlineDialInConferencingTenantSettings' - ,'Set-CsOnlineDialInConferencingUser' - ,'Set-CsOnlineDialInConferencingUserDefaultNumber' - ,'Set-CsOnlineEnhancedEmergencyServiceDisclaimer' - ,'Set-CsOnlineLisCivicAddress' - ,'Set-CsOnlineLisLocation' - ,'Set-CsOnlineLisPort' - ,'Set-CsOnlineLisSubnet' - ,'Set-CsOnlineLisSwitch' - ,'Set-CsOnlineLisWirelessAccessPoint' - ,'Set-CsOnlinePSTNGateway' - ,'Set-CsOnlinePstnUsage' - ,'Set-CsOnlineSchedule' - ,'Set-CsOnlineVoiceApplicationInstance' - ,'Set-CsOnlineVoicemailUserSettings' - ,'Set-CsOnlineVoiceRoute' - ,'Set-CsOnlineVoiceRoutingPolicy' - ,'Set-CsOnlineVoiceUser' - ,'Set-CsPhoneNumberAssignment' - ,'Set-CsPhoneNumberAssignmentBlock' - ,'Set-CsPhoneNumberPolicyAssignment' - ,'Set-CsPhoneNumberSmsActivation' - ,'Set-CsPhoneNumberTag' - ,'Set-CsPhoneNumberTenantConfiguration' - ,'Set-CsTeamsAudioConferencingPolicy' - ,'Set-CsTeamsCallParkPolicy' - ,'Set-CsTeamsCortanaPolicy' - ,'Set-CsTeamsEmergencyCallRoutingPolicy' - ,'Set-CsTeamsEnhancedEncryptionPolicy' - ,'Set-CsTeamsGuestCallingConfiguration' - ,'Set-CsTeamsGuestMessagingConfiguration' - ,'Set-CsTeamsIPPhonePolicy' - ,'Set-CsTeamsMeetingBroadcastConfiguration' - ,'Set-CsTeamsMeetingBroadcastPolicy' - ,'Set-CsTeamsMigrationConfiguration' - ,'Set-CsTeamsNetworkRoamingPolicy' - ,'Set-CsTeamsRoomVideoTeleConferencingPolicy' - ,'Set-CsTeamsSettingsCustomApp' - ,'Set-CsTeamsShiftsAppPolicy' - ,'Set-CsTeamsShiftsConnection' - ,'Set-CsTeamsShiftsConnectionInstance' - ,'Set-CsTeamsSurvivableBranchAppliance' - ,'Set-CsTeamsSurvivableBranchAppliancePolicy' - ,'Set-CsTeamsTargetingPolicy' - ,'Set-CsTeamsTranslationRule' - ,'Set-CsTeamsUnassignedNumberTreatment' - ,'Set-CsTeamsVdiPolicy' - ,'Set-CsTeamsWorkLoadPolicy' - ,'Set-CsTenantBlockedCallingNumbers' - ,'Set-CsTenantDialPlan' - ,'Set-CsTenantFederationConfiguration' - ,'Set-CsTenantMigrationConfiguration' - ,'Set-CsTenantNetworkRegion' - ,'Set-CsTenantNetworkSite' - ,'Set-CsTenantNetworkSubnet' - ,'Set-CsTenantTrustedIPAddress' - ,'Set-CsUser' - ,'Set-CsUserCallingDelegate' - ,'Set-CsUserCallingSettings' - ,'Set-CsVideoInteropServiceProvider' - ,'Set-CsComplianceRecordingForCallQueueTemplate' - ,'Set-CsTagsTemplate' - ,'Set-CsSharedCallQueueHistoryTemplate' - ,'Set-CsSharedCallHistoryTemplate' - ,'Start-CsExMeetingMigration' - ,'Sync-CsOnlineApplicationInstance' - ,'Test-CsEffectiveTenantDialPlan' - ,'Test-CsInboundBlockedNumberPattern' - ,'Test-CsTeamsShiftsConnectionValidate' - ,'Test-CsTeamsTranslationRule' - ,'Test-CsTeamsUnassignedNumberTreatment' - ,'Test-CsVoiceNormalizationRule' - ,'Unregister-CsOnlineDialInConferencingServiceNumber' - ,'Update-CsAutoAttendant' - ,'Update-CsCustomPolicyPackage' - ,'Update-CsPhoneNumberTag' - ,'Update-CsTeamsShiftsConnection' - ,'Update-CsTeamsShiftsConnectionInstance' - ,'Update-CsTeamTemplate' - ,'New-CsBatchTeamsDeployment' - ,'Get-CsBatchTeamsDeploymentStatus' - ,'Get-CsPersonalAttendantSettings' - ,'Set-CsPersonalAttendantSettings' -#OCE related functions exports start here. DO NOT MODIFY! - ,'Set-CsOCEContext' - ,'Clear-CsOCEContext' - ,'Get-CsRegionContext' - ,'Set-CsRegionContext' - ,'Clear-CsRegionContext' - ,'Get-CsMeetingMigrationTransactionHistory' - ,'Get-CsMasVersionedSchemaData' - ,'Get-CsMasObjectChangelog' - ,'Get-CsBusinessVoiceDirectoryDiagnosticData' - ,'Get-CsCloudTenant' - ,'Get-CsCloudUser' - ,'Get-CsHostingProvider' - ,'Set-CsTenantUserBackfill' - ,'Invoke-CsCustomHandlerNgtprov' - ,'Invoke-CsCustomHandlerCallBackNgtprov' - ,'New-CsSdgDeviceTaggingRequest' - ,'Get-CsMoveTenantServiceInstanceTaskStatus' - ,'Move-CsTenantServiceInstance' - ,'Move-CsTenantCrossRegion' - ,'Invoke-CsDirectObjectSync' - ,'New-CsSDGDeviceTransferRequest' - ,'Get-CsAadTenant' - ,'Get-CsAadUser' - ,'Clear-CsCacheOperation' - ,'Move-CsAvsTenantPartition' - ,'Invoke-CsMsodsSync' - ,'Get-CsUssUserSettings' - ,'Set-CsUssUserSettings' - ,'Invoke-CsRehomeuser' - ,'Set-CsNotifyCache' -#OCE exports end -) -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @( - 'Add-TeamChannelUser' - ,'Add-TeamUser' - ,'Connect-MicrosoftTeams' - ,'Disconnect-MicrosoftTeams' - ,'Set-TeamsEnvironmentConfig' - ,'Clear-TeamsEnvironmentConfig' - ,'Get-AssociatedTeam' - ,'Get-MultiGeoRegion' - ,'Get-Operation' - ,'Get-SharedWithTeam' - ,'Get-SharedWithTeamUser' - ,'Get-Team' - ,'Get-TeamAllChannel' - ,'Get-TeamChannel' - ,'Get-TeamChannelUser' - ,'Get-TeamIncomingChannel' - ,'Get-TeamsApp' - ,'Get-TeamsArtifacts' - ,'Get-TeamUser' - ,'Get-M365TeamsApp' - ,'Get-AllM365TeamsApps' - ,'Get-AIGeneratedKnowledgeContainer' - ,'Get-M365UnifiedTenantSettings' - ,'Get-M365UnifiedCustomPendingApps' - ,'Get-CsTeamsAcsFederationConfiguration' - ,'Get-CsTeamsMessagingPolicy' - ,'Get-CsTeamsMeetingPolicy' - ,'Get-CsOnlineVoicemailPolicy' - ,'Get-CsOnlineVoicemailValidationConfiguration' - ,'Get-CsTeamsAIPolicy' - ,'Get-CsTeamsFeedbackPolicy' - ,'Get-CsTeamsUpdateManagementPolicy' - ,'Get-CsTeamsChannelsPolicy' - ,'Get-CsTeamsMeetingBrandingPolicy' - ,'Get-CsTeamsEmergencyCallingPolicy' - ,'Get-CsTeamsCallHoldPolicy' - ,'Get-CsTeamsMessagingConfiguration' - ,'Get-CsTeamsVoiceApplicationsPolicy' - ,'Get-CsTeamsEventsPolicy' - ,'Get-CsTeamsExternalAccessConfiguration' - ,'Get-CsTeamsFilesPolicy' - ,'Get-CsTeamsCallingPolicy' - ,'Get-CsTeamsClientConfiguration' - ,'Get-CsExternalAccessPolicy' - ,'Get-CsTeamsAppPermissionPolicy' - ,'Get-CsTeamsAppSetupPolicy' - ,'Get-CsTeamsFirstPartyMeetingTemplateConfiguration' - ,'Get-CsTeamsMeetingTemplatePermissionPolicy' - ,'Get-CsLocationPolicy' - ,'Get-CsTeamsShiftsPolicy' - ,'Get-CsTenantNetworkSite' - ,'Get-CsTeamsCarrierEmergencyCallRoutingPolicy' - ,'Get-CsTeamsMeetingTemplateConfiguration' - ,'Get-CsTeamsFirstPartyMeetingTemplateConfiguration' - ,'Get-CsTeamsVirtualAppointmentsPolicy' - ,'Get-CsTeamsSharedCallingRoutingPolicy' - ,'Get-CsTeamsTemplatePermissionPolicy' - ,'Get-CsTeamsComplianceRecordingPolicy' - ,'Get-CsTeamsComplianceRecordingApplication' - ,'Get-CsTeamsEducationAssignmentsAppPolicy' - ,'Get-CsTeamsUpgradeConfiguration' - ,'Get-CsTeamsAudioConferencingCustomPromptsConfiguration' - ,'Get-CsTeamsSipDevicesConfiguration' - ,'Get-CsTeamsCustomBannerText' - ,'Get-CsTeamsGuestMeetingConfiguration' - ,'Get-CsTeamsVdiPolicy' - ,'Get-CsTeamsMediaConnectivityPolicy' - ,'Get-CsTeamsMeetingConfiguration' - ,'Get-CsTeamsMobilityPolicy' - ,'Get-CsTeamsWorkLocationDetectionPolicy' - ,'Get-CsTeamsRecordingRollOutPolicy' - ,'Get-CsTeamsRemoteLogCollectionConfiguration' - ,'Get-CsTeamsRemoteLogCollectionDevice' - ,'Get-CsTeamsRecordingAndTranscriptionCustomMessage' - ,'Get-CsTeamsEducationConfiguration' - ,'Get-CsTeamsBYODAndDesksPolicy' - ,'Get-CsTeamsNotificationAndFeedsPolicy' - ,'Get-CsTeamsMultiTenantOrganizationConfiguration' - ,'Get-CsTeamsPersonalAttendantPolicy' - ,'Get-CsPrivacyConfiguration' - ,'Get-DirectToGroupAssignmentsMigrationStatus' - ,'Get-GroupAssignmentRecommendationsPerPolicyName' - ,'Get-GroupAssignmentRecommendationsPerPolicyType' - ,'Get-GroupPolicyAssignmentConflict' - ,'Grant-CsTeamsAIPolicy' - ,'Grant-CsTeamsMeetingBrandingPolicy' - ,'Grant-CsExternalAccessPolicy' - ,'Grant-CsTeamsCallingPolicy' - ,'Grant-CsTeamsAppPermissionPolicy' - ,'Grant-CsTeamsAppSetupPolicy' - ,'Grant-CsTeamsEventsPolicy' - ,'Grant-CsTeamsFilesPolicy' - ,'Grant-CsTeamsMediaConnectivityPolicy' - ,'Grant-CsTeamsMeetingTemplatePermissionPolicy' - ,'Grant-CsTeamsCarrierEmergencyCallRoutingPolicy' - ,'Grant-CsTeamsVirtualAppointmentsPolicy' - ,'Grant-CsTeamsSharedCallingRoutingPolicy' - ,'Grant-CsTeamsShiftsPolicy' - ,'Grant-CsTeamsRecordingRollOutPolicy' - ,'Grant-CsTeamsVdiPolicy' - ,'Grant-CsTeamsWorkLocationDetectionPolicy' - ,'Grant-CsTeamsBYODAndDesksPolicy' - ,'Grant-CsTeamsPersonalAttendantPolicy' - ,'Grant-CsTeamsMobilityPolicy' - ,'Invoke-ClearDirectToGroupAssignmentMigration' - ,'Invoke-StartDirectToGroupAssignmentMigration' - ,'New-Team' - ,'New-TeamChannel' - ,'New-TeamsApp' - ,'New-CsTeamsAIPolicy' - ,'New-CsTeamsMessagingPolicy' - ,'New-CsTeamsMeetingPolicy' - ,'New-CsOnlineVoicemailPolicy' - ,'New-CsTeamsFeedbackPolicy' - ,'New-CsTeamsUpdateManagementPolicy' - ,'New-CsTeamsChannelsPolicy' - ,'New-CsTeamsFilesPolicy' - ,'New-CsTeamsMediaConnectivityPolicy' - ,'New-CsTeamsMeetingBrandingTheme' - ,'New-CsTeamsMeetingBackgroundImage' - ,'New-CsTeamsMobilityPolicy' - ,'New-CsTeamsNdiAssuranceSlate' - ,'New-CsTeamsMeetingBrandingPolicy' - ,'New-CsTeamsEmergencyCallingPolicy' - ,'New-CsTeamsEmergencyCallingExtendedNotification' - ,'New-CsTeamsCallHoldPolicy' - ,'New-CsTeamsVoiceApplicationsPolicy' - ,'New-CsTeamsEventsPolicy' - ,'New-CsTeamsCallingPolicy' - ,'New-CsExternalAccessPolicy' - ,'New-CsTeamsAppPermissionPolicy' - ,'New-CsTeamsAppSetupPolicy' - ,'New-CsTeamsMeetingTemplatePermissionPolicy' - ,'New-CsLocationPolicy' - ,'New-CsTeamsCarrierEmergencyCallRoutingPolicy' - ,'New-CsTeamsHiddenMeetingTemplate' - ,'New-CsTeamsVirtualAppointmentsPolicy' - ,'New-CsTeamsSharedCallingRoutingPolicy' - ,'New-CsTeamsHiddenTemplate' - ,'New-CsTeamsTemplatePermissionPolicy' - ,'New-CsTeamsComplianceRecordingPolicy' - ,'New-CsTeamsComplianceRecordingApplication' - ,'New-CsTeamsComplianceRecordingPairedApplication' - ,'New-CsTeamsWorkLocationDetectionPolicy' - ,'New-CsTeamsRecordingRollOutPolicy' - ,'New-CsTeamsRemoteLogCollectionDevice' - ,'New-CsTeamsRecordingAndTranscriptionCustomMessage' - ,'New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage' - ,"New-CsCustomPrompt" - ,"New-CsCustomPromptPackage" - ,'New-CsTeamsShiftsPolicy' - ,'New-CsTeamsCustomBannerText' - ,'New-CsTeamsVdiPolicy' - ,'New-CsTeamsBYODAndDesksPolicy' - ,'New-CsTeamsPersonalAttendantPolicy' - ,'Remove-AIGeneratedKnowledge' - ,'Remove-SharedWithTeam' - ,'Remove-Team' - ,'Remove-TeamChannel' - ,'Remove-TeamChannelUser' - ,'Remove-TeamsApp' - ,'Remove-TeamUser' - ,'Remove-CsTeamsAIPolicy' - ,'Remove-CsTeamsMessagingPolicy' - ,'Remove-CsTeamsMeetingPolicy' - ,'Remove-CsOnlineVoicemailPolicy' - ,'Remove-CsTeamsFeedbackPolicy' - ,'Remove-CsTeamsFilesPolicy' - ,'Remove-CsTeamsUpdateManagementPolicy' - ,'Remove-CsTeamsChannelsPolicy' - ,'Remove-CsTeamsMediaConnectivityPolicy' - ,'Remove-CsTeamsMeetingBrandingPolicy' - ,'Remove-CsTeamsEmergencyCallingPolicy' - ,'Remove-CsTeamsCallHoldPolicy' - ,'Remove-CsTeamsVoiceApplicationsPolicy' - ,'Remove-CsTeamsEventsPolicy' - ,'Remove-CsTeamsCallingPolicy' - ,'Remove-CsExternalAccessPolicy' - ,'Remove-CsTeamsAppPermissionPolicy' - ,'Remove-CsTeamsAppSetupPolicy' - ,'Remove-CsTeamsMeetingTemplatePermissionPolicy' - ,'Remove-CsTeamsMobilityPolicy' - ,'Remove-CsLocationPolicy' - ,'Remove-CsTeamsCarrierEmergencyCallRoutingPolicy' - ,'Remove-CsTeamsVirtualAppointmentsPolicy' - ,'Remove-CsTeamsSharedCallingRoutingPolicy' - ,'Remove-CsTeamsTemplatePermissionPolicy' - ,'Remove-CsTeamsComplianceRecordingPolicy' - ,'Remove-CsTeamsComplianceRecordingApplication' - ,'Remove-CsTeamsShiftsPolicy' - ,'Remove-CsTeamsCustomBannerText' - ,'Remove-CsTeamsVdiPolicy' - ,'Remove-CsTeamsWorkLocationDetectionPolicy' - ,'Remove-CsTeamsRecordingRollOutPolicy' - ,'Remove-CsTeamsRemoteLogCollectionDevice' - ,'Remove-CsTeamsRecordingAndTranscriptionCustomMessage' - ,'Remove-CsTeamsBYODAndDesksPolicy' - ,'Remove-CsTeamsNotificationAndFeedsPolicy' - ,'Remove-CsTeamsPersonalAttendantPolicy' - ,'Set-Team' - ,'Set-TeamArchivedState' - ,'Set-TeamChannel' - ,'Set-TeamPicture' - ,'Set-TeamsApp' - ,'Set-CsTeamsAcsFederationConfiguration' - ,'Set-CsTeamsAIPolicy' - ,'Set-CsTeamsMessagingPolicy' - ,'Set-CsTeamsMeetingPolicy' - ,'Set-CsOnlineVoicemailPolicy' - ,'Set-CsTeamsFilesPolicy' - ,'Set-CsOnlineVoicemailValidationConfiguration' - ,'Set-CsTeamsFeedbackPolicy' - ,'Set-CsTeamsUpdateManagementPolicy' - ,'Set-CsTeamsChannelsPolicy' - ,'Set-CsTeamsMediaConnectivityPolicy' - ,'Set-CsTeamsMeetingBrandingPolicy' - ,'Set-CsTeamsEmergencyCallingPolicy' - ,'Set-CsTeamsEducationConfiguration' - ,'Set-CsTeamsCallHoldPolicy' - ,'Set-CsTeamsMessagingConfiguration' - ,'Set-CsTeamsVoiceApplicationsPolicy' - ,'Set-CsTeamsEventsPolicy' - ,'Set-CsTeamsExternalAccessConfiguration' - ,'Set-CsTeamsCallingPolicy' - ,'Set-CsTeamsClientConfiguration' - ,'Set-CsExternalAccessPolicy' - ,'Set-CsTeamsAppPermissionPolicy' - ,'Set-CsTeamsAppSetupPolicy' - ,'Set-CsTeamsFirstPartyMeetingTemplateConfiguration' - ,'Set-CsTeamsMeetingTemplatePermissionPolicy' - ,'Set-CsTeamsMultiTenantOrganizationConfiguration' - ,'Set-CsLocationPolicy' - ,'Set-CsTeamsCarrierEmergencyCallRoutingPolicy' - ,'Set-CsTeamsVirtualAppointmentsPolicy' - ,'Set-CsTeamsSharedCallingRoutingPolicy' - ,'Set-CsTeamsTemplatePermissionPolicy' - ,'Set-CsTeamsComplianceRecordingPolicy' - ,'Set-CsTeamsEducationAssignmentsAppPolicy' - ,'Set-CsTeamsComplianceRecordingApplication' - ,'Set-CsTeamsShiftsPolicy' - ,'Set-CsTeamsUpgradeConfiguration' - ,'Set-CsTeamsAudioConferencingCustomPromptsConfiguration' - ,'Set-CsTeamsSipDevicesConfiguration' - ,'Set-CsTeamsMeetingConfiguration' - ,'Set-CsTeamsGuestMeetingConfiguration' - ,'Set-CsTeamsVdiPolicy' - ,'Set-CsTeamsWorkLocationDetectionPolicy' - ,'Set-CsTeamsRemoteLogCollectionDevice' - ,'Set-CsTeamsRecordingRollOutPolicy' - ,'Set-CsTeamsRecordingAndTranscriptionCustomMessage' - ,'Set-CsTeamsCustomBannerText' - ,'Set-CsTeamsBYODAndDesksPolicy' - ,'Set-CsTeamsNotificationAndFeedsPolicy' - ,'Set-CsTeamsMobilityPolicy' - ,'Set-CsTeamsPersonalAttendantPolicy' - ,'Set-CsPrivacyConfiguration' - ,'Update-M365TeamsApp' - ,'Update-M365UnifiedTenantSettings' - ,'Update-M365UnifiedCustomPendingApp' - - #MPA OCE cmdlets - ,'Get-CsBatchOperationDefinition' - ,'Get-CsBatchOperationStatus' - ,'Get-CsConfiguration' - ,'Get-CsGroupPolicyAssignments' - ,'Get-CsLoginInfo' - ,'Get-CsUserProvHistory' - ,'Get-GPAGroupMembers' - ,'Get-GPAUserMembership' - ,'Get-NgtProvInstanceFailOverStatus' - ,'Get-CsTeamsTenantAbuseConfiguration' - ,'Invoke-CsDirectoryObjectSync' - ,'Invoke-CsGenericNgtProvCommand' - ,'Invoke-CsRefreshGroupUsers' - ,'Invoke-CsReprocessBatchOperation' - ,'Invoke-CsReprocessGroupPolicyAssignment' - ,'Move-NgtProvInstance' - ,'New-CsConfiguration' - ,'Remove-CsConfiguration' - ,'Set-CsConfiguration' - ,'Set-CsTeamsTenantAbuseConfiguration' - ,'Set-CsPublishPolicySchemaDefaults' - - -#preview ,'Add-TeamsAppInstallation' -#preview ,'Get-TeamsAppInstallation' - ,'Get-TeamTargetingHierarchyStatus' -#preview ,'Remove-TeamsAppInstallation' - ,'Remove-TeamTargetingHierarchy' - ,'Set-TeamTargetingHierarchy' -#preview ,'Update-TeamsAppInstallation' -#preview ,'Get-LicenseReportForChangeNotificationSubscription' - ,'Get-TenantPrivateChannelMigrationStatus' - ) - -# Variables to export from this module -VariablesToExport = '*' - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = '*' - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{ - PSData = @{ - # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Office365', 'MicrosoftTeams', 'Teams' - - # A URL to the license for this module. - LicenseUri = 'https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/master/teams/LICENSE.txt' - - # A URL to the main website for this project. - ProjectUri = 'https://github.com/MicrosoftDocs/office-docs-powershell/tree/master/teams' - - # A URL to an icon representing this module. - IconUri = 'https://statics.teams.microsoft.com/evergreen-assets/apps/teamscmdlets_largeimage.png' - - # Appends prerelease string to version - Prerelease = '' - - # ReleaseNotes of this module - ReleaseNotes = @' - **7.8.0-GA** (The project - MicrosoftTeams contains changes till this release) -- Fixes Get-TenantPrivateChannelMigrationStatus cmdlet in GCC, GCC High & DoD environments. -- Releases New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder, New-CsPhoneNumberBulkUpdateLocationIdOrder, New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder, and New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder cmdlets. -- [BREAKING CHANGE] Renames EnableExternalAccessRestrictionsForChatPartipants and EnableMutualFederationForChatPartipants parameters in Set-CsTenantFederationSettings cmdlet to EnableExternalAccessRestrictionsForChatParticipants and EnableMutualFederationForChatParticipants respectively. -- Adds PreventComplianceRecording and DisableAudioAnnouncementsForResourceAccounts parameters to [New|Set]-CsTeamsMeetingPolicy cmdlets. -- Adds PreventComplianceRecording parameter to [New|Set]-CsTeamsCallingPolicy cmdlets. -- Adds Communities parameter to Set-CsTeamsMessagingConfiguration cmdlet. -- Adds ReportMeeting parameter to Set-CsTeamsMeetingConfiguration cmdlet. - -- The complete release notes can be found in the below link: -https://docs.microsoft.com/MicrosoftTeams/teams-powershell-release-notes -'@ - } # End of PSData hashtable -} # End of PrivateData hashtable - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' -} - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBhyHfj5QQGmdVl -# QBsOFBOQY22zL4qBfyoo4K/wUxiakaCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIGaqaITL -# TSbWrD0sFx1F9sNk4xL+BLAS8KqKqewPtFs5MEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAPF9LUi1QBc7krqDu2hemlCVgyTDIbbDaIVNcPIL7 -# WpDZ5sB1HxvsMOOyY2OcyjHyQ+/IwwGpQ8bp6phApAeaK1HIcWVE8G3iB6cUMYC1 -# T2FUIqHQKUsxYNgX6A/U4Dk6i0u1sEQLtkxyHGwjvq9GueLNCcUMn1C8K2QmwywH -# RliUZGz8c1H0yTR+wgYC1kVEM7CIOGZdy+C0EwOIIKeRSmQ8fQIEuAa+tIeCws39 -# IaSlL7+/FFQxt3M93KIEkMH16uhO0vSgmWHgQ5f+W9mhk5J+ZeodBo8IedFDKZpM -# QZC+9Uc1f7nuo9ooExp0dVqg2s/UQPcC3s6xr85iLBmvDKGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCD9Za/sUoUqRPalVVsqebn+DKUht/gWjoZDGDgj -# gHOqVAIGagOsJ1CaGBMyMDI2MDUxNTEwMDYzOC4xNTJaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODYwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiWAxzfGzap3SQABAAAC -# JTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDFaFw0yNzA1MTcxOTQwMDFaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODYwMy0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCm8RIP0eLA46VcCPovvmqsIlN6 -# qkmz5IsHWmUU0neUqp8uGxadeo+SwWBCwQ5alZI/DNdpXfyiZLZR6XYgpRPFzepI -# l7OCDb4NtEskJCIZDkQMNwrH9YwUyu71GGigsLIxeleHtA3utoVTeHjS1b8UnwOR -# RtknKkyrUArT6ZpB2rodIcmcLcv3x3wwgYlOs0FEg5EsVrZb7LNc/nd0bXDp+HTO -# WWui8eoTVwJeLxcVP869oF8li5SU81aa2tGJ6/Jsejiz9JMW8SJXKBT2DCXMOUkC -# sGjonPZRqfvoMSIQZgtaOTyAJlrvsy0TZ78XrGqoygtQimQnbOAL4KNLSCuW5TZE -# QGTHLOQJGgggb3j5gKC778+RIPJA+n/hmHJ/x4qT/HTTPoVeMCcuBKWrQXR1+/pY -# au3Fwe0tWIyG+LWzkRr/ZNPPupcA2Yci3qn8HR9RwvQopqSNJwn2Ri6am8AQyfVV -# y/BBw0t6jpoRPjwKvuUjfCzpae6duOxQtQ1XDN9PA2yl9sDko/+AXV/SOe8ea8Qo -# Qcv3s3ErkG+Lp6hnvw6OMPian4ggNkRtgtB7ro1OiopOUXJn9Y5EO3JUAXNcuM9m -# +5My1VEuvGytgAH3uxmslTnW3YbrfazaySCSSnWkhaOZ33hgbuUQfH7n2NFEAUc/ -# cFzfmCQUikWisnJYywIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFLE40qoXTuMHX3Af -# ZUu1n8nx2h93MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAHnfc2yUyoHZbvvyVK -# FuXh5HxxHIvIaR9JWpIfITJlc/Ki03juR+vckzq3tp5fFH5LL7eIFXRIuoewMsvW -# eFrWufrrW4HhmhCwkqArfA1C0xk+HaYs2O48YSxMX9lgS1kTTIb3YsfoFdFpKurP -# f2nc2Yd4wLg+FgwmkxkeyE3MUKVna8SZeVpEjnS5ucFck4srPwK2ORAf70I23GGy -# PhqgIKZphNXhSscTAQsyIqB5GwDMdRV5LK37NfU4YmxvCYh3TFYE/Gh01Q6yJvf9 -# HxiEZpwW+oUk0gruHobg3sgIR5rfgUo8l30vUnaDYMcPAClaFMC/QbHZSaUhWXZG -# 1OOcMp0g9vYQNLDEqFX2jlquvzVSSwtHtm1KTldCjRED+kdCybcPxbPalwJigXc1 -# BsI9CitnTf0ljwb9NkZ/JVI8/D62rXXzhz4F3u0iVGzwncGaxRxHG/Xv4nTrpkOe -# epoYbNBbMWS2G1qP3Xj7pVf0+4qRyAqJ0stjQjoVOJImVPWRjz5PR3Dn6adQVMBJ -# DM6gDrj1rZTFVgCtTijqGZSGzvXpGkF3vYsyE6ZDma/kGdiUe5saeI6lH66PiWWX -# gqxt7sy2Ezv0yIjSVv+eMOT2QMUiZ6WCc7gVtAmXpfeIus+NmgFvM+Ic1X58e4I9 -# EL4ZSAidSpWW0GZTLNC02mryLjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg2MDMtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQBTb+bKOPAjCBflhzw5EXBuSWxeDqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDNRTAiGA8y -# MDI2MDUxNDIyMzc1N1oYDzIwMjYwNTE1MjIzNzU3WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsM1FAgEAMAoCAQACAhNuAgH/MAcCAQACAhqZMAoCBQDtsh7FAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBACQGrHFq24HIQvSZzwgUFLhY9ql8 -# EwpLup9G0gKKCph3dR8QSzEcVV1Y/OzF+Msa+ENOl4D87UUVkNc5XFw1Q6CsIqHh -# CPIDUPfFybsT7W67tJhNvyQReEdG0iw1oLM7okl5MfHRn6y+nRpYT2bowUySpnfb -# K9teRUUObLIsjlmLp2WX9LhfVGNi1D+WUIbNdLaF8aFD1u+GXN21ZLib5DGG9NDZ -# m7UknpkZRq4vsEVD2ckP8bo4R8W1ut9At9vKpRRZvDJ3kS3sphk38ykKV5fhZCbw -# 73ehXXnaGJQlvRAb2kZUYe3j3UF5As2vINjnFTTImf0nOD+vMLmOrattyPMxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiWA -# xzfGzap3SQABAAACJTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAkFjdaGei69ONayuJIeeODXIxZ -# 2in/8s5OJhoh1uMtlTCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFYN7oh6 -# ON3y92CmAl/lF0CYwrjWWQP6dCUxajPSHKEQMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIlgMc3xs2qd0kAAQAAAiUwIgQgn9+cCtja -# 2y1h8RrmURpNLP+u8lhnnxXGU7URsfUQQPwwDQYJKoZIhvcNAQELBQAEggIAaBSm -# Xct86dwtsqHBUOjJdZ7ce44dbP9vbh9HLBmwADED46C77j3P+xBub6zQLrQtOjps -# lm4rF1lclchSMdvQ23shE8fwF9onkJn2jL2HkkVYFIHYSGr4u3/kxj0ZuQTi7v2z -# 8shv+L6DHH9tAhiEfQuoiZtxNBv4uXFmfITrf4BFO2KPOmqR1yCEJjPzEVJQ3Wd6 -# dyjgih29KN9IUYGOezdieeg0jZga91E2zx/f9dljr64LvwNerBSbAr/HIaT8Ah7q -# c1EJooJCbX1pwP4ic2lfOQaYY5aaOKHd4R5Dtbs6y7i4c9gvHNZ3iFlM40e3GPE+ -# pLWULM12oYkV+GJx/rY9aOPefOmERdPHO9AklS5keaQdapFpgrSOZSov0og9vYsY -# kN9GigzTtUkAfRPY/e7miZbnbp/NWTU8/qf9kmwkIVf3owa9mbk/00hno9wp/O// -# 194jdXhwI7TcZnQYCtGIrzGCr/Av+Vp0JbPNiDsOBSbqGM/4ndE6ztRdicCRwx8Y -# VHQvr1D0yZkcMCInyyyMzgwaZCVGdsG3W4jmWiZMhCsB6v4L9OHuRCaKPLY3+K9j -# 1EjhpvJ+2VvfkcKH/Wtzs0nYziBiIP47w0UYJV+5lUqwm7YDzjnNv73b8LD3P0cM -# XeJiY1DqtR//ejLRWz/aoE2QNvxG2NWMtsBZiOw= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psm1 b/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psm1 deleted file mode 100644 index d7c091284060c..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/MicrosoftTeams.psm1 +++ /dev/null @@ -1,254 +0,0 @@ -#Check for the source module - Common Denominator -$moduleInfo = Get-Module -name "CommonDenominator" -#Check for the cmdlet -if($moduleInfo -ne $null) { -$dmsIdentifier = Get-command "Get-ClientType" -module "CommonDenominator" -ErrorAction SilentlyContinue -} -if($dmsIdentifier -ne $null) { -$isDms = & Get-ClientType - -if($isDms -eq "DMS") { - $env:MSTeamsContextInternal = "IsOCEModule" -} - -} -if($PSEdition -ne 'Desktop') -{ - Import-Module $('{0}\netcoreapp3.1\Microsoft.TeamsCmdlets.PowerShell.Connect.dll' -f $PSScriptRoot) - if ($env:MSTeamsContextInternal -ne "IsOCEModule") { - Import-Module $('{0}\Microsoft.Teams.PowerShell.TeamsCmdlets.psd1' -f $PSScriptRoot) - } - else - { - Import-Module $('{0}\net472\Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll' -f $PSScriptRoot) - } - Import-Module $('{0}\netcoreapp3.1\Microsoft.Teams.PowerShell.Module.dll' -f $PSScriptRoot) - -} -else -{ - Import-Module $('{0}\net472\Microsoft.TeamsCmdlets.PowerShell.Connect.dll' -f $PSScriptRoot) - [Reflection.Assembly]::Loadfrom($('{0}\net472\Newtonsoft.Json.dll' -f $PSScriptRoot)) - if ($env:MSTeamsContextInternal -ne "IsOCEModule") { - Import-Module $('{0}\Microsoft.Teams.PowerShell.TeamsCmdlets.psd1' -f $PSScriptRoot) - } - else - { - Import-Module $('{0}\net472\Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll' -f $PSScriptRoot) - } - Import-Module $('{0}\net472\Microsoft.Teams.PowerShell.Module.dll' -f $PSScriptRoot) -} -Import-Module $('{0}\Microsoft.Teams.Policy.Administration.psd1' -f $PSScriptRoot) -Import-Module $('{0}\Microsoft.Teams.ConfigAPI.Cmdlets.psd1' -f $PSScriptRoot) -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBJponIg6/1vb48 -# stXuS4z8oBYcN1DNZwuhwmt7j7P5CaCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIADBpasu -# VHSfoJTNR02qga8z3vkaj9V4PoBJXQ16dJ5RMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAeftxSmBDb9JlHz6c8OwQLsj2nVrSqNwUqNKQnmNS -# MPWheYBuBZL5lHI0uD+G/LxQRvVmX/tU0Q9ozcjDG5OGZ8xNNJn84SOeXSrqZ7Oc -# z39wbpSFWgj3se4Wsvg3mWPsfyvmgxTL4oPZd8rYWGKEa8EUl4KAjzjirFsfxX9k -# xUtxEotQw6Sswf3/xH9TqTqAbSgRzVPKF1sZ5rxe5fagiVIU7XN+DsDe2BXdsnqp -# MCBRj+y4X6qQn+8tO6PEJhXqIoBseLFTqqolCQXe9Ri2Y8VpRwHJFNM++8GqfnIw -# mlAlskIPLMxCzzD/0OsFtykMgH2f/30SonUIYuiPhR17P6GCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCBGDUx1WFYyCaV9faK4an1Zi4g/wdZyw2ypkqCW -# 0bD6cQIGagOsJ06WGBMyMDI2MDUxNTEwMDYyNy44MDNaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODYwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiWAxzfGzap3SQABAAAC -# JTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDFaFw0yNzA1MTcxOTQwMDFaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODYwMy0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCm8RIP0eLA46VcCPovvmqsIlN6 -# qkmz5IsHWmUU0neUqp8uGxadeo+SwWBCwQ5alZI/DNdpXfyiZLZR6XYgpRPFzepI -# l7OCDb4NtEskJCIZDkQMNwrH9YwUyu71GGigsLIxeleHtA3utoVTeHjS1b8UnwOR -# RtknKkyrUArT6ZpB2rodIcmcLcv3x3wwgYlOs0FEg5EsVrZb7LNc/nd0bXDp+HTO -# WWui8eoTVwJeLxcVP869oF8li5SU81aa2tGJ6/Jsejiz9JMW8SJXKBT2DCXMOUkC -# sGjonPZRqfvoMSIQZgtaOTyAJlrvsy0TZ78XrGqoygtQimQnbOAL4KNLSCuW5TZE -# QGTHLOQJGgggb3j5gKC778+RIPJA+n/hmHJ/x4qT/HTTPoVeMCcuBKWrQXR1+/pY -# au3Fwe0tWIyG+LWzkRr/ZNPPupcA2Yci3qn8HR9RwvQopqSNJwn2Ri6am8AQyfVV -# y/BBw0t6jpoRPjwKvuUjfCzpae6duOxQtQ1XDN9PA2yl9sDko/+AXV/SOe8ea8Qo -# Qcv3s3ErkG+Lp6hnvw6OMPian4ggNkRtgtB7ro1OiopOUXJn9Y5EO3JUAXNcuM9m -# +5My1VEuvGytgAH3uxmslTnW3YbrfazaySCSSnWkhaOZ33hgbuUQfH7n2NFEAUc/ -# cFzfmCQUikWisnJYywIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFLE40qoXTuMHX3Af -# ZUu1n8nx2h93MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAHnfc2yUyoHZbvvyVK -# FuXh5HxxHIvIaR9JWpIfITJlc/Ki03juR+vckzq3tp5fFH5LL7eIFXRIuoewMsvW -# eFrWufrrW4HhmhCwkqArfA1C0xk+HaYs2O48YSxMX9lgS1kTTIb3YsfoFdFpKurP -# f2nc2Yd4wLg+FgwmkxkeyE3MUKVna8SZeVpEjnS5ucFck4srPwK2ORAf70I23GGy -# PhqgIKZphNXhSscTAQsyIqB5GwDMdRV5LK37NfU4YmxvCYh3TFYE/Gh01Q6yJvf9 -# HxiEZpwW+oUk0gruHobg3sgIR5rfgUo8l30vUnaDYMcPAClaFMC/QbHZSaUhWXZG -# 1OOcMp0g9vYQNLDEqFX2jlquvzVSSwtHtm1KTldCjRED+kdCybcPxbPalwJigXc1 -# BsI9CitnTf0ljwb9NkZ/JVI8/D62rXXzhz4F3u0iVGzwncGaxRxHG/Xv4nTrpkOe -# epoYbNBbMWS2G1qP3Xj7pVf0+4qRyAqJ0stjQjoVOJImVPWRjz5PR3Dn6adQVMBJ -# DM6gDrj1rZTFVgCtTijqGZSGzvXpGkF3vYsyE6ZDma/kGdiUe5saeI6lH66PiWWX -# gqxt7sy2Ezv0yIjSVv+eMOT2QMUiZ6WCc7gVtAmXpfeIus+NmgFvM+Ic1X58e4I9 -# EL4ZSAidSpWW0GZTLNC02mryLjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg2MDMtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQBTb+bKOPAjCBflhzw5EXBuSWxeDqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDNRTAiGA8y -# MDI2MDUxNDIyMzc1N1oYDzIwMjYwNTE1MjIzNzU3WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsM1FAgEAMAoCAQACAhNuAgH/MAcCAQACAhqZMAoCBQDtsh7FAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBACQGrHFq24HIQvSZzwgUFLhY9ql8 -# EwpLup9G0gKKCph3dR8QSzEcVV1Y/OzF+Msa+ENOl4D87UUVkNc5XFw1Q6CsIqHh -# CPIDUPfFybsT7W67tJhNvyQReEdG0iw1oLM7okl5MfHRn6y+nRpYT2bowUySpnfb -# K9teRUUObLIsjlmLp2WX9LhfVGNi1D+WUIbNdLaF8aFD1u+GXN21ZLib5DGG9NDZ -# m7UknpkZRq4vsEVD2ckP8bo4R8W1ut9At9vKpRRZvDJ3kS3sphk38ykKV5fhZCbw -# 73ehXXnaGJQlvRAb2kZUYe3j3UF5As2vINjnFTTImf0nOD+vMLmOrattyPMxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiWA -# xzfGzap3SQABAAACJTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCB+WoQ5J5a7W8Wgqd2CIPQD/9vo -# CWgWB1iDXpzsTCw1NjCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFYN7oh6 -# ON3y92CmAl/lF0CYwrjWWQP6dCUxajPSHKEQMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIlgMc3xs2qd0kAAQAAAiUwIgQgn9+cCtja -# 2y1h8RrmURpNLP+u8lhnnxXGU7URsfUQQPwwDQYJKoZIhvcNAQELBQAEggIATncT -# /XhlHZC3xe4Ge5+3H82inCLcV2FN9r51f+vJ5YoDe49R4dwJ4KxwT6YTCHsRfBbu -# 6xdbs0pPRLqAbafbJWjYaLNmcHnDpETmcc9cV2wWwUZYv1OPlC4I9JBiaZjG2/11 -# FSeo7QJzSBvJAdY4yBP85Mb0ChHyv2+fk0txFunXx7YktDNtLva7dHzA1YEL1CKo -# vXTEZiZuIlVAW0CaKjluVifITsagIgKxHqhVhrg//UamU4ny+MqLa2EW6ZfbGORw -# 5nyXDSf2ncYgJoRp4kg3+GaCOVXLypZOQkUZK/XZETN5l0L1e4VkekJn7J1+P7Hr -# b0GkIHqualZP2Pa3mCMaA8kSGychuS6XIJQ9bbkW50PSt9rQtkqdF6lvImHxnXkd -# Fjw47O6Hd59cKTw7HYHMV2Y6BqdOr47dE2L27796F2UbBvU8DdK8/SqSqbvW0EYy -# 0FYmvPOnIHplYjiKFkXfImsQUWzkcWoejXrITzAkQxxtwFpKs1dEryeTKqbvsIan -# imSOwYHKCBc2q8UnNoAyhu2Eqbv3TxC3lsg219gkNG6lKPnz0ZyQzE6LAnXBOGd6 -# 0Zs2sQ+8x6UOkUxe+C39tcJk7jKXoX7R7VSYlySP73Fo2nT+bXbjLw0tWRs57Nao -# DvJrg8aaWh3xURak18z+eae89rZIDxUIkOrEkhA= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/PSGetModuleInfo.xml b/Modules/MicrosoftTeams/7.8.0/PSGetModuleInfo.xml deleted file mode 100644 index 234555c5b7e80..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/PSGetModuleInfo.xml +++ /dev/null @@ -1,1595 +0,0 @@ - - - - Microsoft.PowerShell.Commands.PSRepositoryItemInfo - System.Management.Automation.PSCustomObject - System.Object - - - MicrosoftTeams - 7.8.0 - Module - Microsoft Teams cmdlets module for Windows PowerShell and PowerShell Core._x000D__x000A__x000D__x000A_For more information, please visit the following: https://docs.microsoft.com/MicrosoftTeams/teams-powershell-overview - Microsoft Corporation - MicrosoftTeams - Microsoft Corporation. All rights reserved. -
2026-05-18T04:50:00+08:00
- -
2026-06-12T10:46:13.9911785+08:00
- - - - Microsoft.PowerShell.Commands.DisplayHintType - System.Enum - System.ValueType - System.Object - - DateTime - 2 - - -
- - https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/master/teams/LICENSE.txt - https://github.com/MicrosoftDocs/office-docs-powershell/tree/master/teams - https://statics.teams.microsoft.com/evergreen-assets/apps/teamscmdlets_largeimage.png - - - System.Object[] - System.Array - System.Object - - - Office365 - MicrosoftTeams - Teams - PSModule - PSEdition_Core - PSEdition_Desktop - - - - - System.Collections.Hashtable - System.Object - - - - Function - - - - Clear-CsOnlineTelephoneNumberOrder - Complete-CsOnlineTelephoneNumberOrder - Disable-CsOnlineSipDomain - Enable-CsOnlineSipDomain - Export-CsAcquiredPhoneNumber - Export-CsAutoAttendantHolidays - Export-CsOnlineAudioFile - Find-CsGroup - Find-CsOnlineApplicationInstance - Get-CsApplicationAccessPolicy - Get-CsApplicationMeetingConfiguration - Get-CsAutoAttendant - Get-CsAutoAttendantHolidays - Get-CsAutoAttendantStatus - Get-CsAutoAttendantSupportedLanguage - Get-CsAutoAttendantSupportedTimeZone - Get-CsAutoAttendantTenantInformation - Get-CsAutoRecordingTemplate - Get-CsBatchPolicyAssignmentOperation - Get-CsCallingLineIdentity - Get-CsCallQueue - Get-CsCloudCallDataConnection - Get-CsEffectiveTenantDialPlan - Get-CsExportAcquiredPhoneNumberStatus - Get-CsGroupPolicyAssignment - Get-CsHybridTelephoneNumber - Get-CsInboundBlockedNumberPattern - Get-CsInboundExemptNumberPattern - Get-CsMainlineAttendantAppointmentBookingFlow - Get-CsMainlineAttendantFlow - Get-CsMainlineAttendantSupportedLanguages - Get-CsMainlineAttendantSupportedVoices - Get-CsMainlineAttendantTenantInformation - Get-CsMainlineAttendantQuestionAnswerFlow - Get-CsMeetingMigrationStatus - Get-CsOnlineApplicationInstance - Get-CsOnlineApplicationInstanceAssociation - Get-CsOnlineApplicationInstanceAssociationStatus - Get-CsOnlineAudioConferencingRoutingPolicy - Get-CsOnlineAudioFile - Get-CsOnlineDialInConferencingBridge - Get-CsOnlineDialInConferencingLanguagesSupported - Get-CsOnlineDialinConferencingPolicy - Get-CsOnlineDialInConferencingServiceNumber - Get-CsOnlineDialinConferencingTenantConfiguration - Get-CsOnlineDialInConferencingTenantSettings - Get-CsOnlineDialInConferencingUser - Get-CsOnlineDialOutPolicy - Get-CsOnlineDirectoryTenant - Get-CsOnlineEnhancedEmergencyServiceDisclaimer - Get-CsOnlineLisCivicAddress - Get-CsOnlineLisLocation - Get-CsOnlineLisPort - Get-CsOnlineLisSubnet - Get-CsOnlineLisSwitch - Get-CsOnlineLisWirelessAccessPoint - Get-CsOnlinePSTNGateway - Get-CsOnlinePstnUsage - Get-CsOnlineSchedule - Get-CsOnlineSipDomain - Get-CsOnlineTelephoneNumber - Get-CsOnlineTelephoneNumberCountry - Get-CsOnlineTelephoneNumberOrder - Get-CsOnlineTelephoneNumberType - Get-CsOnlineUser - Get-CsOnlineVoicemailUserSettings - Get-CsOnlineVoiceRoute - Get-CsOnlineVoiceRoutingPolicy - Get-CsOnlineVoiceUser - Get-CsPhoneNumberAssignment - Get-CsPhoneNumberPolicyAssignment - Get-CsPhoneNumberTag - Get-CsPhoneNumberTenantConfiguration - Get-CsPolicyPackage - Get-CsSdgBulkSignInRequestStatus - Get-CsSDGBulkSignInRequestsSummary - Get-CsTeamsAudioConferencingPolicy - Get-CsTeamsCallParkPolicy - Get-CsTeamsCortanaPolicy - Get-CsTeamsEmergencyCallRoutingPolicy - Get-CsTeamsEnhancedEncryptionPolicy - Get-CsTeamsGuestCallingConfiguration - Get-CsTeamsGuestMessagingConfiguration - Get-CsTeamsIPPhonePolicy - Get-CsTeamsMediaLoggingPolicy - Get-CsTeamsMeetingBroadcastConfiguration - Get-CsTeamsMeetingBroadcastPolicy - Get-CsTeamsMigrationConfiguration - Get-CsTeamsNetworkRoamingPolicy - Get-CsTeamsRoomVideoTeleConferencingPolicy - Get-CsTeamsSettingsCustomApp - Get-CsTeamsShiftsAppPolicy - Get-CsTeamsShiftsConnectionConnector - Get-CsTeamsShiftsConnectionErrorReport - Get-CsTeamsShiftsConnection - Get-CsTeamsShiftsConnectionInstance - Get-CsTeamsShiftsConnectionOperation - Get-CsTeamsShiftsConnectionSyncResult - Get-CsTeamsShiftsConnectionTeamMap - Get-CsTeamsShiftsConnectionWfmTeam - Get-CsTeamsShiftsConnectionWfmUser - Get-CsTeamsSurvivableBranchAppliance - Get-CsTeamsSurvivableBranchAppliancePolicy - Get-CsTeamsTargetingPolicy - Get-CsTeamsTranslationRule - Get-CsTeamsUnassignedNumberTreatment - Get-CsTeamsUpgradePolicy - Get-CsTeamsVdiPolicy - Get-CsTeamsVideoInteropServicePolicy - Get-CsTeamsWorkLoadPolicy - Get-CsTeamTemplate - Get-CsTeamTemplateList - Get-CsTenant - Get-CsTenantBlockedCallingNumbers - Get-CsTenantDialPlan - Get-CsTenantFederationConfiguration - Get-CsTenantLicensingConfiguration - Get-CsTenantMigrationConfiguration - Get-CsTenantNetworkConfiguration - Get-CsTenantNetworkRegion - Get-CsTenantNetworkSubnet - Get-CsTenantTrustedIPAddress - Get-CsUserCallingSettings - Get-CsUserPolicyAssignment - Get-CsUserPolicyPackage - Get-CsUserPolicyPackageRecommendation - Get-CsVideoInteropServiceProvider - Get-CsAgent - Get-CsAiAgents - Grant-CsApplicationAccessPolicy - Get-CsComplianceRecordingForCallQueueTemplate - Get-CsSharedCallQueueHistoryTemplate - Get-CsTagsTemplate - Get-CsSharedCallHistoryTemplate - Grant-CsCallingLineIdentity - Grant-CsDialoutPolicy - Grant-CsGroupPolicyPackageAssignment - Grant-CsOnlineAudioConferencingRoutingPolicy - Grant-CsOnlineVoicemailPolicy - Grant-CsOnlineVoiceRoutingPolicy - Grant-CsTeamsAudioConferencingPolicy - Grant-CsTeamsCallHoldPolicy - Grant-CsTeamsCallParkPolicy - Grant-CsTeamsChannelsPolicy - Grant-CsTeamsCortanaPolicy - Grant-CsTeamsEmergencyCallingPolicy - Grant-CsTeamsEmergencyCallRoutingPolicy - Grant-CsTeamsEnhancedEncryptionPolicy - Grant-CsTeamsFeedbackPolicy - Grant-CsTeamsIPPhonePolicy - Grant-CsTeamsMediaLoggingPolicy - Grant-CsTeamsMeetingBroadcastPolicy - Grant-CsTeamsMeetingPolicy - Grant-CsTeamsMessagingPolicy - Grant-CsTeamsRoomVideoTeleConferencingPolicy - Grant-CsTeamsSurvivableBranchAppliancePolicy - Grant-CsTeamsUpdateManagementPolicy - Grant-CsTeamsUpgradePolicy - Grant-CsTeamsVideoInteropServicePolicy - Grant-CsTeamsVoiceApplicationsPolicy - Grant-CsTeamsWorkLoadPolicy - Grant-CsTenantDialPlan - Grant-CsUserPolicyPackage - Grant-CsTeamsComplianceRecordingPolicy - Import-CsAutoAttendantHolidays - Import-CsOnlineAudioFile - Invoke-CsInternalPSTelemetry - Move-CsInternalHelper - New-CsAgent - New-CsApplicationAccessPolicy - New-CsAutoAttendant - New-CsAutoAttendantCallableEntity - New-CsAutoAttendantCallFlow - New-CsAutoAttendantCallHandlingAssociation - New-CsAutoAttendantDialScope - New-CsAutoAttendantMenu - New-CsAutoAttendantMenuOption - New-CsAutoAttendantPrompt - New-CsAutoRecordingTemplate - New-CsBatchPolicyAssignmentOperation - New-CsBatchPolicyPackageAssignmentOperation - New-CsCallingLineIdentity - New-CsCallQueue - New-CsCloudCallDataConnection - New-CsCustomPolicyPackage - New-CsEdgeAllowAllKnownDomains - New-CsEdgeAllowList - New-CsEdgeDomainPattern - New-CsGroupPolicyAssignment - New-CsHybridTelephoneNumber - New-CsInboundBlockedNumberPattern - New-CsInboundExemptNumberPattern - New-CsMainlineAttendantAppointmentBookingFlow - New-CsMainlineAttendantQuestionAnswerFlow - New-CsOnlineApplicationInstance - New-CsOnlineApplicationInstanceAssociation - New-CsOnlineAudioConferencingRoutingPolicy - New-CsOnlineDateTimeRange - New-CsOnlineLisCivicAddress - New-CsOnlineLisLocation - New-CsOnlinePSTNGateway - New-CsOnlineSchedule - New-CsOnlineTelephoneNumberOrder - New-CsOnlineTimeRange - New-CsOnlineVoiceRoute - New-CsOnlineVoiceRoutingPolicy - New-CsSdgBulkSignInRequest - New-CsTeamsAudioConferencingPolicy - New-CsTeamsCallParkPolicy - New-CsTeamsCortanaPolicy - New-CsTeamsEmergencyCallRoutingPolicy - New-CsTeamsEmergencyNumber - New-CsTeamsEnhancedEncryptionPolicy - New-CsTeamsIPPhonePolicy - New-CsTeamsMeetingBroadcastPolicy - New-CsTeamsNetworkRoamingPolicy - New-CsTeamsRoomVideoTeleConferencingPolicy - New-CsTeamsShiftsConnectionBatchTeamMap - New-CsTeamsShiftsConnection - New-CsTeamsShiftsConnectionInstance - New-CsTeamsSurvivableBranchAppliance - New-CsTeamsSurvivableBranchAppliancePolicy - New-CsTeamsTranslationRule - New-CsTeamsUnassignedNumberTreatment - New-CsTeamsVdiPolicy - New-CsTeamsWorkLoadPolicy - New-CsTeamTemplate - New-CsTenantDialPlan - New-CsTenantNetworkRegion - New-CsTenantNetworkSite - New-CsTenantNetworkSubnet - New-CsTenantTrustedIPAddress - New-CsUserCallingDelegate - New-CsVideoInteropServiceProvider - New-CsVoiceNormalizationRule - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - New-CsOnlineTelephoneNumberReleaseOrder - New-CsComplianceRecordingForCallQueueTemplate - New-CsPhoneNumberBulkUpdateTagsOrder - New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder - New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder - New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder - New-CsPhoneNumberBulkUpdateLocationIdOrder - New-CsTagsTemplate - New-CsTag - New-CsSharedCallQueueHistoryTemplate - New-CsSharedCallHistoryTemplate - Register-CsOnlineDialInConferencingServiceNumber - Remove-CsAgent - Remove-CsApplicationAccessPolicy - Remove-CsAutoAttendant - Remove-CsAutoRecordingTemplate - Remove-CsCallingLineIdentity - Remove-CsCallQueue - Remove-CsCustomPolicyPackage - Remove-CsGroupPolicyAssignment - Remove-CsHybridTelephoneNumber - Remove-CsInboundBlockedNumberPattern - Remove-CsInboundExemptNumberPattern - Remove-CsMainlineAttendantAppointmentBookingFlow - Remove-CsMainlineAttendantQuestionAnswerFlow - Remove-CsOnlineApplicationInstanceAssociation - Remove-CsOnlineAudioConferencingRoutingPolicy - Remove-CsOnlineAudioFile - Remove-CsOnlineDialInConferencingTenantSettings - Remove-CsOnlineLisCivicAddress - Remove-CsOnlineLisLocation - Remove-CsOnlineLisPort - Remove-CsOnlineLisSubnet - Remove-CsOnlineLisSwitch - Remove-CsOnlineLisWirelessAccessPoint - Remove-CsOnlinePSTNGateway - Remove-CsOnlineSchedule - Remove-CsOnlineTelephoneNumber - Remove-CsOnlineVoiceRoute - Remove-CsOnlineVoiceRoutingPolicy - Remove-CsPhoneNumberAssignment - Remove-CsPhoneNumberAssignmentBlock - Remove-CsPhoneNumberSmsActivation - Remove-CsPhoneNumberTag - Remove-CsPhoneNumberTenantConfiguration - Remove-CsTeamsAudioConferencingPolicy - Remove-CsTeamsCallParkPolicy - Remove-CsTeamsCortanaPolicy - Remove-CsTeamsEmergencyCallRoutingPolicy - Remove-CsTeamsEnhancedEncryptionPolicy - Remove-CsTeamsIPPhonePolicy - Remove-CsTeamsMeetingBroadcastPolicy - Remove-CsTeamsNetworkRoamingPolicy - Remove-CsTeamsRoomVideoTeleConferencingPolicy - Remove-CsTeamsShiftsConnection - Remove-CsTeamsShiftsConnectionInstance - Remove-CsTeamsShiftsConnectionTeamMap - Remove-CsTeamsShiftsScheduleRecord - Remove-CsTeamsSurvivableBranchAppliance - Remove-CsTeamsSurvivableBranchAppliancePolicy - Remove-CsTeamsTargetingPolicy - Remove-CsTeamsTranslationRule - Remove-CsTeamsUnassignedNumberTreatment - Remove-CsTeamsVdiPolicy - Remove-CsTeamsWorkLoadPolicy - Remove-CsTeamTemplate - Remove-CsTenantDialPlan - Remove-CsTenantNetworkRegion - Remove-CsTenantNetworkSite - Remove-CsTenantNetworkSubnet - Remove-CsTenantTrustedIPAddress - Remove-CsUserCallingDelegate - Remove-CsUserLicenseGracePeriod - Remove-CsVideoInteropServiceProvider - Remove-CsComplianceRecordingForCallQueueTemplate - Remove-CsTagsTemplate - Remove-CsSharedCallQueueHistoryTemplate - Remove-CsSharedCallHistoryTemplate - Set-CsAgent - Set-CsApplicationAccessPolicy - Set-CsApplicationMeetingConfiguration - Set-CsAutoAttendant - Set-CsAutoRecordingTemplate - Set-CsCallingLineIdentity - Set-CsCallQueue - Set-CsInboundBlockedNumberPattern - Set-CsInboundExemptNumberPattern - Set-CsMainlineAttendantAppointmentBookingFlow - Set-CsMainlineAttendantQuestionAnswerFlow - Set-CsOnlineApplicationInstance - Set-CsOnlineAudioConferencingRoutingPolicy - Set-CsOnlineDialInConferencingBridge - Set-CsOnlineDialInConferencingServiceNumber - Set-CsOnlineDialInConferencingTenantSettings - Set-CsOnlineDialInConferencingUser - Set-CsOnlineDialInConferencingUserDefaultNumber - Set-CsOnlineEnhancedEmergencyServiceDisclaimer - Set-CsOnlineLisCivicAddress - Set-CsOnlineLisLocation - Set-CsOnlineLisPort - Set-CsOnlineLisSubnet - Set-CsOnlineLisSwitch - Set-CsOnlineLisWirelessAccessPoint - Set-CsOnlinePSTNGateway - Set-CsOnlinePstnUsage - Set-CsOnlineSchedule - Set-CsOnlineVoiceApplicationInstance - Set-CsOnlineVoicemailUserSettings - Set-CsOnlineVoiceRoute - Set-CsOnlineVoiceRoutingPolicy - Set-CsOnlineVoiceUser - Set-CsPhoneNumberAssignment - Set-CsPhoneNumberAssignmentBlock - Set-CsPhoneNumberPolicyAssignment - Set-CsPhoneNumberSmsActivation - Set-CsPhoneNumberTag - Set-CsPhoneNumberTenantConfiguration - Set-CsTeamsAudioConferencingPolicy - Set-CsTeamsCallParkPolicy - Set-CsTeamsCortanaPolicy - Set-CsTeamsEmergencyCallRoutingPolicy - Set-CsTeamsEnhancedEncryptionPolicy - Set-CsTeamsGuestCallingConfiguration - Set-CsTeamsGuestMessagingConfiguration - Set-CsTeamsIPPhonePolicy - Set-CsTeamsMeetingBroadcastConfiguration - Set-CsTeamsMeetingBroadcastPolicy - Set-CsTeamsMigrationConfiguration - Set-CsTeamsNetworkRoamingPolicy - Set-CsTeamsRoomVideoTeleConferencingPolicy - Set-CsTeamsSettingsCustomApp - Set-CsTeamsShiftsAppPolicy - Set-CsTeamsShiftsConnection - Set-CsTeamsShiftsConnectionInstance - Set-CsTeamsSurvivableBranchAppliance - Set-CsTeamsSurvivableBranchAppliancePolicy - Set-CsTeamsTargetingPolicy - Set-CsTeamsTranslationRule - Set-CsTeamsUnassignedNumberTreatment - Set-CsTeamsVdiPolicy - Set-CsTeamsWorkLoadPolicy - Set-CsTenantBlockedCallingNumbers - Set-CsTenantDialPlan - Set-CsTenantFederationConfiguration - Set-CsTenantMigrationConfiguration - Set-CsTenantNetworkRegion - Set-CsTenantNetworkSite - Set-CsTenantNetworkSubnet - Set-CsTenantTrustedIPAddress - Set-CsUser - Set-CsUserCallingDelegate - Set-CsUserCallingSettings - Set-CsVideoInteropServiceProvider - Set-CsComplianceRecordingForCallQueueTemplate - Set-CsTagsTemplate - Set-CsSharedCallQueueHistoryTemplate - Set-CsSharedCallHistoryTemplate - Start-CsExMeetingMigration - Sync-CsOnlineApplicationInstance - Test-CsEffectiveTenantDialPlan - Test-CsInboundBlockedNumberPattern - Test-CsTeamsShiftsConnectionValidate - Test-CsTeamsTranslationRule - Test-CsTeamsUnassignedNumberTreatment - Test-CsVoiceNormalizationRule - Unregister-CsOnlineDialInConferencingServiceNumber - Update-CsAutoAttendant - Update-CsCustomPolicyPackage - Update-CsPhoneNumberTag - Update-CsTeamsShiftsConnection - Update-CsTeamsShiftsConnectionInstance - Update-CsTeamTemplate - New-CsBatchTeamsDeployment - Get-CsBatchTeamsDeploymentStatus - Get-CsPersonalAttendantSettings - Set-CsPersonalAttendantSettings - Set-CsOCEContext - Clear-CsOCEContext - Get-CsRegionContext - Set-CsRegionContext - Clear-CsRegionContext - Get-CsMeetingMigrationTransactionHistory - Get-CsMasVersionedSchemaData - Get-CsMasObjectChangelog - Get-CsBusinessVoiceDirectoryDiagnosticData - Get-CsCloudTenant - Get-CsCloudUser - Get-CsHostingProvider - Set-CsTenantUserBackfill - Invoke-CsCustomHandlerNgtprov - Invoke-CsCustomHandlerCallBackNgtprov - New-CsSdgDeviceTaggingRequest - Get-CsMoveTenantServiceInstanceTaskStatus - Move-CsTenantServiceInstance - Move-CsTenantCrossRegion - Invoke-CsDirectObjectSync - New-CsSDGDeviceTransferRequest - Get-CsAadTenant - Get-CsAadUser - Clear-CsCacheOperation - Move-CsAvsTenantPartition - Invoke-CsMsodsSync - Get-CsUssUserSettings - Set-CsUssUserSettings - Invoke-CsRehomeuser - Set-CsNotifyCache - - - - - Workflow - - - - - - - Cmdlet - - - - Add-TeamChannelUser - Add-TeamUser - Connect-MicrosoftTeams - Disconnect-MicrosoftTeams - Set-TeamsEnvironmentConfig - Clear-TeamsEnvironmentConfig - Get-AssociatedTeam - Get-MultiGeoRegion - Get-Operation - Get-SharedWithTeam - Get-SharedWithTeamUser - Get-Team - Get-TeamAllChannel - Get-TeamChannel - Get-TeamChannelUser - Get-TeamIncomingChannel - Get-TeamsApp - Get-TeamsArtifacts - Get-TeamUser - Get-M365TeamsApp - Get-AllM365TeamsApps - Get-AIGeneratedKnowledgeContainer - Get-M365UnifiedTenantSettings - Get-M365UnifiedCustomPendingApps - Get-CsTeamsAcsFederationConfiguration - Get-CsTeamsMessagingPolicy - Get-CsTeamsMeetingPolicy - Get-CsOnlineVoicemailPolicy - Get-CsOnlineVoicemailValidationConfiguration - Get-CsTeamsAIPolicy - Get-CsTeamsFeedbackPolicy - Get-CsTeamsUpdateManagementPolicy - Get-CsTeamsChannelsPolicy - Get-CsTeamsMeetingBrandingPolicy - Get-CsTeamsEmergencyCallingPolicy - Get-CsTeamsCallHoldPolicy - Get-CsTeamsMessagingConfiguration - Get-CsTeamsVoiceApplicationsPolicy - Get-CsTeamsEventsPolicy - Get-CsTeamsExternalAccessConfiguration - Get-CsTeamsFilesPolicy - Get-CsTeamsCallingPolicy - Get-CsTeamsClientConfiguration - Get-CsExternalAccessPolicy - Get-CsTeamsAppPermissionPolicy - Get-CsTeamsAppSetupPolicy - Get-CsTeamsFirstPartyMeetingTemplateConfiguration - Get-CsTeamsMeetingTemplatePermissionPolicy - Get-CsLocationPolicy - Get-CsTeamsShiftsPolicy - Get-CsTenantNetworkSite - Get-CsTeamsCarrierEmergencyCallRoutingPolicy - Get-CsTeamsMeetingTemplateConfiguration - Get-CsTeamsVirtualAppointmentsPolicy - Get-CsTeamsSharedCallingRoutingPolicy - Get-CsTeamsTemplatePermissionPolicy - Get-CsTeamsComplianceRecordingPolicy - Get-CsTeamsComplianceRecordingApplication - Get-CsTeamsEducationAssignmentsAppPolicy - Get-CsTeamsUpgradeConfiguration - Get-CsTeamsAudioConferencingCustomPromptsConfiguration - Get-CsTeamsSipDevicesConfiguration - Get-CsTeamsCustomBannerText - Get-CsTeamsGuestMeetingConfiguration - Get-CsTeamsVdiPolicy - Get-CsTeamsMediaConnectivityPolicy - Get-CsTeamsMeetingConfiguration - Get-CsTeamsMobilityPolicy - Get-CsTeamsWorkLocationDetectionPolicy - Get-CsTeamsRecordingRollOutPolicy - Get-CsTeamsRemoteLogCollectionConfiguration - Get-CsTeamsRemoteLogCollectionDevice - Get-CsTeamsRecordingAndTranscriptionCustomMessage - Get-CsTeamsEducationConfiguration - Get-CsTeamsBYODAndDesksPolicy - Get-CsTeamsNotificationAndFeedsPolicy - Get-CsTeamsMultiTenantOrganizationConfiguration - Get-CsTeamsPersonalAttendantPolicy - Get-CsPrivacyConfiguration - Get-DirectToGroupAssignmentsMigrationStatus - Get-GroupAssignmentRecommendationsPerPolicyName - Get-GroupAssignmentRecommendationsPerPolicyType - Get-GroupPolicyAssignmentConflict - Grant-CsTeamsAIPolicy - Grant-CsTeamsMeetingBrandingPolicy - Grant-CsExternalAccessPolicy - Grant-CsTeamsCallingPolicy - Grant-CsTeamsAppPermissionPolicy - Grant-CsTeamsAppSetupPolicy - Grant-CsTeamsEventsPolicy - Grant-CsTeamsFilesPolicy - Grant-CsTeamsMediaConnectivityPolicy - Grant-CsTeamsMeetingTemplatePermissionPolicy - Grant-CsTeamsCarrierEmergencyCallRoutingPolicy - Grant-CsTeamsVirtualAppointmentsPolicy - Grant-CsTeamsSharedCallingRoutingPolicy - Grant-CsTeamsShiftsPolicy - Grant-CsTeamsRecordingRollOutPolicy - Grant-CsTeamsVdiPolicy - Grant-CsTeamsWorkLocationDetectionPolicy - Grant-CsTeamsBYODAndDesksPolicy - Grant-CsTeamsPersonalAttendantPolicy - Grant-CsTeamsMobilityPolicy - Invoke-ClearDirectToGroupAssignmentMigration - Invoke-StartDirectToGroupAssignmentMigration - New-Team - New-TeamChannel - New-TeamsApp - New-CsTeamsAIPolicy - New-CsTeamsMessagingPolicy - New-CsTeamsMeetingPolicy - New-CsOnlineVoicemailPolicy - New-CsTeamsFeedbackPolicy - New-CsTeamsUpdateManagementPolicy - New-CsTeamsChannelsPolicy - New-CsTeamsFilesPolicy - New-CsTeamsMediaConnectivityPolicy - New-CsTeamsMeetingBrandingTheme - New-CsTeamsMeetingBackgroundImage - New-CsTeamsMobilityPolicy - New-CsTeamsNdiAssuranceSlate - New-CsTeamsMeetingBrandingPolicy - New-CsTeamsEmergencyCallingPolicy - New-CsTeamsEmergencyCallingExtendedNotification - New-CsTeamsCallHoldPolicy - New-CsTeamsVoiceApplicationsPolicy - New-CsTeamsEventsPolicy - New-CsTeamsCallingPolicy - New-CsExternalAccessPolicy - New-CsTeamsAppPermissionPolicy - New-CsTeamsAppSetupPolicy - New-CsTeamsMeetingTemplatePermissionPolicy - New-CsLocationPolicy - New-CsTeamsCarrierEmergencyCallRoutingPolicy - New-CsTeamsHiddenMeetingTemplate - New-CsTeamsVirtualAppointmentsPolicy - New-CsTeamsSharedCallingRoutingPolicy - New-CsTeamsHiddenTemplate - New-CsTeamsTemplatePermissionPolicy - New-CsTeamsComplianceRecordingPolicy - New-CsTeamsComplianceRecordingApplication - New-CsTeamsComplianceRecordingPairedApplication - New-CsTeamsWorkLocationDetectionPolicy - New-CsTeamsRecordingRollOutPolicy - New-CsTeamsRemoteLogCollectionDevice - New-CsTeamsRecordingAndTranscriptionCustomMessage - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - New-CsCustomPrompt - New-CsCustomPromptPackage - New-CsTeamsShiftsPolicy - New-CsTeamsCustomBannerText - New-CsTeamsVdiPolicy - New-CsTeamsBYODAndDesksPolicy - New-CsTeamsPersonalAttendantPolicy - Remove-AIGeneratedKnowledge - Remove-SharedWithTeam - Remove-Team - Remove-TeamChannel - Remove-TeamChannelUser - Remove-TeamsApp - Remove-TeamUser - Remove-CsTeamsAIPolicy - Remove-CsTeamsMessagingPolicy - Remove-CsTeamsMeetingPolicy - Remove-CsOnlineVoicemailPolicy - Remove-CsTeamsFeedbackPolicy - Remove-CsTeamsFilesPolicy - Remove-CsTeamsUpdateManagementPolicy - Remove-CsTeamsChannelsPolicy - Remove-CsTeamsMediaConnectivityPolicy - Remove-CsTeamsMeetingBrandingPolicy - Remove-CsTeamsEmergencyCallingPolicy - Remove-CsTeamsCallHoldPolicy - Remove-CsTeamsVoiceApplicationsPolicy - Remove-CsTeamsEventsPolicy - Remove-CsTeamsCallingPolicy - Remove-CsExternalAccessPolicy - Remove-CsTeamsAppPermissionPolicy - Remove-CsTeamsAppSetupPolicy - Remove-CsTeamsMeetingTemplatePermissionPolicy - Remove-CsTeamsMobilityPolicy - Remove-CsLocationPolicy - Remove-CsTeamsCarrierEmergencyCallRoutingPolicy - Remove-CsTeamsVirtualAppointmentsPolicy - Remove-CsTeamsSharedCallingRoutingPolicy - Remove-CsTeamsTemplatePermissionPolicy - Remove-CsTeamsComplianceRecordingPolicy - Remove-CsTeamsComplianceRecordingApplication - Remove-CsTeamsShiftsPolicy - Remove-CsTeamsCustomBannerText - Remove-CsTeamsVdiPolicy - Remove-CsTeamsWorkLocationDetectionPolicy - Remove-CsTeamsRecordingRollOutPolicy - Remove-CsTeamsRemoteLogCollectionDevice - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - Remove-CsTeamsBYODAndDesksPolicy - Remove-CsTeamsNotificationAndFeedsPolicy - Remove-CsTeamsPersonalAttendantPolicy - Set-Team - Set-TeamArchivedState - Set-TeamChannel - Set-TeamPicture - Set-TeamsApp - Set-CsTeamsAcsFederationConfiguration - Set-CsTeamsAIPolicy - Set-CsTeamsMessagingPolicy - Set-CsTeamsMeetingPolicy - Set-CsOnlineVoicemailPolicy - Set-CsTeamsFilesPolicy - Set-CsOnlineVoicemailValidationConfiguration - Set-CsTeamsFeedbackPolicy - Set-CsTeamsUpdateManagementPolicy - Set-CsTeamsChannelsPolicy - Set-CsTeamsMediaConnectivityPolicy - Set-CsTeamsMeetingBrandingPolicy - Set-CsTeamsEmergencyCallingPolicy - Set-CsTeamsEducationConfiguration - Set-CsTeamsCallHoldPolicy - Set-CsTeamsMessagingConfiguration - Set-CsTeamsVoiceApplicationsPolicy - Set-CsTeamsEventsPolicy - Set-CsTeamsExternalAccessConfiguration - Set-CsTeamsCallingPolicy - Set-CsTeamsClientConfiguration - Set-CsExternalAccessPolicy - Set-CsTeamsAppPermissionPolicy - Set-CsTeamsAppSetupPolicy - Set-CsTeamsFirstPartyMeetingTemplateConfiguration - Set-CsTeamsMeetingTemplatePermissionPolicy - Set-CsTeamsMultiTenantOrganizationConfiguration - Set-CsLocationPolicy - Set-CsTeamsCarrierEmergencyCallRoutingPolicy - Set-CsTeamsVirtualAppointmentsPolicy - Set-CsTeamsSharedCallingRoutingPolicy - Set-CsTeamsTemplatePermissionPolicy - Set-CsTeamsComplianceRecordingPolicy - Set-CsTeamsEducationAssignmentsAppPolicy - Set-CsTeamsComplianceRecordingApplication - Set-CsTeamsShiftsPolicy - Set-CsTeamsUpgradeConfiguration - Set-CsTeamsAudioConferencingCustomPromptsConfiguration - Set-CsTeamsSipDevicesConfiguration - Set-CsTeamsMeetingConfiguration - Set-CsTeamsGuestMeetingConfiguration - Set-CsTeamsVdiPolicy - Set-CsTeamsWorkLocationDetectionPolicy - Set-CsTeamsRemoteLogCollectionDevice - Set-CsTeamsRecordingRollOutPolicy - Set-CsTeamsRecordingAndTranscriptionCustomMessage - Set-CsTeamsCustomBannerText - Set-CsTeamsBYODAndDesksPolicy - Set-CsTeamsNotificationAndFeedsPolicy - Set-CsTeamsMobilityPolicy - Set-CsTeamsPersonalAttendantPolicy - Set-CsPrivacyConfiguration - Update-M365TeamsApp - Update-M365UnifiedTenantSettings - Update-M365UnifiedCustomPendingApp - Get-CsBatchOperationDefinition - Get-CsBatchOperationStatus - Get-CsConfiguration - Get-CsGroupPolicyAssignments - Get-CsLoginInfo - Get-CsUserProvHistory - Get-GPAGroupMembers - Get-GPAUserMembership - Get-NgtProvInstanceFailOverStatus - Get-CsTeamsTenantAbuseConfiguration - Invoke-CsDirectoryObjectSync - Invoke-CsGenericNgtProvCommand - Invoke-CsRefreshGroupUsers - Invoke-CsReprocessBatchOperation - Invoke-CsReprocessGroupPolicyAssignment - Move-NgtProvInstance - New-CsConfiguration - Remove-CsConfiguration - Set-CsConfiguration - Set-CsTeamsTenantAbuseConfiguration - Set-CsPublishPolicySchemaDefaults - Get-TeamTargetingHierarchyStatus - Remove-TeamTargetingHierarchy - Set-TeamTargetingHierarchy - Get-TenantPrivateChannelMigrationStatus - - - - - DscResource - - - - RoleCapability - - - - Command - - - - Add-TeamChannelUser - Add-TeamUser - Connect-MicrosoftTeams - Disconnect-MicrosoftTeams - Set-TeamsEnvironmentConfig - Clear-TeamsEnvironmentConfig - Get-AssociatedTeam - Get-MultiGeoRegion - Get-Operation - Get-SharedWithTeam - Get-SharedWithTeamUser - Get-Team - Get-TeamAllChannel - Get-TeamChannel - Get-TeamChannelUser - Get-TeamIncomingChannel - Get-TeamsApp - Get-TeamsArtifacts - Get-TeamUser - Get-M365TeamsApp - Get-AllM365TeamsApps - Get-AIGeneratedKnowledgeContainer - Get-M365UnifiedTenantSettings - Get-M365UnifiedCustomPendingApps - Get-CsTeamsAcsFederationConfiguration - Get-CsTeamsMessagingPolicy - Get-CsTeamsMeetingPolicy - Get-CsOnlineVoicemailPolicy - Get-CsOnlineVoicemailValidationConfiguration - Get-CsTeamsAIPolicy - Get-CsTeamsFeedbackPolicy - Get-CsTeamsUpdateManagementPolicy - Get-CsTeamsChannelsPolicy - Get-CsTeamsMeetingBrandingPolicy - Get-CsTeamsEmergencyCallingPolicy - Get-CsTeamsCallHoldPolicy - Get-CsTeamsMessagingConfiguration - Get-CsTeamsVoiceApplicationsPolicy - Get-CsTeamsEventsPolicy - Get-CsTeamsExternalAccessConfiguration - Get-CsTeamsFilesPolicy - Get-CsTeamsCallingPolicy - Get-CsTeamsClientConfiguration - Get-CsExternalAccessPolicy - Get-CsTeamsAppPermissionPolicy - Get-CsTeamsAppSetupPolicy - Get-CsTeamsFirstPartyMeetingTemplateConfiguration - Get-CsTeamsMeetingTemplatePermissionPolicy - Get-CsLocationPolicy - Get-CsTeamsShiftsPolicy - Get-CsTenantNetworkSite - Get-CsTeamsCarrierEmergencyCallRoutingPolicy - Get-CsTeamsMeetingTemplateConfiguration - Get-CsTeamsVirtualAppointmentsPolicy - Get-CsTeamsSharedCallingRoutingPolicy - Get-CsTeamsTemplatePermissionPolicy - Get-CsTeamsComplianceRecordingPolicy - Get-CsTeamsComplianceRecordingApplication - Get-CsTeamsEducationAssignmentsAppPolicy - Get-CsTeamsUpgradeConfiguration - Get-CsTeamsAudioConferencingCustomPromptsConfiguration - Get-CsTeamsSipDevicesConfiguration - Get-CsTeamsCustomBannerText - Get-CsTeamsGuestMeetingConfiguration - Get-CsTeamsVdiPolicy - Get-CsTeamsMediaConnectivityPolicy - Get-CsTeamsMeetingConfiguration - Get-CsTeamsMobilityPolicy - Get-CsTeamsWorkLocationDetectionPolicy - Get-CsTeamsRecordingRollOutPolicy - Get-CsTeamsRemoteLogCollectionConfiguration - Get-CsTeamsRemoteLogCollectionDevice - Get-CsTeamsRecordingAndTranscriptionCustomMessage - Get-CsTeamsEducationConfiguration - Get-CsTeamsBYODAndDesksPolicy - Get-CsTeamsNotificationAndFeedsPolicy - Get-CsTeamsMultiTenantOrganizationConfiguration - Get-CsTeamsPersonalAttendantPolicy - Get-CsPrivacyConfiguration - Get-DirectToGroupAssignmentsMigrationStatus - Get-GroupAssignmentRecommendationsPerPolicyName - Get-GroupAssignmentRecommendationsPerPolicyType - Get-GroupPolicyAssignmentConflict - Grant-CsTeamsAIPolicy - Grant-CsTeamsMeetingBrandingPolicy - Grant-CsExternalAccessPolicy - Grant-CsTeamsCallingPolicy - Grant-CsTeamsAppPermissionPolicy - Grant-CsTeamsAppSetupPolicy - Grant-CsTeamsEventsPolicy - Grant-CsTeamsFilesPolicy - Grant-CsTeamsMediaConnectivityPolicy - Grant-CsTeamsMeetingTemplatePermissionPolicy - Grant-CsTeamsCarrierEmergencyCallRoutingPolicy - Grant-CsTeamsVirtualAppointmentsPolicy - Grant-CsTeamsSharedCallingRoutingPolicy - Grant-CsTeamsShiftsPolicy - Grant-CsTeamsRecordingRollOutPolicy - Grant-CsTeamsVdiPolicy - Grant-CsTeamsWorkLocationDetectionPolicy - Grant-CsTeamsBYODAndDesksPolicy - Grant-CsTeamsPersonalAttendantPolicy - Grant-CsTeamsMobilityPolicy - Invoke-ClearDirectToGroupAssignmentMigration - Invoke-StartDirectToGroupAssignmentMigration - New-Team - New-TeamChannel - New-TeamsApp - New-CsTeamsAIPolicy - New-CsTeamsMessagingPolicy - New-CsTeamsMeetingPolicy - New-CsOnlineVoicemailPolicy - New-CsTeamsFeedbackPolicy - New-CsTeamsUpdateManagementPolicy - New-CsTeamsChannelsPolicy - New-CsTeamsFilesPolicy - New-CsTeamsMediaConnectivityPolicy - New-CsTeamsMeetingBrandingTheme - New-CsTeamsMeetingBackgroundImage - New-CsTeamsMobilityPolicy - New-CsTeamsNdiAssuranceSlate - New-CsTeamsMeetingBrandingPolicy - New-CsTeamsEmergencyCallingPolicy - New-CsTeamsEmergencyCallingExtendedNotification - New-CsTeamsCallHoldPolicy - New-CsTeamsVoiceApplicationsPolicy - New-CsTeamsEventsPolicy - New-CsTeamsCallingPolicy - New-CsExternalAccessPolicy - New-CsTeamsAppPermissionPolicy - New-CsTeamsAppSetupPolicy - New-CsTeamsMeetingTemplatePermissionPolicy - New-CsLocationPolicy - New-CsTeamsCarrierEmergencyCallRoutingPolicy - New-CsTeamsHiddenMeetingTemplate - New-CsTeamsVirtualAppointmentsPolicy - New-CsTeamsSharedCallingRoutingPolicy - New-CsTeamsHiddenTemplate - New-CsTeamsTemplatePermissionPolicy - New-CsTeamsComplianceRecordingPolicy - New-CsTeamsComplianceRecordingApplication - New-CsTeamsComplianceRecordingPairedApplication - New-CsTeamsWorkLocationDetectionPolicy - New-CsTeamsRecordingRollOutPolicy - New-CsTeamsRemoteLogCollectionDevice - New-CsTeamsRecordingAndTranscriptionCustomMessage - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - New-CsCustomPrompt - New-CsCustomPromptPackage - New-CsTeamsShiftsPolicy - New-CsTeamsCustomBannerText - New-CsTeamsVdiPolicy - New-CsTeamsBYODAndDesksPolicy - New-CsTeamsPersonalAttendantPolicy - Remove-AIGeneratedKnowledge - Remove-SharedWithTeam - Remove-Team - Remove-TeamChannel - Remove-TeamChannelUser - Remove-TeamsApp - Remove-TeamUser - Remove-CsTeamsAIPolicy - Remove-CsTeamsMessagingPolicy - Remove-CsTeamsMeetingPolicy - Remove-CsOnlineVoicemailPolicy - Remove-CsTeamsFeedbackPolicy - Remove-CsTeamsFilesPolicy - Remove-CsTeamsUpdateManagementPolicy - Remove-CsTeamsChannelsPolicy - Remove-CsTeamsMediaConnectivityPolicy - Remove-CsTeamsMeetingBrandingPolicy - Remove-CsTeamsEmergencyCallingPolicy - Remove-CsTeamsCallHoldPolicy - Remove-CsTeamsVoiceApplicationsPolicy - Remove-CsTeamsEventsPolicy - Remove-CsTeamsCallingPolicy - Remove-CsExternalAccessPolicy - Remove-CsTeamsAppPermissionPolicy - Remove-CsTeamsAppSetupPolicy - Remove-CsTeamsMeetingTemplatePermissionPolicy - Remove-CsTeamsMobilityPolicy - Remove-CsLocationPolicy - Remove-CsTeamsCarrierEmergencyCallRoutingPolicy - Remove-CsTeamsVirtualAppointmentsPolicy - Remove-CsTeamsSharedCallingRoutingPolicy - Remove-CsTeamsTemplatePermissionPolicy - Remove-CsTeamsComplianceRecordingPolicy - Remove-CsTeamsComplianceRecordingApplication - Remove-CsTeamsShiftsPolicy - Remove-CsTeamsCustomBannerText - Remove-CsTeamsVdiPolicy - Remove-CsTeamsWorkLocationDetectionPolicy - Remove-CsTeamsRecordingRollOutPolicy - Remove-CsTeamsRemoteLogCollectionDevice - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - Remove-CsTeamsBYODAndDesksPolicy - Remove-CsTeamsNotificationAndFeedsPolicy - Remove-CsTeamsPersonalAttendantPolicy - Set-Team - Set-TeamArchivedState - Set-TeamChannel - Set-TeamPicture - Set-TeamsApp - Set-CsTeamsAcsFederationConfiguration - Set-CsTeamsAIPolicy - Set-CsTeamsMessagingPolicy - Set-CsTeamsMeetingPolicy - Set-CsOnlineVoicemailPolicy - Set-CsTeamsFilesPolicy - Set-CsOnlineVoicemailValidationConfiguration - Set-CsTeamsFeedbackPolicy - Set-CsTeamsUpdateManagementPolicy - Set-CsTeamsChannelsPolicy - Set-CsTeamsMediaConnectivityPolicy - Set-CsTeamsMeetingBrandingPolicy - Set-CsTeamsEmergencyCallingPolicy - Set-CsTeamsEducationConfiguration - Set-CsTeamsCallHoldPolicy - Set-CsTeamsMessagingConfiguration - Set-CsTeamsVoiceApplicationsPolicy - Set-CsTeamsEventsPolicy - Set-CsTeamsExternalAccessConfiguration - Set-CsTeamsCallingPolicy - Set-CsTeamsClientConfiguration - Set-CsExternalAccessPolicy - Set-CsTeamsAppPermissionPolicy - Set-CsTeamsAppSetupPolicy - Set-CsTeamsFirstPartyMeetingTemplateConfiguration - Set-CsTeamsMeetingTemplatePermissionPolicy - Set-CsTeamsMultiTenantOrganizationConfiguration - Set-CsLocationPolicy - Set-CsTeamsCarrierEmergencyCallRoutingPolicy - Set-CsTeamsVirtualAppointmentsPolicy - Set-CsTeamsSharedCallingRoutingPolicy - Set-CsTeamsTemplatePermissionPolicy - Set-CsTeamsComplianceRecordingPolicy - Set-CsTeamsEducationAssignmentsAppPolicy - Set-CsTeamsComplianceRecordingApplication - Set-CsTeamsShiftsPolicy - Set-CsTeamsUpgradeConfiguration - Set-CsTeamsAudioConferencingCustomPromptsConfiguration - Set-CsTeamsSipDevicesConfiguration - Set-CsTeamsMeetingConfiguration - Set-CsTeamsGuestMeetingConfiguration - Set-CsTeamsVdiPolicy - Set-CsTeamsWorkLocationDetectionPolicy - Set-CsTeamsRemoteLogCollectionDevice - Set-CsTeamsRecordingRollOutPolicy - Set-CsTeamsRecordingAndTranscriptionCustomMessage - Set-CsTeamsCustomBannerText - Set-CsTeamsBYODAndDesksPolicy - Set-CsTeamsNotificationAndFeedsPolicy - Set-CsTeamsMobilityPolicy - Set-CsTeamsPersonalAttendantPolicy - Set-CsPrivacyConfiguration - Update-M365TeamsApp - Update-M365UnifiedTenantSettings - Update-M365UnifiedCustomPendingApp - Get-CsBatchOperationDefinition - Get-CsBatchOperationStatus - Get-CsConfiguration - Get-CsGroupPolicyAssignments - Get-CsLoginInfo - Get-CsUserProvHistory - Get-GPAGroupMembers - Get-GPAUserMembership - Get-NgtProvInstanceFailOverStatus - Get-CsTeamsTenantAbuseConfiguration - Invoke-CsDirectoryObjectSync - Invoke-CsGenericNgtProvCommand - Invoke-CsRefreshGroupUsers - Invoke-CsReprocessBatchOperation - Invoke-CsReprocessGroupPolicyAssignment - Move-NgtProvInstance - New-CsConfiguration - Remove-CsConfiguration - Set-CsConfiguration - Set-CsTeamsTenantAbuseConfiguration - Set-CsPublishPolicySchemaDefaults - Get-TeamTargetingHierarchyStatus - Remove-TeamTargetingHierarchy - Set-TeamTargetingHierarchy - Get-TenantPrivateChannelMigrationStatus - Clear-CsOnlineTelephoneNumberOrder - Complete-CsOnlineTelephoneNumberOrder - Disable-CsOnlineSipDomain - Enable-CsOnlineSipDomain - Export-CsAcquiredPhoneNumber - Export-CsAutoAttendantHolidays - Export-CsOnlineAudioFile - Find-CsGroup - Find-CsOnlineApplicationInstance - Get-CsApplicationAccessPolicy - Get-CsApplicationMeetingConfiguration - Get-CsAutoAttendant - Get-CsAutoAttendantHolidays - Get-CsAutoAttendantStatus - Get-CsAutoAttendantSupportedLanguage - Get-CsAutoAttendantSupportedTimeZone - Get-CsAutoAttendantTenantInformation - Get-CsAutoRecordingTemplate - Get-CsBatchPolicyAssignmentOperation - Get-CsCallingLineIdentity - Get-CsCallQueue - Get-CsCloudCallDataConnection - Get-CsEffectiveTenantDialPlan - Get-CsExportAcquiredPhoneNumberStatus - Get-CsGroupPolicyAssignment - Get-CsHybridTelephoneNumber - Get-CsInboundBlockedNumberPattern - Get-CsInboundExemptNumberPattern - Get-CsMainlineAttendantAppointmentBookingFlow - Get-CsMainlineAttendantFlow - Get-CsMainlineAttendantSupportedLanguages - Get-CsMainlineAttendantSupportedVoices - Get-CsMainlineAttendantTenantInformation - Get-CsMainlineAttendantQuestionAnswerFlow - Get-CsMeetingMigrationStatus - Get-CsOnlineApplicationInstance - Get-CsOnlineApplicationInstanceAssociation - Get-CsOnlineApplicationInstanceAssociationStatus - Get-CsOnlineAudioConferencingRoutingPolicy - Get-CsOnlineAudioFile - Get-CsOnlineDialInConferencingBridge - Get-CsOnlineDialInConferencingLanguagesSupported - Get-CsOnlineDialinConferencingPolicy - Get-CsOnlineDialInConferencingServiceNumber - Get-CsOnlineDialinConferencingTenantConfiguration - Get-CsOnlineDialInConferencingTenantSettings - Get-CsOnlineDialInConferencingUser - Get-CsOnlineDialOutPolicy - Get-CsOnlineDirectoryTenant - Get-CsOnlineEnhancedEmergencyServiceDisclaimer - Get-CsOnlineLisCivicAddress - Get-CsOnlineLisLocation - Get-CsOnlineLisPort - Get-CsOnlineLisSubnet - Get-CsOnlineLisSwitch - Get-CsOnlineLisWirelessAccessPoint - Get-CsOnlinePSTNGateway - Get-CsOnlinePstnUsage - Get-CsOnlineSchedule - Get-CsOnlineSipDomain - Get-CsOnlineTelephoneNumber - Get-CsOnlineTelephoneNumberCountry - Get-CsOnlineTelephoneNumberOrder - Get-CsOnlineTelephoneNumberType - Get-CsOnlineUser - Get-CsOnlineVoicemailUserSettings - Get-CsOnlineVoiceRoute - Get-CsOnlineVoiceRoutingPolicy - Get-CsOnlineVoiceUser - Get-CsPhoneNumberAssignment - Get-CsPhoneNumberPolicyAssignment - Get-CsPhoneNumberTag - Get-CsPhoneNumberTenantConfiguration - Get-CsPolicyPackage - Get-CsSdgBulkSignInRequestStatus - Get-CsSDGBulkSignInRequestsSummary - Get-CsTeamsAudioConferencingPolicy - Get-CsTeamsCallParkPolicy - Get-CsTeamsCortanaPolicy - Get-CsTeamsEmergencyCallRoutingPolicy - Get-CsTeamsEnhancedEncryptionPolicy - Get-CsTeamsGuestCallingConfiguration - Get-CsTeamsGuestMessagingConfiguration - Get-CsTeamsIPPhonePolicy - Get-CsTeamsMediaLoggingPolicy - Get-CsTeamsMeetingBroadcastConfiguration - Get-CsTeamsMeetingBroadcastPolicy - Get-CsTeamsMigrationConfiguration - Get-CsTeamsNetworkRoamingPolicy - Get-CsTeamsRoomVideoTeleConferencingPolicy - Get-CsTeamsSettingsCustomApp - Get-CsTeamsShiftsAppPolicy - Get-CsTeamsShiftsConnectionConnector - Get-CsTeamsShiftsConnectionErrorReport - Get-CsTeamsShiftsConnection - Get-CsTeamsShiftsConnectionInstance - Get-CsTeamsShiftsConnectionOperation - Get-CsTeamsShiftsConnectionSyncResult - Get-CsTeamsShiftsConnectionTeamMap - Get-CsTeamsShiftsConnectionWfmTeam - Get-CsTeamsShiftsConnectionWfmUser - Get-CsTeamsSurvivableBranchAppliance - Get-CsTeamsSurvivableBranchAppliancePolicy - Get-CsTeamsTargetingPolicy - Get-CsTeamsTranslationRule - Get-CsTeamsUnassignedNumberTreatment - Get-CsTeamsUpgradePolicy - Get-CsTeamsVdiPolicy - Get-CsTeamsVideoInteropServicePolicy - Get-CsTeamsWorkLoadPolicy - Get-CsTeamTemplate - Get-CsTeamTemplateList - Get-CsTenant - Get-CsTenantBlockedCallingNumbers - Get-CsTenantDialPlan - Get-CsTenantFederationConfiguration - Get-CsTenantLicensingConfiguration - Get-CsTenantMigrationConfiguration - Get-CsTenantNetworkConfiguration - Get-CsTenantNetworkRegion - Get-CsTenantNetworkSubnet - Get-CsTenantTrustedIPAddress - Get-CsUserCallingSettings - Get-CsUserPolicyAssignment - Get-CsUserPolicyPackage - Get-CsUserPolicyPackageRecommendation - Get-CsVideoInteropServiceProvider - Get-CsAgent - Get-CsAiAgents - Grant-CsApplicationAccessPolicy - Get-CsComplianceRecordingForCallQueueTemplate - Get-CsSharedCallQueueHistoryTemplate - Get-CsTagsTemplate - Get-CsSharedCallHistoryTemplate - Grant-CsCallingLineIdentity - Grant-CsDialoutPolicy - Grant-CsGroupPolicyPackageAssignment - Grant-CsOnlineAudioConferencingRoutingPolicy - Grant-CsOnlineVoicemailPolicy - Grant-CsOnlineVoiceRoutingPolicy - Grant-CsTeamsAudioConferencingPolicy - Grant-CsTeamsCallHoldPolicy - Grant-CsTeamsCallParkPolicy - Grant-CsTeamsChannelsPolicy - Grant-CsTeamsCortanaPolicy - Grant-CsTeamsEmergencyCallingPolicy - Grant-CsTeamsEmergencyCallRoutingPolicy - Grant-CsTeamsEnhancedEncryptionPolicy - Grant-CsTeamsFeedbackPolicy - Grant-CsTeamsIPPhonePolicy - Grant-CsTeamsMediaLoggingPolicy - Grant-CsTeamsMeetingBroadcastPolicy - Grant-CsTeamsMeetingPolicy - Grant-CsTeamsMessagingPolicy - Grant-CsTeamsRoomVideoTeleConferencingPolicy - Grant-CsTeamsSurvivableBranchAppliancePolicy - Grant-CsTeamsUpdateManagementPolicy - Grant-CsTeamsUpgradePolicy - Grant-CsTeamsVideoInteropServicePolicy - Grant-CsTeamsVoiceApplicationsPolicy - Grant-CsTeamsWorkLoadPolicy - Grant-CsTenantDialPlan - Grant-CsUserPolicyPackage - Grant-CsTeamsComplianceRecordingPolicy - Import-CsAutoAttendantHolidays - Import-CsOnlineAudioFile - Invoke-CsInternalPSTelemetry - Move-CsInternalHelper - New-CsAgent - New-CsApplicationAccessPolicy - New-CsAutoAttendant - New-CsAutoAttendantCallableEntity - New-CsAutoAttendantCallFlow - New-CsAutoAttendantCallHandlingAssociation - New-CsAutoAttendantDialScope - New-CsAutoAttendantMenu - New-CsAutoAttendantMenuOption - New-CsAutoAttendantPrompt - New-CsAutoRecordingTemplate - New-CsBatchPolicyAssignmentOperation - New-CsBatchPolicyPackageAssignmentOperation - New-CsCallingLineIdentity - New-CsCallQueue - New-CsCloudCallDataConnection - New-CsCustomPolicyPackage - New-CsEdgeAllowAllKnownDomains - New-CsEdgeAllowList - New-CsEdgeDomainPattern - New-CsGroupPolicyAssignment - New-CsHybridTelephoneNumber - New-CsInboundBlockedNumberPattern - New-CsInboundExemptNumberPattern - New-CsMainlineAttendantAppointmentBookingFlow - New-CsMainlineAttendantQuestionAnswerFlow - New-CsOnlineApplicationInstance - New-CsOnlineApplicationInstanceAssociation - New-CsOnlineAudioConferencingRoutingPolicy - New-CsOnlineDateTimeRange - New-CsOnlineLisCivicAddress - New-CsOnlineLisLocation - New-CsOnlinePSTNGateway - New-CsOnlineSchedule - New-CsOnlineTelephoneNumberOrder - New-CsOnlineTimeRange - New-CsOnlineVoiceRoute - New-CsOnlineVoiceRoutingPolicy - New-CsSdgBulkSignInRequest - New-CsTeamsAudioConferencingPolicy - New-CsTeamsCallParkPolicy - New-CsTeamsCortanaPolicy - New-CsTeamsEmergencyCallRoutingPolicy - New-CsTeamsEmergencyNumber - New-CsTeamsEnhancedEncryptionPolicy - New-CsTeamsIPPhonePolicy - New-CsTeamsMeetingBroadcastPolicy - New-CsTeamsNetworkRoamingPolicy - New-CsTeamsRoomVideoTeleConferencingPolicy - New-CsTeamsShiftsConnectionBatchTeamMap - New-CsTeamsShiftsConnection - New-CsTeamsShiftsConnectionInstance - New-CsTeamsSurvivableBranchAppliance - New-CsTeamsSurvivableBranchAppliancePolicy - New-CsTeamsTranslationRule - New-CsTeamsUnassignedNumberTreatment - New-CsTeamsVdiPolicy - New-CsTeamsWorkLoadPolicy - New-CsTeamTemplate - New-CsTenantDialPlan - New-CsTenantNetworkRegion - New-CsTenantNetworkSite - New-CsTenantNetworkSubnet - New-CsTenantTrustedIPAddress - New-CsUserCallingDelegate - New-CsVideoInteropServiceProvider - New-CsVoiceNormalizationRule - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - New-CsOnlineTelephoneNumberReleaseOrder - New-CsComplianceRecordingForCallQueueTemplate - New-CsPhoneNumberBulkUpdateTagsOrder - New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder - New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder - New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder - New-CsPhoneNumberBulkUpdateLocationIdOrder - New-CsTagsTemplate - New-CsTag - New-CsSharedCallQueueHistoryTemplate - New-CsSharedCallHistoryTemplate - Register-CsOnlineDialInConferencingServiceNumber - Remove-CsAgent - Remove-CsApplicationAccessPolicy - Remove-CsAutoAttendant - Remove-CsAutoRecordingTemplate - Remove-CsCallingLineIdentity - Remove-CsCallQueue - Remove-CsCustomPolicyPackage - Remove-CsGroupPolicyAssignment - Remove-CsHybridTelephoneNumber - Remove-CsInboundBlockedNumberPattern - Remove-CsInboundExemptNumberPattern - Remove-CsMainlineAttendantAppointmentBookingFlow - Remove-CsMainlineAttendantQuestionAnswerFlow - Remove-CsOnlineApplicationInstanceAssociation - Remove-CsOnlineAudioConferencingRoutingPolicy - Remove-CsOnlineAudioFile - Remove-CsOnlineDialInConferencingTenantSettings - Remove-CsOnlineLisCivicAddress - Remove-CsOnlineLisLocation - Remove-CsOnlineLisPort - Remove-CsOnlineLisSubnet - Remove-CsOnlineLisSwitch - Remove-CsOnlineLisWirelessAccessPoint - Remove-CsOnlinePSTNGateway - Remove-CsOnlineSchedule - Remove-CsOnlineTelephoneNumber - Remove-CsOnlineVoiceRoute - Remove-CsOnlineVoiceRoutingPolicy - Remove-CsPhoneNumberAssignment - Remove-CsPhoneNumberAssignmentBlock - Remove-CsPhoneNumberSmsActivation - Remove-CsPhoneNumberTag - Remove-CsPhoneNumberTenantConfiguration - Remove-CsTeamsAudioConferencingPolicy - Remove-CsTeamsCallParkPolicy - Remove-CsTeamsCortanaPolicy - Remove-CsTeamsEmergencyCallRoutingPolicy - Remove-CsTeamsEnhancedEncryptionPolicy - Remove-CsTeamsIPPhonePolicy - Remove-CsTeamsMeetingBroadcastPolicy - Remove-CsTeamsNetworkRoamingPolicy - Remove-CsTeamsRoomVideoTeleConferencingPolicy - Remove-CsTeamsShiftsConnection - Remove-CsTeamsShiftsConnectionInstance - Remove-CsTeamsShiftsConnectionTeamMap - Remove-CsTeamsShiftsScheduleRecord - Remove-CsTeamsSurvivableBranchAppliance - Remove-CsTeamsSurvivableBranchAppliancePolicy - Remove-CsTeamsTargetingPolicy - Remove-CsTeamsTranslationRule - Remove-CsTeamsUnassignedNumberTreatment - Remove-CsTeamsVdiPolicy - Remove-CsTeamsWorkLoadPolicy - Remove-CsTeamTemplate - Remove-CsTenantDialPlan - Remove-CsTenantNetworkRegion - Remove-CsTenantNetworkSite - Remove-CsTenantNetworkSubnet - Remove-CsTenantTrustedIPAddress - Remove-CsUserCallingDelegate - Remove-CsUserLicenseGracePeriod - Remove-CsVideoInteropServiceProvider - Remove-CsComplianceRecordingForCallQueueTemplate - Remove-CsTagsTemplate - Remove-CsSharedCallQueueHistoryTemplate - Remove-CsSharedCallHistoryTemplate - Set-CsAgent - Set-CsApplicationAccessPolicy - Set-CsApplicationMeetingConfiguration - Set-CsAutoAttendant - Set-CsAutoRecordingTemplate - Set-CsCallingLineIdentity - Set-CsCallQueue - Set-CsInboundBlockedNumberPattern - Set-CsInboundExemptNumberPattern - Set-CsMainlineAttendantAppointmentBookingFlow - Set-CsMainlineAttendantQuestionAnswerFlow - Set-CsOnlineApplicationInstance - Set-CsOnlineAudioConferencingRoutingPolicy - Set-CsOnlineDialInConferencingBridge - Set-CsOnlineDialInConferencingServiceNumber - Set-CsOnlineDialInConferencingTenantSettings - Set-CsOnlineDialInConferencingUser - Set-CsOnlineDialInConferencingUserDefaultNumber - Set-CsOnlineEnhancedEmergencyServiceDisclaimer - Set-CsOnlineLisCivicAddress - Set-CsOnlineLisLocation - Set-CsOnlineLisPort - Set-CsOnlineLisSubnet - Set-CsOnlineLisSwitch - Set-CsOnlineLisWirelessAccessPoint - Set-CsOnlinePSTNGateway - Set-CsOnlinePstnUsage - Set-CsOnlineSchedule - Set-CsOnlineVoiceApplicationInstance - Set-CsOnlineVoicemailUserSettings - Set-CsOnlineVoiceRoute - Set-CsOnlineVoiceRoutingPolicy - Set-CsOnlineVoiceUser - Set-CsPhoneNumberAssignment - Set-CsPhoneNumberAssignmentBlock - Set-CsPhoneNumberPolicyAssignment - Set-CsPhoneNumberSmsActivation - Set-CsPhoneNumberTag - Set-CsPhoneNumberTenantConfiguration - Set-CsTeamsAudioConferencingPolicy - Set-CsTeamsCallParkPolicy - Set-CsTeamsCortanaPolicy - Set-CsTeamsEmergencyCallRoutingPolicy - Set-CsTeamsEnhancedEncryptionPolicy - Set-CsTeamsGuestCallingConfiguration - Set-CsTeamsGuestMessagingConfiguration - Set-CsTeamsIPPhonePolicy - Set-CsTeamsMeetingBroadcastConfiguration - Set-CsTeamsMeetingBroadcastPolicy - Set-CsTeamsMigrationConfiguration - Set-CsTeamsNetworkRoamingPolicy - Set-CsTeamsRoomVideoTeleConferencingPolicy - Set-CsTeamsSettingsCustomApp - Set-CsTeamsShiftsAppPolicy - Set-CsTeamsShiftsConnection - Set-CsTeamsShiftsConnectionInstance - Set-CsTeamsSurvivableBranchAppliance - Set-CsTeamsSurvivableBranchAppliancePolicy - Set-CsTeamsTargetingPolicy - Set-CsTeamsTranslationRule - Set-CsTeamsUnassignedNumberTreatment - Set-CsTeamsVdiPolicy - Set-CsTeamsWorkLoadPolicy - Set-CsTenantBlockedCallingNumbers - Set-CsTenantDialPlan - Set-CsTenantFederationConfiguration - Set-CsTenantMigrationConfiguration - Set-CsTenantNetworkRegion - Set-CsTenantNetworkSite - Set-CsTenantNetworkSubnet - Set-CsTenantTrustedIPAddress - Set-CsUser - Set-CsUserCallingDelegate - Set-CsUserCallingSettings - Set-CsVideoInteropServiceProvider - Set-CsComplianceRecordingForCallQueueTemplate - Set-CsTagsTemplate - Set-CsSharedCallQueueHistoryTemplate - Set-CsSharedCallHistoryTemplate - Start-CsExMeetingMigration - Sync-CsOnlineApplicationInstance - Test-CsEffectiveTenantDialPlan - Test-CsInboundBlockedNumberPattern - Test-CsTeamsShiftsConnectionValidate - Test-CsTeamsTranslationRule - Test-CsTeamsUnassignedNumberTreatment - Test-CsVoiceNormalizationRule - Unregister-CsOnlineDialInConferencingServiceNumber - Update-CsAutoAttendant - Update-CsCustomPolicyPackage - Update-CsPhoneNumberTag - Update-CsTeamsShiftsConnection - Update-CsTeamsShiftsConnectionInstance - Update-CsTeamTemplate - New-CsBatchTeamsDeployment - Get-CsBatchTeamsDeploymentStatus - Get-CsPersonalAttendantSettings - Set-CsPersonalAttendantSettings - Set-CsOCEContext - Clear-CsOCEContext - Get-CsRegionContext - Set-CsRegionContext - Clear-CsRegionContext - Get-CsMeetingMigrationTransactionHistory - Get-CsMasVersionedSchemaData - Get-CsMasObjectChangelog - Get-CsBusinessVoiceDirectoryDiagnosticData - Get-CsCloudTenant - Get-CsCloudUser - Get-CsHostingProvider - Set-CsTenantUserBackfill - Invoke-CsCustomHandlerNgtprov - Invoke-CsCustomHandlerCallBackNgtprov - New-CsSdgDeviceTaggingRequest - Get-CsMoveTenantServiceInstanceTaskStatus - Move-CsTenantServiceInstance - Move-CsTenantCrossRegion - Invoke-CsDirectObjectSync - New-CsSDGDeviceTransferRequest - Get-CsAadTenant - Get-CsAadUser - Clear-CsCacheOperation - Move-CsAvsTenantPartition - Invoke-CsMsodsSync - Get-CsUssUserSettings - Set-CsUssUserSettings - Invoke-CsRehomeuser - Set-CsNotifyCache - - - - - - - **7.8.0-GA** (The project - MicrosoftTeams contains changes till this release)_x000D__x000A_- Fixes Get-TenantPrivateChannelMigrationStatus cmdlet in GCC, GCC High & DoD environments._x000D__x000A_- Releases New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder, New-CsPhoneNumberBulkUpdateLocationIdOrder, New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder, and New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder cmdlets._x000D__x000A_- [BREAKING CHANGE] Renames EnableExternalAccessRestrictionsForChatPartipants and EnableMutualFederationForChatPartipants parameters in Set-CsTenantFederationSettings cmdlet to EnableExternalAccessRestrictionsForChatParticipants and EnableMutualFederationForChatParticipants respectively._x000D__x000A_- Adds PreventComplianceRecording and DisableAudioAnnouncementsForResourceAccounts parameters to [New|Set]-CsTeamsMeetingPolicy cmdlets._x000D__x000A_- Adds PreventComplianceRecording parameter to [New|Set]-CsTeamsCallingPolicy cmdlets._x000D__x000A_- Adds Communities parameter to Set-CsTeamsMessagingConfiguration cmdlet._x000D__x000A_- Adds ReportMeeting parameter to Set-CsTeamsMeetingConfiguration cmdlet._x000D__x000A__x000D__x000A_- The complete release notes can be found in the below link:_x000D__x000A_https://docs.microsoft.com/MicrosoftTeams/teams-powershell-release-notes - - - - - https://www.powershellgallery.com/api/v2 - PSGallery - NuGet - - - System.Management.Automation.PSCustomObject - System.Object - - - Microsoft Corporation. All rights reserved. - Microsoft Teams cmdlets module for Windows PowerShell and PowerShell Core._x000D__x000A__x000D__x000A_For more information, please visit the following: https://docs.microsoft.com/MicrosoftTeams/teams-powershell-overview - False - **7.8.0-GA** (The project - MicrosoftTeams contains changes till this release)_x000D__x000A_- Fixes Get-TenantPrivateChannelMigrationStatus cmdlet in GCC, GCC High & DoD environments._x000D__x000A_- Releases New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder, New-CsPhoneNumberBulkUpdateLocationIdOrder, New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder, and New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder cmdlets._x000D__x000A_- [BREAKING CHANGE] Renames EnableExternalAccessRestrictionsForChatPartipants and EnableMutualFederationForChatPartipants parameters in Set-CsTenantFederationSettings cmdlet to EnableExternalAccessRestrictionsForChatParticipants and EnableMutualFederationForChatParticipants respectively._x000D__x000A_- Adds PreventComplianceRecording and DisableAudioAnnouncementsForResourceAccounts parameters to [New|Set]-CsTeamsMeetingPolicy cmdlets._x000D__x000A_- Adds PreventComplianceRecording parameter to [New|Set]-CsTeamsCallingPolicy cmdlets._x000D__x000A_- Adds Communities parameter to Set-CsTeamsMessagingConfiguration cmdlet._x000D__x000A_- Adds ReportMeeting parameter to Set-CsTeamsMeetingConfiguration cmdlet._x000D__x000A__x000D__x000A_- The complete release notes can be found in the below link:_x000D__x000A_https://docs.microsoft.com/MicrosoftTeams/teams-powershell-release-notes - True - True - 163281 - 16147118 - 22747681 - 18/05/2026 4:50:00 AM +08:00 - 18/05/2026 4:50:00 AM +08:00 - 12/06/2026 2:40:00 AM +08:00 - Office365 MicrosoftTeams Teams PSModule PSEdition_Core PSEdition_Desktop - False - 2026-06-12T02:40:00Z - 7.8.0 - Microsoft Corporation - false - Module - MicrosoftTeams.nuspec|GetTeamSettings.format.ps1xml|LICENSE.txt|Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml|Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml|Microsoft.Teams.ConfigAPI.Cmdlets.psd1|Microsoft.Teams.ConfigAPI.Cmdlets.psm1|Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1|Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1|Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1|Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml|Microsoft.Teams.Policy.Administration.psd1|Microsoft.Teams.Policy.Administration.psm1|Microsoft.Teams.Policy.Administration.xml|Microsoft.Teams.PowerShell.Module.xml|Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml|Microsoft.Teams.PowerShell.TeamsCmdlets.psd1|Microsoft.Teams.PowerShell.TeamsCmdlets.psm1|Microsoft.Teams.PowerShell.TeamsCmdlets.xml|MicrosoftTeams.psd1|MicrosoftTeams.psm1|SetMSTeamsReleaseEnvironment.ps1|SfbRpsModule.format.ps1xml|bin\BrotliSharpLib.dll|bin\Microsoft.IdentityModel.JsonWebTokens.dll|bin\Microsoft.IdentityModel.Logging.dll|bin\Microsoft.IdentityModel.Tokens.dll|bin\Microsoft.Teams.ConfigAPI.CmdletHostContract.dll|bin\Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json|bin\Microsoft.Teams.ConfigAPI.Cmdlets.private.dll|bin\System.IdentityModel.Tokens.Jwt.dll|custom\CmdletConfig.json|custom\Merged_custom_PsExt.ps1|custom\Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1|en-US\Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml|en-US\Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml|en-US\Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml|en-US\MicrosoftTeams-help.xml|exports\ProxyCmdletDefinitionsWithHelp.ps1|internal\Merged_internal.ps1|internal\Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1|net472\CmdletSettings.json|net472\Microsoft.ApplicationInsights.dll|net472\Microsoft.Applications.Events.Server.dll|net472\Microsoft.Azure.KeyVault.AzureServiceDeploy.dll|net472\Microsoft.Azure.KeyVault.Core.dll|net472\Microsoft.Azure.KeyVault.Cryptography.dll|net472\Microsoft.Azure.KeyVault.Jose.dll|net472\Microsoft.Bcl.AsyncInterfaces.dll|net472\Microsoft.Bcl.Memory.dll|net472\Microsoft.Bcl.TimeProvider.dll|net472\Microsoft.Data.Sqlite.dll|net472\Microsoft.Extensions.Configuration.Abstractions.dll|net472\Microsoft.Extensions.Configuration.Binder.dll|net472\Microsoft.Extensions.Configuration.dll|net472\Microsoft.Extensions.DependencyInjection.Abstractions.dll|net472\Microsoft.Extensions.Logging.Abstractions.dll|net472\Microsoft.Extensions.Logging.dll|net472\Microsoft.Extensions.Options.dll|net472\Microsoft.Extensions.Primitives.dll|net472\Microsoft.Ic3.TenantAdminApi.Common.Helper.dll|net472\Microsoft.Identity.Client.Broker.dll|net472\Microsoft.Identity.Client.Desktop.dll|net472\Microsoft.Identity.Client.dll|net472\Microsoft.Identity.Client.Extensions.Msal.dll|net472\Microsoft.Identity.Client.NativeInterop.dll|net472\Microsoft.IdentityModel.Abstractions.dll|net472\Microsoft.IdentityModel.JsonWebTokens.dll|net472\Microsoft.IdentityModel.Logging.dll|net472\Microsoft.IdentityModel.Tokens.dll|net472\Microsoft.Internal.AntiSSRF.dll|net472\Microsoft.Rest.ClientRuntime.Azure.dll|net472\Microsoft.Rest.ClientRuntime.dll|net472\Microsoft.Rtc.Management.Acms.EntityModel.dll|net472\Microsoft.Teams.ConfigAPI.CmdletHostContract.dll|net472\Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll|net472\Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll|net472\Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll|net472\Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll|net472\Microsoft.Teams.Policy.Administration.dll|net472\Microsoft.Teams.PowerShell.Module.dll|net472\Microsoft.Teams.PowerShell.Module.pdb|net472\Microsoft.Teams.PowerShell.Module.xml|net472\Microsoft.Teams.PowerShell.TeamsCmdlets.dll|net472\Microsoft.TeamsCmdlets.PowerShell.Connect.dll|net472\Microsoft.Web.WebView2.Core.dll|net472\Microsoft.Web.WebView2.WinForms.dll|net472\Microsoft.Web.WebView2.Wpf.dll|net472\Newtonsoft.Json.dll|net472\OneCollectorChannel.dll|net472\Polly.Contrib.WaitAndRetry.dll|net472\Polly.dll|net472\SQLitePCLRaw.batteries_v2.dll|net472\SQLitePCLRaw.core.dll|net472\SQLitePCLRaw.provider.dynamic_cdecl.dll|net472\System.Buffers.dll|net472\System.ComponentModel.Annotations.dll|net472\System.Diagnostics.DiagnosticSource.dll|net472\System.Formats.Asn1.dll|net472\System.IdentityModel.Tokens.Jwt.dll|net472\System.IO.FileSystem.AccessControl.dll|net472\System.Management.Automation.dll|net472\System.Memory.dll|net472\System.Numerics.Vectors.dll|net472\System.Runtime.CompilerServices.Unsafe.dll|net472\System.Security.AccessControl.dll|net472\System.Security.Cryptography.ProtectedData.dll|net472\System.Security.Principal.Windows.dll|net472\System.Text.Encodings.Web.dll|net472\System.Text.Json.dll|net472\System.Threading.Tasks.Extensions.dll|net472\System.ValueTuple.dll|net472\runtimes\win-arm\native\e_sqlite3.dll|net472\runtimes\win-arm64\native\msalruntime_arm64.dll|net472\runtimes\win-arm64\native\WebView2Loader.dll|net472\runtimes\win-x64\native\e_sqlite3.dll|net472\runtimes\win-x64\native\msalruntime.dll|net472\runtimes\win-x64\native\WebView2Loader.dll|net472\runtimes\win-x86\native\e_sqlite3.dll|net472\runtimes\win-x86\native\msalruntime_x005F_x86.dll|net472\runtimes\win-x86\native\WebView2Loader.dll|netcoreapp3.1\CmdletSettings.json|netcoreapp3.1\Microsoft.ApplicationInsights.dll|netcoreapp3.1\Microsoft.Applications.Events.Server.dll|netcoreapp3.1\Microsoft.Azure.KeyVault.AzureServiceDeploy.dll|netcoreapp3.1\Microsoft.Azure.KeyVault.Core.dll|netcoreapp3.1\Microsoft.Azure.KeyVault.Cryptography.dll|netcoreapp3.1\Microsoft.Azure.KeyVault.Jose.dll|netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll|netcoreapp3.1\Microsoft.Bcl.Memory.dll|netcoreapp3.1\Microsoft.Bcl.TimeProvider.dll|netcoreapp3.1\Microsoft.Data.Sqlite.dll|netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll|netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll|netcoreapp3.1\Microsoft.Extensions.Configuration.dll|netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll|netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll|netcoreapp3.1\Microsoft.Extensions.Logging.dll|netcoreapp3.1\Microsoft.Extensions.Options.dll|netcoreapp3.1\Microsoft.Extensions.Primitives.dll|netcoreapp3.1\Microsoft.Ic3.TenantAdminApi.Common.Helper.dll|netcoreapp3.1\Microsoft.Identity.Client.Broker.dll|netcoreapp3.1\Microsoft.Identity.Client.Desktop.dll|netcoreapp3.1\Microsoft.Identity.Client.dll|netcoreapp3.1\Microsoft.Identity.Client.Extensions.Msal.dll|netcoreapp3.1\Microsoft.Identity.Client.NativeInterop.dll|netcoreapp3.1\Microsoft.IdentityModel.Abstractions.dll|netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll|netcoreapp3.1\Microsoft.IdentityModel.Logging.dll|netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll|netcoreapp3.1\Microsoft.Internal.AntiSSRF.dll|netcoreapp3.1\Microsoft.Rest.ClientRuntime.Azure.dll|netcoreapp3.1\Microsoft.Rest.ClientRuntime.dll|netcoreapp3.1\Microsoft.Rtc.Management.Acms.EntityModel.dll|netcoreapp3.1\Microsoft.Teams.ConfigAPI.CmdletHostContract.dll|netcoreapp3.1\Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll|netcoreapp3.1\Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll|netcoreapp3.1\Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll|netcoreapp3.1\Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll|netcoreapp3.1\Microsoft.Teams.Policy.Administration.dll|netcoreapp3.1\Microsoft.Teams.PowerShell.Module.deps.json|netcoreapp3.1\Microsoft.Teams.PowerShell.Module.dll|netcoreapp3.1\Microsoft.Teams.PowerShell.Module.pdb|netcoreapp3.1\Microsoft.Teams.PowerShell.Module.xml|netcoreapp3.1\Microsoft.Teams.PowerShell.TeamsCmdlets.dll|netcoreapp3.1\Microsoft.TeamsCmdlets.PowerShell.Connect.dll|netcoreapp3.1\Microsoft.Web.WebView2.Core.dll|netcoreapp3.1\Microsoft.Web.WebView2.WinForms.dll|netcoreapp3.1\Microsoft.Web.WebView2.Wpf.dll|netcoreapp3.1\Newtonsoft.Json.dll|netcoreapp3.1\OneCollectorChannel.dll|netcoreapp3.1\Polly.Contrib.WaitAndRetry.dll|netcoreapp3.1\Polly.dll|netcoreapp3.1\SQLitePCLRaw.batteries_v2.dll|netcoreapp3.1\SQLitePCLRaw.core.dll|netcoreapp3.1\SQLitePCLRaw.provider.e_sqlite3.dll|netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll|netcoreapp3.1\System.Formats.Asn1.dll|netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll|netcoreapp3.1\System.IO.FileSystem.AccessControl.dll|netcoreapp3.1\System.Management.Automation.dll|netcoreapp3.1\System.Management.dll|netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll|netcoreapp3.1\System.Security.AccessControl.dll|netcoreapp3.1\System.Security.Cryptography.Cng.dll|netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll|netcoreapp3.1\System.Security.Principal.Windows.dll|netcoreapp3.1\System.Text.Encodings.Web.dll|netcoreapp3.1\System.Text.Json.dll|netcoreapp3.1\runtimes\win-arm64\native\msalruntime_arm64.dll|netcoreapp3.1\runtimes\win-x64\native\msalruntime.dll|netcoreapp3.1\runtimes\win-x86\native\msalruntime_x005F_x86.dll|_manifest\spdx_2.2\bsi.cose|_manifest\spdx_2.2\bsi.json|_manifest\spdx_2.2\ESRPClientLogs0515105205095.json|_manifest\spdx_2.2\manifest.cat|_manifest\spdx_2.2\manifest.spdx.cose|_manifest\spdx_2.2\manifest.spdx.json|_manifest\spdx_2.2\manifest.spdx.json.sha256 - Add-TeamChannelUser Add-TeamUser Connect-MicrosoftTeams Disconnect-MicrosoftTeams Set-TeamsEnvironmentConfig Clear-TeamsEnvironmentConfig Get-AssociatedTeam Get-MultiGeoRegion Get-Operation Get-SharedWithTeam Get-SharedWithTeamUser Get-Team Get-TeamAllChannel Get-TeamChannel Get-TeamChannelUser Get-TeamIncomingChannel Get-TeamsApp Get-TeamsArtifacts Get-TeamUser Get-M365TeamsApp Get-AllM365TeamsApps Get-AIGeneratedKnowledgeContainer Get-M365UnifiedTenantSettings Get-M365UnifiedCustomPendingApps Get-CsTeamsAcsFederationConfiguration Get-CsTeamsMessagingPolicy Get-CsTeamsMeetingPolicy Get-CsOnlineVoicemailPolicy Get-CsOnlineVoicemailValidationConfiguration Get-CsTeamsAIPolicy Get-CsTeamsFeedbackPolicy Get-CsTeamsUpdateManagementPolicy Get-CsTeamsChannelsPolicy Get-CsTeamsMeetingBrandingPolicy Get-CsTeamsEmergencyCallingPolicy Get-CsTeamsCallHoldPolicy Get-CsTeamsMessagingConfiguration Get-CsTeamsVoiceApplicationsPolicy Get-CsTeamsEventsPolicy Get-CsTeamsExternalAccessConfiguration Get-CsTeamsFilesPolicy Get-CsTeamsCallingPolicy Get-CsTeamsClientConfiguration Get-CsExternalAccessPolicy Get-CsTeamsAppPermissionPolicy Get-CsTeamsAppSetupPolicy Get-CsTeamsFirstPartyMeetingTemplateConfiguration Get-CsTeamsMeetingTemplatePermissionPolicy Get-CsLocationPolicy Get-CsTeamsShiftsPolicy Get-CsTenantNetworkSite Get-CsTeamsCarrierEmergencyCallRoutingPolicy Get-CsTeamsMeetingTemplateConfiguration Get-CsTeamsVirtualAppointmentsPolicy Get-CsTeamsSharedCallingRoutingPolicy Get-CsTeamsTemplatePermissionPolicy Get-CsTeamsComplianceRecordingPolicy Get-CsTeamsComplianceRecordingApplication Get-CsTeamsEducationAssignmentsAppPolicy Get-CsTeamsUpgradeConfiguration Get-CsTeamsAudioConferencingCustomPromptsConfiguration Get-CsTeamsSipDevicesConfiguration Get-CsTeamsCustomBannerText Get-CsTeamsGuestMeetingConfiguration Get-CsTeamsVdiPolicy Get-CsTeamsMediaConnectivityPolicy Get-CsTeamsMeetingConfiguration Get-CsTeamsMobilityPolicy Get-CsTeamsWorkLocationDetectionPolicy Get-CsTeamsRecordingRollOutPolicy Get-CsTeamsRemoteLogCollectionConfiguration Get-CsTeamsRemoteLogCollectionDevice Get-CsTeamsRecordingAndTranscriptionCustomMessage Get-CsTeamsEducationConfiguration Get-CsTeamsBYODAndDesksPolicy Get-CsTeamsNotificationAndFeedsPolicy Get-CsTeamsMultiTenantOrganizationConfiguration Get-CsTeamsPersonalAttendantPolicy Get-CsPrivacyConfiguration Get-DirectToGroupAssignmentsMigrationStatus Get-GroupAssignmentRecommendationsPerPolicyName Get-GroupAssignmentRecommendationsPerPolicyType Get-GroupPolicyAssignmentConflict Grant-CsTeamsAIPolicy Grant-CsTeamsMeetingBrandingPolicy Grant-CsExternalAccessPolicy Grant-CsTeamsCallingPolicy Grant-CsTeamsAppPermissionPolicy Grant-CsTeamsAppSetupPolicy Grant-CsTeamsEventsPolicy Grant-CsTeamsFilesPolicy Grant-CsTeamsMediaConnectivityPolicy Grant-CsTeamsMeetingTemplatePermissionPolicy Grant-CsTeamsCarrierEmergencyCallRoutingPolicy Grant-CsTeamsVirtualAppointmentsPolicy Grant-CsTeamsSharedCallingRoutingPolicy Grant-CsTeamsShiftsPolicy Grant-CsTeamsRecordingRollOutPolicy Grant-CsTeamsVdiPolicy Grant-CsTeamsWorkLocationDetectionPolicy Grant-CsTeamsBYODAndDesksPolicy Grant-CsTeamsPersonalAttendantPolicy Grant-CsTeamsMobilityPolicy Invoke-ClearDirectToGroupAssignmentMigration Invoke-StartDirectToGroupAssignmentMigration New-Team New-TeamChannel New-TeamsApp New-CsTeamsAIPolicy New-CsTeamsMessagingPolicy New-CsTeamsMeetingPolicy New-CsOnlineVoicemailPolicy New-CsTeamsFeedbackPolicy New-CsTeamsUpdateManagementPolicy New-CsTeamsChannelsPolicy New-CsTeamsFilesPolicy New-CsTeamsMediaConnectivityPolicy New-CsTeamsMeetingBrandingTheme New-CsTeamsMeetingBackgroundImage New-CsTeamsMobilityPolicy New-CsTeamsNdiAssuranceSlate New-CsTeamsMeetingBrandingPolicy New-CsTeamsEmergencyCallingPolicy New-CsTeamsEmergencyCallingExtendedNotification New-CsTeamsCallHoldPolicy New-CsTeamsVoiceApplicationsPolicy New-CsTeamsEventsPolicy New-CsTeamsCallingPolicy New-CsExternalAccessPolicy New-CsTeamsAppPermissionPolicy New-CsTeamsAppSetupPolicy New-CsTeamsMeetingTemplatePermissionPolicy New-CsLocationPolicy New-CsTeamsCarrierEmergencyCallRoutingPolicy New-CsTeamsHiddenMeetingTemplate New-CsTeamsVirtualAppointmentsPolicy New-CsTeamsSharedCallingRoutingPolicy New-CsTeamsHiddenTemplate New-CsTeamsTemplatePermissionPolicy New-CsTeamsComplianceRecordingPolicy New-CsTeamsComplianceRecordingApplication New-CsTeamsComplianceRecordingPairedApplication New-CsTeamsWorkLocationDetectionPolicy New-CsTeamsRecordingRollOutPolicy New-CsTeamsRemoteLogCollectionDevice New-CsTeamsRecordingAndTranscriptionCustomMessage New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage New-CsCustomPrompt New-CsCustomPromptPackage New-CsTeamsShiftsPolicy New-CsTeamsCustomBannerText New-CsTeamsVdiPolicy New-CsTeamsBYODAndDesksPolicy New-CsTeamsPersonalAttendantPolicy Remove-AIGeneratedKnowledge Remove-SharedWithTeam Remove-Team Remove-TeamChannel Remove-TeamChannelUser Remove-TeamsApp Remove-TeamUser Remove-CsTeamsAIPolicy Remove-CsTeamsMessagingPolicy Remove-CsTeamsMeetingPolicy Remove-CsOnlineVoicemailPolicy Remove-CsTeamsFeedbackPolicy Remove-CsTeamsFilesPolicy Remove-CsTeamsUpdateManagementPolicy Remove-CsTeamsChannelsPolicy Remove-CsTeamsMediaConnectivityPolicy Remove-CsTeamsMeetingBrandingPolicy Remove-CsTeamsEmergencyCallingPolicy Remove-CsTeamsCallHoldPolicy Remove-CsTeamsVoiceApplicationsPolicy Remove-CsTeamsEventsPolicy Remove-CsTeamsCallingPolicy Remove-CsExternalAccessPolicy Remove-CsTeamsAppPermissionPolicy Remove-CsTeamsAppSetupPolicy Remove-CsTeamsMeetingTemplatePermissionPolicy Remove-CsTeamsMobilityPolicy Remove-CsLocationPolicy Remove-CsTeamsCarrierEmergencyCallRoutingPolicy Remove-CsTeamsVirtualAppointmentsPolicy Remove-CsTeamsSharedCallingRoutingPolicy Remove-CsTeamsTemplatePermissionPolicy Remove-CsTeamsComplianceRecordingPolicy Remove-CsTeamsComplianceRecordingApplication Remove-CsTeamsShiftsPolicy Remove-CsTeamsCustomBannerText Remove-CsTeamsVdiPolicy Remove-CsTeamsWorkLocationDetectionPolicy Remove-CsTeamsRecordingRollOutPolicy Remove-CsTeamsRemoteLogCollectionDevice Remove-CsTeamsRecordingAndTranscriptionCustomMessage Remove-CsTeamsBYODAndDesksPolicy Remove-CsTeamsNotificationAndFeedsPolicy Remove-CsTeamsPersonalAttendantPolicy Set-Team Set-TeamArchivedState Set-TeamChannel Set-TeamPicture Set-TeamsApp Set-CsTeamsAcsFederationConfiguration Set-CsTeamsAIPolicy Set-CsTeamsMessagingPolicy Set-CsTeamsMeetingPolicy Set-CsOnlineVoicemailPolicy Set-CsTeamsFilesPolicy Set-CsOnlineVoicemailValidationConfiguration Set-CsTeamsFeedbackPolicy Set-CsTeamsUpdateManagementPolicy Set-CsTeamsChannelsPolicy Set-CsTeamsMediaConnectivityPolicy Set-CsTeamsMeetingBrandingPolicy Set-CsTeamsEmergencyCallingPolicy Set-CsTeamsEducationConfiguration Set-CsTeamsCallHoldPolicy Set-CsTeamsMessagingConfiguration Set-CsTeamsVoiceApplicationsPolicy Set-CsTeamsEventsPolicy Set-CsTeamsExternalAccessConfiguration Set-CsTeamsCallingPolicy Set-CsTeamsClientConfiguration Set-CsExternalAccessPolicy Set-CsTeamsAppPermissionPolicy Set-CsTeamsAppSetupPolicy Set-CsTeamsFirstPartyMeetingTemplateConfiguration Set-CsTeamsMeetingTemplatePermissionPolicy Set-CsTeamsMultiTenantOrganizationConfiguration Set-CsLocationPolicy Set-CsTeamsCarrierEmergencyCallRoutingPolicy Set-CsTeamsVirtualAppointmentsPolicy Set-CsTeamsSharedCallingRoutingPolicy Set-CsTeamsTemplatePermissionPolicy Set-CsTeamsComplianceRecordingPolicy Set-CsTeamsEducationAssignmentsAppPolicy Set-CsTeamsComplianceRecordingApplication Set-CsTeamsShiftsPolicy Set-CsTeamsUpgradeConfiguration Set-CsTeamsAudioConferencingCustomPromptsConfiguration Set-CsTeamsSipDevicesConfiguration Set-CsTeamsMeetingConfiguration Set-CsTeamsGuestMeetingConfiguration Set-CsTeamsVdiPolicy Set-CsTeamsWorkLocationDetectionPolicy Set-CsTeamsRemoteLogCollectionDevice Set-CsTeamsRecordingRollOutPolicy Set-CsTeamsRecordingAndTranscriptionCustomMessage Set-CsTeamsCustomBannerText Set-CsTeamsBYODAndDesksPolicy Set-CsTeamsNotificationAndFeedsPolicy Set-CsTeamsMobilityPolicy Set-CsTeamsPersonalAttendantPolicy Set-CsPrivacyConfiguration Update-M365TeamsApp Update-M365UnifiedTenantSettings Update-M365UnifiedCustomPendingApp Get-CsBatchOperationDefinition Get-CsBatchOperationStatus Get-CsConfiguration Get-CsGroupPolicyAssignments Get-CsLoginInfo Get-CsUserProvHistory Get-GPAGroupMembers Get-GPAUserMembership Get-NgtProvInstanceFailOverStatus Get-CsTeamsTenantAbuseConfiguration Invoke-CsDirectoryObjectSync Invoke-CsGenericNgtProvCommand Invoke-CsRefreshGroupUsers Invoke-CsReprocessBatchOperation Invoke-CsReprocessGroupPolicyAssignment Move-NgtProvInstance New-CsConfiguration Remove-CsConfiguration Set-CsConfiguration Set-CsTeamsTenantAbuseConfiguration Set-CsPublishPolicySchemaDefaults Get-TeamTargetingHierarchyStatus Remove-TeamTargetingHierarchy Set-TeamTargetingHierarchy Get-TenantPrivateChannelMigrationStatus - Clear-CsOnlineTelephoneNumberOrder Complete-CsOnlineTelephoneNumberOrder Disable-CsOnlineSipDomain Enable-CsOnlineSipDomain Export-CsAcquiredPhoneNumber Export-CsAutoAttendantHolidays Export-CsOnlineAudioFile Find-CsGroup Find-CsOnlineApplicationInstance Get-CsApplicationAccessPolicy Get-CsApplicationMeetingConfiguration Get-CsAutoAttendant Get-CsAutoAttendantHolidays Get-CsAutoAttendantStatus Get-CsAutoAttendantSupportedLanguage Get-CsAutoAttendantSupportedTimeZone Get-CsAutoAttendantTenantInformation Get-CsAutoRecordingTemplate Get-CsBatchPolicyAssignmentOperation Get-CsCallingLineIdentity Get-CsCallQueue Get-CsCloudCallDataConnection Get-CsEffectiveTenantDialPlan Get-CsExportAcquiredPhoneNumberStatus Get-CsGroupPolicyAssignment Get-CsHybridTelephoneNumber Get-CsInboundBlockedNumberPattern Get-CsInboundExemptNumberPattern Get-CsMainlineAttendantAppointmentBookingFlow Get-CsMainlineAttendantFlow Get-CsMainlineAttendantSupportedLanguages Get-CsMainlineAttendantSupportedVoices Get-CsMainlineAttendantTenantInformation Get-CsMainlineAttendantQuestionAnswerFlow Get-CsMeetingMigrationStatus Get-CsOnlineApplicationInstance Get-CsOnlineApplicationInstanceAssociation Get-CsOnlineApplicationInstanceAssociationStatus Get-CsOnlineAudioConferencingRoutingPolicy Get-CsOnlineAudioFile Get-CsOnlineDialInConferencingBridge Get-CsOnlineDialInConferencingLanguagesSupported Get-CsOnlineDialinConferencingPolicy Get-CsOnlineDialInConferencingServiceNumber Get-CsOnlineDialinConferencingTenantConfiguration Get-CsOnlineDialInConferencingTenantSettings Get-CsOnlineDialInConferencingUser Get-CsOnlineDialOutPolicy Get-CsOnlineDirectoryTenant Get-CsOnlineEnhancedEmergencyServiceDisclaimer Get-CsOnlineLisCivicAddress Get-CsOnlineLisLocation Get-CsOnlineLisPort Get-CsOnlineLisSubnet Get-CsOnlineLisSwitch Get-CsOnlineLisWirelessAccessPoint Get-CsOnlinePSTNGateway Get-CsOnlinePstnUsage Get-CsOnlineSchedule Get-CsOnlineSipDomain Get-CsOnlineTelephoneNumber Get-CsOnlineTelephoneNumberCountry Get-CsOnlineTelephoneNumberOrder Get-CsOnlineTelephoneNumberType Get-CsOnlineUser Get-CsOnlineVoicemailUserSettings Get-CsOnlineVoiceRoute Get-CsOnlineVoiceRoutingPolicy Get-CsOnlineVoiceUser Get-CsPhoneNumberAssignment Get-CsPhoneNumberPolicyAssignment Get-CsPhoneNumberTag Get-CsPhoneNumberTenantConfiguration Get-CsPolicyPackage Get-CsSdgBulkSignInRequestStatus Get-CsSDGBulkSignInRequestsSummary Get-CsTeamsAudioConferencingPolicy Get-CsTeamsCallParkPolicy Get-CsTeamsCortanaPolicy Get-CsTeamsEmergencyCallRoutingPolicy Get-CsTeamsEnhancedEncryptionPolicy Get-CsTeamsGuestCallingConfiguration Get-CsTeamsGuestMessagingConfiguration Get-CsTeamsIPPhonePolicy Get-CsTeamsMediaLoggingPolicy Get-CsTeamsMeetingBroadcastConfiguration Get-CsTeamsMeetingBroadcastPolicy Get-CsTeamsMigrationConfiguration Get-CsTeamsNetworkRoamingPolicy Get-CsTeamsRoomVideoTeleConferencingPolicy Get-CsTeamsSettingsCustomApp Get-CsTeamsShiftsAppPolicy Get-CsTeamsShiftsConnectionConnector Get-CsTeamsShiftsConnectionErrorReport Get-CsTeamsShiftsConnection Get-CsTeamsShiftsConnectionInstance Get-CsTeamsShiftsConnectionOperation Get-CsTeamsShiftsConnectionSyncResult Get-CsTeamsShiftsConnectionTeamMap Get-CsTeamsShiftsConnectionWfmTeam Get-CsTeamsShiftsConnectionWfmUser Get-CsTeamsSurvivableBranchAppliance Get-CsTeamsSurvivableBranchAppliancePolicy Get-CsTeamsTargetingPolicy Get-CsTeamsTranslationRule Get-CsTeamsUnassignedNumberTreatment Get-CsTeamsUpgradePolicy Get-CsTeamsVdiPolicy Get-CsTeamsVideoInteropServicePolicy Get-CsTeamsWorkLoadPolicy Get-CsTeamTemplate Get-CsTeamTemplateList Get-CsTenant Get-CsTenantBlockedCallingNumbers Get-CsTenantDialPlan Get-CsTenantFederationConfiguration Get-CsTenantLicensingConfiguration Get-CsTenantMigrationConfiguration Get-CsTenantNetworkConfiguration Get-CsTenantNetworkRegion Get-CsTenantNetworkSubnet Get-CsTenantTrustedIPAddress Get-CsUserCallingSettings Get-CsUserPolicyAssignment Get-CsUserPolicyPackage Get-CsUserPolicyPackageRecommendation Get-CsVideoInteropServiceProvider Get-CsAgent Get-CsAiAgents Grant-CsApplicationAccessPolicy Get-CsComplianceRecordingForCallQueueTemplate Get-CsSharedCallQueueHistoryTemplate Get-CsTagsTemplate Get-CsSharedCallHistoryTemplate Grant-CsCallingLineIdentity Grant-CsDialoutPolicy Grant-CsGroupPolicyPackageAssignment Grant-CsOnlineAudioConferencingRoutingPolicy Grant-CsOnlineVoicemailPolicy Grant-CsOnlineVoiceRoutingPolicy Grant-CsTeamsAudioConferencingPolicy Grant-CsTeamsCallHoldPolicy Grant-CsTeamsCallParkPolicy Grant-CsTeamsChannelsPolicy Grant-CsTeamsCortanaPolicy Grant-CsTeamsEmergencyCallingPolicy Grant-CsTeamsEmergencyCallRoutingPolicy Grant-CsTeamsEnhancedEncryptionPolicy Grant-CsTeamsFeedbackPolicy Grant-CsTeamsIPPhonePolicy Grant-CsTeamsMediaLoggingPolicy Grant-CsTeamsMeetingBroadcastPolicy Grant-CsTeamsMeetingPolicy Grant-CsTeamsMessagingPolicy Grant-CsTeamsRoomVideoTeleConferencingPolicy Grant-CsTeamsSurvivableBranchAppliancePolicy Grant-CsTeamsUpdateManagementPolicy Grant-CsTeamsUpgradePolicy Grant-CsTeamsVideoInteropServicePolicy Grant-CsTeamsVoiceApplicationsPolicy Grant-CsTeamsWorkLoadPolicy Grant-CsTenantDialPlan Grant-CsUserPolicyPackage Grant-CsTeamsComplianceRecordingPolicy Import-CsAutoAttendantHolidays Import-CsOnlineAudioFile Invoke-CsInternalPSTelemetry Move-CsInternalHelper New-CsAgent New-CsApplicationAccessPolicy New-CsAutoAttendant New-CsAutoAttendantCallableEntity New-CsAutoAttendantCallFlow New-CsAutoAttendantCallHandlingAssociation New-CsAutoAttendantDialScope New-CsAutoAttendantMenu New-CsAutoAttendantMenuOption New-CsAutoAttendantPrompt New-CsAutoRecordingTemplate New-CsBatchPolicyAssignmentOperation New-CsBatchPolicyPackageAssignmentOperation New-CsCallingLineIdentity New-CsCallQueue New-CsCloudCallDataConnection New-CsCustomPolicyPackage New-CsEdgeAllowAllKnownDomains New-CsEdgeAllowList New-CsEdgeDomainPattern New-CsGroupPolicyAssignment New-CsHybridTelephoneNumber New-CsInboundBlockedNumberPattern New-CsInboundExemptNumberPattern New-CsMainlineAttendantAppointmentBookingFlow New-CsMainlineAttendantQuestionAnswerFlow New-CsOnlineApplicationInstance New-CsOnlineApplicationInstanceAssociation New-CsOnlineAudioConferencingRoutingPolicy New-CsOnlineDateTimeRange New-CsOnlineLisCivicAddress New-CsOnlineLisLocation New-CsOnlinePSTNGateway New-CsOnlineSchedule New-CsOnlineTelephoneNumberOrder New-CsOnlineTimeRange New-CsOnlineVoiceRoute New-CsOnlineVoiceRoutingPolicy New-CsSdgBulkSignInRequest New-CsTeamsAudioConferencingPolicy New-CsTeamsCallParkPolicy New-CsTeamsCortanaPolicy New-CsTeamsEmergencyCallRoutingPolicy New-CsTeamsEmergencyNumber New-CsTeamsEnhancedEncryptionPolicy New-CsTeamsIPPhonePolicy New-CsTeamsMeetingBroadcastPolicy New-CsTeamsNetworkRoamingPolicy New-CsTeamsRoomVideoTeleConferencingPolicy New-CsTeamsShiftsConnectionBatchTeamMap New-CsTeamsShiftsConnection New-CsTeamsShiftsConnectionInstance New-CsTeamsSurvivableBranchAppliance New-CsTeamsSurvivableBranchAppliancePolicy New-CsTeamsTranslationRule New-CsTeamsUnassignedNumberTreatment New-CsTeamsVdiPolicy New-CsTeamsWorkLoadPolicy New-CsTeamTemplate New-CsTenantDialPlan New-CsTenantNetworkRegion New-CsTenantNetworkSite New-CsTenantNetworkSubnet New-CsTenantTrustedIPAddress New-CsUserCallingDelegate New-CsVideoInteropServiceProvider New-CsVoiceNormalizationRule New-CsOnlineDirectRoutingTelephoneNumberUploadOrder New-CsOnlineTelephoneNumberReleaseOrder New-CsComplianceRecordingForCallQueueTemplate New-CsPhoneNumberBulkUpdateTagsOrder New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder New-CsPhoneNumberBulkUpdateLocationIdOrder New-CsTagsTemplate New-CsTag New-CsSharedCallQueueHistoryTemplate New-CsSharedCallHistoryTemplate Register-CsOnlineDialInConferencingServiceNumber Remove-CsAgent Remove-CsApplicationAccessPolicy Remove-CsAutoAttendant Remove-CsAutoRecordingTemplate Remove-CsCallingLineIdentity Remove-CsCallQueue Remove-CsCustomPolicyPackage Remove-CsGroupPolicyAssignment Remove-CsHybridTelephoneNumber Remove-CsInboundBlockedNumberPattern Remove-CsInboundExemptNumberPattern Remove-CsMainlineAttendantAppointmentBookingFlow Remove-CsMainlineAttendantQuestionAnswerFlow Remove-CsOnlineApplicationInstanceAssociation Remove-CsOnlineAudioConferencingRoutingPolicy Remove-CsOnlineAudioFile Remove-CsOnlineDialInConferencingTenantSettings Remove-CsOnlineLisCivicAddress Remove-CsOnlineLisLocation Remove-CsOnlineLisPort Remove-CsOnlineLisSubnet Remove-CsOnlineLisSwitch Remove-CsOnlineLisWirelessAccessPoint Remove-CsOnlinePSTNGateway Remove-CsOnlineSchedule Remove-CsOnlineTelephoneNumber Remove-CsOnlineVoiceRoute Remove-CsOnlineVoiceRoutingPolicy Remove-CsPhoneNumberAssignment Remove-CsPhoneNumberAssignmentBlock Remove-CsPhoneNumberSmsActivation Remove-CsPhoneNumberTag Remove-CsPhoneNumberTenantConfiguration Remove-CsTeamsAudioConferencingPolicy Remove-CsTeamsCallParkPolicy Remove-CsTeamsCortanaPolicy Remove-CsTeamsEmergencyCallRoutingPolicy Remove-CsTeamsEnhancedEncryptionPolicy Remove-CsTeamsIPPhonePolicy Remove-CsTeamsMeetingBroadcastPolicy Remove-CsTeamsNetworkRoamingPolicy Remove-CsTeamsRoomVideoTeleConferencingPolicy Remove-CsTeamsShiftsConnection Remove-CsTeamsShiftsConnectionInstance Remove-CsTeamsShiftsConnectionTeamMap Remove-CsTeamsShiftsScheduleRecord Remove-CsTeamsSurvivableBranchAppliance Remove-CsTeamsSurvivableBranchAppliancePolicy Remove-CsTeamsTargetingPolicy Remove-CsTeamsTranslationRule Remove-CsTeamsUnassignedNumberTreatment Remove-CsTeamsVdiPolicy Remove-CsTeamsWorkLoadPolicy Remove-CsTeamTemplate Remove-CsTenantDialPlan Remove-CsTenantNetworkRegion Remove-CsTenantNetworkSite Remove-CsTenantNetworkSubnet Remove-CsTenantTrustedIPAddress Remove-CsUserCallingDelegate Remove-CsUserLicenseGracePeriod Remove-CsVideoInteropServiceProvider Remove-CsComplianceRecordingForCallQueueTemplate Remove-CsTagsTemplate Remove-CsSharedCallQueueHistoryTemplate Remove-CsSharedCallHistoryTemplate Set-CsAgent Set-CsApplicationAccessPolicy Set-CsApplicationMeetingConfiguration Set-CsAutoAttendant Set-CsAutoRecordingTemplate Set-CsCallingLineIdentity Set-CsCallQueue Set-CsInboundBlockedNumberPattern Set-CsInboundExemptNumberPattern Set-CsMainlineAttendantAppointmentBookingFlow Set-CsMainlineAttendantQuestionAnswerFlow Set-CsOnlineApplicationInstance Set-CsOnlineAudioConferencingRoutingPolicy Set-CsOnlineDialInConferencingBridge Set-CsOnlineDialInConferencingServiceNumber Set-CsOnlineDialInConferencingTenantSettings Set-CsOnlineDialInConferencingUser Set-CsOnlineDialInConferencingUserDefaultNumber Set-CsOnlineEnhancedEmergencyServiceDisclaimer Set-CsOnlineLisCivicAddress Set-CsOnlineLisLocation Set-CsOnlineLisPort Set-CsOnlineLisSubnet Set-CsOnlineLisSwitch Set-CsOnlineLisWirelessAccessPoint Set-CsOnlinePSTNGateway Set-CsOnlinePstnUsage Set-CsOnlineSchedule Set-CsOnlineVoiceApplicationInstance Set-CsOnlineVoicemailUserSettings Set-CsOnlineVoiceRoute Set-CsOnlineVoiceRoutingPolicy Set-CsOnlineVoiceUser Set-CsPhoneNumberAssignment Set-CsPhoneNumberAssignmentBlock Set-CsPhoneNumberPolicyAssignment Set-CsPhoneNumberSmsActivation Set-CsPhoneNumberTag Set-CsPhoneNumberTenantConfiguration Set-CsTeamsAudioConferencingPolicy Set-CsTeamsCallParkPolicy Set-CsTeamsCortanaPolicy Set-CsTeamsEmergencyCallRoutingPolicy Set-CsTeamsEnhancedEncryptionPolicy Set-CsTeamsGuestCallingConfiguration Set-CsTeamsGuestMessagingConfiguration Set-CsTeamsIPPhonePolicy Set-CsTeamsMeetingBroadcastConfiguration Set-CsTeamsMeetingBroadcastPolicy Set-CsTeamsMigrationConfiguration Set-CsTeamsNetworkRoamingPolicy Set-CsTeamsRoomVideoTeleConferencingPolicy Set-CsTeamsSettingsCustomApp Set-CsTeamsShiftsAppPolicy Set-CsTeamsShiftsConnection Set-CsTeamsShiftsConnectionInstance Set-CsTeamsSurvivableBranchAppliance Set-CsTeamsSurvivableBranchAppliancePolicy Set-CsTeamsTargetingPolicy Set-CsTeamsTranslationRule Set-CsTeamsUnassignedNumberTreatment Set-CsTeamsVdiPolicy Set-CsTeamsWorkLoadPolicy Set-CsTenantBlockedCallingNumbers Set-CsTenantDialPlan Set-CsTenantFederationConfiguration Set-CsTenantMigrationConfiguration Set-CsTenantNetworkRegion Set-CsTenantNetworkSite Set-CsTenantNetworkSubnet Set-CsTenantTrustedIPAddress Set-CsUser Set-CsUserCallingDelegate Set-CsUserCallingSettings Set-CsVideoInteropServiceProvider Set-CsComplianceRecordingForCallQueueTemplate Set-CsTagsTemplate Set-CsSharedCallQueueHistoryTemplate Set-CsSharedCallHistoryTemplate Start-CsExMeetingMigration Sync-CsOnlineApplicationInstance Test-CsEffectiveTenantDialPlan Test-CsInboundBlockedNumberPattern Test-CsTeamsShiftsConnectionValidate Test-CsTeamsTranslationRule Test-CsTeamsUnassignedNumberTreatment Test-CsVoiceNormalizationRule Unregister-CsOnlineDialInConferencingServiceNumber Update-CsAutoAttendant Update-CsCustomPolicyPackage Update-CsPhoneNumberTag Update-CsTeamsShiftsConnection Update-CsTeamsShiftsConnectionInstance Update-CsTeamTemplate New-CsBatchTeamsDeployment Get-CsBatchTeamsDeploymentStatus Get-CsPersonalAttendantSettings Set-CsPersonalAttendantSettings Set-CsOCEContext Clear-CsOCEContext Get-CsRegionContext Set-CsRegionContext Clear-CsRegionContext Get-CsMeetingMigrationTransactionHistory Get-CsMasVersionedSchemaData Get-CsMasObjectChangelog Get-CsBusinessVoiceDirectoryDiagnosticData Get-CsCloudTenant Get-CsCloudUser Get-CsHostingProvider Set-CsTenantUserBackfill Invoke-CsCustomHandlerNgtprov Invoke-CsCustomHandlerCallBackNgtprov New-CsSdgDeviceTaggingRequest Get-CsMoveTenantServiceInstanceTaskStatus Move-CsTenantServiceInstance Move-CsTenantCrossRegion Invoke-CsDirectObjectSync New-CsSDGDeviceTransferRequest Get-CsAadTenant Get-CsAadUser Clear-CsCacheOperation Move-CsAvsTenantPartition Invoke-CsMsodsSync Get-CsUssUserSettings Set-CsUssUserSettings Invoke-CsRehomeuser Set-CsNotifyCache - d910df43-3ca6-4c9c-a2e3-e9f45a8e2ad9 - 5.1 - 4.7.2 - 4.0 - Microsoft Corporation - - - C:\Users\Zac\Documents\PowerShell\Modules\MicrosoftTeams\7.8.0 -
-
-
diff --git a/Modules/MicrosoftTeams/7.8.0/SetMSTeamsReleaseEnvironment.ps1 b/Modules/MicrosoftTeams/7.8.0/SetMSTeamsReleaseEnvironment.ps1 deleted file mode 100644 index 4e4b38718d4a8..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/SetMSTeamsReleaseEnvironment.ps1 +++ /dev/null @@ -1,231 +0,0 @@ -#This file is setting HostingEnvironment environment variable using which we can decide in nested modules, that which cmdlets it has to export. - -# We don't have access to the module at load time, since loading occurs last -# Instead we set up a one-time event to set the OnRemove scriptblock once the module has been loaded -$null = Register-EngineEvent -SourceIdentifier PowerShell.OnIdle -MaxTriggerCount 1 -Action { - $m = Get-Module MicrosoftTeams - $m.OnRemove = { - Write-Verbose "Removing MSTeamsReleaseEnvironment" - $env:MSTeamsReleaseEnvironment = $null - Disconnect-MicrosoftTeams - } -} - -$env:MSTeamsReleaseEnvironment = 'TeamsGA' - -#The below line will be uncommented by build process if its preview module - -#preview $env:MSTeamsReleaseEnvironment = 'TeamsPreview' - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCC6QSrbNq5qY4CX -# 15x6qVrEe3OnMqckrZDKvtChfXP5jaCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIKwhnAu5 -# OLUmTWVzGDxzwu87ECHdTJ+a4iX/WmYDn6qeMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEApbWNTHcdbvM4HEaJFv0HpVwlUV/FJrnYPNPV8AMP -# HbxMEFIk/vBqsulW9zCopZuMhACdWPm6Vl3nQbSTROjKTYYW0zRGG+ouY/qxA1Lc -# lxENhnPTuAeEnaD/IrLyqeAw2WV5K4dFqZurQIn/XhvfYnm6m2C1RYnHikq16zYJ -# aD+KDL952Q6iIVmsxtmhIfVCCl1JiufnXww/eAb8pcj2M9WQ8xf46sfwz9sxZHhl -# x+4+8Me3slX+fSnTf2MIGXu/tI3+Lks+ZLlZGQnhxMapDdSz9PJ/4FXemDw4jqqJ -# V9dRXROBu5auUhcPkadCTeW8WJKwTCMJEgZjcY0TpVa786GCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDWUbEsfWJBCbIUFvFzUIxbG2spA38LdftuNf/V -# ydH1pQIGaftIUmjXGBMyMDI2MDUxNTEwMDYzNy4xMzNaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046MzMwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiEzwDX70g8hpAABAAAC -# ITANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTM5NTRaFw0yNzA1MTcxOTM5NTRaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046MzMwMy0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDbcTACqU1YvRocyWL2PL9fyf/+ -# ULs2qK7U1aZsRnDZSnlCr7K7jgA3eFCEJL5BZ7dUTC0DeZepf+ZC+7HEbB4IdzmJ -# fQAUDFFerqY5VTHmQvP2XA3lWSFj740idcGUHglP5H/PbCJU7GAHWP2HdcCjdx1l -# YAo0A+zLI7xwnTQeMyOXX212Eg4UmDPPJgxdTMw6WFVWsBPWRBi5gDixy2s+7R8A -# Dk5lbBBFDB5h0CjrNWIN7uCAzF5g7trrL8nXIKp10mj9RxhcGQ+tlht6VIvdygRV -# TUGdzFB2/nBvJqQ9kxxFltQST70fEdx4TyaKow/f5+BSh4z4/9f7NXIVVTLn/8kc -# JAfRqFmRrrFt3IKby7VrzmYuoQWD0lmNFtGQ57BrJkPrPFAPek1ALtcbb7FH3nQp -# vi8ngz/MFX/+cnmNFWFU29VVLmzB9XvLZxbYvkeett0mh5lfteeN2rEwUyrdrKuf -# z9h2S6pbate+C2h02CrXwSka0x6ezpTmGkIJLFt25ub/UYXNLdHdsxGD6EfckOIo -# JYsm4MS9F/vSqLNHK89I0vTLBngQEp6LIFkINanRT3PtNx3pNKRKJRALc6L6mhW4 -# hL4aHL749qPfQ72t5qAMm5xiKYMgJ2WanidRLNuI251JIN7raaeA/2vb0XFkZcIb -# TR1pfQGsco4U0g5tjwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFOYjIs5qa6pfuquP -# yyK1FTr5QDCnMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQA4I/3bkdnTxD2rFum3 -# MF8xVKdEkohAObbePrQ+0fr5bRimjz9sVkKT/7gcj4OMcClSYG+IdX6Mp3EYsLHW -# fjvwfzFoeZE+yTbdBj/1VHZQRuCmw6QqeVCTbw2nnS7nBxnWd9oZXbPUpqEawH5D -# qXQaWFgR9A4KWVK/IvXVDMj1PlPCES1P3JonNbdhkkkz49rJuKOm5b7e/BH8loqA -# mXOXRc22yxWVTMWrEp4pslmv8eT7VoY8X/jdKYTPVEXsfmLbVFcqzMuB8vFGfUyW -# sWROS8wgq7lQYfWcYqh7NymoATX+wWYK3zWG7aRciPGUAzznXdf+aHtIWnQLNa5H -# FmSXkiak3fSuprWYZiHhuYjE16hroApcBHpm+8S/kNqhm9WjQX+2BxnYv+Jejy6l -# qTi8fLBLS069WXVw/ptf5IV+FtYl34GvVoeg31UoUmVVZe1SDUJkm9dDXc8l/qBD -# YiAIT2CCsPTyt9XA9JVuHxdP63n7ChvWAO/47QRuCDsUlFJoWwyBwl7jeYpaRVMt -# Qt0iuJMGGjgEaJX1Q/2j8sXURvTceLHDD9ipWt092ZDWMQciDRmhHNFOX1dnjBvk -# /k1UMcg997j5oYznAnSpJvlg/4BP3aVE0h/YH2KgsKbU4NXZHAjJXj2Slqo1C115 -# CG6qBZaFkM8W6vPZCm5qnSezOjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjMzMDMtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQALbEgZZnyYHXJ1DGb5fGjplXptuaCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bD6XjAiGA8y -# MDI2MDUxNTAxNTAyMloYDzIwMjYwNTE2MDE1MDIyWjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsPpeAgEAMAoCAQACAh+9AgH/MAcCAQACAhLPMAoCBQDtskveAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBAAkiLOcy2X5sHyWyXXnosDDeYiMV -# QE1I15pNHamnh8vBMVNJ0EjHRwhaec6BNFp9kW/5sSQVzIY3fHOiroMQHqU9+Y1Z -# Qy27pxt6ggxW4E64b7rSQSH8XpRjC96p4lbAxDjH5EWZRZuLo+Kilx1wHDSu0bKb -# ZQmn6wVpvRN+58pV4uQWALj4AWJI7QkShq0eiwXyI7LamjONGR1Dzu65CONmVDl0 -# p5LRh7XuT+xNCnh8UxYRR4JZ7yTRhuCRv/eARbocrAakcsFJ26Y036P9Dm0rI61G -# lAp1bG/7XIAp6Vihgz+98vzSmSbA1206L0T+EFuwu2ZC96gSDC13q69CfJAxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiEz -# wDX70g8hpAABAAACITANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCD1KUPcX68TwSuWvIG19ZRJ1XpI -# TGGFh1z8voSUeOEcMzCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIADvIQef -# FVUa4BJy8IZywMAvmGSKdUVqEmy9A++PCj1EMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIhM8A1+9IPIaQAAQAAAiEwIgQgSElB53XA -# G6OgsDv//BXmMjRpKfpOStdtqmoOWaeX3EYwDQYJKoZIhvcNAQELBQAEggIAYaMs -# dvOY+uj3VVhFwTl4XVCH6jBTpeHB6lEg4UIFFJWhJoKblVm0MPIyPDyV5WmgHRl9 -# rZQ+3psvy2zsx9VJgHNkpC/dN/Qkd9pSTDApWEvQ5nc69nJZ1UCDjtlNTqmYKrQy -# m3fYik7VOnCvbWGITvKiG0ksBDTJpw8UkF8/rzo/K2MfZUlzSWefPoLvo0WMiA7M -# qeEWB7SEOSqOc279Mj/AYfoFo2xlaL2ZoYOwgy80aLYKJ3lB7uXLtlvfZMys9hWV -# J9+wEanKFnbpDQb6hCy8ERVBwzK7EvxGprrniwJ5TNFtj1vwYtS+D4blHJulT0KU -# vWsAUtwDv4L1H6ODproXLjx2oo6wpM6309XkdW5lMo+t5jp5OYaMcqyAi/Lji1HQ -# spixVIxrtoGtq0z5TzubcmyXDth1dsOWcqh6yR8T3ncSoxcbOrSZNkeb3SG9Pwq+ -# EMEs2CtTlKS1FxFpLWj4iviViQRh71R8n5VYImL2n3okKWAGC4Myuenv13uP02OU -# 65e4cqqij9+TrmqeN+tdzVjmosrUauCT+6JOcm6fjjWvSvtG0C2HQFE/R4oahbow -# 40QO/2biJuun8Ex6lRVPqNp3kD8+RhaN0POWmZRPW88FuFl3BxmotmUTGa2liTIn -# CkT0M8amJGCdkTOk0orUtbiqL3A+1BTNHRGi1Lw= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/SfbRpsModule.format.ps1xml b/Modules/MicrosoftTeams/7.8.0/SfbRpsModule.format.ps1xml deleted file mode 100644 index 17f12677b78d1..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/SfbRpsModule.format.ps1xml +++ /dev/null @@ -1,26565 +0,0 @@ - - - - - DeserializedAddressBookServicePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.AddressBook.AddressBookServicePolicy - - - - - - - - Identity - - - - Description - - - - EnableAzureABS - - - - EnableAzureABSSideBySide - - - - EnableRankedResultsDisplay - - - - DisableAzureABSForUcwa - - - - - - - - DeserializedCallViaWorkPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.CallViaWork.CallViaWorkPolicy - - - - - - - - Identity - - - - Enabled - - - - UseAdminCallbackNumber - - - - AdminCallbackNumber - - - - - - - - DeserializedClientPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Client.ClientPolicy - - - - - - - - Identity - - - - PolicyEntry - - - - Description - - - - AddressBookAvailability - - - - AttendantSafeTransfer - - - - AutoDiscoveryRetryInterval - - - - BlockConversationFromFederatedContacts - - - - CalendarStatePublicationInterval - - - - ; - - - - CustomizedHelpUrl - - - - CustomLinkInErrorMessages - - - - CustomStateUrl - - - - DGRefreshInterval - - - - DisableCalendarPresence - - - - DisableContactCardOrganizationTab - - - - DisableEmailComparisonCheck - - - - DisableEmoticons - - - - DisableFeedsTab - - - - DisableFederatedPromptDisplayName - - - - DisableFreeBusyInfo - - - - DisableHandsetOnLockedMachine - - - - DisableMeetingSubjectAndLocation - - - - DisableHtmlIm - - - - DisableInkIM - - - - DisableOneNote12Integration - - - - DisableOnlineContextualSearch - - - - DisablePhonePresence - - - - DisablePICPromptDisplayName - - - - DisablePoorDeviceWarnings - - - - DisablePoorNetworkWarnings - - - - DisablePresenceNote - - - - DisableRTFIM - - - - DisableSavingIM - - - - DisplayPhoto - - - - EnableAppearOffline - - - - EnableCallLogAutoArchiving - - - - EnableClientAutoPopulateWithTeam - - - - EnableClientMusicOnHold - - - - EnableConversationWindowTabs - - - - EnableEnterpriseCustomizedHelp - - - - EnableEventLogging - - - - EnableExchangeContactSync - - - - EnableExchangeDelegateSync - - - - EnableExchangeContactsFolder - - - - EnableFullScreenVideo - - - - EnableHighPerformanceConferencingAppSharing - - - - EnableHotdesking - - - - EnableIMAutoArchiving - - - - EnableMediaRedirection - - - - EnableMeetingEngagement - - - - EnableNotificationForNewSubscribers - - - - EnableServerConversationHistory - - - - EnableSkypeUI - - - - EnableSQMData - - - - EnableTracing - - - - EnableURL - - - - EnableUnencryptedFileTransfer - - - - EnableVOIPCallDefault - - - - ExcludedContactFolders - - - - HotdeskingTimeout - - - - IMWarning - - - - MAPIPollInterval - - - - MaximumDGsAllowedInContactList - - - - MaximumNumberOfContacts - - - - MaxPhotoSizeKB - - - - MusicOnHoldAudioFile - - - - P2PAppSharingEncryption - - - - EnableHighPerformanceP2PAppSharing - - - - PlayAbbreviatedDialTone - - - - RequireContentPin - - - - SearchPrefixFlags - - - - ShowRecentContacts - - - - ShowManagePrivacyRelationships - - - - ShowSharepointPhotoEditLink - - - - SPSearchInternalURL - - - - SPSearchExternalURL - - - - SPSearchCenterInternalURL - - - - SPSearchCenterExternalURL - - - - TabURL - - - - TracingLevel - - - - TelemetryTier - - - - PublicationBatchDelay - - - - EnableViewBasedSubscriptionMode - - - - WebServicePollInterval - - - - HelpEnvironment - - - - RateMyCallDisplayPercentage - - - - RateMyCallAllowCustomUserFeedback - - - - IMLatencySpinnerDelay - - - - IMLatencyErrorThreshold - - - - SupportModernFilePicker - - - - EnableOnlineFeedback - - - - EnableOnlineFeedbackScreenshots - - - - - - - - DeserializedPolicyEntryTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Client.PolicyEntryType - - - - - - - - Name - - - - Value - - - - - - - - DeserializedClientUpdatePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientUpdate.ClientUpdatePolicy - - - - - - - - Identity - - - - ShowNotification - - - - RedirectClient - - - - UpdateClient - - - - - - - - DeserializedClientUpdateOverridePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientUpdate.ClientUpdateOverridePolicy - - - - - - - - Identity - - - - Enabled - - - - ShowNotification - - - - RedirectClient - - - - UpdateClient - - - - - - - - DeserializedClientVersionPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientVersion.ClientVersionPolicy - - - - - - - - Identity - - - - Rules - - - - Description - - - - - - - - DeserializedRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientVersion.Rule - - - - - - - - RuleId - - - - Description - - - - Action - - - - ActionUrl - - - - MajorVersion - - - - MinorVersion - - - - BuildNumber - - - - QfeNumber - - - - UserAgent - - - - UserAgentFullName - - - - Enabled - - - - CompareOp - - - - - - - - DeserializedRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientVersion.Rule#Decorated - - - - - - - - Identity - - - - Priority - - - - RuleId - - - - Description - - - - Action - - - - ActionUrl - - - - MajorVersion - - - - MinorVersion - - - - BuildNumber - - - - QfeNumber - - - - UserAgent - - - - UserAgentFullName - - - - Enabled - - - - CompareOp - - - - - - - - DeserializedClientVersionConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ClientVersion.ClientVersionConfiguration - - - - - - - - Identity - - - - DefaultAction - - - - DefaultURL - - - - Enabled - - - - - - - - DeserializedExternalAccessPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy - - - - - - - - Identity - - - - Description - - - - EnableFederationAccess - - - - EnableXmppAccess - - - - EnablePublicCloudAudioVideoAccess - - - - EnableOutsideAccess - - - - EnableAcsFederationAccess - - - - EnableTeamsConsumerAccess - - - - EnableTeamsConsumerInbound - - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - - - - - - - DeserializedExternalUserCommunicationPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ExternalUserCommunication.ExternalUserCommunicationPolicy - - - - - - - - Identity - - - - EnableFileTransfer - - - - EnableP2PFileTransfer - - - - AllowPresenceVisibility - - - - AllowTitleVisibility - - - - - - - - DeserializedGraphPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Graph.GraphPolicy - - - - - - - - Identity - - - - Description - - - - EnableMeetingsGraph - - - - EnableSharedLinks - - - - UseStorageService - - - - UseEWSDirectDownload - - - - - - - - DeserializedImArchivingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Im.ImArchivingPolicy - - - - - - - - Identity - - - - Description - - - - ArchiveInternal - - - - ArchiveExternal - - - - - - - - DeserializedLegalInterceptPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Im.LegalInterceptPolicy - - - - - - - - Identity - - - - Description - - - - DeliverySMTPAddress - - - - ExpiryTime - - - - - - - - DeserializedIPPhonePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.IPPhone.IPPhonePolicy - - - - - - - - Identity - - - - UserDialTimeoutMS - - - - KeyboardLockMaxPinRetry - - - - PrioritizedCodecsList - - - - EnablePowerSaveMode - - - - PowerSaveDuringOfficeHoursTimeoutMS - - - - PowerSavePostOfficeHoursTimeoutMS - - - - EnableOneTouchVoicemail - - - - DateTimeFormat - - - - EnableDeviceUpdate - - - - EnableExchangeCalendaring - - - - EnableBetterTogetherOverEthernet - - - - BetterTogetherOverEthernetPairingMode - - - - LocalProvisioningServerUser - - - - LocalProvisioningServerPassword - - - - LocalProvisioningServerAddress - - - - LocalProvisioningServerType - - - - - - - - DeserializedLocationPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - - - - - - Identity - - - - EmergencyNumbers - - - - Description - - - - EnhancedEmergencyServicesEnabled - - - - LocationRequired - - - - UseLocationForE911Only - - - - PstnUsage - - - - EmergencyDialString - - - - EmergencyDialMask - - - - NotificationUri - - - - ConferenceUri - - - - ConferenceMode - - - - LocationRefreshInterval - - - - EnhancedEmergencyServiceDisclaimer - - - - UseHybridVoiceForE911 - - - - EnablePlusPrefix - - - - AllowEmergencyCallsWithoutLineURI - - - - - - - - DeserializedEmergencyNumberView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Location.EmergencyNumber - - - - - - - - DialString - - - - DialMask - - - - - - - - DeserializedMeetingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy - - - - - - - - Identity - - - - AllowIPAudio - - - - AllowIPVideo - - - - AllowMultiView - - - - Description - - - - AllowParticipantControl - - - - AllowAnnotations - - - - DisablePowerPointAnnotations - - - - AllowUserToScheduleMeetingsWithAppSharing - - - - ApplicationSharingMode - - - - AllowNonEnterpriseVoiceUsersToDialOut - - - - AllowAnonymousUsersToDialOut - - - - AllowAnonymousParticipantsInMeetings - - - - AllowFederatedParticipantJoinAsSameEnterprise - - - - AllowExternalUsersToSaveContent - - - - AllowExternalUserControl - - - - AllowExternalUsersToRecordMeeting - - - - AllowPolls - - - - AllowSharedNotes - - - - AllowQandA - - - - AllowOfficeContent - - - - EnableDialInConferencing - - - - EnableAppDesktopSharing - - - - AllowConferenceRecording - - - - EnableP2PRecording - - - - EnableFileTransfer - - - - EnableP2PFileTransfer - - - - EnableP2PVideo - - - - AllowLargeMeetings - - - - EnableOnlineMeetingPromptForLyncResources - - - - EnableDataCollaboration - - - - MaxVideoConferenceResolution - - - - MaxMeetingSize - - - - AudioBitRateKb - - - - VideoBitRateKb - - - - AppSharingBitRateKb - - - - FileTransferBitRateKb - - - - TotalReceiveVideoBitRateKb - - - - EnableMultiViewJoin - - - - CloudRecordingServiceSupport - - - - EnableReliableConferenceDeletion - - - - - - - - DeserializedBroadcastMeetingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.BroadcastMeetingPolicy - - - - - - - - Identity - - - - AllowBroadcastMeeting - - - - AllowOpenBroadcastMeeting - - - - AllowBroadcastMeetingRecording - - - - AllowAnonymousBroadcastMeeting - - - - BroadcastMeetingRecordingEnforced - - - - - - - - DeserializedCloudMeetingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.CloudMeetingPolicy - - - - - - - - Identity - - - - AllowAutoSchedule - - - - IsModernSchedulingEnabled - - - - - - - - DeserializedCloudMeetingOpsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.CloudMeetingOpsPolicy - - - - - - - - Identity - - - - ActivationLocation - - - - - - - - DeserializedCloudVideoInteropPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.CloudVideoInteropPolicy - - - - - - - - Identity - - - - EnableCloudVideoInterop - - - - - - - - DeserializedApplicationAccessPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.ApplicationAccessPolicy - - - - - - - - Identity - - - - AppIds - - - - Description - - - - - - - - DeserializedTeamsMeetingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.TeamsMeetingPolicy - - - - - - - - Identity - - - - Description - - - - AllowChannelMeetingScheduling - - - - AllowMeetNow - - - - AllowPrivateMeetNow - - - - MeetingChatEnabledType - - - - LiveCaptionsEnabledType - - - - DesignatedPresenterRoleMode - - - - AllowIPAudio - - - - AllowIPVideo - - - - AllowEngagementReport - - - - AllowTrackingInReport - - - - IPAudioMode - - - - IPVideoMode - - - - AllowAnonymousUsersToDialOut - - - - AllowAnonymousUsersToStartMeeting - - - - AllowAnonymousUsersToJoinMeeting - - - - BlockedAnonymousJoinClientTypes - - - - AllowedStreamingMediaInput - - - - AllowPrivateMeetingScheduling - - - - AutoAdmittedUsers - - - - AllowCloudRecording - - - - AllowRecordingStorageOutsideRegion - - - - RecordingStorageMode - - - - AllowOutlookAddIn - - - - AllowPowerPointSharing - - - - AllowParticipantGiveRequestControl - - - - AllowExternalParticipantGiveRequestControl - - - - AllowSharedNotes - - - - AllowWhiteboard - - - - AllowTranscription - - - - AllowNetworkConfigurationSettingsLookup - - - - MediaBitRateKb - - - - ScreenSharingMode - - - - VideoFiltersMode - - - - AllowPSTNUsersToBypassLobby - - - - AllowOrganizersToOverrideLobbySettings - - - - PreferredMeetingProviderForIslandsMode - - - - AllowNDIStreaming - - - - AllowUserToJoinExternalMeeting - - - - SpeakerAttributionMode - - - - EnrollUserOverride - - - - RoomAttributeUserOverride - - - - StreamingAttendeeMode - - - - AllowBreakoutRooms - - - - TeamsCameraFarEndPTZMode - - - - AllowMeetingReactions - - - - AllowMeetingRegistration - - - - WhoCanRegister - - - - AllowScreenContentDigitization - - - - AllowCarbonSummary - - - - RoomPeopleNameUserOverride - - - - AllowMeetingCoach - - - - NewMeetingRecordingExpirationDays - - - - LiveStreamingMode - - - - MeetingInviteLanguages - - - - ChannelRecordingDownload - - - - AllowCartCaptionsScheduling - - - - AllowTasksFromTranscript - - - - InfoShownInReportMode - - - - LiveInterpretationEnabledType - - - - QnAEngagementMode - - - - AllowImmersiveView - - - - AllowAvatarsInGallery - - - - AllowAnnotations - - - - AllowDocumentCollaboration - - - - AllowWatermarkForScreenSharing - - - - AllowWatermarkForCameraVideo - - - - AudibleRecordingNotification - - - - - - - - DeserializedMeetingBrandingThemeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingBrandingTheme - - - - - - - - DisplayName - - - - LogoImageLightUri - - - - LogoImageDarkUri - - - - BackgroundImageLightUri - - - - BackgroundImageDarkUri - - - - BrandAccentColor - - - - Enabled - - - - Identity - - - - - - - - DeserializedTeamsEventsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.TeamsEventsPolicy - - - - - - - - Identity - - - - AllowWebinars - - - - ForceStreamingAttendeeMode - - - - EventAccessType - - - - Description - - - - - - - - DeserializedMobilityPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Mobility.MobilityPolicy - - - - - - - - Identity - - - - Description - - - - EnableOutsideVoice - - - - EnableMobility - - - - EnableIPAudioVideo - - - - RequireWIFIForIPVideo - - - - AllowCustomerExperienceImprovementProgram - - - - RequireWiFiForSharing - - - - AllowSaveCallLogs - - - - AllowExchangeConnectivity - - - - AllowSaveIMHistory - - - - AllowSaveCredentials - - - - EnablePushNotifications - - - - EncryptAppData - - - - AllowDeviceContactsSync - - - - RequireIntune - - - - AllowAutomaticPstnFallback - - - - VoiceSettings - - - - - - - - DeserializedOnlineDialinConferencingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineDialinConferencing.OnlineDialinConferencingPolicy - - - - - - - - Identity - - - - AllowService - - - - Description - - - - - - - - DeserializedOnlineDialOutPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineDialOut.OnlineDialOutPolicy - - - - - - - - Identity - - - - AllowPSTNConferencingDialOutType - - - - AllowPSTNOutboundCallingType - - - - - - - - DeserializedOnlineVoicemailPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineVoicemail.OnlineVoicemailPolicy - - - - - - - - Identity - - - - EnableTranscription - - - - ShareData - - - - EnableTranscriptionProfanityMasking - - - - EnableEditingCallAnswerRulesSetting - - - - MaximumRecordingLength - - - - EnableTranscriptionTranslation - - - - PrimarySystemPromptLanguage - - - - SecondarySystemPromptLanguage - - - - - - - - DeserializedPersistentChatPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.PersistentChat.PersistentChatPolicy - - - - - - - - Identity - - - - Description - - - - EnablePersistentChat - - - - - - - - DeserializedPresencePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Presence.PresencePolicy - - - - - - - - Identity - - - - MaxPromptedSubscriber - - - - MaxCategorySubscription - - - - Description - - - - - - - - DeserializedTenantPowerShellPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.RemotePowershell.TenantPowerShellPolicy - - - - - - - - Identity - - - - EnableRemotePowerShellAccess - - - - MaxConnectionsPerTenant - - - - MaxConnectionsPerUser - - - - MaxCmdletsBeforePause - - - - MaxCmdletsPauseSeconds - - - - BypassSkuRestrictions - - - - - - - - DeserializedSmsServicePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Sms.SmsServicePolicy - - - - - - - - Identity - - - - Description - - - - ProxyServiceUrl - - - - EnablePersonalInvite - - - - EnableOutboundIM - - - - SendIMMessageContent - - - - - - - - DeserializedTeamsCallingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallingPolicy - - - - - - - - Identity - - - - Description - - - - AllowPrivateCalling - - - - AllowWebPSTNCalling - - - - AllowSIPDevicesCalling - - - - AllowVoicemail - - - - AllowCallGroups - - - - AllowDelegation - - - - AllowCallForwardingToUser - - - - AllowCallForwardingToPhone - - - - PreventTollBypass - - - - BusyOnBusyEnabledType - - - - MusicOnHoldEnabledType - - - - AllowCloudRecordingForCalls - - - - AllowTranscriptionForCalling - - - - PopoutForIncomingPstnCalls - - - - PopoutAppPathForIncomingPstnCalls - - - - LiveCaptionsEnabledTypeForCalling - - - - AutoAnswerEnabledType - - - - SpamFilteringEnabledType - - - - CallRecordingExpirationDays - - - - AllowCallRedirect - - - - - - - - DeserializedTeamsInteropPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsInteropPolicy - - - - - - - - Identity - - - - AllowEndUserClientOverride - - - - CallingDefaultClient - - - - ChatDefaultClient - - - - - - - - DeserializedTeamsMessagingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMessagingPolicy - - - - - - - - Identity - - - - Description - - - - AllowUrlPreviews - - - - AllowOwnerDeleteMessage - - - - AllowUserEditMessage - - - - AllowUserDeleteMessage - - - - AllowUserDeleteChat - - - - AllowUserChat - - - - AllowRemoveUser - - - - AllowGiphy - - - - GiphyRatingType - - - - AllowGiphyDisplay - - - - AllowPasteInternetImage - - - - AllowMemes - - - - AllowImmersiveReader - - - - AllowStickers - - - - AllowUserTranslation - - - - ReadReceiptsEnabledType - - - - AllowPriorityMessages - - - - AllowSmartReply - - - - AllowSmartCompose - - - - ChannelsInChatListEnabledType - - - - AudioMessageEnabledType - - - - ChatPermissionRole - - - - AllowFullChatPermissionUserToDeleteAnyMessage - - - - AllowFluidCollaborate - - - - AllowVideoMessages - - - - AllowCommunicationComplianceEndUserReporting - - - - - - - - DeserializedTeamsUpgradePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpgradePolicy - - - - - - - - Identity - - - - Description - - - - Mode - - - - NotifySfbUsers - - - - Action - - - - - - - - DeserializedTeamsUpgradeOverridePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpgradeOverridePolicy - - - - - - - - Identity - - - - Description - - - - ProvisionedAsTeamsOnly - - - - SkypePoolMode - - - - Action - - - - Enabled - - - - - - - - DeserializedTeamsMediaLoggingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMediaLoggingPolicy - - - - - - - - Identity - - - - Description - - - - AllowMediaLogging - - - - - - - - DeserializedTeamsVideoInteropServicePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVideoInteropServicePolicy - - - - - - - - Identity - - - - Description - - - - ProviderName - - - - Enabled - - - - - - - - DeserializedTeamsWorkLoadPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsWorkLoadPolicy - - - - - - - - Identity - - - - Description - - - - AllowMeeting - - - - AllowMeetingPinned - - - - AllowMessaging - - - - AllowMessagingPinned - - - - AllowCalling - - - - AllowCallingPinned - - - - - - - - DeserializedTeamsCortanaPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCortanaPolicy - - - - - - - - Identity - - - - Description - - - - CortanaVoiceInvocationMode - - - - AllowCortanaVoiceInvocation - - - - AllowCortanaAmbientListening - - - - AllowCortanaInContextSuggestions - - - - - - - - DeserializedTeamsOwnersPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsOwnersPolicy - - - - - - - - Identity - - - - Description - - - - AllowPrivateTeams - - - - AllowOrgwideTeams - - - - AllowPublicTeams - - - - - - - - DeserializedTeamsMeetingBroadcastPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMeetingBroadcastPolicy - - - - - - - - Identity - - - - Description - - - - AllowBroadcastScheduling - - - - AllowBroadcastTranscription - - - - BroadcastAttendeeVisibilityMode - - - - BroadcastRecordingMode - - - - - - - - DeserializedTeamsAppPermissionPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsAppPermissionPolicy - - - - - - - - Identity - - - - DefaultCatalogApps - - - - GlobalCatalogApps - - - - PrivateCatalogApps - - - - Description - - - - DefaultCatalogAppsType - - - - GlobalCatalogAppsType - - - - PrivateCatalogAppsType - - - - - - - - DeserializedDefaultCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.DefaultCatalogApp - - - - - - - - Id - - - - - - - - DeserializedDefaultCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.DefaultCatalogApp#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - - - - - DeserializedGlobalCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.GlobalCatalogApp - - - - - - - - Id - - - - - - - - DeserializedGlobalCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.GlobalCatalogApp#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - - - - - DeserializedPrivateCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PrivateCatalogApp - - - - - - - - Id - - - - - - - - DeserializedPrivateCatalogAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PrivateCatalogApp#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - - - - - DeserializedTeamsAppSetupPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsAppSetupPolicy - - - - - - - - Identity - - - - AppPresetList - - - - PinnedAppBarApps - - - - PinnedMessageBarApps - - - - AppPresetMeetingList - - - - Description - - - - AllowSideLoading - - - - AllowUserPinning - - - - - - - - DeserializedAppPresetView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPreset - - - - - - - - Id - - - - - - - - DeserializedAppPresetView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPreset#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - - - - - DeserializedPinnedAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedApp - - - - - - - - Id - - - - Order - - - - - - - - DeserializedPinnedAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedApp#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - Order - - - - - - - - DeserializedPinnedMessageBarAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedMessageBarApp - - - - - - - - Id - - - - Order - - - - - - - - DeserializedPinnedMessageBarAppView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedMessageBarApp#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - Order - - - - - - - - DeserializedAppPresetMeetingView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPresetMeeting - - - - - - - - Id - - - - - - - - DeserializedAppPresetMeetingView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPresetMeeting#Decorated - - - - - - - - Identity - - - - Priority - - - - Id - - - - - - - - DeserializedTeamsCallParkPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallParkPolicy - - - - - - - - Identity - - - - Description - - - - AllowCallPark - - - - PickupRangeStart - - - - PickupRangeEnd - - - - ParkTimeoutSeconds - - - - - - - - DeserializedTeamsEducationAssignmentsAppPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEducationAssignmentsAppPolicy - - - - - - - - Identity - - - - ParentDigestEnabledType - - - - MakeCodeEnabledType - - - - TurnItInEnabledType - - - - TurnItInApiUrl - - - - TurnItInApiKey - - - - - - - - DeserializedTeamsEmergencyCallRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyCallRoutingPolicy - - - - - - - - Identity - - - - EmergencyNumbers - - - - AllowEnhancedEmergencyServices - - - - Description - - - - - - - - DeserializedTeamsEmergencyNumberView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyNumber - - - - - - - - EmergencyDialString - - - - EmergencyDialMask - - - - OnlinePSTNUsage - - - - - - - - DeserializedTeamsEmergencyCallingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyCallingPolicy - - - - - - - - Identity - - - - NotificationGroup - - - - NotificationDialOutNumber - - - - ExternalLocationLookupMode - - - - NotificationMode - - - - EnhancedEmergencyServiceDisclaimer - - - - Description - - - - - - - - DeserializedTeamsUpdateManagementPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpdateManagementPolicy - - - - - - - - Identity - - - - Description - - - - AllowManagedUpdates - - - - AllowPreview - - - - UpdateDayOfWeek - - - - UpdateTime - - - - UpdateTimeOfDay - - - - AllowPublicPreview - - - - - - - - DeserializedTeamsNotificationAndFeedsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsNotificationAndFeedsPolicy - - - - - - - - Identity - - - - Description - - - - SuggestedFeedsEnabledType - - - - TrendingFeedsEnabledType - - - - - - - - DeserializedTeamsChannelsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsChannelsPolicy - - - - - - - - Identity - - - - Description - - - - AllowOrgWideTeamCreation - - - - AllowPrivateTeamDiscovery - - - - AllowPrivateChannelCreation - - - - AllowSharedChannelCreation - - - - AllowChannelSharingToExternalUser - - - - AllowUserToParticipateInExternalSharedChannel - - - - - - - - DeserializedTeamsMobilityPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMobilityPolicy - - - - - - - - Identity - - - - Description - - - - IPVideoMobileMode - - - - IPAudioMobileMode - - - - MobileDialerPreference - - - - - - - - DeserializedTeamsSyntheticAutomatedCallPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsSyntheticAutomatedCallPolicy - - - - - - - - Identity - - - - Description - - - - SyntheticAutomatedCallsMode - - - - - - - - DeserializedTeamsTargetingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsTargetingPolicy - - - - - - - - Identity - - - - Description - - - - ManageTagsPermissionMode - - - - TeamOwnersEditWhoCanManageTagsMode - - - - SuggestedPresetTags - - - - CustomTagsMode - - - - ShiftBackedTagsMode - - - - - - - - DeserializedTeamsIPPhonePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsIPPhonePolicy - - - - - - - - Identity - - - - Description - - - - SignInMode - - - - SearchOnCommonAreaPhoneMode - - - - AllowHomeScreen - - - - AllowBetterTogether - - - - AllowHotDesking - - - - HotDeskingIdleTimeoutInMinutes - - - - - - - - DeserializedTeamsVerticalPackagePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVerticalPackagePolicy - - - - - - - - Identity - - - - PackageIncludedPolices - - - - Description - - - - PackageId - - - - FirstRunExperienceId - - - - - - - - DeserializedPolicyTypeToPolicyInstanceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PolicyTypeToPolicyInstance - - - - - - - - PolicyType - - - - PolicyName - - - - - - - - DeserializedTeamsFeedbackPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsFeedbackPolicy - - - - - - - - Identity - - - - UserInitiatedMode - - - - ReceiveSurveysMode - - - - AllowScreenshotCollection - - - - AllowEmailCollection - - - - AllowLogCollection - - - - - - - - DeserializedTeamsComplianceRecordingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsComplianceRecordingPolicy - - - - - - - - Identity - - - - ComplianceRecordingApplications - - - - Enabled - - - - WarnUserOnRemoval - - - - DisableComplianceRecordingAudioNotificationForCalls - - - - Description - - - - - - - - DeserializedComplianceRecordingApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingApplication - - - - - - - - ComplianceRecordingPairedApplications - - - - Id - - - - RequiredBeforeMeetingJoin - - - - RequiredBeforeCallEstablishment - - - - RequiredDuringMeeting - - - - RequiredDuringCall - - - - ConcurrentInvitationCount - - - - - - - - DeserializedComplianceRecordingApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingApplication#Decorated - - - - - - - - Identity - - - - Priority - - - - ComplianceRecordingPairedApplications - - - - Id - - - - RequiredBeforeMeetingJoin - - - - RequiredBeforeCallEstablishment - - - - RequiredDuringMeeting - - - - RequiredDuringCall - - - - ConcurrentInvitationCount - - - - - - - - DeserializedComplianceRecordingPairedApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingPairedApplication - - - - - - - - Id - - - - - - - - DeserializedTeamsShiftsAppPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsShiftsAppPolicy - - - - - - - - Identity - - - - AllowTimeClockLocationDetection - - - - - - - - DeserializedTeamsShiftsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsShiftsPolicy - - - - - - - - Identity - - - - EnableShiftPresence - - - - ShiftNoticeFrequency - - - - ShiftNoticeMessageType - - - - ShiftNoticeMessageCustom - - - - AccessType - - - - AccessGracePeriodMinutes - - - - EnableScheduleOwnerPermissions - - - - - - - - DeserializedTeamsTasksPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsTasksPolicy - - - - - - - - Identity - - - - TasksMode - - - - AllowActivityWhenTasksPublished - - - - - - - - DeserializedTeamsVdiPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVdiPolicy - - - - - - - - Identity - - - - DisableCallsAndMeetings - - - - DisableAudioVideoInCallsAndMeetings - - - - - - - - DeserializedTeamsNetworkRoamingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsNetworkRoamingPolicy - - - - - - - - Identity - - - - AllowIPVideo - - - - MediaBitRateKb - - - - Description - - - - - - - - DeserializedTeamsCarrierEmergencyCallRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCarrierEmergencyCallRoutingPolicy - - - - - - - - Identity - - - - LocationPolicyId - - - - Description - - - - - - - - DeserializedTeamsCallHoldPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallHoldPolicy - - - - - - - - Identity - - - - Description - - - - AudioFileId - - - - - - - - DeserializedTeamsEnhancedEncryptionPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEnhancedEncryptionPolicy - - - - - - - - Identity - - - - CallingEndtoEndEncryptionEnabledType - - - - MeetingEndToEndEncryption - - - - Description - - - - - - - - DeserializedTeamsFilesPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsFilesPolicy - - - - - - - - Identity - - - - NativeFileEntryPoints - - - - SPChannelFilesTab - - - - - - - - DeserializedTeamsWatermarkPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsWatermarkPolicy - - - - - - - - Identity - - - - AllowForScreenSharing - - - - AllowForCameraVideo - - - - Description - - - - - - - - DeserializedTeamsVoiceApplicationsPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVoiceApplicationsPolicy - - - - - - - - Identity - - - - Description - - - - AllowAutoAttendantBusinessHoursGreetingChange - - - - AllowAutoAttendantAfterHoursGreetingChange - - - - AllowAutoAttendantHolidayGreetingChange - - - - AllowAutoAttendantBusinessHoursChange - - - - AllowAutoAttendantTimeZoneChange - - - - AllowAutoAttendantLanguageChange - - - - AllowAutoAttendantHolidaysChange - - - - AllowAutoAttendantBusinessHoursRoutingChange - - - - AllowAutoAttendantAfterHoursRoutingChange - - - - AllowAutoAttendantHolidayRoutingChange - - - - AllowCallQueueWelcomeGreetingChange - - - - AllowCallQueueMusicOnHoldChange - - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - - - AllowCallQueueOptOutChange - - - - AllowCallQueueAgentOptChange - - - - AllowCallQueueMembershipChange - - - - AllowCallQueueRoutingMethodChange - - - - AllowCallQueuePresenceBasedRoutingChange - - - - CallQueueAgentMonitorMode - - - - CallQueueAgentMonitorNotificationMode - - - - AllowCallQueueLanguageChange - - - - AllowCallQueueOverflowRoutingChange - - - - AllowCallQueueTimeoutRoutingChange - - - - AllowCallQueueNoAgentsRoutingChange - - - - AllowCallQueueConferenceModeChange - - - - - - - - DeserializedTeamsRoomVideoTeleConferencingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsRoomVideoTeleConferencingPolicy - - - - - - - - Identity - - - - Description - - - - Enabled - - - - AreaCode - - - - ReceiveExternalCalls - - - - ReceiveInternalCalls - - - - PlaceExternalCalls - - - - PlaceInternalCalls - - - - - - - - DeserializedTeamsMeetingTemplatePermissionPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMeetingTemplatePermissionPolicy - - - - - - - - Identity - - - - HiddenMeetingTemplates - - - - Description - - - - - - - - DeserializedHiddenMeetingTemplateView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.HiddenMeetingTemplate - - - - - - - - Id - - - - - - - - DeserializedTeamsAudioConferencingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.TeamsAudioConferencing.TeamsAudioConferencingPolicy - - - - - - - - Identity - - - - MeetingInvitePhoneNumbers - - - - AllowTollFreeDialin - - - - - - - - DeserializedThirdPartyVideoSystemPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ThirdPartyVideoSystem.ThirdPartyVideoSystemPolicy - - - - - - - - Identity - - - - SupportsSendingLowResolution - - - - - - - - DeserializedUserExperiencePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.UserExperience.UserExperiencePolicy - - - - - - - - Identity - - - - UserExperienceVersion - - - - - - - - DeserializedUserPinPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.UserPin.UserPinPolicy - - - - - - - - Identity - - - - Description - - - - MinPasswordLength - - - - PINHistoryCount - - - - AllowCommonPatterns - - - - PINLifetime - - - - MaximumLogonAttempts - - - - - - - - DeserializedUserServicesPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.UserServices.UserServicesPolicy - - - - - - - - Identity - - - - UcsAllowed - - - - MigrationDelayInDays - - - - EnableAwaySinceIndication - - - - - - - - DeserializedPstnUsagesView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.PstnUsages - - - - - - - - Identity - - - - Usage - - - - - - - - DeserializedOnlinePstnUsagesView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlinePstnUsages - - - - - - - - Identity - - - - Usage - - - - - - - - DeserializedRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.Route - - - - - - - - Description - - - - NumberPattern - - - - PstnUsages - - - - PstnGatewayList - - - - Name - - - - SuppressCallerId - - - - AlternateCallerId - - - - - - - - DeserializedRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.Route#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - NumberPattern - - - - PstnUsages - - - - PstnGatewayList - - - - Name - - - - SuppressCallerId - - - - AlternateCallerId - - - - - - - - DeserializedPstnRoutingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.PstnRoutingSettings - - - - - - - - Identity - - - - Route - - - - EnableLocationBasedRouting - - - - CallViaWorkCallerId - - - - - - - - DeserializedHostedVoicemailPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.Hosted.HostedVoicemailPolicy - - - - - - - - Identity - - - - Description - - - - Destination - - - - Organization - - - - BusinessVoiceEnabled - - - - NgcEnabled - - - - - - - - DeserializedOnlineRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineRoute - - - - - - - - Description - - - - NumberPattern - - - - OnlinePstnUsages - - - - OnlinePstnGatewayList - - - - BridgeSourcePhoneNumber - - - - Name - - - - - - - - DeserializedOnlineRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineRoute#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - NumberPattern - - - - OnlinePstnUsages - - - - OnlinePstnGatewayList - - - - BridgeSourcePhoneNumber - - - - Name - - - - - - - - DeserializedOnlinePstnRoutingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlinePstnRoutingSettings - - - - - - - - Identity - - - - OnlineRoute - - - - - - - - DeserializedTenantBlockedCallingNumbersView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TenantBlockedCallingNumbers - - - - - - - - Identity - - - - InboundBlockedNumberPatterns - - - - InboundExemptNumberPatterns - - - - Enabled - - - - Name - - - - - - - - DeserializedInboundBlockedNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundBlockedNumberPattern - - - - - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - ResourceAccount - - - - - - - - DeserializedInboundBlockedNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundBlockedNumberPattern#Decorated - - - - - - - - Identity - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - ResourceAccount - - - - - - - - DeserializedOutboundBlockedNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OutboundBlockedNumberPattern - - - - - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - - - - - DeserializedOutboundBlockedNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OutboundBlockedNumberPattern#Decorated - - - - - - - - Identity - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - - - - - DeserializedInboundExemptNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundExemptNumberPattern - - - - - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - - - - - DeserializedInboundExemptNumberPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundExemptNumberPattern#Decorated - - - - - - - - Identity - - - - Name - - - - Enabled - - - - Description - - - - Pattern - - - - - - - - DeserializedLocationProfileView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - - - - - - Identity - - - - Description - - - - DialinConferencingRegion - - - - NormalizationRules - - - - PriorityNormalizationRules - - - - CountryCode - - - - State - - - - City - - - - SimpleName - - - - ITUCountryPrefix - - - - - - - - DeserializedNormalizationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule - - - - - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - IsInternalExtension - - - - - - - - DeserializedNormalizationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - IsInternalExtension - - - - - - - - DeserializedTenantDialPlanView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TenantDialPlan - - - - - - - - Identity - - - - Description - - - - NormalizationRules - - - - SimpleName - - - - - - - - DeserializedVoicePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy - - - - - - - - Identity - - - - PstnUsages - - - - CustomCallForwardingSimulRingUsages - - - - Description - - - - AllowSimulRing - - - - AllowCallForwarding - - - - AllowPSTNReRouting - - - - Name - - - - EnableDelegation - - - - EnableTeamCall - - - - EnableCallTransfer - - - - EnableCallPark - - - - EnableBusyOptions - - - - EnableMaliciousCallTracing - - - - EnableBWPolicyOverride - - - - PreventPSTNTollBypass - - - - EnableFMC - - - - CallForwardingSimulRingUsageType - - - - EnableVoicemailEscapeTimer - - - - PSTNVoicemailEscapeTimer - - - - - - - - DeserializedCallerIdPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.CallerIdPolicy - - - - - - - - Identity - - - - Description - - - - Name - - - - EnableUserOverride - - - - ServiceNumber - - - - CallerIDSubstitute - - - - - - - - DeserializedCallingLineIdentityView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.CallingLineIdentity - - - - - - - - Identity - - - - Description - - - - EnableUserOverride - - - - ServiceNumber - - - - CallingIDSubstitute - - - - BlockIncomingPstnCallerID - - - - ResourceAccount - - - - CompanyName - - - - - - - - DeserializedNgcBvMigrationPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NgcBvMigrationPolicy - - - - - - - - Identity - - - - Description - - - - PstnOut - - - - - - - - DeserializedTestConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - - - - - - Name - - - - DialedNumber - - - - TargetDialplan - - - - TargetVoicePolicy - - - - ExpectedTranslatedNumber - - - - ExpectedUsage - - - - ExpectedRoute - - - - - - - - DeserializedTestConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration#Decorated - - - - - - - - Identity - - - - Name - - - - DialedNumber - - - - TargetDialplan - - - - TargetVoicePolicy - - - - ExpectedTranslatedNumber - - - - ExpectedUsage - - - - ExpectedRoute - - - - - - - - DeserializedVoiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration - - - - - - - - Identity - - - - VoiceTestConfigurations - - - - - - - - DeserializedUcPhoneSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.UcPhoneSettings - - - - - - - - Identity - - - - CalendarPollInterval - - - - EnforcePhoneLock - - - - PhoneLockTimeout - - - - MinPhonePinLength - - - - SIPSecurityMode - - - - VoiceDiffServTag - - - - Voice8021p - - - - LoggingLevel - - - - - - - - DeserializedHostedVoicemailPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - - - - - - Identity - - - - Description - - - - Destination - - - - Organization - - - - - - - - DeserializedVoiceRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy - - - - - - - - Identity - - - - PstnUsages - - - - Description - - - - Name - - - - - - - - DeserializedOnlineVoiceRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineVoiceRoutingPolicy - - - - - - - - Identity - - - - OnlinePstnUsages - - - - Description - - - - RouteType - - - - - - - - DeserializedOnlineAudioConferencingRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineAudioConferencingRoutingPolicy - - - - - - - - Identity - - - - OnlinePstnUsages - - - - Description - - - - RouteType - - - - - - - - DeserializedSurvivableBranchApplianceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.SurvivableBranchAppliance - - - - - - - - Fqdn - - - - Site - - - - Description - - - - - - - - DeserializedSurvivableBranchApplianceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.SurvivableBranchAppliance#Decorated - - - - - - - - Identity - - - - Fqdn - - - - Site - - - - Description - - - - - - - - DeserializedTeamsBranchSurvivabilityPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TeamsBranchSurvivabilityPolicy - - - - - - - - Identity - - - - BranchApplianceFqdns - - - - - - - - DeserializedXForestMovePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.XForestMove.XForestMovePolicy - - - - - - - - Identity - - - - FeaturePreferences - - - - DestinationServiceInstance - - - - MoveType - - - - Forced - - - - MoveDate - - - - OffPeakStartInUTC - - - - OffPeakEndInUTC - - - - - - - - DeserializedFeaturePreferenceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.XForestMove.FeaturePreference - - - - - - - - Name - - - - Behaviour - - - - - - - - DeserializedServiceInstanceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ProvisionService.ServiceInstance - - - - - - - - Name - - - - - - - - DeserializedPreferredDataLocationOverwritePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.XForestMove.PreferredDataLocationOverwritePolicy - - - - - - - - Identity - - - - NewPreferredDataLocation - - - - OwnerServiceInstance - - - - OriginalPreferredDataLocation - - - - - - - - DeserializedACPIntegrationSettingView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ACPIntegration.ACPIntegrationSetting - - - - - - - - Identity - - - - Mode - - - - - - - - DeserializedTeamsAcsFederationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsConfiguration.TeamsAcsFederationConfiguration - - - - - - - - Identity - - - - AllowedAcsResources - - - - EnableAcsUsers - - - - - - - - DeserializedTrunkConfigView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsResourceCallingConfiguration.TrunkConfig - - - - - - - - Fqdn - - - - SipSignalingPort - - - - - - - - DeserializedTrunkConfigView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsResourceCallingConfiguration.TrunkConfig#Decorated - - - - - - - - Identity - - - - Fqdn - - - - SipSignalingPort - - - - - - - - DeserializedOnlineRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsResourceCallingConfiguration.OnlineRoute - - - - - - - - Description - - - - NumberPattern - - - - OnlinePstnGatewayList - - - - Name - - - - - - - - DeserializedOnlineRouteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsResourceCallingConfiguration.OnlineRoute#Decorated - - - - - - - - Identity - - - - Description - - - - NumberPattern - - - - OnlinePstnGatewayList - - - - Name - - - - - - - - DeserializedAddressBookSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookSettings - - - - - - - - Identity - - - - RunTimeOfDay - - - - KeepDuration - - - - SynchronizePollingInterval - - - - MaxDeltaFileSizePercentage - - - - UseNormalizationRules - - - - IgnoreGenericRules - - - - EnableFileGeneration - - - - MaxFileShareThreadCount - - - - EnableSearchByDialPad - - - - EnablePhotoSearch - - - - PhotoCacheRefreshInterval - - - - - - - - DeserializedAddressBookNormalizationSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookNormalizationSettings - - - - - - - - Identity - - - - AddressBookNormalizationRules - - - - - - - - DeserializedAddressBookNormalizationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookNormalizationRule - - - - - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedAddressBookNormalizationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookNormalizationRule#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedAddressBookGatingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookGatingSettings - - - - - - - - Identity - - - - AddressBookGatingTenants - - - - AzureDirectoryForGroupExpansionEnabled - - - - AzureDirectoryForGroupExpansionPercent - - - - AzureDirectoryForUserSearchEnabled - - - - AzureDirectoryForUserSearchPercent - - - - AzureDirectoryForUserSearchServiceUrl - - - - - - - - DeserializedAddressBookGatingTenantView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookGatingTenant - - - - - - - - AzureDirectorySearchEnabledUsers - - - - TenantId - - - - AzureDirectoryForGroupExpansionEnabled - - - - AzureDirectoryForGroupExpansionPercent - - - - AzureDirectoryForUserSearchEnabled - - - - AzureDirectoryForUserSearchPercent - - - - - - - - DeserializedAddressBookGatingTenantView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.AddressBookGatingTenant#Decorated - - - - - - - - Identity - - - - Priority - - - - AzureDirectorySearchEnabledUsers - - - - TenantId - - - - AzureDirectoryForGroupExpansionEnabled - - - - AzureDirectoryForGroupExpansionPercent - - - - AzureDirectoryForUserSearchEnabled - - - - AzureDirectoryForUserSearchPercent - - - - - - - - DeserializedAnnouncementView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AnnouncementServiceSettings.Announcement - - - - - - - - Name - - - - AudioFilePrompt - - - - TextToSpeechPrompt - - - - Language - - - - TargetUri - - - - AnnouncementId - - - - - - - - DeserializedAnnouncementView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AnnouncementServiceSettings.Announcement#Decorated - - - - - - - - Identity - - - - Name - - - - AudioFilePrompt - - - - TextToSpeechPrompt - - - - Language - - - - TargetUri - - - - AnnouncementId - - - - - - - - DeserializedVoicePolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.Hosted.VoicePolicy - - - - - - - - Identity - - - - PstnUsages - - - - CustomCallForwardingSimulRingUsages - - - - Description - - - - AllowSimulRing - - - - AllowCallForwarding - - - - AllowPSTNReRouting - - - - Name - - - - EnableDelegation - - - - EnableTeamCall - - - - EnableCallTransfer - - - - EnableCallPark - - - - EnableBusyOptions - - - - EnableMaliciousCallTracing - - - - EnableBWPolicyOverride - - - - PreventPSTNTollBypass - - - - EnableFMC - - - - CallForwardingSimulRingUsageType - - - - VoiceDeploymentMode - - - - EnableVoicemailEscapeTimer - - - - PSTNVoicemailEscapeTimer - - - - TenantAdminEnabled - - - - BusinessVoiceEnabled - - - - - - - - DeserializedArchivingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Archiving.ArchivingSettings - - - - - - - - Identity - - - - EnableArchiving - - - - EnablePurging - - - - PurgeExportedArchivesOnly - - - - BlockOnArchiveFailure - - - - KeepArchivingDataForDays - - - - PurgeHourOfDay - - - - ArchiveDuplicateMessages - - - - CachePurgingInterval - - - - EnableExchangeArchiving - - - - EnableExchangeFileAttachmentCompression - - - - ExchangeFileAttachmentSizeLimit - - - - PurgeMinuteOfPurgeHourOfDay - - - - PurgeTaskWakeupIntervalMinutes - - - - V2PurgeReportingIntervalMinutes - - - - V2PurgeTimeoutMinutes - - - - V2PurgeMaxRetries - - - - V2PurgeMaxDegreeOfParallelism - - - - UseV2PurgingAlgorithm - - - - - - - - DeserializedAudioConferencingProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AudioConferencingProvider.AudioConferencingProvider - - - - - - - - Name - - - - Url - - - - Domain - - - - Port - - - - - - - - DeserializedAudioConferencingProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AudioConferencingProvider.AudioConferencingProvider#Decorated - - - - - - - - Identity - - - - Name - - - - Url - - - - Domain - - - - Port - - - - - - - - DeserializedAudioConferencingFeatureConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AudioConferencingProvider.AudioConferencingFeatureConfiguration - - - - - - - - Identity - - - - EnableAutoSessionsControl - - - - EnableHttpNotifications - - - - EnableConferencingLobby - - - - - - - - DeserializedAudioTeleconferencingServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AudioTeleconferencing.AudioTeleconferencingServiceConfiguration - - - - - - - - Identity - - - - AllowedClientCertificates - - - - ConversationServiceUri - - - - - - - - DeserializedAutodiscoverConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AutodiscoverConfiguration.AutodiscoverConfiguration - - - - - - - - Identity - - - - WebLinks - - - - ExternalSipClientAccessFqdn - - - - ExternalSipClientAccessPort - - - - EnableCertificateProvisioningServiceUrl - - - - EnableCORS - - - - - - - - DeserializedWebLinkView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AutodiscoverConfiguration.WebLink - - - - - - - - Token - - - - Href - - - - - - - - DeserializedTrunkConfigView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig - - - - - - - - InboundTeamsNumberTranslationRules - - - - InboundPstnNumberTranslationRules - - - - OutboundPstnNumberTranslationRules - - - - Fqdn - - - - SipSignalingPort - - - - FailoverTimeSeconds - - - - ForwardCallHistory - - - - ForwardPai - - - - SendSipOptions - - - - MaxConcurrentSessions - - - - Enabled - - - - MediaBypass - - - - GatewaySiteId - - - - GatewaySiteLbrEnabled - - - - GatewayLbrEnabledUserOverride - - - - FailoverResponseCodes - - - - PidfLoSupported - - - - MediaRelayRoutingLocationOverride - - - - ProxySbc - - - - BypassMode - - - - Description - - - - IPAddressVersion - - - - - - - - DeserializedTrunkConfigView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig#Decorated - - - - - - - - Identity - - - - InboundTeamsNumberTranslationRules - - - - InboundPstnNumberTranslationRules - - - - OutboundPstnNumberTranslationRules - - - - Fqdn - - - - SipSignalingPort - - - - FailoverTimeSeconds - - - - ForwardCallHistory - - - - ForwardPai - - - - SendSipOptions - - - - MaxConcurrentSessions - - - - Enabled - - - - MediaBypass - - - - GatewaySiteId - - - - GatewaySiteLbrEnabled - - - - GatewayLbrEnabledUserOverride - - - - FailoverResponseCodes - - - - PidfLoSupported - - - - MediaRelayRoutingLocationOverride - - - - ProxySbc - - - - BypassMode - - - - Description - - - - IPAddressVersion - - - - - - - - DeserializedPstnTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.PstnTranslationRule - - - - - - - - Name - - - - Description - - - - Pattern - - - - Translation - - - - - - - - DeserializedPstnTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.PstnTranslationRule#Decorated - - - - - - - - Identity - - - - Name - - - - Description - - - - Pattern - - - - Translation - - - - - - - - DeserializedBackupServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BackupService.BackupServiceConfiguration - - - - - - - - Identity - - - - SyncInterval - - - - MaxConcurrentCalls - - - - AuthorizedUniversalGroups - - - - AuthorizedLocalAccounts - - - - MaxBatchesPerCmsSync - - - - MaxBatchesPerUserStoreSync - - - - MaxDataConfPackageSizeKB - - - - MaxHighPriQueuePercentagePerUserStoreSync - - - - CmsMaintenanceInterval - - - - - - - - DeserializedBandwidthPolicyServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BandwidthPolicyServiceConfiguration.BandwidthPolicyServiceConfiguration - - - - - - - - Identity - - - - MaxTokenLifetime - - - - LogCleanUpInterval - - - - MaxLogFileSizeMb - - - - EnableLogging - - - - - - - - DeserializedBIConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BIConfiguration.BIConfiguration - - - - - - - - Identity - - - - EnableBI - - - - CosmosVirtualClusterPath - - - - KeepCosmosSummaryDataForDays - - - - KeepCosmosRawDataForDays - - - - CosmosCredentialUserName - - - - CosmosCredentialPassword - - - - PrimaryCosmosCredentialUserName - - - - PrimaryCosmosCredentialPassword - - - - SecondaryCosmosCredentialUserName - - - - SecondaryCosmosCredentialPassword - - - - SyncIntervalInSeconds - - - - EnableFlag - - - - PrimaryCosmosCredentialExpirationDate - - - - SecondaryCosmosCredentialExpirationDate - - - - - - - - DeserializedAzureConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BRB.AzureConfiguration - - - - - - - - Identity - - - - AzureStorageAccountName - - - - AzureStorageAccountKey - - - - AzureStorageAccountKeyNew - - - - TMXStorageAccountName - - - - TMXStorageAccountKey - - - - TMXStorageAccountKeyNew - - - - SQLStorageSource - - - - SQLStorageDatabase - - - - SQLStorageUserId - - - - AzureSQLStoragePassword - - - - AzureSQLStoragePasswordNew - - - - - - - - DeserializedBusinessVoiceTenantFlightingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceTenantFlightingSettings - - - - - - - - Identity - - - - DefaultRing - - - - - - - - DeserializedPstnEntitlementSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.PstnEntitlementSettings - - - - - - - - Identity - - - - Regions - - - - EnableChecks - - - - MaximumTickRequests - - - - SyncInboundCalls - - - - SyncOutboundCalls - - - - - - - - DeserializedPstnEntitlementRegionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.PstnEntitlementRegion - - - - - - - - Region - - - - EnableChecks - - - - Url - - - - - - - - DeserializedBusinessVoiceFeatureConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceFeatureConfiguration - - - - - - - - Identity - - - - EnableAnnouncements - - - - EnableCarrierProfileFlighting - - - - EnableMedSrvRingBasedRouting - - - - EnableRingBasedBVRouting - - - - EnableCallerIdFlighting - - - - DefaultMediationServerRing - - - - EnableDiagCodesWhitelistForAnsServiceSupport - - - - DiagCodesForAnsService - - - - EnableTenantDialPlans - - - - EnableAcmsReadForTranslationService - - - - OverrideDefaultProfile - - - - EnableEcsFlighting - - - - EnableSmartRetry - - - - - - - - DeserializedBusinessVoiceCarrierProfileView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceCarrierProfile - - - - - - - - RingRules - - - - Provider - - - - ProviderGuid - - - - DefaultPstnUsage - - - - - - - - DeserializedBusinessVoiceCarrierProfileView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceCarrierProfile#Decorated - - - - - - - - Identity - - - - RingRules - - - - Provider - - - - ProviderGuid - - - - DefaultPstnUsage - - - - - - - - DeserializedBusinessVoiceCarrierProfileRingRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceCarrierProfileRingRule - - - - - - - - Ring - - - - CallType - - - - PstnUsage - - - - - - - - DeserializedBusinessVoiceCarrierProfileConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.BusinessVoice.BusinessVoiceCarrierProfileConfiguration - - - - - - - - Identity - - - - BusinessVoiceCarrierProfile - - - - - - - - DeserializedCdrSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CallDetailRecording.CdrSettings - - - - - - - - Identity - - - - EnableCDR - - - - EnableUdcLite - - - - EnablePurging - - - - KeepCallDetailForDays - - - - KeepErrorReportForDays - - - - PurgeHourOfDay - - - - - - - - DeserializedCallParkServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CallParkServiceSettings.CallParkServiceSettings - - - - - - - - Identity - - - - OnTimeoutURI - - - - MaxCallPickupAttempts - - - - CallPickupTimeoutThreshold - - - - EnableMusicOnHold - - - - - - - - DeserializedCentralizedLoggingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.CentralizedLoggingConfiguration - - - - - - - - Identity - - - - Scenarios - - - - SearchTerms - - - - SecurityGroups - - - - Regions - - - - EtlModeEnabled - - - - EtlFileFolder - - - - EtlFileRolloverSizeMB - - - - EtlFileRolloverMinutes - - - - ZipEtlEnabled - - - - LocalSearchMode - - - - EtlNtfsCompressionEnabled - - - - TmfFileSearchPath - - - - CacheFileLocalFolders - - - - CacheFileNetworkFolder - - - - CacheFileLocalRetentionPeriod - - - - CacheFileLocalMaxDiskUsage - - - - ComponentThrottleLimit - - - - ComponentThrottleSample - - - - MinimumClsAgentServiceVersion - - - - NetworkUsagePacketSize - - - - NetworkUsageThreshold - - - - Version - - - - InsertTypesForSubstringMatch - - - - ETLMinFreeSpaceInDiskInBytes - - - - ETLEnoughFreeSpaceInDiskInBytes - - - - ETLMaxQuotaInBytes - - - - ETLEnoughQuotaInBytes - - - - EtlMaxRetentionInDays - - - - EtlModeRevision - - - - ETLMinQuotaInBytes - - - - LocalSearchModeRevision - - - - - - - - DeserializedScenarioView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Scenario - - - - - - - - Provider - - - - Name - - - - - - - - DeserializedScenarioView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Scenario#Decorated - - - - - - - - Identity - - - - Provider - - - - Name - - - - - - - - DeserializedProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Provider - - - - - - - - Name - - - - Type - - - - Level - - - - Flags - - - - Guid - - - - Role - - - - - - - - DeserializedSearchTermView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.SearchTerm - - - - - - - - Type - - - - Inserts - - - - - - - - DeserializedSearchTermView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.SearchTerm#Decorated - - - - - - - - Identity - - - - Type - - - - Inserts - - - - - - - - DeserializedSecurityGroupView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.SecurityGroup - - - - - - - - Name - - - - AccessLevel - - - - - - - - DeserializedSecurityGroupView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.SecurityGroup#Decorated - - - - - - - - Identity - - - - Name - - - - AccessLevel - - - - - - - - DeserializedRegionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Region - - - - - - - - Name - - - - SecurityGroupSuffix - - - - Sites - - - - OtherRegionAccess - - - - - - - - DeserializedRegionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Region#Decorated - - - - - - - - Identity - - - - Name - - - - SecurityGroupSuffix - - - - Sites - - - - OtherRegionAccess - - - - - - - - DeserializedCloudPresenceServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CloudPresenceService.CloudPresenceServiceConfiguration - - - - - - - - Identity - - - - ServiceUri - - - - EnableCloudPresenceForwarding - - - - BatchSize - - - - BatchDelay - - - - MaxRetries - - - - RetryBackoff - - - - - - - - DeserializedCMSConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CMSConfiguration.CMSConfiguration - - - - - - - - Identity - - - - IOFailureAlertThreshold - - - - OutOfDateAlertThreshold - - - - ReplicationSyntheticTransactionInterval - - - - CheckVersionMismatch - - - - QueryConfigChangesMinimumInterval - - - - QueryConfigChangesInterval - - - - UpdateReplicaStatusTimeout - - - - EnableReplicationSynchronization - - - - EnableUpdateIsActiveFlag - - - - EnableServiceConsumerMdsLogging - - - - EnableAcmsReaderMdsLogging - - - - EnableAcmsToCmsMncTenantSync - - - - AcmsToCmsMncTenantSyncInterval - - - - UseAcmsOnlyForRegistrarConfig - - - - MaxConsecutiveAcmsToCmsMncSyncTransientFailures - - - - AcmsClientHttpClientTimeout - - - - CleanupOrphanedDocsTaskIntervalInSecs - - - - CleanupOrphanedDocsTaskRetryCount - - - - CleanupOrphanedDocsTaskRetryIntervalInSecs - - - - ConcurrentHttpConnectionLimit - - - - MaximumReplicationBatchSize - - - - - - - - DeserializedCMSReplicationSyntheticTransactionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CMSReplicationSyntheticTransaction.CMSReplicationSyntheticTransaction - - - - - - - - Identity - - - - TimeStamp - - - - - - - - DeserializedConferencingGatewayConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ConferencingGatewayConfiguration.ConferencingGatewayConfiguration - - - - - - - - Identity - - - - ConferencingGatewayEndpoint - - - - EnableAudioVideoToConferencingGateway - - - - - - - - DeserializedConversationHistorySettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ConversationHistory.ConversationHistorySettings - - - - - - - - Identity - - - - EnableServerConversationHistory - - - - MaxContinuedConversationRetry - - - - EnableDisplayNameResolution - - - - - - - - DeserializedDeploymentConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeploymentConfiguration.DeploymentConfiguration - - - - - - - - Identity - - - - DeploymentType - - - - - - - - DeserializedDeviceUpdateConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeviceUpdate.DeviceUpdateConfiguration - - - - - - - - Identity - - - - ValidLogFileTypes - - - - ValidLogFileExtensions - - - - MaxLogFileSize - - - - MaxLogCacheLimit - - - - LogCleanUpInterval - - - - LogFlushInterval - - - - LogCleanUpTimeOfDay - - - - - - - - DeserializedRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeviceUpdate.Rule - - - - - - - - Id - - - - DeviceType - - - - Brand - - - - Model - - - - Revision - - - - Locale - - - - UpdateType - - - - ApprovedVersion - - - - RestoreVersion - - - - PendingVersion - - - - - - - - DeserializedRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeviceUpdate.Rule#Decorated - - - - - - - - Identity - - - - Id - - - - DeviceType - - - - Brand - - - - Model - - - - Revision - - - - Locale - - - - UpdateType - - - - ApprovedVersion - - - - RestoreVersion - - - - PendingVersion - - - - - - - - DeserializedDeviceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeviceUpdate.Device - - - - - - - - Name - - - - IdentifierType - - - - Identifier - - - - - - - - DeserializedDeviceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DeviceUpdate.Device#Decorated - - - - - - - - Identity - - - - Name - - - - IdentifierType - - - - Identifier - - - - - - - - DeserializedDiagnosticFilterSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Diagnostics.DiagnosticFilterSettings - - - - - - - - Identity - - - - Filter - - - - LoggingShare - - - - LogAllSipHeaders - - - - - - - - DeserializedFilterView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Diagnostics.Filter - - - - - - - - Fqdn - - - - Uri - - - - Enabled - - - - ExcludeRegisterMessages - - - - ExcludeConferenceMessages - - - - ExcludePresenceNotifications - - - - ExcludeSubscribeMessages - - - - ExcludeSuccessfulRequests - - - - ExcludeMidDialogRequests - - - - ExcludeTypingNotifications - - - - - - - - DeserializedDiagnosticHeaderSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Diagnostics.DiagnosticHeaderSettings - - - - - - - - Identity - - - - SendToOutsideUnauthenticatedUsers - - - - SendToExternalNetworks - - - - SendToExternalNetworksOnServiceEdge - - - - - - - - DeserializedDialInConferencingDtmfConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration - - - - - - - - Identity - - - - CommandCharacter - - - - MuteUnmuteCommand - - - - AudienceMuteCommand - - - - LockUnlockConferenceCommand - - - - HelpCommand - - - - PrivateRollCallCommand - - - - EnableDisableAnnouncementsCommand - - - - AdmitAll - - - - OperatorLineUri - - - - - - - - DeserializedDialInConferencingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration - - - - - - - - Identity - - - - EntryExitAnnouncementsType - - - - BatchToneAnnouncements - - - - EnableNameRecording - - - - EntryExitAnnouncementsEnabledByDefault - - - - PinAuthType - - - - EnableAccessibilityOptions - - - - - - - - DeserializedDialInConferencingLanguageListView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingLanguageList - - - - - - - - Identity - - - - Languages - - - - - - - - DeserializedTenantFederationSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings - - - - - - - - Identity - - - - AllowedDomains - - - - BlockedDomains - - - - AllowedTrialTenantDomains - - - - AllowFederatedUsers - - - - AllowTeamsConsumer - - - - AllowTeamsConsumerInbound - - - - TreatDiscoveredPartnersAsUnverified - - - - SharedSipAddressSpace - - - - RestrictTeamsConsumerToExternalUserProfiles - - - - BlockAllSubdomains - - - - ExternalAccessWithTrialTenants - - - - SecurityTeamAllowBlockListDelegation - - - - EnableExternalAccessRestrictionsForChatParticipants - - - - EnableMutualFederationForChatParticipants - - - - - - - - DeserializedAllowedDomainsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomains - - - - - - - - AllowedDomainsChoice - - - - - - - - DeserializedAllowListView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowList - - - - - - - - AllowedDomain - - - - - - - - DeserializedDomainPatternView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DomainPattern - - - - - - - - Domain - - - - - - - - DeserializedAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - - - - - - Domain - - - - ProxyFqdn - - - - VerificationLevel - - - - Comment - - - - MarkForMonitoring - - - - - - - - DeserializedAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - ProxyFqdn - - - - VerificationLevel - - - - Comment - - - - MarkForMonitoring - - - - - - - - DeserializedBlockedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - - - - - - Domain - - - - Comment - - - - - - - - DeserializedBlockedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - Comment - - - - - - - - DeserializedAdditionalInternalDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AdditionalInternalDomain - - - - - - - - Domain - - - - - - - - DeserializedAdditionalInternalDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AdditionalInternalDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - - - - - DeserializedMediaRelaySettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.MediaRelaySettings - - - - - - - - Identity - - - - MaxTokenLifetime - - - - MaxBandwidthPerUserKb - - - - MaxBandwidthPerPortKb - - - - PermissionListIgnoreSeconds - - - - - - - - DeserializedEmailConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Email.EmailConfiguration - - - - - - - - Identity - - - - EmailAccountName - - - - EmailAccountPassword - - - - EmailAccountDomain - - - - - - - - DeserializedEventServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.EventServiceSettings.EventServiceSettings - - - - - - - - Identity - - - - EnableRemoteEventChannelService - - - - EventChannelServiceUrl - - - - EventChannelAudienceUrl - - - - - - - - DeserializedVoicemailReroutingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ExumRouting.VoicemailReroutingConfiguration - - - - - - - - Identity - - - - Enabled - - - - AutoAttendantNumber - - - - SubscriberAccessNumber - - - - - - - - DeserializedFIPSConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.FIPSConfiguration.FIPSConfiguration - - - - - - - - Identity - - - - RequireFIPSCompliantMedia - - - - - - - - DeserializedFlightConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.FlightConfiguration.FlightConfiguration - - - - - - - - Identity - - - - FlightDefinitions - - - - - - - - DeserializedFlightDefinitionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.FlightConfiguration.FlightDefinition - - - - - - - - Cmdlet - - - - Name - - - - - - - - DeserializedFlightDefinitionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.FlightConfiguration.FlightDefinition#Decorated - - - - - - - - Identity - - - - Priority - - - - Cmdlet - - - - Name - - - - - - - - DeserializedFlightingUserConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.FlightingUserConfiguration.FlightingUserConfiguration - - - - - - - - Identity - - - - Tenant1PercentList - - - - Tenant5PercentList - - - - Tenant10PercentList - - - - Tenant15PercentList - - - - Tenant20PercentList - - - - Tenant25PercentList - - - - Tenant30PercentList - - - - Tenant35PercentList - - - - Tenant40PercentList - - - - Tenant45PercentList - - - - Tenant50PercentList - - - - Tenant55PercentList - - - - Tenant60PercentList - - - - Tenant65PercentList - - - - Tenant70PercentList - - - - Tenant75PercentList - - - - Tenant80PercentList - - - - Tenant85PercentList - - - - Tenant90PercentList - - - - Tenant95PercentList - - - - UserAllowlist - - - - TenantAllowlist - - - - TenantDenylist - - - - - - - - DeserializedGraphApiConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.GraphApiConfiguration.GraphApiConfiguration - - - - - - - - Identity - - - - LoginUri - - - - GraphUri - - - - ClientId - - - - GraphLookupEnabled - - - - GraphReadWriteEnabled - - - - AdminAuthGraphEnabled - - - - TenantRemotePowershellClientId - - - - TestToken - - - - - - - - DeserializedGraphSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Graph.GraphSettings - - - - - - - - Identity - - - - EnableMeetingsGraph - - - - StorageServiceUrl - - - - DisableEmbeddedDocChat - - - - EnableFileAttachmentsFromCalendar - - - - FileAttachmentExtensionsBlacklist - - - - EnableInlineFileAttachmentsFromCalendar - - - - InlineFileAttachmentExtensionsBlacklist - - - - EnableReferenceAttachmentsFromCalendar - - - - ReferenceAttachmentExtensionsBlacklist - - - - EnableInlineReferenceAttachmentsFromCalendar - - - - InlineReferenceAttachmentExtensionsBlacklist - - - - AriaTenantToken - - - - EcsAgentName - - - - EcsInProduction - - - - EcsRefreshIntervalInMinutes - - - - - - - - DeserializedHealthAgentConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HealthAgentConfiguration.HealthAgentConfiguration - - - - - - - - Identity - - - - EnableCosmosUpload - - - - HLBListenerPort - - - - ForceHLBPortOpen - - - - - - - - DeserializedRegistrarView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HealthMonitoring.Registrar - - - - - - - - FirstTestUserSipUri - - - - FirstTestSamAccountName - - - - SecondTestUserSipUri - - - - SecondTestSamAccountName - - - - TargetFqdn - - - - - - - - DeserializedRegistrarView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HealthMonitoring.Registrar#Decorated - - - - - - - - Identity - - - - FirstTestUserSipUri - - - - FirstTestSamAccountName - - - - SecondTestUserSipUri - - - - SecondTestSamAccountName - - - - TargetFqdn - - - - - - - - DeserializedHostedUserMigrationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HostedUserMigration.HostedUserMigrationConfiguration - - - - - - - - Identity - - - - AuthorizedTenantWellKnownGroups - - - - MaxSessionsInTotal - - - - MaxSessionsPerTenant - - - - SessionTimeoutInSecond - - - - PublishRoutingGroupDocumentInterval - - - - AuthorizedAdminCacheExpirationMinutes - - - - MigrateConfTableFromOnPremToOnline - - - - MigrateConfTableFromOnlineToOnPrem - - - - ClearPstnLocalId - - - - EnableMeetingMigration - - - - EnableSfbToTeamsMeetingMigration - - - - TeamsContactsEndpoint - - - - TeamsContactsAudience - - - - IsEcsProdEnvironment - - - - EnableMMSServiceInHMS - - - - EcsEnvironment - - - - - - - - DeserializedHuntGroupConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HuntGroupConfiguration.HuntGroupConfiguration - - - - - - - - Identity - - - - ApplicationId - - - - DefaultMusicOnHoldId - - - - CallbackUri - - - - DistributionListExpansionUri - - - - ClientAudience - - - - LineUriValidationRules - - - - MaxNumberOfHuntGroupsPerTenant - - - - - - - - DeserializedTenantHybridConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.TenantHybridConfiguration - - - - - - - - Identity - - - - HybridPSTNSites - - - - HybridPSTNAppliances - - - - TenantUpdateTimeWindows - - - - PeerDestination - - - - HybridConfigServiceInternalUrl - - - - HybridConfigServiceExternalUrl - - - - UseOnPremDialPlan - - - - - - - - DeserializedHybridPSTNSiteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.HybridPSTNSite - - - - - - - - Index - - - - Name - - - - EdgeFQDN - - - - EnableAutoUpdate - - - - LastTopologyUpdateTime - - - - BitsUpdateTimeWindowList - - - - OsUpdateTimeWindowList - - - - - - - - DeserializedHybridPSTNSiteView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.HybridPSTNSite#Decorated - - - - - - - - Identity - - - - Index - - - - Name - - - - EdgeFQDN - - - - EnableAutoUpdate - - - - LastTopologyUpdateTime - - - - BitsUpdateTimeWindowList - - - - OsUpdateTimeWindowList - - - - - - - - DeserializedHybridPSTNApplianceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.HybridPSTNAppliance - - - - - - - - Identity - - - - Name - - - - SiteIndex - - - - MediationServerIPAddress - - - - MediationServerFqdn - - - - MediationServerGruu - - - - MaintenanceMode - - - - ConfigurationReplicatedOn - - - - ConfigurationSnapshot - - - - ConfigurationSnapshotUpdatedOn - - - - RegistrationStatus - - - - RegistrationAction - - - - RunningVersion - - - - RunningStatus - - - - RunningError - - - - OsUpdatedOn - - - - DeployedOn - - - - StatusUpdatedOn - - - - DeploymentVersion - - - - DeploymentStatus - - - - DeploymentError - - - - DeploymentStartTime - - - - OsUpdateStatus - - - - OsUpdateError - - - - OsUpdateStartTime - - - - - - - - DeserializedHybridPSTNApplianceView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.HybridPSTNAppliance#Decorated - - - - - - - - Identity - - - - Identity - - - - Name - - - - SiteIndex - - - - MediationServerIPAddress - - - - MediationServerFqdn - - - - MediationServerGruu - - - - MaintenanceMode - - - - ConfigurationReplicatedOn - - - - ConfigurationSnapshot - - - - ConfigurationSnapshotUpdatedOn - - - - RegistrationStatus - - - - RegistrationAction - - - - RunningVersion - - - - RunningStatus - - - - RunningError - - - - OsUpdatedOn - - - - DeployedOn - - - - StatusUpdatedOn - - - - DeploymentVersion - - - - DeploymentStatus - - - - DeploymentError - - - - DeploymentStartTime - - - - OsUpdateStatus - - - - OsUpdateError - - - - OsUpdateStartTime - - - - - - - - DeserializedTenantUpdateTimeWindowView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.TenantUpdateTimeWindow - - - - - - - - Name - - - - Type - - - - StartTime - - - - Duration - - - - DayOfMonth - - - - WeeksOfMonth - - - - DaysOfWeek - - - - - - - - DeserializedTenantUpdateTimeWindowView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.HybridConfiguration.TenantUpdateTimeWindow#Decorated - - - - - - - - Identity - - - - Name - - - - Type - - - - StartTime - - - - Duration - - - - DayOfMonth - - - - WeeksOfMonth - - - - DaysOfWeek - - - - - - - - DeserializedIfxLogSipMessageView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.IfxLogSipMessage.IfxLogSipMessage - - - - - - - - Identity - - - - Enable - - - - MethodFilter - - - - ResponseCodeFilter - - - - EnableInboundMessages - - - - EnableOutboundMessages - - - - EnableSipRequests - - - - EnableSipResponses - - - - IgnorePollingSubscribe - - - - Office365HashCertFingerprint - - - - - - - - DeserializedImConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Im.ImConfiguration - - - - - - - - Identity - - - - EnableOfflineIm - - - - - - - - DeserializedImFilterConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ImFilter.ImFilterConfiguration - - - - - - - - Identity - - - - Prefixes - - - - AllowMessage - - - - WarnMessage - - - - Enabled - - - - IgnoreLocal - - - - BlockFileExtension - - - - Action - - - - - - - - DeserializedFileTransferFilterConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ImFilter.FileTransferFilterConfiguration - - - - - - - - Identity - - - - Extensions - - - - Enabled - - - - Action - - - - - - - - DeserializedImTranslationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ImTranslation.ImTranslationConfiguration - - - - - - - - Identity - - - - TranslationType - - - - ClientId - - - - ClientSecret - - - - AccessTokenUri - - - - ServiceUri - - - - ApplicationId - - - - - - - - DeserializedKerberosAccountAssignmentView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.KerberosAccount.KerberosAccountAssignment - - - - - - - - Identity - - - - UserAccount - - - - - - - - DeserializedLegalInterceptServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.LegalInterceptService.LegalInterceptServiceConfiguration - - - - - - - - Identity - - - - RunInterval - - - - MaxQueueItemSize - - - - MaxADRetrieveCount - - - - QueryStartTimeSpan - - - - SMTPServer - - - - SMTPServerPort - - - - EmailFrom - - - - EndSessionDetectTimeSpan - - - - EnableLegalIntercept - - - - RetryCount - - - - - - - - DeserializedLogRetentionServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.LogRetentionService.LogRetentionServiceConfiguration - - - - - - - - Identity - - - - RetryInterval - - - - RunInterval - - - - MaxQueueItemSize - - - - QueryStartTimeSpan - - - - LogRetentionDiscoveryUrl - - - - WebProxy - - - - ReceiveTimeout - - - - SendTimeout - - - - MaxReceivedMessageByte - - - - MaxBufferPoolByte - - - - MaxStringContentByte - - - - MaxADRetrieveCount - - - - - - - - DeserializedManagementConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Management.ManagementConfiguration - - - - - - - - Identity - - - - Office365DomainSuffixes - - - - MaxConnectionCountPerServer - - - - MaxConnectionCountPerUser - - - - RbacCacheRefreshInterval - - - - ControlPanelMaxConnectionCountPerServer - - - - ControlPanelMaxRunspaceCountPerUser - - - - ControlPanelRunspaceIdleTimeout - - - - ControlPanelClientPoolSize - - - - ControlPanelWebProxy - - - - ControlPanelFooterTextResourcePrefix - - - - ControlPanelFooterLinkResourcePrefix - - - - ControlPanelHelpLinkNamespace - - - - MsoShellServiceUrl - - - - FeedbackEndPointUrl - - - - FenixUrl - - - - TelephoneNumberProviderUrl - - - - SkypeInternationalVoicePolicyName - - - - RebrandDate - - - - PicServiceEnabled - - - - TenantGroupMapping - - - - IsAriaEnabled - - - - UspTelemetryEnv - - - - AriaToken - - - - AppInsightKey - - - - GeographyClientEndPointUrl - - - - - - - - DeserializedMcxConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.McxConfiguration.McxConfiguration - - - - - - - - Identity - - - - SessionExpirationInterval - - - - SessionShortExpirationInterval - - - - ExposedWebURL - - - - PushNotificationProxyUri - - - - - - - - DeserializedMdmLogSipMessageView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.MdmLogSipMessage.MdmLogSipMessage - - - - - - - - Identity - - - - Enable - - - - MethodFilter - - - - ResponseCodeFilter - - - - EnableInboundMessages - - - - EnableOutboundMessages - - - - EnableSipRequests - - - - EnableSipResponses - - - - IgnorePollingSubscribe - - - - - - - - DeserializedMdmRtcSrvView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.MdmRtcSrv.MdmRtcSrv - - - - - - - - Identity - - - - Enable - - - - Account - - - - Namespace - - - - - - - - DeserializedMediaSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Media.MediaSettings - - - - - - - - Identity - - - - EnableQoS - - - - EncryptionLevel - - - - EnableSiren - - - - MaxVideoRateAllowed - - - - EnableH264StdCodec - - - - EnableInCallQoS - - - - InCallQoSIntervalSeconds - - - - EnableRtpRtcpMultiplexing - - - - EnableVideoBasedSharing - - - - WaitIceCompletedToAddDialOutUser - - - - EnableDtls - - - - EnableRtx - - - - EnableSilkForAudioVideoConferences - - - - EnableAVBundling - - - - EnableServerFecForVideoInterop - - - - EnableReceiveAgc - - - - EnableDelayStartAudioReceiveStream - - - - - - - - DeserializedMeetingContentSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.MeetingContent.MeetingContentSettings - - - - - - - - Identity - - - - MaxContentStorageMb - - - - MaxUploadFileSizeMb - - - - ContentGracePeriod - - - - - - - - DeserializedMeetingMigrationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.MeetingMigration.MeetingMigrationConfiguration - - - - - - - - Identity - - - - TaskInterval - - - - MeetingMigrationEnabled - - - - AllowedObjects - - - - AzureQueueServiceEndpointUrl - - - - EnqueueEnabled - - - - UserRetryLimit - - - - PlatformServiceAudienceUri - - - - SchedulingServiceAudienceUri - - - - PlatformServiceTokenIssuerUrl - - - - PlatformServiceClientId - - - - PlatformServiceDiscoverUrl - - - - SchedulingServiceMeetingUrl - - - - BackupCoordinateCollectorEnabled - - - - MmsDisabledFeatureList - - - - PlatformServicePayloadWithExpirationTime - - - - ExchangeOnlineUsersOnly - - - - DirectCallToSchedulingServiceEnabled - - - - MaximumNumberOfExtraThreads - - - - QueueSizeTriggerExtraThread - - - - EnabledFqdns - - - - ACPMeetingMigrationTriggerEnabled - - - - MmsSourceMeetingTypes - - - - MmsTargetMeetingTypes - - - - TeamsMeetingUserPolicyUrl - - - - SchedulingServiceTeamsMeetingUrl - - - - IsEcsProdEnvironment - - - - EcsEnvironment - - - - - - - - DeserializedMeetingPoolConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.MeetingPool.MeetingPoolConfiguration - - - - - - - - Identity - - - - TenantId - - - - ConsistentBotUserStartIndex - - - - ConsistentBotUserEndIndex - - - - ConsistentBotUserEnabledPoolPrefixes - - - - ConsistentBotUserPrefix - - - - ConsistentBotUserDomain - - - - PoolState - - - - - - - - DeserializedNetworkConfigurationSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkConfigurationSettings - - - - - - - - Identity - - - - MediaBypassSettings - - - - BWPolicyProfiles - - - - NetworkRegions - - - - NetworkRegionLinks - - - - InterNetworkRegionRoutes - - - - NetworkSites - - - - InterNetworkSitePolicies - - - - Subnets - - - - EnableBandwidthPolicyCheck - - - - - - - - DeserializedMediaBypassSettingsTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.MediaBypassSettingsType - - - - - - - - Enabled - - - - InternalBypassMode - - - - ExternalBypassMode - - - - AlwaysBypass - - - - BypassID - - - - EnabledForAudioVideoConferences - - - - - - - - DeserializedBWPolicyProfileTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.BWPolicyProfileType - - - - - - - - BWPolicy - - - - BWPolicyProfileID - - - - Description - - - - - - - - DeserializedBWPolicyProfileTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.BWPolicyProfileType#Decorated - - - - - - - - Identity - - - - BWPolicy - - - - BWPolicyProfileID - - - - Description - - - - - - - - DeserializedBWPolicyTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.BWPolicyType - - - - - - - - BWLimit - - - - BWSessionLimit - - - - BWPolicyModality - - - - - - - - DeserializedNetworkRegionTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionType - - - - - - - - Description - - - - BypassID - - - - CentralSite - - - - BWAlternatePaths - - - - NetworkRegionID - - - - - - - - DeserializedNetworkRegionTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionType#Decorated - - - - - - - - Identity - - - - Description - - - - BypassID - - - - CentralSite - - - - BWAlternatePaths - - - - NetworkRegionID - - - - - - - - DeserializedBWAlternatePathTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.BWAlternatePathType - - - - - - - - BWPolicyModality - - - - AlternatePath - - - - - - - - DeserializedNetworkRegionLinkTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionLinkType - - - - - - - - BWPolicyProfileID - - - - NetworkRegionLinkID - - - - NetworkRegionID1 - - - - NetworkRegionID2 - - - - - - - - DeserializedNetworkRegionLinkTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkRegionLinkType#Decorated - - - - - - - - Identity - - - - BWPolicyProfileID - - - - NetworkRegionLinkID - - - - NetworkRegionID1 - - - - NetworkRegionID2 - - - - - - - - DeserializedInterNetworkRegionRouteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.InterNetworkRegionRouteType - - - - - - - - NetworkRegionLinks - - - - InterNetworkRegionRouteID - - - - NetworkRegionID1 - - - - NetworkRegionID2 - - - - - - - - DeserializedInterNetworkRegionRouteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.InterNetworkRegionRouteType#Decorated - - - - - - - - Identity - - - - NetworkRegionLinks - - - - InterNetworkRegionRouteID - - - - NetworkRegionID1 - - - - NetworkRegionID2 - - - - - - - - DeserializedNetworkSiteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkSiteType - - - - - - - - Description - - - - NetworkRegionID - - - - BypassID - - - - BWPolicyProfileID - - - - LocationPolicyTagID - - - - NetworkSiteID - - - - VoiceRoutingPolicyTagID - - - - EnableLocationBasedRouting - - - - - - - - DeserializedNetworkSiteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.NetworkSiteType#Decorated - - - - - - - - Identity - - - - Description - - - - NetworkRegionID - - - - BypassID - - - - BWPolicyProfileID - - - - LocationPolicyTagID - - - - NetworkSiteID - - - - VoiceRoutingPolicyTagID - - - - EnableLocationBasedRouting - - - - - - - - DeserializedInterNetworkSitePolicyTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.InterNetworkSitePolicyType - - - - - - - - BWPolicyProfileID - - - - InterNetworkSitePolicyID - - - - NetworkSiteID1 - - - - NetworkSiteID2 - - - - - - - - DeserializedInterNetworkSitePolicyTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.InterNetworkSitePolicyType#Decorated - - - - - - - - Identity - - - - BWPolicyProfileID - - - - InterNetworkSitePolicyID - - - - NetworkSiteID1 - - - - NetworkSiteID2 - - - - - - - - DeserializedSubnetTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.SubnetType - - - - - - - - MaskBits - - - - Description - - - - NetworkSiteID - - - - SubnetID - - - - - - - - DeserializedSubnetTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.NetworkConfiguration.SubnetType#Decorated - - - - - - - - Identity - - - - MaskBits - - - - Description - - - - NetworkSiteID - - - - SubnetID - - - - - - - - DeserializedOnlineDialinPageConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinPageConfiguration - - - - - - - - Identity - - - - MaximumConcurrentBvdGetSipResourceRequests - - - - MaximumConcurrentBvdGetBridgeRequests - - - - EnablePinServicesUserLookup - - - - EnableRedirectToAzureDialinPage - - - - AzureDialinPageUrl - - - - - - - - DeserializedOnlineDialinConferencingTenantConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinConferencingTenantConfiguration - - - - - - - - Identity - - - - Status - - - - EnableCustomTrunking - - - - ThirdPartyNumberStatus - - - - - - - - DeserializedSharedResourcesConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.SharedResourcesConfiguration - - - - - - - - Identity - - - - SupportedRings - - - - TelephoneNumberManagementV2ServiceUrl - - - - TenantAdminApiServiceUrl - - - - BusinessVoiceDirectoryUrl - - - - TgsServiceUrl - - - - AgentProvisioningServiceUrl - - - - SipDomain - - - - ProxyFqdn - - - - EmailServiceUrl - - - - MicrosoftEmailServiceUrl - - - - MicrosoftAuthenticationUrl - - - - EmailFlightPercentage - - - - DialOutInformationLink - - - - MediaStorageServiceUrl - - - - GlobalMediaStorageServiceUrl - - - - MediaStorageServiceRegion - - - - TelephoneNumberManagementServiceUrl - - - - NameDictionaryServiceUrl - - - - OrganizationalAutoAttendantAdminServiceUrl - - - - IsEcsProdEnvironment - - - - DialinBridgeFormatEnabled - - - - ApplicationConfigurationServiceUrl - - - - RecognizeServiceEndpointUrl - - - - RecognizeServiceAadResourceUrl - - - - AuthorityUrl - - - - ConferenceAutoAttendantApplicationId - - - - SchedulerMaxBvdConcurrentCalls - - - - - - - - DeserializedOnlineDialinConferencingServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinConferencingServiceConfiguration - - - - - - - - Identity - - - - AnonymousCallerGracePeriod - - - - AnonymousCallerMeetingRuntime - - - - AuthenticatedCallerMeetingRuntime - - - - - - - - DeserializedOnlineDialInConferencingNumberMapView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingNumberMap - - - - - - - - Geocodes - - - - Name - - - - Shared - - - - - - - - DeserializedOnlineDialInConferencingNumberMapView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingNumberMap#Decorated - - - - - - - - Identity - - - - Priority - - - - Geocodes - - - - Name - - - - Shared - - - - - - - - DeserializedOnlineDialInConferencingMarketProfileView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingMarketProfile - - - - - - - - NumberMaps - - - - Name - - - - Code - - - - Region - - - - DefaultBridgeGeocode - - - - - - - - DeserializedOnlineDialInConferencingMarketProfileView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingMarketProfile#Decorated - - - - - - - - Identity - - - - Priority - - - - NumberMaps - - - - Name - - - - Code - - - - Region - - - - DefaultBridgeGeocode - - - - - - - - DeserializedOnlineDialinConferencingDefaultLanguageView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinConferencingDefaultLanguage - - - - - - - - Identity - - - - DefaultLanguages - - - - - - - - DeserializedDefaultLanguageEntryView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.DefaultLanguageEntry - - - - - - - - SecondaryLanguages - - - - Geocode - - - - PrimaryLanguage - - - - - - - - DeserializedOnlineDialInConferencingTenantSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingTenantSettings - - - - - - - - Identity - - - - AllowedDialOutExternalDomains - - - - EnableEntryExitNotifications - - - - EntryExitAnnouncementsType - - - - EnableNameRecording - - - - IncludeTollFreeNumberInMeetingInvites - - - - MaskPstnNumbersType - - - - DynamicCallerIdMode - - - - PinLength - - - - AllowPSTNOnlyMeetingsByDefault - - - - AutomaticallySendEmailsToUsers - - - - SendEmailFromOverride - - - - SendEmailFromAddress - - - - SendEmailFromDisplayName - - - - AutomaticallyReplaceAcpProvider - - - - UseUniqueConferenceIds - - - - AutomaticallyMigrateUserMeetings - - - - MigrateServiceNumbersOnCrossForestMove - - - - EnableDialOutJoinConfirmation - - - - AllowFederatedUsersToDialOutToSelf - - - - AllowFederatedUsersToDialOutToThirdParty - - - - - - - - DeserializedOnlineDialInConferencingAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingAllowedDomain - - - - - - - - Domain - - - - - - - - DeserializedOnlineDialInConferencingAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingAllowedDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - - - - - DeserializedSharedLisResourcesConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineLocationInformation.SharedLisResourcesConfiguration - - - - - - - - Identity - - - - LocationInformationServiceUrl - - - - NCSLocationInformationServiceUrl - - - - EnableNCS - - - - EnableNCSforEmergencyDisclaimer - - - - - - - - DeserializedOnlineVoiceCapabilityMappingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineVoiceCapabilityMapConfiguration.OnlineVoiceCapabilityMappings - - - - - - - - SupportedCapabilities - - - - PartnerID - - - - Description - - - - - - - - DeserializedOnlineVoiceCapabilityMappingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineVoiceCapabilityMapConfiguration.OnlineVoiceCapabilityMappings#Decorated - - - - - - - - Identity - - - - SupportedCapabilities - - - - PartnerID - - - - Description - - - - - - - - DeserializedOperationalLogConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OperationalLog.OperationalLogConfiguration - - - - - - - - Identity - - - - Enable - - - - UploadIntervalSeconds - - - - MaximumQueueSize - - - - NumberOfItemsForImmediateDataUpload - - - - AzureOperationalLogServiceEndpointUrl - - - - - - - - DeserializedOrganizationalAutoAttendantConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OrganizationalAutoAttendantConfiguration.OrganizationalAutoAttendantConfiguration - - - - - - - - Identity - - - - ApplicationId - - - - CallbackUrl - - - - MaxOrgAutoAttendantsPerTenant - - - - ClientAudience - - - - FlightedFeatures - - - - AriaTelemetryToken - - - - - - - - DeserializedPersistentChatConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PersistentChat.PersistentChatConfiguration - - - - - - - - Identity - - - - MaxFileSizeKB - - - - ParticipantUpdateLimit - - - - DefaultChatHistory - - - - RoomManagementUrl - - - - - - - - DeserializedPersistentChatComplianceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PersistentChat.PersistentChatComplianceConfiguration - - - - - - - - Identity - - - - AdapterName - - - - RunInterval - - - - AdapterOutputDirectory - - - - AdapterType - - - - OneChatRoomPerOutputFile - - - - CreateFileAttachmentsManifest - - - - AddUserDetails - - - - AddChatRoomDetails - - - - CustomConfiguration - - - - - - - - DeserializedPersistentChatStateView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PersistentChat.PersistentChatState - - - - - - - - Identity - - - - PoolState - - - - - - - - DeserializedPlatformConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Platform.PlatformConfiguration - - - - - - - - Identity - - - - RingConfigurations - - - - RegionConfigurations - - - - EnableBroadcastFunctionality - - - - SkipRegistrationForMeetingApplication - - - - EnableConversationExtensionFunctionality - - - - PushNotificationBlockedHours - - - - ExchangeSearchEnabled - - - - StorageServiceCreationRetryTimeSpan - - - - AnonApplicationTokenLifeSpan - - - - EnableConsistentBotUserSelectionFunctionality - - - - ConsistentBotUserSelectionMode - - - - ActivationServiceUri - - - - GlobalPlatformUrl - - - - EnableFlightingFunctionality - - - - MaxEventChannelsPerApplication - - - - MaxPendingBatchRequestsPerUser - - - - AllowPlatformAnonToken - - - - EnableCORS - - - - EnableUcwaScopeCheck - - - - MaxRegistrationsPerPublicApplication - - - - MediaPresenceStateExpiration - - - - TrapServiceUrl - - - - - - - - DeserializedRingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Platform.RingConfiguration - - - - - - - - Name - - - - Url - - - - DeploymentPreference - - - - Region - - - - - - - - DeserializedRegionConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Platform.RegionConfiguration - - - - - - - - Name - - - - Url - - - - ServiceInstanceIds - - - - - - - - DeserializedPlatformApplicationsConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformApplications.PlatformApplicationsConfiguration - - - - - - - - Identity - - - - PublicApplicationList - - - - PublicApplicationListMode - - - - - - - - DeserializedApplicationMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformApplications.ApplicationMeetingConfiguration - - - - - - - - Identity - - - - AllowRemoveParticipantAppIds - - - - - - - - DeserializedPlatformExceptionSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformExceptionSettings.PlatformExceptionSettings - - - - - - - - Identity - - - - KnownExceptions - - - - - - - - DeserializedKnownExceptionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformExceptionSettings.KnownException - - - - - - - - Name - - - - Type - - - - MatchText - - - - ExpirationInUtc - - - - - - - - DeserializedKnownExceptionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformExceptionSettings.KnownException#Decorated - - - - - - - - Identity - - - - Priority - - - - Name - - - - Type - - - - MatchText - - - - ExpirationInUtc - - - - - - - - DeserializedPlatformServiceNGCSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformServiceNGCSettings.PlatformServiceNGCSettings - - - - - - - - Identity - - - - EnableGeneratingTeamsIdentity - - - - RegistrarUrl - - - - ConversationServiceUrl - - - - TrouterUrl - - - - CallControllerUrl - - - - TpcProdUrl - - - - - - - - DeserializedPlatformServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformServiceSettings.PlatformServiceSettings - - - - - - - - Identity - - - - EnablePushNotifications - - - - UseLegacyPushNotifications - - - - EnableE911 - - - - EnableFileTransfer - - - - AllowCallsFromNonContactsInPrivatePrivacyMode - - - - BvdPortalWhitelistedApp - - - - EnablePreDrainingForIncomingCalls - - - - EnableE911RequestXmlEncoding - - - - ContactCardUpdateAfterSignInMs - - - - ContactCardUpdateCheckInSeconds - - - - - - - - DeserializedPlatformThrottlingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformThrottlingSettings.PlatformThrottlingSettings - - - - - - - - Identity - - - - UcwaThrottlingConfigurations - - - - UcapThrottlingConfigurations - - - - EnableUcwaThrottling - - - - UcwaThrottlingThresholdPercentageForInternal - - - - UcwaThrottlingThresholdPercentageForPublic - - - - EnableUcapThrottling - - - - UcapThrottlingThresholdPercentageForInternal - - - - UcapThrottlingThresholdPercentageForPublic - - - - EnableUcwaThrottlingToExchange - - - - MaxConcurrentUcwaRequestsToExchange - - - - - - - - DeserializedPlatformThrottlingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformThrottlingSettings.PlatformThrottlingConfiguration - - - - - - - - Name - - - - ThrottlingTargetType - - - - ThrottlingMode - - - - ThrottlingScope - - - - TimeRangeInMinutes - - - - TargetNumber - - - - ExcludedApiNames - - - - IncludedApiNames - - - - OverrideThresholdPercentageForPublic - - - - SkipInBatchRequest - - - - - - - - DeserializedPnchServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchServiceConfiguration - - - - - - - - Identity - - - - PnchApplications - - - - ApplePushServiceFQDN - - - - ApplePushServicePort - - - - AppleFeedbackServiceFQDN - - - - AppleFeedbackServicePort - - - - PnhServiceUri - - - - VerboseDiagnostics - - - - EnableGenevaLogging - - - - - - - - DeserializedPnchApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchApplication - - - - - - - - Name - - - - Provider - - - - ApplicationId - - - - MaxConnections - - - - Certificate - - - - - - - - DeserializedPnchApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchApplication#Decorated - - - - - - - - Identity - - - - Name - - - - Provider - - - - ApplicationId - - - - MaxConnections - - - - Certificate - - - - - - - - DeserializedPnchAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchAllowedDomain - - - - - - - - Domain - - - - Comment - - - - - - - - DeserializedPnchAllowedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchAllowedDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - Comment - - - - - - - - DeserializedPnchBlockedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchBlockedDomain - - - - - - - - Domain - - - - Comment - - - - - - - - DeserializedPnchBlockedDomainView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PnchServiceConfiguration.PnchBlockedDomain#Decorated - - - - - - - - Identity - - - - Domain - - - - Comment - - - - - - - - DeserializedPolicyRestrictionsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.PolicyRestrictions - - - - - - - - Identity - - - - SkuGroups - - - - PolicyRules - - - - - - - - DeserializedSkuGroupView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.SkuGroup - - - - - - - - ServicePlans - - - - SkuName - - - - - - - - DeserializedSkuGroupView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.SkuGroup#Decorated - - - - - - - - Identity - - - - ServicePlans - - - - SkuName - - - - - - - - DeserializedPolicyRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.PolicyRule - - - - - - - - AttributeRules - - - - PolicyName - - - - - - - - DeserializedPolicyRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.PolicyRule#Decorated - - - - - - - - Identity - - - - AttributeRules - - - - PolicyName - - - - - - - - DeserializedAttributeRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.AttributeRule - - - - - - - - SkuRules - - - - CountryRules - - - - AttributeName - - - - - - - - DeserializedSkuRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.SkuRule - - - - - - - - Sku - - - - Permission - - - - Type - - - - Value - - - - - - - - DeserializedCountryRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PolicyRules.CountryRule - - - - - - - - CountryGroup - - - - Permission - - - - Type - - - - Value - - - - - - - - DeserializedPowershellInfraConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PowershellInfraConfiguration.PowershellInfraConfiguration - - - - - - - - Identity - - - - EnableDirectAcmsConnections - - - - EnableAcmsEcsConnections - - - - EcsEnvironment - - - - EnableReadWriteTopologyFromAcms - - - - EnableWriteAuditRecord - - - - EnableDirectWriteRegistrarConfig - - - - EnableEcsCmdletFiltering - - - - UseEcsProdEnvironment - - - - LrosApplicationId - - - - LrosTokenAuthorityUri - - - - LrosEndpointUri - - - - LrosResourceUri - - - - LrosJobStatusTimeOut - - - - - - - - DeserializedProvisionServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ProvisionService.ProvisionServiceConfiguration - - - - - - - - Identity - - - - ServiceInstances - - - - UserServicePools - - - - MsoUrl - - - - PublicProviderUrl - - - - SMPDNSWebserviceUrl - - - - SMPDNSsipdirSRVRecordData - - - - SMPDNSsipCNAMERecordData - - - - SMPDNSsipfedSRVRecordData - - - - SMPDNSwebdirCNAMERecordData - - - - WebProxy - - - - SyncInterval - - - - PublishInterval - - - - PublishRetryInterval - - - - PersistCookieInterval - - - - ThreadNoActivityTimeout - - - - MeetingMigrationThreadNoActivityTimeout - - - - MaxPublishBatchSize - - - - MaxADResultBatchSize - - - - ProvisionInterval - - - - ProvisionRetryInterval - - - - PoolUserRefreshInterval - - - - QueuesPerCPU - - - - PoolThreshold - - - - PrimaryDomainController - - - - SecondaryDomainController - - - - DCReplicaWaitTime - - - - PersistCookieThreshold - - - - SimpleUrlDNSName - - - - TenantMOREADomainSuffix - - - - LegacyTenantMOREADomainSuffix - - - - ReceiveTimeout - - - - SendTimeout - - - - MaxReceivedMessageSize - - - - MaxBufferPoolSize - - - - MaxStringContentLength - - - - ConnectionLimit - - - - ExchangeOnline - - - - RecoverTaskTimeInterval - - - - MaxNumberOfSyncErrorObjects - - - - MaxReSyncErrorObjectsBeforeWarning - - - - IgnorePICProvision - - - - EnableAsyncPICProvision - - - - IgnoreDNSProvision - - - - EnableAsyncDNSProvision - - - - EnableLightWeightSync - - - - DropUserAndFPOInLightWeightSync - - - - LightWeightSyncTenantList - - - - SendMNCTenantToBVD - - - - SendAllTenantsToBVD - - - - SendAllUsersToBVD - - - - DisabledFeatureList - - - - ConfirmedCookieAgeFailureThreshold - - - - ConfirmedCookieAgeWarningThreshold - - - - IntermediateCookieAgeFailureThreshold - - - - MoreFalseCookieAgeFailureThreshold - - - - MoreFalseCookieAgeWarningThreshold - - - - EnableSkypeEntitlement - - - - SkypeEntitlementHost - - - - SkypeEntitlementPort - - - - UnlicensedUserGracePeriod - - - - UnlicensedUserDeletionEnabled - - - - PersistRemotePoolForUsers - - - - PublishLyncAttributesForAllTenants - - - - SyncLatencyCounterThreshold - - - - MaxConcurrentDeleteOperations - - - - EnableBVDProvision - - - - EnableCPCProvision - - - - WriteAcpInfoForCpcUsersInAd - - - - CPCDisabledCountryList - - - - AdminPoolUrl - - - - EnableTenantPoolAssociationTracking - - - - EnableExoPlanProvisioning - - - - EnableEduExoPlanProvisioning - - - - ExoPlanProvisioningTenantList - - - - ExoPlanProvisioningStartDate - - - - TenantDNSCacheTimeout - - - - SyncOnlySkypeEnabledDomains - - - - HostMNCUsersInOtherRegionCoolDownTime - - - - EnableMAForNewTenant - - - - EnableBVDUpdateInMove - - - - SendOnPremHostedUsersToBvd - - - - EnableLastUserSipDomainSearch - - - - EnableTeamsProvisioning - - - - Deployment - - - - TeamsProvisioningTenantList - - - - EnableDNSDualWrite - - - - ApplicationId - - - - AzureSubscriptionId - - - - AzureDNSResourceGroup - - - - AzureDnsTenantId - - - - AzureDnsLoginUrl - - - - AzureDnsManagementCoreApiEndpoint - - - - EnableOnPremDNSDetector - - - - EnableOnPremCPC - - - - EnableECSConfig - - - - IsEcsProdEnvironment - - - - EcsEnvironment - - - - - - - - DeserializedUserServicePoolView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ProvisionService.UserServicePool - - - - - - - - ServiceId - - - - ReservedForLegacyTenant - - - - StandbyMode - - - - - - - - DeserializedPstnEmulatorConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PstnEmulator.PstnEmulatorConfiguration - - - - - - - - Identity - - - - PstnGatewayGruu - - - - EnteringDtmfDelay - - - - CallDuration - - - - IsTLS - - - - CertificateSubjectName - - - - CertificateIssuerName - - - - ListenToQueue - - - - TestMachine - - - - ECSEnabled - - - - - - - - DeserializedPushNotificationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PushNotificationConfiguration.PushNotificationConfiguration - - - - - - - - Identity - - - - EnableApplePushNotificationService - - - - EnableMicrosoftPushNotificationService - - - - - - - - DeserializedQoESettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.QoE.QoESettings - - - - - - - - Identity - - - - ExternalConsumerIssuedCertId - - - - EnablePurging - - - - KeepQoEDataForDays - - - - PurgeHourOfDay - - - - EnableExternalConsumer - - - - ExternalConsumerName - - - - ExternalConsumerURL - - - - EnableQoE - - - - - - - - DeserializedIssuedCertIdView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.BaseTypes.IssuedCertId - - - - - - - - Issuer - - - - SerialNumber - - - - - - - - DeserializedRecordingServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.RecordingService.RecordingServiceConfiguration - - - - - - - - Identity - - - - - - - - DeserializedRegistrarSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Registrar.RegistrarSettings - - - - - - - - Identity - - - - MinEndpointExpiration - - - - MaxEndpointExpiration - - - - DefaultEndpointExpiration - - - - MaxEndpointsPerUser - - - - EnableDHCPServer - - - - PoolState - - - - BackupStoreUnavailableThreshold - - - - MaxUserCount - - - - UserCertificateReplicationThreshold - - - - ReplicateUserCertsToBackend - - - - EnableWinFabLogUpload - - - - WinFabMaxLogsSizeMb - - - - IPPhoneUserAgents - - - - - - - - DeserializedReportingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Reporting.ReportingConfiguration - - - - - - - - Identity - - - - ReportingUrl - - - - - - - - DeserializedRoutingInfoDirConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.RoutingInfoDirService.RoutingInfoDirConfiguration - - - - - - - - Identity - - - - MaxSnapshotsToKeep - - - - MaxConcurrentDownloadCount - - - - LocalCacheFolderLocation - - - - NewSnapshotPollingIntervalInSeconds - - - - EnableLocalSnapshotDownloads - - - - UseSnapshots - - - - MaxOutstandingProviderRequests - - - - PositiveInMemoryCacheTimeoutSeconds - - - - NegativeInMemoryCacheTimeoutSeconds - - - - EnableAcmsRead - - - - RemoteTopologyRefreshIntervalSeconds - - - - EnableOnPremUserLookupResult - - - - PercentMemoryForProviderCache - - - - DomainLookupInMemoryCacheRecordCount - - - - TenantLookupInMemoryCacheRecordCount - - - - UserLookupInMemoryCacheRecordCount - - - - PhoneLookupInMemoryCacheRecordCount - - - - - - - - DeserializedOAuthSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.OAuthSettings - - - - - - - - Identity - - - - PartnerApplications - - - - OAuthServers - - - - Realm - - - - ServiceName - - - - ClientAuthorizationOAuthServerIdentity - - - - ExchangeAutodiscoverUrl - - - - ExchangeAutodiscoverAllowedDomains - - - - - - - - DeserializedPartnerApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.PartnerApplication - - - - - - - - AuthToken - - - - Name - - - - ApplicationIdentifier - - - - Realm - - - - ApplicationTrustLevel - - - - AcceptSecurityIdentifierInformation - - - - Enabled - - - - - - - - DeserializedPartnerApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.PartnerApplication#Decorated - - - - - - - - Identity - - - - AuthToken - - - - Name - - - - ApplicationIdentifier - - - - Realm - - - - ApplicationTrustLevel - - - - AcceptSecurityIdentifierInformation - - - - Enabled - - - - - - - - DeserializedOAuthServerView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.OAuthServer - - - - - - - - Name - - - - IssuerIdentifier - - - - Realm - - - - MetadataUrl - - - - AuthorizationUriOverride - - - - Type - - - - AcceptSecurityIdentifierInformation - - - - - - - - DeserializedOAuthServerView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.OAuthServer#Decorated - - - - - - - - Identity - - - - Name - - - - IssuerIdentifier - - - - Realm - - - - MetadataUrl - - - - AuthorizationUriOverride - - - - Type - - - - AcceptSecurityIdentifierInformation - - - - - - - - DeserializedSchedulerServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SchedulerServiceSettings.SchedulerServiceSettings - - - - - - - - Identity - - - - SchedulerServiceUrl - - - - ApplicationAudience - - - - AuthType - - - - - - - - DeserializedApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ServerApplication.Application - - - - - - - - Uri - - - - Name - - - - Enabled - - - - Critical - - - - ScriptName - - - - Script - - - - - - - - DeserializedApplicationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.ServerApplication.Application#Decorated - - - - - - - - Identity - - - - Priority - - - - Uri - - - - Name - - - - Enabled - - - - Critical - - - - ScriptName - - - - Script - - - - - - - - DeserializedSignInTelemetryConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SignInTelemetry.SignInTelemetryConfiguration - - - - - - - - Identity - - - - EnableClientTelemetry - - - - - - - - DeserializedSimpleUrlConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SimpleUrl.SimpleUrlConfiguration - - - - - - - - Identity - - - - SimpleUrl - - - - - - - - DeserializedSimpleUrlView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SimpleUrl.SimpleUrl - - - - - - - - SimpleUrlEntry - - - - Component - - - - Domain - - - - ActiveUrl - - - - - - - - DeserializedSimpleUrlEntryView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SimpleUrl.SimpleUrlEntry - - - - - - - - Url - - - - - - - - DeserializedProxySettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.ProxySettings - - - - - - - - Identity - - - - Realm - - - - MaxClientMessageBodySizeKb - - - - MaxServerMessageBodySizeKb - - - - TreatAllClientsAsRemote - - - - OutgoingTlsCount - - - - DnsCacheRecordCount - - - - AllowPartnerPollingSubscribes - - - - EnableLoggingAllMessageBodies - - - - EnableWhiteSpaceKeepAlive - - - - MaxKeepAliveInterval - - - - UseKerberosForClientToProxyAuth - - - - UseNtlmForClientToProxyAuth - - - - DisableNtlmFor2010AndLaterClients - - - - UseCertificateForClientToProxyAuth - - - - AcceptClientCompression - - - - MaxClientCompressionCount - - - - AcceptServerCompression - - - - MaxServerCompressionCount - - - - RequestServerCompression - - - - LoadBalanceInternalServers - - - - LoadBalanceEdgeServers - - - - TestFeatureList - - - - TestParameterList - - - - SpecialConfigurationList - - - - UseCertificatePinningForInternalConnections - - - - - - - - DeserializedRealmView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.Realm - - - - - - - - RealmChoice - - - - - - - - DeserializedCustomView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.Custom - - - - - - - - CustomValue - - - - - - - - DeserializedRoutingSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.RoutingSettings - - - - - - - - Identity - - - - Route - - - - - - - - DeserializedTransportView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.Transport - - - - - - - - TransportChoice - - - - Port - - - - - - - - DeserializedTCPView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.TCP - - - - - - - - IPAddress - - - - - - - - DeserializedTLSView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SipProxy.TLS - - - - - - - - Certificate - - - - Fqdn - - - - - - - - DeserializedSkypeEdgeProvisionServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SkypeEdgeProvisionService.SkypeEdgeProvisionServiceConfiguration - - - - - - - - Identity - - - - SyncInterval - - - - PICProvisionServerUrl - - - - WebProxy - - - - OpenCloseTimeout - - - - SendTimeout - - - - MaxReceivedMessageSizeBytes - - - - MaxArrayLength - - - - - - - - DeserializedStorageServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.StorageService.StorageServiceSettings - - - - - - - - Identity - - - - EnableAutoImportFlushedData - - - - EnableFabricReplicationSetReduction - - - - EnableAsyncAdaptorTaskAbort - - - - FabricInvalidStateTimeoutDuration - - - - SingleSecondaryMissingTimeoutDuration - - - - SingleSecondaryQuorumEventLogInterval - - - - EnableLightweightFinalization - - - - EnableEwsTaskTimeout - - - - FilteredAdapterIdList - - - - EnableAttachmentCache - - - - AttachmentCacheTimeout - - - - MaxTotalMemoryForActiveFileUploadsInGB - - - - MemoryToFileSizeRatioForExArchUpload - - - - EnableAggressiveGC - - - - EnableWCFSelfHeal - - - - - - - - DeserializedTeamsAppPolicyConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsAppPolicyConfiguration.TeamsAppPolicyConfiguration - - - - - - - - Identity - - - - AppCatalogUri - - - - ResourceUri - - - - - - - - DeserializedTeamsConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsConfiguration - - - - - - - - Identity - - - - EnabledForVoice - - - - EnabledForMessaging - - - - - - - - DeserializedTeamsUpgradeConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsUpgradeConfiguration - - - - - - - - Identity - - - - DownloadTeams - - - - SfBMeetingJoinUx - - - - - - - - DeserializedTeamsClientConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsClientConfiguration - - - - - - - - Identity - - - - AllowEmailIntoChannel - - - - RestrictedSenderList - - - - AllowDropBox - - - - AllowBox - - - - AllowGoogleDrive - - - - AllowShareFile - - - - AllowEgnyte - - - - AllowOrganizationTab - - - - AllowSkypeBusinessInterop - - - - ContentPin - - - - AllowResourceAccountSendMessage - - - - ResourceAccountContentAccess - - - - AllowGuestUser - - - - AllowScopedPeopleSearchandAccess - - - - AllowRoleBasedChatPermissions - - - - - - - - DeserializedTeamsGuestMessagingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestMessagingConfiguration - - - - - - - - Identity - - - - AllowUserEditMessage - - - - AllowUserDeleteMessage - - - - AllowUserDeleteChat - - - - AllowUserChat - - - - AllowGiphy - - - - GiphyRatingType - - - - AllowMemes - - - - AllowImmersiveReader - - - - AllowStickers - - - - - - - - DeserializedTeamsGuestMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestMeetingConfiguration - - - - - - - - Identity - - - - AllowIPVideo - - - - ScreenSharingMode - - - - AllowMeetNow - - - - LiveCaptionsEnabledType - - - - AllowTranscription - - - - - - - - DeserializedTeamsGuestCallingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestCallingConfiguration - - - - - - - - Identity - - - - AllowPrivateCalling - - - - - - - - DeserializedTeamsMeetingBroadcastConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingBroadcastConfiguration - - - - - - - - Identity - - - - SupportURL - - - - AllowSdnProviderForBroadcastMeeting - - - - - - - - DeserializedTeamsEffectiveMeetingSurveyConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsEffectiveMeetingSurveyConfiguration - - - - - - - - Identity - - - - Survey - - - - DefaultOrganizerMode - - - - - - - - DeserializedTeamsCallHoldValidationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsCallHoldValidationConfiguration - - - - - - - - Identity - - - - AudioFileValidationEnabled - - - - AudioFileValidationUri - - - - - - - - DeserializedTeamsEducationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsEducationConfiguration - - - - - - - - Identity - - - - ParentGuardianPreferredContactMethod - - - - - - - - DeserializedTeamsMeetingTemplateConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingTemplateConfiguration - - - - - - - - Identity - - - - TeamsMeetingTemplates - - - - Description - - - - - - - - DeserializedTeamsMeetingTemplateTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingTemplateType - - - - - - - - TeamsMeetingOptions - - - - Description - - - - Name - - - - - - - - DeserializedTeamsMeetingTemplateTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingTemplateType#Decorated - - - - - - - - Identity - - - - TeamsMeetingOptions - - - - Description - - - - Name - - - - - - - - DeserializedTeamsMeetingOptionView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingOption - - - - - - - - IsLocked - - - - IsHidden - - - - Value - - - - Name - - - - - - - - DeserializedTeamsFirstPartyMeetingTemplateConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsFirstPartyMeetingTemplateConfiguration - - - - - - - - Identity - - - - TeamsMeetingTemplates - - - - Description - - - - - - - - DeserializedTeamsMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsMeetingConfiguration.TeamsMeetingConfiguration - - - - - - - - Identity - - - - LogoURL - - - - LegalURL - - - - HelpURL - - - - CustomFooterText - - - - DisableAnonymousJoin - - - - DisableAppInteractionForAnonymousUsers - - - - EnableQoS - - - - ClientAudioPort - - - - ClientAudioPortRange - - - - ClientVideoPort - - - - ClientVideoPortRange - - - - ClientAppSharingPort - - - - ClientAppSharingPortRange - - - - ClientMediaPortRangeEnabled - - - - - - - - DeserializedTeamsMigrationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsMigrationConfiguration.TeamsMigrationConfiguration - - - - - - - - Identity - - - - EnableLegacyClientInterop - - - - - - - - DeserializedTeamsRoutingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsRoutingConfiguration.TeamsRoutingConfiguration - - - - - - - - Identity - - - - VoiceGatewayFqdn - - - - EnableMessagingGatewayProxy - - - - MessagingConversationRequestUrl - - - - MessagingConversationResponseUrl - - - - MgwRedirectUrlTemplate - - - - EnablePoollessTeamsOnlyUserFlighting - - - - EnablePoollessTeamsOnlyCallingFlighting - - - - EnablePoollessTeamsOnlyMessagingFlighting - - - - EnablePoollessTeamsOnlyConferencingFlighting - - - - EnablePoollessTeamsOnlyPresenceFlighting - - - - HybridEdgeFqdn - - - - DisableTeamsOnlyUsersConfCreateFlighting - - - - TenantDisabledForTeamsOnlyUsersConfCreate - - - - EnableTenantLevelPolicyCheck - - - - - - - - DeserializedTelemetrySenderConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TelemetrySender.TelemetrySenderConfiguration - - - - - - - - Identity - - - - Enabled - - - - EncryptedAriaDataToken - - - - EncryptedAriaTraceToken - - - - TraceLevels - - - - TokenDecryptThumbprint - - - - AriaEndpointUri - - - - QoEHashThumbprint - - - - QoEEncryptThumbprint - - - - - - - - DeserializedTenantConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantConfiguration - - - - - - - - Identity - - - - MaxAllowedDomains - - - - MaxBlockedDomains - - - - - - - - DeserializedTenantLicensingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantLicensingConfiguration - - - - - - - - Identity - - - - Status - - - - - - - - DeserializedTenantWebServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantWebServiceConfiguration - - - - - - - - Identity - - - - CertificateValidityPeriodInHours - - - - - - - - DeserializedTenantFlightAssignmentsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantFlightAssignment.TenantFlightAssignments - - - - - - - - Identity - - - - Flights - - - - - - - - DeserializedFlightView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantFlightAssignment.Flight - - - - - - - - Name - - - - - - - - DeserializedFlightView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantFlightAssignment.Flight#Decorated - - - - - - - - Identity - - - - Priority - - - - Name - - - - - - - - DeserializedTenantMigrationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantMigration.TenantMigrationConfiguration - - - - - - - - Identity - - - - MeetingMigrationEnabled - - - - - - - - DeserializedTenantNetworkConfigurationSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.TenantNetworkConfigurationSettings - - - - - - - - Identity - - - - NetworkRegions - - - - NetworkSites - - - - Subnets - - - - PostalCodes - - - - - - - - DeserializedNetworkRegionTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.NetworkRegionType - - - - - - - - Description - - - - CentralSite - - - - NetworkRegionID - - - - - - - - DeserializedNetworkRegionTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.NetworkRegionType#Decorated - - - - - - - - Identity - - - - Description - - - - CentralSite - - - - NetworkRegionID - - - - - - - - DeserializedNetworkSiteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.NetworkSiteType - - - - - - - - Description - - - - NetworkRegionID - - - - LocationPolicyID - - - - SiteAddress - - - - NetworkSiteID - - - - OnlineVoiceRoutingPolicyTagID - - - - EnableLocationBasedRouting - - - - EmergencyCallRoutingPolicyTagID - - - - EmergencyCallingPolicyTagID - - - - NetworkRoamingPolicyTagID - - - - EmergencyCallRoutingPolicyName - - - - EmergencyCallingPolicyName - - - - NetworkRoamingPolicyName - - - - - - - - DeserializedNetworkSiteTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.NetworkSiteType#Decorated - - - - - - - - Identity - - - - Description - - - - NetworkRegionID - - - - LocationPolicyID - - - - SiteAddress - - - - NetworkSiteID - - - - OnlineVoiceRoutingPolicyTagID - - - - EnableLocationBasedRouting - - - - EmergencyCallRoutingPolicyTagID - - - - EmergencyCallingPolicyTagID - - - - NetworkRoamingPolicyTagID - - - - EmergencyCallRoutingPolicyName - - - - EmergencyCallingPolicyName - - - - NetworkRoamingPolicyName - - - - - - - - DeserializedSubnetTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.SubnetType - - - - - - - - Description - - - - NetworkSiteID - - - - MaskBits - - - - SubnetID - - - - - - - - DeserializedSubnetTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.SubnetType#Decorated - - - - - - - - Identity - - - - Description - - - - NetworkSiteID - - - - MaskBits - - - - SubnetID - - - - - - - - DeserializedPostalCodeTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.PostalCodeType - - - - - - - - Description - - - - NetworkSiteID - - - - PostalCode - - - - CountryCode - - - - - - - - DeserializedPostalCodeTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.PostalCodeType#Decorated - - - - - - - - Identity - - - - Description - - - - NetworkSiteID - - - - PostalCode - - - - CountryCode - - - - - - - - DeserializedTrustedIPView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.TrustedIP - - - - - - - - MaskBits - - - - Description - - - - IPAddress - - - - - - - - DeserializedTrustedIPView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.TrustedIP#Decorated - - - - - - - - Identity - - - - MaskBits - - - - Description - - - - IPAddress - - - - - - - - DeserializedTenantPartnerRoleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantPartnerRole.TenantPartnerRole - - - - - - - - BlockedCmdlets - - - - Name - - - - PartnerType - - - - - - - - DeserializedTenantPartnerRoleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantPartnerRole.TenantPartnerRole#Decorated - - - - - - - - Identity - - - - BlockedCmdlets - - - - Name - - - - PartnerType - - - - - - - - DeserializedTenantVideoInteropConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropConfiguration.TenantVideoInteropConfiguration - - - - - - - - Identity - - - - VideoTeleconferencingDeviceProviders - - - - - - - - DeserializedVideoTeleconferencingDeviceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropConfiguration.VideoTeleconferencingDeviceProvider - - - - - - - - Name - - - - TenantKey - - - - InstructionUri - - - - - - - - DeserializedVideoTeleconferencingDeviceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropConfiguration.VideoTeleconferencingDeviceProvider#Decorated - - - - - - - - Identity - - - - Name - - - - TenantKey - - - - InstructionUri - - - - - - - - DeserializedVideoInteropServiceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropServiceConfiguration.VideoInteropServiceProvider - - - - - - - - Name - - - - AadApplicationIds - - - - TenantKey - - - - InstructionUri - - - - AllowAppGuestJoinsAsAuthenticated - - - - - - - - DeserializedVideoInteropServiceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropServiceConfiguration.VideoInteropServiceProvider#Decorated - - - - - - - - Identity - - - - Name - - - - AadApplicationIds - - - - TenantKey - - - - InstructionUri - - - - AllowAppGuestJoinsAsAuthenticated - - - - - - - - DeserializedTrunkConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.TrunkConfiguration - - - - - - - - Identity - - - - OutboundTranslationRulesList - - - - SipResponseCodeTranslationRulesList - - - - OutboundCallingNumberTranslationRulesList - - - - PstnUsages - - - - Description - - - - ConcentratedTopology - - - - EnableBypass - - - - EnableMobileTrunkSupport - - - - EnableReferSupport - - - - EnableSessionTimer - - - - EnableSignalBoost - - - - MaxEarlyDialogs - - - - RemovePlusFromUri - - - - RTCPActiveCalls - - - - RTCPCallsOnHold - - - - SRTPMode - - - - EnablePIDFLOSupport - - - - EnableRTPLatching - - - - EnableOnlineVoice - - - - ForwardCallHistory - - - - Enable3pccRefer - - - - ForwardPAI - - - - EnableFastFailoverTimer - - - - EnableLocationRestriction - - - - NetworkSiteID - - - - - - - - DeserializedTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.TranslationRule - - - - - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.TranslationRule#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedSipResponseCodeTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.SipResponseCodeTranslationRule - - - - - - - - ReceivedResponseCode - - - - ReceivedISUPCauseValue - - - - TranslatedResponseCode - - - - Name - - - - - - - - DeserializedSipResponseCodeTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.SipResponseCodeTranslationRule#Decorated - - - - - - - - Identity - - - - Priority - - - - ReceivedResponseCode - - - - ReceivedISUPCauseValue - - - - TranslatedResponseCode - - - - Name - - - - - - - - DeserializedCallingNumberTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.CallingNumberTranslationRule - - - - - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedCallingNumberTranslationRuleView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.CallingNumberTranslationRule#Decorated - - - - - - - - Identity - - - - Priority - - - - Description - - - - Pattern - - - - Translation - - - - Name - - - - - - - - DeserializedUcapConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Ucap.UcapConfiguration - - - - - - - - Identity - - - - UcapActivateConferenceUrl - - - - UcapHostUrl - - - - - - - - DeserializedUnassignedNumberTreatmentView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UnassignedNumberTreatmentConfiguration.UnassignedNumberTreatment - - - - - - - - TreatmentId - - - - Pattern - - - - TargetType - - - - Target - - - - TreatmentPriority - - - - Description - - - - - - - - DeserializedUnassignedNumberTreatmentView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UnassignedNumberTreatmentConfiguration.UnassignedNumberTreatment#Decorated - - - - - - - - Identity - - - - TreatmentId - - - - Pattern - - - - TargetType - - - - Target - - - - TreatmentPriority - - - - Description - - - - - - - - DeserializedUpgradeEngineHandlerConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UpgradeEngineHandler.UpgradeEngineHandlerConfiguration - - - - - - - - Identity - - - - UpgradeEngineUrl - - - - TurnOnUpgradeEngineHandler - - - - TurnOnTenantReadinessUpload - - - - WebProxy - - - - QueryInterval - - - - UpgradeErrorRetryInterval - - - - TenantReadinessUploadInterval - - - - QueryWorkItemBatchSize - - - - UpdateTenantReadinessBatchSize - - - - MaxUpgradeRetryTimes - - - - PreUpgradeVersion - - - - PostUpgradeVersion - - - - ReceiveTimeout - - - - SendTimeout - - - - MaxReceivedMessageSize - - - - MaxBufferPoolSize - - - - MaxStringContentLength - - - - - - - - DeserializedUserReplicatorConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserReplicator.UserReplicatorConfiguration - - - - - - - - Identity - - - - ADDomainNamingContextList - - - - DomainControllerList - - - - ReplicationCycleInterval - - - - SkipFirstSyncAllowedDowntime - - - - - - - - DeserializedDomainControllerTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserReplicator.DomainControllerType - - - - - - - - ADDomainNamingContext - - - - DomainControllerFqdn - - - - - - - - DeserializedUserRoutingGroupConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserRoutingGroup.UserRoutingGroupConfiguration - - - - - - - - Identity - - - - Groups - - - - MaxUserCountPerGroup - - - - WarningThresholdPerGroup - - - - - - - - DeserializedUserServicesSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserServicesSettings - - - - - - - - Identity - - - - PresenceProviders - - - - MaintenanceTimeOfDay - - - - MinSubscriptionExpiration - - - - MaxSubscriptionExpiration - - - - DefaultSubscriptionExpiration - - - - AnonymousUserGracePeriod - - - - DeactivationGracePeriod - - - - MaxScheduledMeetingsPerOrganizer - - - - AllowNonRoomSystemNotification - - - - MaxSubscriptions - - - - MaxContacts - - - - MaxPersonalNotes - - - - SubscribeToCollapsedDG - - - - StateReplicationFlag - - - - TestFeatureList - - - - TestParameterList - - - - - - - - DeserializedPresenceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider - - - - - - - - Fqdn - - - - - - - - DeserializedPresenceProviderView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated - - - - - - - - Identity - - - - Fqdn - - - - - - - - DeserializedPrivacyConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PrivacyConfiguration - - - - - - - - Identity - - - - EnablePrivacyMode - - - - AutoInitiateContacts - - - - PublishLocationDataDefault - - - - DisplayPublishedPhotoDefault - - - - - - - - DeserializedMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.MeetingConfiguration - - - - - - - - Identity - - - - PstnCallersBypassLobby - - - - EnableAssignedConferenceType - - - - DesignateAsPresenter - - - - AssignedConferenceTypeByDefault - - - - AdmitAnonymousUsersByDefault - - - - RequireRoomSystemsAuthorization - - - - LogoURL - - - - LegalURL - - - - HelpURL - - - - CustomFooterText - - - - AllowConferenceRecording - - - - AllowCloudRecordingService - - - - EnableMeetingReport - - - - UserUriFormatForStUser - - - - - - - - DeserializedRoutingDataSyncAgentConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.RoutingDataSyncAgentConfiguration - - - - - - - - Identity - - - - Enabled - - - - BatchesPerTransaction - - - - - - - - DeserializedUserStoreConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserStoreConfiguration - - - - - - - - Identity - - - - UserStoreServiceUri - - - - UserStoreSyncAgentSyncIntervalSeconds - - - - UserStoreSyncAgentSyncIntervalSecondsForPush - - - - UserStoreSyncAgentSyncIntervalTimeoutSeconds - - - - UserStoreClientRetryCount - - - - UserStoreClientWaitBeforeRetryMilliseconds - - - - UserStoreClientTimeoutPerTrySeconds - - - - UserStoreClientRetryCountForPush - - - - UserStoreClientWaitBeforeRetryMillisecondsForPush - - - - UserStoreClientTimeoutPerTrySecondsForPush - - - - MaxConcurrentPulls - - - - MaxConfDocsToPull - - - - HealthProbeRtcSrvIntervalSeconds - - - - HealthProbeReplicationAppIntervalSeconds - - - - UserStoreClientUseIfxLogging - - - - UserStoreClientLoggingIfxSessionName - - - - UserStoreClientLoggingFileLocation - - - - UserStoreClientEnableHttpTracing - - - - UserStoreClientHttpTimeoutSeconds - - - - UserStoreClientConnectionLimit - - - - UserStorePhase - - - - BackfillFrequencySeconds - - - - BackfillQueueSizeThreshold - - - - BackfillBatchSize - - - - RoutingGroupPartitionHealthExpirationInMinutes - - - - RoutingGroupPartitionUnhealthyThresholdInMinutes - - - - RoutingGroupPartitionFailuresThreshold - - - - PartitionKeySuffix - - - - EnablePullStatusReporting - - - - EnableSlowPullBackOff - - - - BackOffValueMaximumThresholdInSeconds - - - - BackOffInitialValueInSeconds - - - - BackOffFactor - - - - PushControllerBatchSize - - - - HttpIdleConnectionTimeInSeconds - - - - - - - - DeserializedBroadcastMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.BroadcastMeetingConfiguration - - - - - - - - Identity - - - - EnableBroadcastMeeting - - - - EnableOpenBroadcastMeeting - - - - EnableBroadcastMeetingRecording - - - - EnableAnonymousBroadcastMeeting - - - - EnforceBroadcastMeetingRecording - - - - BroadcastMeetingSupportUrl - - - - EnableSdnProviderForBroadcastMeeting - - - - SdnFallbackAttendeeThresholdCountForBroadcastMeeting - - - - EnableTechPreviewFeatures - - - - - - - - DeserializedCloudMeetingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.CloudMeetingConfiguration - - - - - - - - Identity - - - - EnableAutoSchedule - - - - - - - - DeserializedCloudVideoInteropConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.CloudVideoInteropConfiguration - - - - - - - - Identity - - - - EnableCloudVideoInterop - - - - AllowLobbyBypass - - - - - - - - DeserializedCloudMeetingServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.CloudMeetingServiceConfiguration - - - - - - - - Identity - - - - SchedulingUrl - - - - DiscoveryUrl - - - - - - - - DeserializedUserSettingsPageConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserSettingsPage.UserSettingsPageConfiguration - - - - - - - - Identity - - - - PstnCallingUri - - - - PstnConferencingUri - - - - VoicemailUri - - - - - - - - DeserializedVideoInteropServerConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.VideoInteropServer.VideoInteropServerConfiguration - - - - - - - - Identity - - - - EnableEnhancedVideoExperience - - - - - - - - DeserializedVideoInteropServerSyntheticTransactionConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.VideoInteropServerSyntheticTransaction.VideoInteropServerSyntheticTransactionConfiguration - - - - - - - - Identity - - - - WatcherNodeFqdns - - - - - - - - DeserializedVideoTrunkConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.VideoTrunkConfiguration.VideoTrunkConfiguration - - - - - - - - Identity - - - - GatewaySendsRtcpForActiveCalls - - - - GatewaySendsRtcpForCallsOnHold - - - - EnableMediaEncryptionForSipOverTls - - - - EnableSessionTimer - - - - ForwardErrorCorrectionType - - - - - - - - DeserializedTargetPoolView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WatcherNode.TargetPool - - - - - - - - TestUsers - - - - Tests - - - - ExtendedTests - - - - TargetFqdn - - - - PortNumber - - - - UseInternalWebUrls - - - - XmppTestReceiverMailAddress - - - - Enabled - - - - UseAutoDiscovery - - - - - - - - DeserializedTargetPoolView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WatcherNode.TargetPool#Decorated - - - - - - - - Identity - - - - TestUsers - - - - Tests - - - - ExtendedTests - - - - TargetFqdn - - - - PortNumber - - - - UseInternalWebUrls - - - - XmppTestReceiverMailAddress - - - - Enabled - - - - UseAutoDiscovery - - - - - - - - DeserializedExtendedTestView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WatcherNode.ExtendedTest - - - - - - - - TestUsers - - - - Name - - - - TestType - - - - - - - - DeserializedWebServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.WebServiceSettings - - - - - - - - Identity - - - - TrustedCACerts - - - - CrossDomainAuthorizationList - - - - MaxGroupSizeToExpand - - - - EnableGroupExpansion - - - - UseLocalWebClient - - - - UseWindowsAuth - - - - UseCertificateAuth - - - - UsePinAuth - - - - UseDomainAuthInLWA - - - - EnableMediaBasicAuth - - - - AllowAnonymousAccessToLWAConference - - - - EnableCertChainDownload - - - - InferCertChainFromSSL - - - - CASigningKeyLength - - - - MaxCSRKeySize - - - - MinCSRKeySize - - - - MaxValidityPeriodHours - - - - MinValidityPeriodHours - - - - DefaultValidityPeriodHours - - - - MACResolverUrl - - - - SecondaryLocationSourceUrl - - - - ShowJoinUsingLegacyClientLink - - - - ShowDownloadCommunicatorAttendeeLink - - - - AutoLaunchLyncWebAccess - - - - ShowAlternateJoinOptionsExpanded - - - - UseWsFedPassiveAuth - - - - WsFedPassiveMetadataUri - - - - AllowExternalAuthentication - - - - ExcludedUserAgents - - - - OverrideAuthTypeForInternalClients - - - - OverrideAuthTypeForExternalClients - - - - MobilePreferredAuthType - - - - EnableStatisticsInResponse - - - - HstsMaxAgeInSeconds - - - - EnableCORS - - - - CorsPreflightResponseMaxAgeInSeconds - - - - CrossDomainAuthorizationRegularExpressionList - - - - - - - - DeserializedCACertIdView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.CACertId - - - - - - - - Thumbprint - - - - CAStore - - - - - - - - DeserializedOriginView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.Origin - - - - - - - - Url - - - - - - - - DeserializedHostedWebAuthSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.HostedWebAuthSettings - - - - - - - - Identity - - - - UseWsFedAuth - - - - WsFedMetadataUri - - - - WsFedEnvironment - - - - UseClientCertAuthForWindowsAuth - - - - WsFederationProvider - - - - CompactWebTicketUserIdentiferType - - - - AddTenantIdToCompactWebTicket - - - - - - - - DeserializedWebAppHealthView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WebAppHealth.WebAppHealth - - - - - - - - Identity - - - - - - - - DeserializedConfSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConfSettings - - - - - - - - Identity - - - - MaxContentStorageMb - - - - MaxUploadFileSizeMb - - - - MaxBandwidthPerAppSharingServiceMb - - - - ContentGracePeriod - - - - ClientMediaPortRangeEnabled - - - - ClientMediaPort - - - - ClientMediaPortRange - - - - ClientAudioPort - - - - ClientAudioPortRange - - - - ClientVideoPort - - - - ClientVideoPortRange - - - - ClientAppSharingPort - - - - ClientAppSharingPortRange - - - - ClientFileTransferPort - - - - ClientFileTransferPortRange - - - - ClientSipDynamicPort - - - - ClientSipDynamicPortRange - - - - Organization - - - - HelpdeskInternalUrl - - - - HelpdeskExternalUrl - - - - ConsoleDownloadInternalUrl - - - - ConsoleDownloadExternalUrl - - - - CloudPollServicePrimaryUrl - - - - CloudPollServiceSecondaryUrl - - - - - - - - DeserializedConferenceDisclaimerView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConferenceDisclaimer - - - - - - - - Identity - - - - Header - - - - Body - - - - - - - - DeserializedXForestMigrationConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.XForestMigration.XForestMigrationConfiguration - - - - - - - - Identity - - - - ReportErrorDetailBackToClient - - - - MaxSessionPerPool - - - - ThreadsPerTenant - - - - ThreadsPerFE - - - - PublishRoutingGroupDocumentInterval - - - - MoveHandlerEnabled - - - - MoveHandlerRequestInAsyncMode - - - - MoveHandlerQueryBatchSize - - - - MoveHandlerMaxDualSyncTenants - - - - MoveHandlerUserMoveBatchSize - - - - MoveHandlerStatusRetryLimitSinceLastStateChange - - - - MoveHandlerTenantRetryLimit - - - - MoveHandlerFinalizeTimeSpan - - - - MoveHandlerQueryInterval - - - - MoveHandlerErrorRetryInterval - - - - MoveHandlerStatusRetryInterval - - - - MoveHandlerUserMovePerSecond - - - - SHDMessageCenterEndpoint - - - - TenantNotificationEndMonth - - - - TenantNotificationStartDay - - - - EnableTenantNotification - - - - TenantNotificationExpirationDay - - - - UserMovesRetryPattern - - - - - - - - DeserializedXmppGatewaySettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.XmppFederation.XmppGatewaySettings - - - - - - - - Identity - - - - ConnectionLimit - - - - DialbackPassphrase - - - - EnableLoggingAllMessageBodies - - - - KeepAliveInterval - - - - PartnerConnectionLimit - - - - StreamEstablishmentTimeout - - - - StreamInactivityTimeout - - - - SubscriptionRefreshInterval - - - - - - - - DeserializedXmppAllowedPartnerView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.XmppFederation.XmppAllowedPartner - - - - - - - - AdditionalDomains - - - - Domain - - - - ConnectionLimit - - - - Description - - - - EnableKeepAlive - - - - ProxyFqdn - - - - SaslNegotiation - - - - SupportDialbackNegotiation - - - - TlsNegotiation - - - - PartnerType - - - - - - - - DeserializedXmppAllowedPartnerView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.XmppFederation.XmppAllowedPartner#Decorated - - - - - - - - Identity - - - - AdditionalDomains - - - - Domain - - - - ConnectionLimit - - - - Description - - - - EnableKeepAlive - - - - ProxyFqdn - - - - SaslNegotiation - - - - SupportDialbackNegotiation - - - - TlsNegotiation - - - - PartnerType - - - - - - - - DeserializedVoiceRoutingPolicyView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.Hosted.VoiceRoutingPolicy - - - - - - - - Identity - - - - PstnUsages - - - - Description - - - - Name - - - - AllowInternationalCalls - - - - HybridPSTNSiteIndex - - - - - - - - DeserializedAddressBookSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AddressBook.Hosted.AddressBookSettings - - - - - - - - Identity - - - - RunTimeOfDay - - - - KeepDuration - - - - SynchronizePollingInterval - - - - MaxDeltaFileSizePercentage - - - - UseNormalizationRules - - - - IgnoreGenericRules - - - - EnableFileGeneration - - - - MaxFileShareThreadCount - - - - EnableSearchByDialPad - - - - EnablePhotoSearch - - - - PhotoCacheRefreshInterval - - - - AzureAddressBookPrimaryServiceUrl - - - - AzureAddressBookSecondaryServiceUrl - - - - AzureAddressBookHealthPollingInterval - - - - DisableUserReplicationForAddressBook - - - - - - - - DeserializedCdrSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CallDetailRecording.Hosted.CdrSettings - - - - - - - - Identity - - - - MessageTypes - - - - EnableCDR - - - - EnableUdcLite - - - - EnablePurging - - - - KeepCallDetailForDays - - - - KeepErrorReportForDays - - - - PurgeHourOfDay - - - - EnableQueueBypassForErrorReport - - - - DataStore - - - - - - - - DeserializedCentralizedLoggingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.CentralizedLoggingConfig.Hosted.CentralizedLoggingConfiguration - - - - - - - - Identity - - - - Scenarios - - - - SearchTerms - - - - SecurityGroups - - - - Regions - - - - EtlModeEnabled - - - - EtlFileFolder - - - - EtlFileRolloverSizeMB - - - - EtlFileRolloverMinutes - - - - ZipEtlEnabled - - - - LocalSearchMode - - - - EtlNtfsCompressionEnabled - - - - TmfFileSearchPath - - - - CacheFileLocalFolders - - - - CacheFileNetworkFolder - - - - CacheFileLocalRetentionPeriod - - - - CacheFileLocalMaxDiskUsage - - - - ComponentThrottleLimit - - - - ComponentThrottleSample - - - - MinimumClsAgentServiceVersion - - - - NetworkUsagePacketSize - - - - NetworkUsageThreshold - - - - KrakenDBConnectionString - - - - SupportedRolesFromKrakenDB - - - - SupportedNonTopologyRolesFromKrakenDB - - - - Version - - - - InsertTypesForSubstringMatch - - - - ETLMinFreeSpaceInDiskInBytes - - - - ETLEnoughFreeSpaceInDiskInBytes - - - - ETLMaxQuotaInBytes - - - - ETLEnoughQuotaInBytes - - - - EtlMaxRetentionInDays - - - - EtlModeRevision - - - - ETLMinQuotaInBytes - - - - EtlMdsUploadEnabled - - - - EtlMdsUploadProviders - - - - LocalSearchModeRevision - - - - DisableTargetScenarios - - - - CloudOutputEnabled - - - - CloudOutputCpu - - - - CloudOutputUploadLimit - - - - CloudOutputUploadRatio - - - - - - - - DeserializedDialInConferencingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.Hosted.DialInConferencingConfiguration - - - - - - - - Identity - - - - EntryExitAnnouncementsType - - - - BatchToneAnnouncements - - - - EnableNameRecording - - - - EntryExitAnnouncementsEnabledByDefault - - - - UsePinAuth - - - - PinAuthType - - - - EnableInterpoolTransfer - - - - EnableAccessibilityOptions - - - - EnableAnnouncementServiceTransfer - - - - - - - - DeserializedMediaRelaySettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.Hosted.MediaRelaySettings - - - - - - - - Identity - - - - MaxTokenLifetime - - - - MaxBandwidthPerUserKb - - - - MaxBandwidthPerPortKb - - - - PermissionListIgnoreSeconds - - - - MaxAverageConnPps - - - - MaxPeakConnPps - - - - TRAPUrl - - - - TRAPCallDistribution - - - - TRAPHttpclientRetryCount - - - - TRAPHttpclientTimeoutInMilliSeconds - - - - HideMrasInternalFqdnForClientRequest - - - - - - - - DeserializedMediaSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Media.Hosted.MediaSettings - - - - - - - - Identity - - - - EnableQoS - - - - EncryptionLevel - - - - EnableSiren - - - - MaxVideoRateAllowed - - - - EnableG722StereoCodec - - - - EnableSirenForAudioVideoConferences - - - - EnableH264Codec - - - - EnableH264StdCodec - - - - EnableAdaptiveBandWidthEstimation - - - - EnableG722Codec - - - - EnableInCallQoS - - - - InCallQoSIntervalSeconds - - - - MediaPaaSBaseUrl - - - - MediaPaaSAuthenticationScheme - - - - MediaPaaSAppId - - - - MediaPaaSAudience - - - - ; - - - - EnableRtpRtcpMultiplexing - - - - EnableVideoBasedSharing - - - - WaitIceCompletedToAddDialOutUser - - - - EnableDtls - - - - EnableRtx - - - - EnableSilkForAudioVideoConferences - - - - EnableMTurnAllocationForAudioVideoConferences - - - - EnableAVBundling - - - - EnableServerFecForVideoInterop - - - - EnableReceiveAgc - - - - EnableDelayStartAudioReceiveStream - - - - - - - - DeserializedPlatformServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformServiceSettings.Hosted.PlatformServiceSettings - - - - - - - - Identity - - - - UcwaThrottlingConfigurations - - - - EnableScopes - - - - EnableCORS - - - - EnableApplicationRoles - - - - WebPoolFqdnDomainSuffix - - - - EnableAnonymousMeetingJoin - - - - EnableAnonymousMeetingJoinTokensAcrossTenants - - - - MeetingUrlAuthorizationList - - - - ServicePointManagerDefaultConnectionLimit - - - - MaxRegistrationsPerPublicApplication - - - - MaxEventChannelsPerApplication - - - - EnableUcwaThrottling - - - - EnableUcwaMessageFailureNotifications - - - - UcwaThrottlingThresholdPercentageForInternal - - - - UcwaThrottlingThresholdPercentageForPublic - - - - ApplicationProviderMode - - - - ApplicationProviderRefreshTimeSpanInMinutes - - - - EnableDelegateManagement - - - - EnableExternalAccessCheck - - - - ReplayApplicationEndpointUri - - - - EnableReplayMessage - - - - EnableMyOrganizationGroup - - - - EnableUcwaThrottlingToExchange - - - - HideRequireIntunePolicy - - - - MaxConcurrentUcwaRequestsToExchange - - - - BlockUnauthenticatedDiscover - - - - BlockUnlicensedTenantInFirstPartyDiscover - - - - ReplaceNamespaceHosts - - - - AlternateTokenNamespace - - - - EnablePushNotifications - - - - UseLegacyPushNotifications - - - - ConferenceChatInactivityTimeoutInHours - - - - EnableE911 - - - - EnableFileTransfer - - - - AllowCallsFromNonContactsInPrivatePrivacyMode - - - - BvdPortalWhitelistedApp - - - - BlacklistedApps - - - - TestParameters - - - - AutodiscoverBaseUrl - - - - ClusterFqdnForAutodiscover - - - - EWSTimeoutInSeconds - - - - EnablePreDrainingForIncomingCalls - - - - EnableMdsLogging - - - - EnableBotframeworkChannel - - - - BlockCrossTenantChannelForBotframework - - - - BotframeworkReportingServiceBusConnectionString - - - - GenevaTelemetryAccountName - - - - GenevaTelemetryAccountNamespace - - - - BotframeworkManagementServiceBusConnectionString - - - - EnableSendServerLogs - - - - EnableE911RequestXmlEncoding - - - - SendServerLogsServiceUrl - - - - TrouterCallbackBaseUrl - - - - EnableUcwaEscalateIncomingAvCallOnWebRtc - - - - EnableUcwaMdsLogging - - - - ContactCardUpdateAfterSignInMs - - - - ContactCardUpdateCheckInSeconds - - - - - - - - DeserializedThrottlingConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformServiceSettings.ThrottlingConfiguration - - - - - - - - Name - - - - ThrottlingTargetType - - - - ThrottlingMode - - - - ThrottlingScope - - - - TimeRangeInMinutes - - - - TargetNumber - - - - ExcludedApiNames - - - - IncludedApiNames - - - - OverrideThresholdPercentageForPublic - - - - SkipInBatchRequest - - - - - - - - DeserializedQoESettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.QoE.Hosted.QoESettings - - - - - - - - Identity - - - - ExternalConsumerIssuedCertId - - - - EnablePurging - - - - KeepQoEDataForDays - - - - PurgeHourOfDay - - - - EnableExternalConsumer - - - - ExternalConsumerName - - - - ExternalConsumerURL - - - - EnableQoE - - - - EnableQueueBypass - - - - DataStore - - - - - - - - DeserializedRecordingServiceConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.RecordingService.Hosted.RecordingServiceConfiguration - - - - - - - - Identity - - - - RecordingServiceAuthenticationScheme - - - - RecordingServiceBaseUrl - - - - RecordingServiceAppId - - - - RecordingServiceAudience - - - - - - - - DeserializedOAuthSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SSAuth.Hosted.OAuthSettings - - - - - - - - Identity - - - - PartnerApplications - - - - OAuthServers - - - - Realm - - - - ServiceName - - - - ClientAuthorizationOAuthServerIdentity - - - - ExchangeAutodiscoverUrl - - - - ExchangeAutodiscoverAllowedDomains - - - - ClientAdalAuthOverride - - - - AlternateAudienceUrl - - - - AdditionalAudienceUrls - - - - - - - - DeserializedSignInTelemetryConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SignInTelemetry.Hosted.SignInTelemetryConfiguration - - - - - - - - Identity - - - - EnableClientTelemetry - - - - SignInTelemetryUrl - - - - SkypeTelemetryUrl - - - - - - - - DeserializedSimpleUrlConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SimpleUrl.Hosted.SimpleUrlConfiguration - - - - - - - - Identity - - - - SimpleUrl - - - - UseBackendDatabase - - - - WebSchedulerUrl - - - - - - - - DeserializedSimpleUrlView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.SimpleUrl.Hosted.SimpleUrl - - - - - - - - SimpleUrlEntry - - - - Component - - - - Domain - - - - ActiveUrl - - - - MoreaDomain - - - - LegacyMoreaDomain - - - - - - - - DeserializedStorageServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.StorageService.Hosted.StorageServiceSettings - - - - - - - - Identity - - - - EnableAutoImportFlushedData - - - - EnableFabricReplicationSetReduction - - - - EnableAsyncAdaptorTaskAbort - - - - FabricInvalidStateTimeoutDuration - - - - SingleSecondaryMissingTimeoutDuration - - - - SingleSecondaryQuorumEventLogInterval - - - - EnableLightweightFinalization - - - - EnableGenevaLogging - - - - EnableEwsTaskTimeout - - - - FilteredAdapterIdList - - - - EnableAttachmentCache - - - - AttachmentCacheTimeout - - - - MaxTotalMemoryForActiveFileUploadsInGB - - - - MemoryToFileSizeRatioForExArchUpload - - - - EnableAggressiveGC - - - - EnableWCFSelfHeal - - - - - - - - DeserializedTrunkConfigurationView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TrunkConfiguration.Hosted.TrunkConfiguration - - - - - - - - Identity - - - - OutboundTranslationRulesList - - - - SipResponseCodeTranslationRulesList - - - - OutboundCallingNumberTranslationRulesList - - - - PstnUsages - - - - Description - - - - ConcentratedTopology - - - - EnableBypass - - - - EnableMobileTrunkSupport - - - - EnableReferSupport - - - - EnableSessionTimer - - - - EnableSignalBoost - - - - MaxEarlyDialogs - - - - RemovePlusFromUri - - - - RTCPActiveCalls - - - - RTCPCallsOnHold - - - - SRTPMode - - - - EnablePIDFLOSupport - - - - EnableRTPLatching - - - - EnableOnlineVoice - - - - ForwardCallHistory - - - - Enable3pccRefer - - - - ForwardPAI - - - - EnableFastFailoverTimer - - - - EnablePassThrough - - - - IndicatePstnGateway - - - - EnableG722Codec - - - - EnableLocationRestriction - - - - NetworkSiteID - - - - EnableEntitlementChecks - - - - WildcardCertDomainSuffix - - - - EnableOptionsAlerting - - - - EnableImmediateRinging - - - - ProvisionalResponseInterval - - - - OfferIncomingCallGatewaySDP - - - - Suppress183WithoutSdpToGateway - - - - - - - - DeserializedWebServiceSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.Hosted.WebServiceSettings - - - - - - - - Identity - - - - TrustedCACerts - - - - CrossDomainAuthorizationList - - - - MaxGroupSizeToExpand - - - - EnableGroupExpansion - - - - UseLocalWebClient - - - - UseWindowsAuth - - - - UseCertificateAuth - - - - UsePinAuth - - - - UseDomainAuthInLWA - - - - EnableMediaBasicAuth - - - - AllowAnonymousAccessToLWAConference - - - - EnableCertChainDownload - - - - InferCertChainFromSSL - - - - CASigningKeyLength - - - - MaxCSRKeySize - - - - MinCSRKeySize - - - - MaxValidityPeriodHours - - - - MinValidityPeriodHours - - - - DefaultValidityPeriodHours - - - - MACResolverUrl - - - - SecondaryLocationSourceUrl - - - - ShowJoinUsingLegacyClientLink - - - - MakeHtmlLyncWebAppPrimaryMeetingClient - - - - ShowDownloadCommunicatorAttendeeLink - - - - AutoLaunchLyncWebAccess - - - - ShowAlternateJoinOptionsExpanded - - - - IsPublicDisclosureAllowed - - - - JoinIdentifierRegularExpression - - - - UseWsFedPassiveAuth - - - - WsFedPassiveMetadataUri - - - - AllowExternalAuthentication - - - - ExcludedUserAgents - - - - OverrideAuthTypeForInternalClients - - - - OverrideAuthTypeForExternalClients - - - - MobilePreferredAuthType - - - - EnableStatisticsInResponse - - - - HstsMaxAgeInSeconds - - - - HelpUrlLyncWebAccess - - - - PrivacyUrlLyncWebAccess - - - - EnableCosmosUploadOnEdge - - - - EnableCosmosUploadForWebComponents - - - - PrivacyUrlLyncWebScheduler - - - - XFrameJavascriptUri - - - - PlatformServiceTokenIssuerCertificateMetadataUri - - - - AzureActiveDirectoryGraphApiBaseUri - - - - EnableAzureActiveDirectoryLookup - - - - AadServicePrincipalListForTenantDomainLookup - - - - EnableCORS - - - - CorsPreflightResponseMaxAgeInSeconds - - - - AllowCrossForestWebRequestProxy - - - - TestFeatureList - - - - TestParameterList - - - - CrossDomainAuthorizationRegularExpressionList - - - - DisableClientCertificateStorage - - - - - - - - DeserializedOriginView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Web.Hosted.Origin - - - - - - - - Url - - - - OriginVerificationMethod - - - - - - - - DeserializedConfSettingsView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.Hosted.ConfSettings - - - - - - - - Identity - - - - MaxContentStorageMb - - - - MaxUploadFileSizeMb - - - - MaxBandwidthPerAppSharingServiceMb - - - - ContentGracePeriod - - - - ClientMediaPortRangeEnabled - - - - ClientMediaPort - - - - ClientMediaPortRange - - - - ClientAudioPort - - - - ClientAudioPortRange - - - - ClientVideoPort - - - - ClientVideoPortRange - - - - ClientAppSharingPort - - - - ClientAppSharingPortRange - - - - ClientFileTransferPort - - - - ClientFileTransferPortRange - - - - ClientSipDynamicPort - - - - ClientSipDynamicPortRange - - - - Organization - - - - HelpdeskInternalUrl - - - - HelpdeskExternalUrl - - - - ConsoleDownloadInternalUrl - - - - ConsoleDownloadExternalUrl - - - - CloudPollServicePrimaryUrl - - - - CloudPollServiceSecondaryUrl - - - - DataRvCollectorUrl - - - - SupportLyncServer2010RtmDataMcuUserDirectories - - - - AriaTenantToken - - - - UseConnectedConnections - - - - EnableLwaRecording - - - - PsomEventReportLevel - - - - PurgingMode - - - - AlwaysUseExternalUrls - - - - UseStorageService - - - - UseTenantLevelMeetingSettings - - - - UseJitLocking - - - - JitLockingRetryIntervalSeconds - - - - JitLockingMaxRetryCount - - - - EncryptArchivedData - - - - CreateBackCompatUnencryptedFiles - - - - - - - - ServiceCmdlets - - Microsoft.Rtc.Management.Deployment.Core.NTService - - - - - - 8 - - - - 15 - - - - 120 - - - - - - - ServiceStatus - - - ServiceName - - - ActivityLevel - - - - - - - - NTServiceView - - Microsoft.Rtc.Management.Deployment.Core.NTServiceView - - - - - - 8 - - - - 15 - - - - 120 - - - - - - - Status - - - Name - - - ActivityLevel - - - - - - - - AbAttributeValues - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.AbAttributeValue - - - - - - 30 - - - - 70 - - - - - - - Name - - - Value - - - - - - - - AbServerHeartbeats - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.AbServerHeartbeat - - - - - - 30 - - - - 22 - - - - 22 - - - - 22 - - - - - - - Fqdn - - - LastHeartbeat - - - LastRegister - - - LastUnregister - - - - - - - - ManagementConnectionView - - Microsoft.Rtc.Management.Xds.ManagementConnection - - - - - - - - StoreProvider - - - - Connection - - - - ReadOnly - - - - SqlServer - - - - SqlInstance - - - - - - - - ServiceTypeView - - Microsoft.Rtc.Management.Fabric.ServiceTypeData - - - - - - 20 - - - - 100 - - - - - - - ServiceType - - - ServiceTable - - - - - - - - ReplicaStateView - - Microsoft.Rtc.Management.Xds.ReplicaState - - - - - - - - UpToDate - - - - ReplicaFqdn - - - - LastStatusReport - - - - LastUpdateCreation - - - - ProductVersion - - - - - - - - DisplayAccessEdgeSettingsDefaultRouteView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DisplayAccessEdgeSettingsDefaultRoute - - - - - - - - Identity - - - - AllowAnonymousUsers - - - - AllowFederatedUsers - - - - AllowOutsideUsers - - - - DefaultRouteFqdn - - - - EnableArchivingDisclaimer - - - - EnableUserReplicator - - - - IsPublicProvider - - - - KeepCrlsUpToDateForPeers - - - - MarkSourceVerifiableOnOutgoingMessages - - - - OutgoingTlsCountForFederatedPartners - - - - DnsSrvCacheRecordCount - - - - DiscoveredPartnerStandardRate - - - - EnableDiscoveredPartnerContactsLimit - - - - MaxContactsPerDiscoveredPartner - - - - EnableDiscoveredPartnerResponseMonitor - - - - DiscoveredPartnerReportPeriodMinutes - - - - EnablePartnerMonitoringCosmosOutput - - - - EnablePartnerMonitoringIfxLog - - - - MaxAcceptedCertificatesStored - - - - MaxRejectedCertificatesStored - - - - CertificatesDeletedPercentage - - - - SkypeSearchUrl - - - - RoutingMethod - - - - VerificationLevel - - - - - - - - DisplayAccessEdgeSettingsDnsSrvRoutingView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DisplayAccessEdgeSettingsDnsSrvRouting - - - - - - - - Identity - - - - AllowAnonymousUsers - - - - AllowFederatedUsers - - - - AllowOutsideUsers - - - - BeClearingHouse - - - - EnablePartnerDiscovery - - - - DiscoveredPartnerVerificationLevel - - - - EnableArchivingDisclaimer - - - - EnableUserReplicator - - - - KeepCrlsUpToDateForPeers - - - - MarkSourceVerifiableOnOutgoingMessages - - - - OutgoingTlsCountForFederatedPartners - - - - DnsSrvCacheRecordCount - - - - DiscoveredPartnerStandardRate - - - - EnableDiscoveredPartnerContactsLimit - - - - MaxContactsPerDiscoveredPartner - - - - EnableDiscoveredPartnerResponseMonitor - - - - DiscoveredPartnerReportPeriodMinutes - - - - EnablePartnerMonitoringCosmosOutput - - - - EnablePartnerMonitoringIfxLog - - - - MaxAcceptedCertificatesStored - - - - MaxRejectedCertificatesStored - - - - CertificatesDeletedPercentage - - - - SkypeSearchUrl - - - - RoutingMethod - - - - - - - - RoleView - - Microsoft.Rtc.Management.Authorization.OnPremDisplayRole - - - - - - - - Identity - - - - SID - - - - IsStandardRole - - - - Cmdlets - - - - ScriptModules - - - - ConfigScopes - - - - UserScopes - - - - TemplateName - - - - - - - - RoleView - - Microsoft.Rtc.Management.WritableConfig.Settings.Roles.Role - - - - - - - - Identity - - - - SID - - - - IsStandardRole - - - - Cmdlets - - - - ScriptModules - - - - ConfigScopes - - - - UserScopes - - - - TemplateName - - - - MSODSTemplateId - - - - - - - - CmdletTypeView - - Deserialized.Microsoft.Rtc.Management.Authorization.OnPremDisplayCmdletType - - - - - - - - Name - - - - - - - - CmdletTypeView - - Microsoft.Rtc.Management.Authorization.OnPremDisplayCmdletType - - - - - - - - Name - - - - - - - - CmdletTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Roles.CmdletType - - - - - - - - Name - - - - AllowedParameters - - - - - - - - CmdletTypeView - - Microsoft.Rtc.Management.WritableConfig.Settings.Roles.CmdletType - - - - - - - - Name - - - - AllowedParameters - - - - - - - - ScriptCmdletTypeView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Roles.ScriptCmdletType - - - - - - - - ScriptFile - - - - FunctionName - - - - - - - - ConfigScopeView - - Microsoft.Rtc.Management.Core.ConfigScope - - - - - - - - Scope - - - - Value - - - - - - - - UserScopeView - - Microsoft.Rtc.Management.Core.UserScope - - - - - - - - Scope - - - - Value - - - - - - - - DisplayPublicProviderView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DisplayPublicProvider - - - - - - - - Identity - - - - Name - - - - ProxyFqdn - - - - IconUrl - - - - NameDecorationDomain - - - - NameDecorationRoutingDomain - - - - NameDecorationExcludedDomainList - - - - VerificationLevel - - - - Enabled - - - - EnableSkypeIdRouting - - - - EnableSkypeDirectorySearch - - - - - - - - DisplayHostingProviderView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DisplayHostingProvider - - - - - - - - Identity - - - - Name - - - - ProxyFqdn - - - - VerificationLevel - - - - Enabled - - - - EnabledSharedAddressSpace - - - - HostsOCSUsers - - - - IsLocal - - - - AutodiscoverUrl - - - - - - - - CertificateReferenceView - - Microsoft.Rtc.Management.Deployment.CertificateReference - - - - - - - - Issuer - - - - NotAfter - - - - NotBefore - - - - SerialNumber - - - - Subject - - - - AlternativeNames - - - - Thumbprint - - - - EffectiveDate - - - - PreviousThumbprint - - - - UpdateTime - - - - Use - - - - SourceScope - - - - - - - - DisplaySiteView - - Microsoft.Rtc.Management.Xds.DisplaySite - - - - - - - - Identity - - - - SiteId - - - - Services - - - - Pools - - - - FederationRoute - - - - XmppFederationRoute - - - - Description - - - - DisplayName - - - - SiteType - - - - ParentSite - - - - - - - - DisplayPoolView - - Microsoft.Rtc.Management.Xds.DisplayPool#Decorated - - - - - - - - Identity - - - - Services - - - - Computers - - - - Fqdn - - - - BackupPoolFqdn - - - - Site - - - - - - - - DisplayComputerView - - Microsoft.Rtc.Management.Xds.DisplayComputer#Decorated - - - - - - - - Identity - - - - Pool - - - - Fqdn - - - - - - - - DisplayTeamsUpgradePolicy - - Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpgradePolicy#Decorated - - - - - - - - Identity - - - - Description - - - - Mode - - - - NotifySfbUsers - - - - - - - - DisplayDeserializedTeamsUpgradePolicy - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpgradePolicy#Decorated - - - - - - - - Identity - - - - Description - - - - Mode - - - - NotifySfbUsers - - - - - - - - MirrorUserStoreStateView - - Microsoft.Rtc.Management.Xds.MirrorUserStoreState - - - - - - - - Identity - - - - Mirror - - - - Online - - - - - - - - UserStoreStateView - - Microsoft.Rtc.Management.Xds.UserStoreState - - - - - - - - Identity - - - - Online - - - - - - - - SyntheticTransactionsTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.TaskOutput - - - - - - - - TargetFqdn - - - - Result - - - - Latency - - - - Error - - - - Diagnosis - - - - - - - - SyntheticTransactionsWebTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.WebTaskOutput - - - - - - - - TargetFqdn - - - - TargetUri - - - - Result - - - - Latency - - - - Error - - - - Diagnosis - - - - - - - - SyntheticTransactionsAddressBookReplicationUserTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.AddressBookReplicationUserTaskOutput - - - - - - - - TargetFqdn - - - - ReplicationState - - - - TaskOwnerFqdn - - - - BackupFqdn - - - - LastModified - - - - LastModifiedAD - - - - ServerHeartbeats - - - - IndexedObjects - - - - TotalObjects - - - - ShouldBeIndexedObjects - - - - AbandondedObjects - - - - FailedResourceCount - - - - AdObjectId - - - - DistinguishedName - - - - SipAddress - - - - AttributeValues - - - - IsIndexed - - - - ShouldBeIndexed - - - - IsProcessed - - - - NormalizationSucceeded - - - - ManagerDn - - - - NormalizationFailureCount - - - - NormalizationFailures - - - - DatabaseErrorCount - - - - DatabaseErrors - - - - - - - - SyntheticTransactionsAddressBookReplicationTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.AddressBookReplicationTaskOutput - - - - - - - - TargetFqdn - - - - ReplicationState - - - - TaskOwnerFqdn - - - - BackupFqdn - - - - ServerHeartbeats - - - - IndexedObjects - - - - TotalObjects - - - - ShouldBeIndexedObjects - - - - AbandondedObjects - - - - FailedResourceCount - - - - NormalizationFailureCount - - - - NormalizationFailures - - - - DatabaseErrorCount - - - - DatabaseErrors - - - - - - - - SyntheticTransactionsSprocExecuteErrorView - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.SprocExecuteErrorInfo - - - - - - - - ErrorCode - - - - Severity - - - - Count - - - - FirstOccurred - - - - LastOccurred - - - - SprocName - - - - ErrorText - - - - Example - - - - - - - - FedSyntheticTransactionsTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.Extended.FedTaskOutput - - - - - - - - Endpoints - - - - Result - - - - Latency - - - - Error - - - - Diagnosis - - - - - - - - LegalInterceptView - - Microsoft.Rtc.Management.ADConnect.Schema.ADOCOnlineLegalIntercept - - - - - - - - Identity - - - - SipAddress - - - - LegalInterceptEnabled - - - - LegalInterceptDestination - - - - LegalInterceptExpiryTime - - - - - - - - ClientAccessLicenseView - - Microsoft.Rtc.Server.Cdr.ClientAccessLicense - - - - - - 48 - - - - - - - - - - - - - - - - UserUri - - - IpAddress - - - LicenseDisplayName - - - DisplayDate - - - - - - - - LicenseView - - Microsoft.Rtc.Server.Cdr.License - - - - - - - - - - - - DisplayName - - - - - - - - PoolUpgradeReadinessView - - Microsoft.Rtc.Management.Hadr.PoolUpgradeState - - - - - - - - PoolFqdn - - - State - - - TotalFrontends - - - TotalActiveFrontends - - - UpgradeDomains - - - - - - - - InterPoolReplicationComparisonResultFailedView - - Microsoft.Rtc.Management.Hadr.InterPoolReplication.ComparisonResultFailure - - - - - - - Identity - - - OwnerPoolFqdn - - - ReplicateFrom - - - ReplicateTo - - - Exception - - - - - - - - DatabaseComparisonResultView - - Microsoft.Rtc.Management.Hadr.InterPoolReplication.DatabaseComparisonResult - - - - - - - Identity - - - OwnerPoolFqdn - - - ReplicateFrom - - - ReplicateTo - - - NumberOfBatchesOnSource - - - NumberOfBatchesOnBackup - - - NumberOfBatchesInSync - - - NumberOfBatchesWithSyncInProgress - - - NumberOfBatchesOutOfSync - - - NumberOfItemsOnSource - - - NumberOfItemsOnBackup - - - NumberOfItemsInSync - - - NumberOfItemsWithSyncInProgress - - - NumberOfItemsOutOfSync - - - - ; - - - - ; - - - - - - - - UserFabricStateView - - Microsoft.Rtc.Management.HADR.FabricState.DisplayUserFabricState - - - - - - - SipAddress - - - TenantId - - - RoutingGroupId - - - HomePool - - - CurrentPool - - - Replicas - - - FabricServiceWriteStatus - - - - - - - - TenantFabricStateView - - Microsoft.Rtc.Management.HADR.FabricState.DisplayTenantFabricState - - - - - - - TenantId - - - TotalUsers - - - ActiveUsers - - - ActiveEndpoints - - - - ; - - - - - - - - RoutingGroupFabricStateView - - Microsoft.Rtc.Management.HADR.FabricState.DisplayRoutingGroupFabricState - - - - - - - RoutingGroupId - - - TotalUsers - - - ActiveUsers - - - ActiveEndpoints - - - HomePool - - - CurrentPool - - - Replicas - - - FabricServiceWriteStatus - - - - - - - - RoutingGroupFabricStateWithTenantsView - - Microsoft.Rtc.Management.HADR.FabricState.DisplayRoutingGroupFabricStateWithTenants - - - - - - - RoutingGroupId - - - TotalUsers - - - ActiveUsers - - - ActiveEndpoints - - - HomePool - - - CurrentPool - - - Replicas - - - FabricServiceWriteStatus - - - - ; - - - - ; - - - - - - - - ResponseElementView - - Microsoft.Rtc.ClsControllerLib.ResponseElement - - - - - - 8 - - - - 70 - - - - 30 - - - - - - - Code - - - Message - - - Data - - - - - - - - ClsStateMachineView - - Microsoft.Rtc.ClsControllerLib.ClsStateMachine - - - PoolFqdn - - - - - - 28 - Left - - - - 30 - Left - - - - 8 - Left - - - - 16 - Left - - - - 9 - Left - - - - 14 - Left - - - - - - - - MachineFqdn - - - ResponseMessage - - - AlwaysOn - - - ScenarioName - - - RemainingMins - - - ProductVersion - - - - - - - - ClsSearchOutputView - - Microsoft.Rtc.Management.Cls.ClsSearchOutput - - - - - - - ResponseMessage - - - OutputFile - - - StartTime - - - EndTime - - - SuccessfulAgents - - - FailedAgents - - - - - - - - ClsAgentStatusOutputView - - Microsoft.Rtc.Management.Cls.AgentInfoETL - - - - - - - CoreVersion - - - ClsAgentExeVersion - - - ServiceStatus - - - TracingFolder - - - ServiceStartStop - - - AgentState - - - LogPath - - - OldestFile - - - NewestFile - - - DaysOfLogs - - - LogFileCount - - - LogAge - - - LogDateRanges - - - - ; - - - - ; - - - ByDayLogMB - - - ByHourLogMB - - - Last24HourLogMB - - - Last1HourLogMB - - - Drives - - - EtlModeRevision - - - - ; - - - ZipEtlEnabled - - - EtlNtfsCompressionEnabled - - - EtlMaxRetentionInDays - - - - ; - - - - ; - - - - ; - - - - ; - - - - ; - - - TmxFiles - - - TmxCount - - - LogFiles - - - - - - - - SlaConfiguration - - Microsoft.Rtc.Management.SlaConfiguration - - - - - - - - BusyOption - - - - Target - - - - MissedCallOption - - - - MissedCallForwardTarget - - - - MaxNumberOfCalls - - - - ; - - - - - - - - BobConfiguration - - Microsoft.Rtc.Management.Bob.Cmdlets.BobConfiguration - - - - - - - Identity - - - ActionType - - - - - - - - ReplicaBuildProgressView - - Microsoft.Rtc.Management.HADR.FabricState.DisplayReplicaBuildProgress - - - - - - - AsOfTime - - - StartSequenceNum - - - EndSequenceNum - - - CurrentSequenceNum - - - BuildState - - - - - - - - DeserializedTrunkConfigView - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig#Decorated2 - - - - - - - - Identity - - - - InboundTeamsNumberTranslationRules - - - - InboundPstnNumberTranslationRules - - - - OutboundTeamsNumberTranslationRules - - - - OutboundPstnNumberTranslationRules - - - - Fqdn - - - - SipSignalingPort - - - - FailoverTimeSeconds - - - - ForwardCallHistory - - - - ForwardPai - - - - SendSipOptions - - - - MaxConcurrentSessions - - - - Enabled - - - - MediaBypass - - - - GatewaySiteId - - - - GatewaySiteLbrEnabled - - - - GatewayLbrEnabledUserOverride - - - - FailoverResponseCodes - - - - PidfLoSupported - - - - MediaRelayRoutingLocationOverride - - - - ProxySbc - - - - BypassMode - - - - Description - - - - IPAddressVersion - - - - - - - - TrunkConfigView - - Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig#Decorated2 - - - - - - - - Identity - - - - InboundTeamsNumberTranslationRules - - - - InboundPstnNumberTranslationRules - - - - OutboundTeamsNumberTranslationRules - - - - OutboundPstnNumberTranslationRules - - - - Fqdn - - - - SipSignalingPort - - - - FailoverTimeSeconds - - - - ForwardCallHistory - - - - ForwardPai - - - - SendSipOptions - - - - MaxConcurrentSessions - - - - Enabled - - - - MediaBypass - - - - GatewaySiteId - - - - GatewaySiteLbrEnabled - - - - GatewayLbrEnabledUserOverride - - - - FailoverResponseCodes - - - - PidfLoSupported - - - - MediaRelayRoutingLocationOverride - - - - ProxySbc - - - - BypassMode - - - - Description - - - - IPAddressVersion - - - - - - - - DisplayHostingProviderBaseView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.Hosted.DisplayHostingProvider - - - - - - - - Identity - - - - Name - - - - ProxyFqdn - - - - VerificationLevel - - - - Enabled - - - - EnabledSharedAddressSpace - - - - HostsOCSUsers - - - - IsLocal - - - - AutodiscoverUrl - - - - - - - - DisplayHostingProviderExtendedView - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.Hosted.DisplayHostingProviderExtended - - - - - - - - Identity - - - - Name - - - - ProxyFqdn - - - - VerificationLevel - - - - Enabled - - - - EnabledSharedAddressSpace - - - - HostsOCSUsers - - - - IsLocal - - - - AutodiscoverUrl - - - - IsTenantVisible - - - - - - - - ClsTest - - Microsoft.Rtc.Management.Hosted.Cls.TestOutput - - - - - - - - TestName - - - - Value - - - - Result - - - - Passed - - - - - - - - ClsCacheFileInfo - - Microsoft.Rtc.Management.Hosted.Cls.ClsCacheFileInfo - - - - - - 35 - - - - 24 - - - - - - - - - - File - - - LastWriteTimeUtc - - - Length - - - - - - - - MachineProcess - - Microsoft.Rtc.Management.Hosted.Common.MachineProcess - - - - - - 35 - - - - 10 - - - - 18 - - - - 12 - - - - 12 - - - - 25 - - - - 85 - - - - - - - Name - - - ProcessId - - - WorkingSetSizeMB - - - Threads - - - Handles - - - ; - - - CommandLine - - - - - - - - MachineService - - Microsoft.Rtc.Management.Hosted.Common.MachineService - - - - - - 8 - - - - 30 - - - - 50 - - - - - - - Status - - - Name - - - DisplayName - - - - - - - - QFE - - Microsoft.Rtc.Management.Hosted.Common.QFE - - - - - - 12 - - - - 22 - - - - 27 - - - - 28 - - - - - - - HotFixId - - - Description - - - InstalledBy - - - InstalledOn - - - - - - - - Summary - - Microsoft.Rtc.Management.Hosted.MeetingMigration.Types.Summary - - - - - - 12 - - - - 22 - - - - - - - State - - - UserCount - - - - - - - - HDInfo - - Microsoft.Rtc.Management.Hosted.Common.HDInfo - - - - - - 15 - - - - 15 - - - - 15 - - - - 15 - - - - - - - Id - - - FreeMB - - - SizeMB - - - ; - - - - - - - - MachineStatus - - Microsoft.Rtc.Management.Hosted.Common.MachineStatus - - - - - - - - ComputerName - - - - ProductVersion - - - - BuildBranch - - - - OSVersion - - - - MSSQLVersion - - - - Uptime - - - - ; - - - - ProcessorUsage - - - - ; - - - - ; - - - - ; - - - - ; - - - - ; - - - - ; - - - - - - - - MaintenanceModeMachines - - Microsoft.Rtc.Management.Hosted.Cls.MaintenanceModeMachineInfo - - - - - - 35 - - - - 20 - - - - 30 - - - - 30 - - - - 30 - - - - - - - DisplayName - - - InMaintenanceMode - - - StartTime - - - User - - - Reason - - - - - - - - SyntheticTransactionsDebugPresenceTaskOutputView - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.UserPresenceStateTaskOutput - - - - - - - - PublisherFrontEnds - - - - SubscriberFrontEnds - - - - PublisherFeFqdn - - - - PublisherPoolFqdn - - - - SubscriberFeFqdn - - - - SubscriberPoolFqdn - - - - SubscribeContainerInfo - - - - ; - - - - ; - - - - ; - - - - Discrepancies - - - - - - - - PublisherContainerInfo - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.PublisherContainerInfo - - - - - - 25 - - - - 10 - - - - 10 - - - - 27 - - - - 25 - - - - - - - CategoryName - - - ContainerNum - - - Version - - - LastPubTime - - - OriginatedFrontEnd - - - - - - - - SubscribeContainerInfo - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.SubscribeContainerInfo - - - - - - 10 - - - - 15 - - - - 10 - - - - 10 - - - - 25 - - - - - - - ContainerNum - - - HowMatched - - - Rank1 - - - Rank2 - - - OriginatedFrontEnd - - - - - - - - ConferencingBridge - - Microsoft.Rtc.Management.Hosted.Cbd.ConferencingBridge - - - - - - - Identity - - - Name - - - Region - - - - DisplayDefaultServiceNumber - - - IsDefault - - - - DisplayServiceNumbers - - - TenantId - - - - - - - - ConferencingTenant - - Microsoft.Rtc.Management.Hosted.Cbd.ConferencingTenant - - - - - - - TenantId - - - - DisplayDefaultBridge - - - - DisplayBridges - - - AnnoucementsEnabled - - - NameRecordingEnabled - - - - - - - - ConferencingUserState - - Microsoft.Rtc.Management.Hosted.Cbd.ConferencingUserState - - - - - - - Identity - - - SipAddress - - - DisplayName - - - PstnConferencingLicenseState - - - Provider - - - Domain - - - TollNumber - - - TollFreeNumbers - - - ConferenceId - - - Url - - - - - - - - OnlineDialinConferencingServiceConfiguration - - Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinConferencingServiceConfiguration - - - - - - - AnonymousCallerGracePeriod - - - AnonymousCallerMeetingRuntime - - - AuthenticatedCallerMeetingRuntime - - - AvailableCountries - - - - - - - - LocalSubscribeInfo - - Microsoft.Rtc.SyntheticTransactions.Activities.Database.LocalSubscribeInfo - - - - - - 10 - - - - 10 - - - - 15 - - - - 27 - - - - 25 - - - - - - - DeliveryId - - - ContainerNum - - - CategoryName - - - LastChanged - - - OriginatedFrontEnd - - - - - - - - OnlineDialinNumberMap - - Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingNumberMap - - - - - - - Identity - - - Geocodes - - - - - - - - OnlineDialInConferencingMarketProfile - - Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingMarketProfile - - - - - - - Identity - - - Code - - - NumberMaps - - - - - - - - DisplayGraphApiConfigurationView - - Microsoft.Rtc.Management.WritableConfig.Settings.GraphApiConfiguration.DisplayGraphApiConfiguration - - - - - - - Identity - - - LoginUri - - - GraphUri - - - ClientId - - - GraphLookupEnabled - - - GraphReadWriteEnabled - - - AdminAuthGraphEnabled - - - TenantRemotePowershellClientId - - - - - - - - PersonName - - Microsoft.Rtc.Management.Hosted.Online.Models.PersonName - - - - - - - FirstName - - - MiddleName - - - LastName - - - DisplayName - - - - - - - - StatusRecord - - Microsoft.Rtc.Management.Hosted.Online.Models.StatusRecord - - - - - - - Type - - - Status - - - Id - - - StatusCode - - - Message - - - StatusTimestamp - - - - - - - - ApplicationInstanceSummary - - Microsoft.Rtc.Management.Hosted.Online.Models.ApplicationInstanceSummary - - - - - - - Id - - - TenantId - - - UserPrincipalName - - - ApplicationId - - - ConfigurationType - - - DisplayName - - - PhoneNumber - - - ConfigurationId - - - ConfigurationName - - - IsOnprem - - - - - - - - FindApplicationInstanceResult - - Microsoft.Rtc.Management.Hosted.Online.Models.FindApplicationInstanceResult - - - - - - - Id - - - Name - - - TelephoneNumber - - - - - - - - ApplicationInstanceAssociation - - Microsoft.Rtc.Management.Hosted.Online.Models.ApplicationInstanceAssociation - - - - - - - Id - - - ConfigurationType - - - ConfigurationId - - - CallPriority - - - - - - - - AssociationOperationOutput - - Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationOutput - - - - - - - - DisplayResults - - - - - - - - AssociationOperationResult - - Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationResult - - - - - - - Id - - - ConfigurationType - - - ConfigurationId - - - Result - - - StatusCode - - - StatusMessage - - - - - - - - BatchAssignPolicyOutput - - Microsoft.Rtc.Management.Hosted.Online.Models.BatchAssignPolicyOutput - - - - - - - PolicyName - - - PolicyType - - - Succeeded - - - - DisplayFailedResults - - - - - - - - BatchAssignPolicyFailedResult - - Microsoft.Rtc.Management.Hosted.Online.Models.BatchAssignPolicyFailedResult - - - - - - - Identity - - - ErrorCategory - - - ErrorDetails - - - - - - - - AudioFile - - Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile - - - - - - - Id - - - FileName - - - ApplicationId - - - - - - - - TimeRange - - Microsoft.Rtc.Management.Hosted.Online.Models.TimeRange - - - - - - - Start - - - End - - - - - - - - DateTimeRange - - Microsoft.Rtc.Management.Hosted.Online.Models.DateTimeRange - - - - - - - - DisplayStart - - - - DisplayEnd - - - - - - - - WeeklyRecurrentSchedule - - Microsoft.Rtc.Management.Hosted.Online.Models.WeeklyRecurrentSchedule - - - - - - - ComplementEnabled - - - - DisplayMondayHours - - - - DisplayTuesdayHours - - - - DisplayWednesdayHours - - - - DisplayThursdayHours - - - - DisplayFridayHours - - - - DisplaySaturdayHours - - - - DisplaySundayHours - - - - - - - - FixedSchedule - - Microsoft.Rtc.Management.Hosted.Online.Models.FixedSchedule - - - - - - - - DisplayDateTimeRanges - - - - - - - - Schedule - - Microsoft.Rtc.Management.Hosted.Online.Models.Schedule - - - - - - - Id - - - Name - - - Type - - - - DisplayWeeklyRecurrentSchedule - - - - DisplayFixedSchedule - - - - DisplayAssociatedConfigurationIds - - - - - - - - Voice - - Microsoft.Rtc.Management.Hosted.OAA.Models.Voice - - - - - - - Name - - - Id - - - - - - - - Language - - Microsoft.Rtc.Management.Hosted.OAA.Models.Language - - - - - - - Id - - - DisplayName - - - - DisplayVoices - - - VoiceResponseSupported - - - - - - - - Prompt - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - - - - - - ActiveType - - - TextToSpeechPrompt - - - - DisplayAudioFilePrompt - - - - - - - - MenuOption - - Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption - - - - - - - Action - - - DtmfResponse - - - VoiceResponses - - - - DisplayCallTarget - - - - DisplayPrompt - - - Description - - - - - - - - Menu - - Microsoft.Rtc.Management.Hosted.OAA.Models.Menu - - - - - - - Name - - - - DisplayPrompts - - - - DisplayMenuOptions - - - DialByNameEnabled - - - DirectorySearchMethod - - - - - - - - CallFlow - - Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow - - - - - - - Id - - - Name - - - - DisplayGreetings - - - - DisplayMenu - - - ForceListenMenuEnabled - - - RingResourceAccountDelegates - - - - - - - - TimeZone - - Microsoft.Rtc.Management.Hosted.OAA.Models.TimeZone - - - - - - - Id - - - DisplayName - - - - - - - - CallableEntity - - Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity - - - - - - - Id - - - Type - - - EnableTranscription - - - EnableSharedVoicemailSystemPromptSuppression - - - CallPriority - - - SharedVoicemailHistoryTemplateId - - - - - - - - CallHandlingAssociation - - Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociation - - - - - - - Type - - - ScheduleId - - - CallFlowId - - - Enabled - - - - - - - - DialScope - - Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope - - - - - - - Type - - - - DisplayGroupScope - - - - - - - - GroupDialScope - - Microsoft.Rtc.Management.Hosted.OAA.Models.GroupDialScope - - - - - - - GroupIds - - - - - - - - DirectoryLookupScope - - Microsoft.Rtc.Management.Hosted.OAA.Models.DirectoryLookupScope - - - - - - - - DisplayInclusionScope - - - - DisplayExclusionScope - - - - - - - - TenantInformation - - Microsoft.Rtc.Management.Hosted.OAA.Models.TenantInformation - - - - - - - DefaultLanguageId - - - DefaultTimeZoneId - - - FlightedFeatures - - - - - - - - StatusRecord - - Microsoft.Rtc.Management.Hosted.OAA.Models.StatusRecord - - - - - - - Type - - - Status - - - Id - - - ErrorCode - - - Message - - - StatusTimestamp - - - - - - - - Endpoint - - Microsoft.Rtc.Management.Hosted.Online.Models.Endpoint - - - - - - - Id - - - DisplayName - - - SipUri - - - LineUri - - - - - - - - - AutoAttendant - - Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant - - - - - - - Identity - - - TenantId - - - Name - - - LanguageId - - - VoiceId - - - - DisplayDefaultCallFlow - - - - DisplayOperator - - - TimeZoneId - - - VoiceResponseEnabled - - - - DisplayCallFlows - - - - DisplaySchedules - - - - DisplayCallHandlingAssociations - - - - DisplayStatus - - - DialByNameResourceId - - - - DisplayDirectoryLookupScope - - - ApplicationInstances - - - GreetingsSettingAuthorizedUsers - - - UserNameExtension - - - AutoRecordingTemplateId - - - - - - - - OrgAutoAttendant - - Microsoft.Rtc.Management.Hosted.OAA.Models.OrgAutoAttendant - - - - - - - PrimaryUri - - - TenantId - - - Name - - - LineUris - - - LanguageId - - - VoiceId - - - - DisplayDefaultCallFlow - - - - DisplayOperator - - - TimeZoneId - - - VoiceResponseEnabled - - - - DisplayCallFlows - - - - DisplaySchedules - - - - DisplayCallHandlingAssociations - - - - DisplayStatus - - - DialByNameResourceId - - - - DisplayDirectoryLookupScope - - - - - - - - OaaHolidayImportResult - - Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayImportResult - - - - - - - Name - - - - DisplayDateTimeRanges - - - Succeeded - - - FailureReason - - - - - - - - Summary - - Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayImportResult - - - - - - 24 - - - - 40 - - - - 10 - - - - 60 - - - - - - - Name - - - DisplayDateTimeRanges - - - Succeeded - - - FailureReason - - - - - - - - OaaHolidays - - Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayVisRecord - - - - - - - Year - - - Name - - - - DisplayDateTimeRanges - - - - DisplayGreetings - - - - DisplayCallAction - - - - - - - - Year - - Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayVisRecord - - - Year - - - - - - 24 - - - - 40 - - - - 60 - - - - 60 - - - - - - - Name - - - DisplayDateTimeRanges - - - DisplayGreetings - - - DisplayCallAction - - - - - - - - TransferTarget - - Microsoft.Rtc.Management.Hosted.Voicemail.Models.TransferTarget - - - - - - - TenantId - - - SipUri - - - TelUri - - - ObjectId - - - Type - - - RawInput - - - - - - - - VoicemailUserSettings - - Microsoft.Rtc.Management.Hosted.Voicemail.Models.VoicemailUserSettings - - - - - - - VoicemailEnabled - - - PromptLanguage - - - OofGreetingEnabled - - - OofGreetingFollowAutomaticRepliesEnabled - - - ShareData - - - CallAnswerRule - - - DefaultGreetingPromptOverwrite - - - DefaultOofGreetingPromptOverwrite - - - - DisplayTransferTarget - - - - - - - - HuntGroup - - Microsoft.Rtc.Management.Hosted.HuntGroup.Models.HuntGroup - - - - - - - - TenantId - - - - Name - - - - PrimaryUri - - - - LineUri - - - - RoutingMethod - - - - DisplayDistributionLists - - - - DistributionListsLastExpanded - - - - DisplayAgents - - - - AllowOptOut - - - - AgentsCapped - - - - AgentsInSyncWithDistributionLists - - - - AgentAlertTime - - - - OverflowThreshold - - - - OverflowAction - - - - OverflowActionTarget - - - - TimeoutThreshold - - - - TimeoutAction - - - - TimeoutActionTarget - - - - WelcomeMusicFileName - - - - UseDefaultMusicOnHold - - - - MusicOnHoldFileName - - - - DisplayStatistics - - - - - - - - CallQueue - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - TenantId - - - - Name - - - - Identity - - - - RoutingMethod - - - - DisplayDistributionLists - - - - DisplayUsers - - - - DistributionListsLastExpanded - - - - DisplayAgents - - - - AllowOptOut - - - - ConferenceMode - - - - PresenceBasedRouting - - - - AgentsCapped - - - - AgentsInSyncWithDistributionLists - - - - AgentAlertTime - - - - LanguageId - - - - OverflowThreshold - - - - OverflowAction - - - - OverflowActionTargetId - - - - OverflowSharedVoicemailTextToSpeechPrompt - - - - OverflowSharedVoicemailAudioFilePrompt - - - - OverflowSharedVoicemailAudioFilePromptFileName - - - - EnableOverflowSharedVoicemailTranscription - - - - TimeoutThreshold - - - - TimeoutAction - - - - TimeoutActionTargetId - - - - TimeoutSharedVoicemailTextToSpeechPrompt - - - - TimeoutSharedVoicemailAudioFilePrompt - - - - TimeoutSharedVoicemailAudioFilePromptFileName - - - - EnableTimeoutSharedVoicemailTranscription - - - - WelcomeMusicFileName - - - - UseDefaultMusicOnHold - - - - MusicOnHoldFileName - - - - DisplayStatistics - - - - DisplayApplicationInstances - - - - ChannelId - - - IsCallbackEnabled - - - CallbackRequestDtmf - - - WaitTimeBeforeOfferingCallbackInSecond - - - NumberOfCallsInQueueBeforeOfferingCallback - - - CallToAgentRatioThresholdBeforeOfferingCallback - - - CallbackOfferAudioFilePromptResourceId - - - CallbackOfferAudioFilePromptFileName - - - CallbackOfferTextToSpeechPrompt - - - ServiceLevelThresholdResponseTimeInSecond - - - - CallbackEmailNotificationTargetId - - - - DisplayOboResourceAccounts - - - ShiftsTeamId - - - ShiftsSchedulingGroupId - - - ComplianceRecordingForCallQueueTemplateId - - - TextAnnouncementForCR - - - CustomAudioFileAnnouncementForCR - - - TextAnnouncementForCRFailure - - - CustomAudioFileAnnouncementForCRFailure - - - SharedCallQueueHistoryTemplateId - - - AutoRecordingTemplateId - - - - - - - - HuntGroupTenantInformation - - Microsoft.Rtc.Management.Hosted.HuntGroup.Models.HuntGroupTenantInformation - - - - - - - FlightedFeatures - - - - - - - - StatusRecord - - Microsoft.Rtc.Management.Hosted.HuntGroup.Models.StatusRecord - - - - - - - WarningCode - - - Message - - - - - - - - ServiceIdView - - Microsoft.Rtc.Management.Core.WritableConfig.PstnGatewayWritableServiceId - - - - - - - - ; - - - - - - - - OcsAdApplicationContactView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADApplicationContact - - - - - - - - Identity - - - - RegistrarPool - - - - HomeServer - - - - OwnerUrn - - - - SipAddress - - - - DisplayName - - - - DisplayNumber - - - - LineURI - - - - PrimaryLanguage - - - - SecondaryLanguages - - - - EnterpriseVoiceEnabled - - - - ExUmEnabled - - - - Enabled - - - - - - - - OcsVideoRoomSystemView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADVideoRoomSystem - - - - - - - - Identity - - - - RegistrarPool - - - - SipAddress - - - - DisplayName - - - - LineURI - - - - Enabled - - - - - - - - OcsHybridApplicationEndpointView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADApplicationEndpoint - - - - - - - - Identity - - - - ApplicationId - - - - OwnerUrn - - - - EnterpriseVoiceEnabled - - - - Enabled - - - - SipAddress - - - - DisplayName - - - - LineURI - - - - - - - - OcsUserView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADUser - - - - - - - - Identity - - - - VoicePolicy - - - - VoiceRoutingPolicy - - - - ConferencingPolicy - - - - PresencePolicy - - - - DialPlan - - - - LocationPolicy - - - - ClientPolicy - - - - ClientVersionPolicy - - - - ArchivingPolicy - - - - ExchangeArchivingPolicy - - - - PinPolicy - - - - ExternalAccessPolicy - - - - MobilityPolicy - - - - UserServicesPolicy - - - - CallViaWorkPolicy - - - - ThirdPartyVideoSystemPolicy - - - - HostedVoiceMail - - - - HostedVoicemailPolicy - - - - IPPhonePolicy - - - - HostingProvider - - - - RegistrarPool - - - - Enabled - - - - SipAddress - - - - LineURI - - - - EnterpriseVoiceEnabled - - - - ExUmEnabled - - - - HomeServer - - - - DisplayName - - - - SamAccountName - - - - - - - - OcsAnalogDeviceView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADAnalogDeviceContact - - - - - - - - Identity - - - - VoicePolicy - - - - VoiceRoutingPolicy - - - - RegistrarPool - - - - Gateway - - - - AnalogFax - - - - Enabled - - - - SipAddress - - - - LineURI - - - - DisplayName - - - - DisplayNumber - - - - ExUmEnabled - - - - - - - - OcsExUmContactView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADExUmContact - - - - - - - - Identity - - - - RegistrarPool - - - - HomeServer - - - - Enabled - - - - SipAddress - - - - LineURI - - - - OtherIpPhone - - - - AutoAttendant - - - - IsSubscriberAccess - - - - Description - - - - DisplayName - - - - DisplayNumber - - - - HostedVoicemailPolicy - - - - ExUmEnabled - - - - - - - - OcsCommonAreaPhoneView - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADCommonAreaPhoneContact - - - - - - - - Identity - - - - RegistrarPool - - - - Enabled - - - - SipAddress - - - - ClientPolicy - - - - PinPolicy - - - - VoicePolicy - - - - VoiceRoutingPolicy - - - - MobilityPolicy - - - - ConferencingPolicy - - - - LineURI - - - - DisplayNumber - - - - DisplayName - - - - Description - - - - ExUmEnabled - - - - - - - - OcsAccessNumberView - - Microsoft.Rtc.Management.Xds.AccessNumber - - - - - - - - Identity - - - - PrimaryUri - - - - DisplayName - - - - DisplayNumber - - - - LineUri - - - - PrimaryLanguage - - - - SecondaryLanguages - - - - Pool - - - - HostingProvider - - - - Regions - - - - ExternalAccessPolicy - - - - - - - - AgentView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Agent - - - - - - - - UserSid - - - - DisplayName - - - - SipAddress - - - - - - - - AnswerView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Answer - - - - - - - - VoiceResponseList - - - - Action - - - - Name - - - - DtmfResponse - - - - - - - - CallActionView - - Microsoft.Rtc.Rgs.Management.WritableSettings.CallAction - - - - - - - - Prompt - - - - Question - - - - Action - - - - QueueID - - - - Uri - - - - - - - - PromptView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Prompt - - - - - - - - AudioFilePrompt - - - - TextToSpeechPrompt - - - - - - - - AudioFileView - - Microsoft.Rtc.Rgs.Management.WritableSettings.AudioFile - - - - - - - - OriginalFileName - - - - UniqueName - - - - - - - - QuestionView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Question - - - - - - - - Prompt - - - - InvalidAnswerPrompt - - - - NoAnswerPrompt - - - - AnswerList - - - - Name - - - - - - - - BusinessHoursView - - Microsoft.Rtc.Rgs.Management.WritableSettings.BusinessHours - - - - - - - - Identity - - - - MondayHours1 - - - - MondayHours2 - - - - TuesdayHours1 - - - - TuesdayHours2 - - - - WednesdayHours1 - - - - WednesdayHours2 - - - - ThursdayHours1 - - - - ThursdayHours2 - - - - FridayHours1 - - - - FridayHours2 - - - - SaturdayHours1 - - - - SaturdayHours2 - - - - SundayHours1 - - - - SundayHours2 - - - - Name - - - - Description - - - - Custom - - - - OwnerPool - - - - - - - - TimeRangeView - - Microsoft.Rtc.Rgs.Management.WritableSettings.TimeRange - - - - - - - - Name - - - - OpenTime - - - - CloseTime - - - - - - - - AgentGroupView - - Microsoft.Rtc.Rgs.Management.WritableSettings.AgentGroup - - - - - - - - Identity - - - - Name - - - - Description - - - - ParticipationPolicy - - - - AgentAlertTime - - - - RoutingMethod - - - - DistributionGroupAddress - - - - OwnerPool - - - - AgentsByUri - - - - - - - - AgentGroupsToAgentsMapView - - Microsoft.Rtc.Rgs.Management.WritableSettings.AgentGroupsToAgentsMap - - - - - - - - Position - - - - - - - - HolidayView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Holiday - - - - - - - - Name - - - - StartDate - - - - EndDate - - - - - - - - HolidaySetView - - Microsoft.Rtc.Rgs.Management.WritableSettings.HolidaySet - - - - - - - - Identity - - - - HolidayList - - - - Name - - - - OwnerPool - - - - - - - - ManagerView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Manager - - - - - - - - UserSid - - - - SipAddress - - - - - - - - OwnerPoolView - - Microsoft.Rtc.Rgs.Management.WritableSettings.OwnerPool - - - - - - - - Fqdn - - - - - - - - QueueView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Queue - - - - - - - - Identity - - - - TimeoutAction - - - - OverflowAction - - - - Name - - - - Description - - - - TimeoutThreshold - - - - OverflowThreshold - - - - OverflowCandidate - - - - OwnerPool - - - - AgentGroupIDList - - - - - - - - QueuesToAgentGroupsMapView - - Microsoft.Rtc.Rgs.Management.WritableSettings.QueuesToAgentGroupsMap - - - - - - - - Position - - - - - - - - ServiceSettingsView - - Microsoft.Rtc.Rgs.Management.WritableSettings.ServiceSettings - - - - - - - - Identity - - - - DefaultMusicOnHoldFile - - - - AgentRingbackGracePeriod - - - - DisableCallContext - - - - - - - - WorkflowView - - Microsoft.Rtc.Rgs.Management.WritableSettings.Workflow - - - - - - - - Identity - - - - NonBusinessHoursAction - - - - HolidayAction - - - - DefaultAction - - - - CustomMusicOnHoldFile - - - - Name - - - - Description - - - - PrimaryUri - - - - Active - - - - Language - - - - TimeZone - - - - BusinessHoursID - - - - Anonymous - - - - Managed - - - - OwnerPool - - - - DisplayNumber - - - - EnabledForFederation - - - - LineUri - - - - HolidaySetIDList - - - - ManagersByUri - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/ESRPClientLogs0515105205095.json b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/ESRPClientLogs0515105205095.json deleted file mode 100644 index 9c403ed07016e..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/ESRPClientLogs0515105205095.json +++ /dev/null @@ -1 +0,0 @@ -{"StdOut":"******************************************************************************\r\nMachine Information\r\nMachine Name: at-green0XTUMY\r\nMachine Ip: 10.211.0.57\r\nOperating System: Microsoft Windows NT 10.0.26100.0\r\nUser Name: at-green0XTUMY$\r\nProcessor Count: 16\r\nProcess Name: EsrpClient\r\nProcess Id: 14208\r\nCaller Program: EsrpClient.exe\r\nIdentity: NT AUTHORITY\\NETWORK SERVICE\r\nProcess Version: 1.2.142+Branch.master.Sha.90404b43284ec55b3e2251d0e272f8932aa583e2\r\nProcess Bitness: 64 bit\r\n******************************************************************************\r\nCommandline received: Sign | -a | c:\\Temp\\AzureTemp\\TFSTemp\\vctmp7144_321964.json | -p | c:\\Temp\\AzureTemp\\TFSTemp\\vctmp7144_510626.json | -c | c:\\Temp\\AzureTemp\\TFSTemp\\vctmp7144_790542.json | -i | c:\\Temp\\AzureTemp\\TFSTemp\\vctmp6644_27583.json | -o | c:\\Temp\\AzureTemp\\TFSTemp\\v5550F0.tmp | -l | Verbose ESRP session Id is: 1d875fbe-455e-4b9c-a422-c973a2b24bf1\r\n2026-05-15T10:51:57.1689245Z:Command you are trying to use is: Sign\r\n2026-05-15T10:51:57.1744634Z:Correlation Vector for this run is: 60e92504-9e49-4ea1-94f0-c4b550d61018\r\n2026-05-15T10:51:57.1744634Z:Groupid for this run is empty\r\n2026-05-15T10:51:57.2782513Z:request signing cert being used is this thumbprint: A03DA5630CC49629ED124E8DEECC3AD8E5C84566 in store LocalMachine\\My\r\n2026-05-15T10:51:57.2782513Z:Both certificates validation passed.\r\n2026-05-15T10:51:57.2793785Z:The auth cert we choose to use, subject name is: CN=0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f.microsoft.com, thumbprint is: 8DA640354B24FC59FD66CBC06533DB87F7C6F90D\r\n2026-05-15T10:51:57.3232490Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z] ConfidentialClientApplication 37368736 created\r\n2026-05-15T10:51:57.3235643Z:Gateway Client: Enter AuthenticationProvider, no calls to AAD yet, client id is 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f, and resource url is https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com, tenant id is 33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:57.3279015Z:There is no memory mapped file accociated with this name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:57.3293448Z:AAD auth caching is in use with this name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:57.3373168Z:Validate and Renew Token if necessary finished: 00:00:00.0064259\r\n2026-05-15T10:51:57.4119652Z:Session request is: {\r\n \"expiresAfter\": \"3.00:00:00\",\r\n \"partitionCount\": 0,\r\n \"isProvisionStorage\": true,\r\n \"isLegacyCopsModel\": false,\r\n \"commandName\": \"Sign\",\r\n \"intent\": \"digestsign\",\r\n \"contentType\": \"Bin\",\r\n \"contentOrigin\": \"3rd Party\",\r\n \"productState\": null,\r\n \"audience\": \"External Broad\"\r\n}\r\n2026-05-15T10:51:57.4364173Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z] ConfidentialClientApplication 29578451 created\r\n2026-05-15T10:51:57.4367341Z:Gateway Client: Enter AuthenticationProvider, no calls to AAD yet, client id is 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f, and resource url is https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com, tenant id is 33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:57.4412207Z:Gateway Client: a new client and client id is created: cb158527-6f08-4472-9faa-580f0ac83c4b\r\n2026-05-15T10:51:57.4718229Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] MSAL MSAL.Desktop with assembly version '4.70.0.0'. CorrelationId(207e7236-ce56-44db-8a3d-12fb8ab656d8)\r\n2026-05-15T10:51:57.4819561Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] === AcquireTokenForClientParameters ===\r\nSendX5C: True\r\nForceRefresh: False\r\nAccessTokenHashToRefresh: False\r\n\r\n2026-05-15T10:51:57.4931036Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] \r\n=== Request Data ===\r\nAuthority Provided? - True\r\nScopes - https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com/.default\r\nExtra Query Params Keys (space separated) - \r\nApiId - AcquireTokenForClient\r\nIsConfidentialClient - True\r\nSendX5C - True\r\nLoginHint ? False\r\nIsBrokerConfigured - False\r\nHomeAccountId - False\r\nCorrelationId - 207e7236-ce56-44db-8a3d-12fb8ab656d8\r\nUserAssertion set: False\r\nLongRunningOboCacheKey set: False\r\nRegion configured: \r\n\r\n2026-05-15T10:51:57.4931036Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] === Token Acquisition (ClientCredentialRequest) started:\r\n\t Scopes: https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com/.default\r\n\tAuthority Host: login.microsoftonline.com\r\n2026-05-15T10:51:57.5078832Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Internal cache] Total number of cache partitions found while getting access tokens: 0\r\n2026-05-15T10:51:57.5078832Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [FindAccessTokenAsync] Discovered 0 access tokens in cache using partition key: 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d_AppTokenCache\r\n2026-05-15T10:51:57.5078832Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [FindAccessTokenAsync] No access tokens found in the cache. Skipping filtering. \r\n2026-05-15T10:51:57.5155638Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Instance Discovery] Instance discovery is enabled and will be performed\r\n2026-05-15T10:51:57.5187989Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Region discovery] WithAzureRegion not configured. \r\n2026-05-15T10:51:57.5187989Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Region discovery] Not using a regional authority. \r\n2026-05-15T10:51:57.5224666Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Instance Discovery] Tried to use network cache provider for login.microsoftonline.com. Success? False. \r\n2026-05-15T10:51:57.5311845Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Fetching instance discovery from the network from host login.microsoftonline.com. \r\n2026-05-15T10:51:57.5459996Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [Oauth2Client] Sending GET request \r\n2026-05-15T10:51:57.5489557Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [HttpManager] ExecuteAsync\r\n2026-05-15T10:51:57.5544876Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [HttpManager] Sending request. Method: GET. Host: https://login.microsoftonline.com. Binding Certificate: False \r\n2026-05-15T10:51:57.8813218Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [HttpManager] Received response. Status code: OK. \r\n2026-05-15T10:51:57.8953321Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [HttpManager] ExecuteAsync in 347 ms\r\n2026-05-15T10:51:57.8953321Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [Oauth2Client] Sending GET request in 350 ms\r\n2026-05-15T10:51:57.9053398Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:57Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [OAuth2Client] Deserializing response\r\n2026-05-15T10:51:58.0099714Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [OAuth2Client] Deserializing response in 105 ms\r\n2026-05-15T10:51:58.0099714Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Instance Discovery] Tried to use network cache provider for login.microsoftonline.com. Success? True. \r\n2026-05-15T10:51:58.0099714Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Instance Discovery] After hitting the discovery endpoint, the network provider found an entry for login.microsoftonline.com ? True. \r\n2026-05-15T10:51:58.0144696Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Authority validation enabled? True. \r\n2026-05-15T10:51:58.0144696Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Authority validation - is known env? True. \r\n2026-05-15T10:51:58.0279201Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting TokenClient:SendTokenRequestAsync\r\n2026-05-15T10:51:58.0310827Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [TokenClient] Before adding the client assertion / secret\r\n2026-05-15T10:51:58.0319536Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Building assertion from certificate with clientId: 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f at endpoint: https://login.microsoftonline.com/33e01921-4d64-4f8c-a055-5bdaffd5e33d/oauth2/v2.0/token\r\n2026-05-15T10:51:58.0319536Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Proceeding with JWT token creation and adding client assertion.\r\n2026-05-15T10:51:58.0541363Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [TokenClient] After adding the client assertion / secret\r\n2026-05-15T10:51:58.0628228Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [Token Client] Fetching MsalTokenResponse .... \r\n2026-05-15T10:51:58.0628228Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [Oauth2Client] Sending POST request \r\n2026-05-15T10:51:58.0677866Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [HttpManager] ExecuteAsync\r\n2026-05-15T10:51:58.0677866Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [HttpManager] Sending request. Method: POST. Host: https://login.microsoftonline.com. Binding Certificate: False \r\n2026-05-15T10:51:58.2135010Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [HttpManager] Received response. Status code: OK. \r\n2026-05-15T10:51:58.2135010Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [HttpManager] ExecuteAsync in 146 ms\r\n2026-05-15T10:51:58.2138088Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [Oauth2Client] Sending POST request in 151 ms\r\n2026-05-15T10:51:58.2138088Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Starting [OAuth2Client] Deserializing response\r\n2026-05-15T10:51:58.2243429Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished [OAuth2Client] Deserializing response in 10 ms\r\n2026-05-15T10:51:58.2243429Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] ScopeSet was missing from the token response, so using developer provided scopes in the result. \r\n2026-05-15T10:51:58.2243429Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Finished TokenClient:SendTokenRequestAsync in 196 ms\r\n2026-05-15T10:51:58.2257542Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Checking client info returned from the server..\r\n2026-05-15T10:51:58.2261063Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Saving token response to cache..\r\n2026-05-15T10:51:58.2337409Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] \r\n[MsalTokenResponse]\r\nError: \r\nErrorDescription: \r\nScopes: https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com/.default\r\nExpiresIn: 86399\r\nRefreshIn: 43199\r\nAccessToken returned: True\r\nAccessToken Type: Bearer\r\nRefreshToken returned: False\r\nIdToken returned: False\r\nClientInfo returned: False\r\nFamilyId: \r\nWamAccountId exists: False\r\n2026-05-15T10:51:58.2346235Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [SaveTokenResponseAsync] ID Token not present in response. \r\n2026-05-15T10:51:58.2357536Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Cannot determine home account ID - or id token or no client info and no subject \r\n2026-05-15T10:51:58.2406849Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [SaveTokenResponseAsync] Entering token cache semaphore. Count Real semaphore: True. Count: 1.\r\n2026-05-15T10:51:58.2410496Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [SaveTokenResponseAsync] Entered token cache semaphore. \r\n2026-05-15T10:51:58.2410496Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [SaveTokenResponseAsync] Saving AT in cache and removing overlapping ATs...\r\n2026-05-15T10:51:58.2427092Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Looking for scopes for the authority in the cache which intersect with https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com/.default\r\n2026-05-15T10:51:58.2427092Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z] [Internal cache] Total number of cache partitions found while getting access tokens: 0\r\n2026-05-15T10:51:58.2427092Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Intersecting scope entries count - 0\r\n2026-05-15T10:51:58.2444744Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Not saving to ADAL legacy cache. \r\n2026-05-15T10:51:58.2444744Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] [SaveTokenResponseAsync] Released token cache semaphore. \r\n2026-05-15T10:51:58.2473686Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] \r\n\t=== Token Acquisition finished successfully:\r\n2026-05-15T10:51:58.2479812Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] AT expiration time: 5/16/2026 10:51:57 AM +00:00, scopes: https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com/.default. source: IdentityProvider\r\n2026-05-15T10:51:58.2486325Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] Fetched access token from host login.microsoftonline.com. \r\n2026-05-15T10:51:58.2497945Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] \r\n[LogMetricsFromAuthResult] Cache Refresh Reason: NoCachedAccessToken\r\n[LogMetricsFromAuthResult] DurationInCacheInMs: 0\r\n[LogMetricsFromAuthResult] DurationTotalInMs: 761\r\n[LogMetricsFromAuthResult] DurationInHttpInMs: 471\r\n2026-05-15T10:51:58.2497945Z:MSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:58Z - 207e7236-ce56-44db-8a3d-12fb8ab656d8] TokenEndpoint: ****\r\n2026-05-15T10:51:58.2626898Z:Use AAD token. CERT\r\n2026-05-15T10:51:58.2727829Z:New Token Acquisition Time: 00:00:00.8233204\r\n2026-05-15T10:51:58.2942837Z:Gateway Client: the client id that is sending a request is: cb158527-6f08-4472-9faa-580f0ac83c4b\r\n2026-05-15T10:51:59.1773438Z:Gateway Client: response send time from cloud gateway: 2026-05-15T10:51:58.8543560+00:00\r\n2026-05-15T10:51:59.1773438Z:Gateway Client: response receive time from client SendAsync: 2026-05-15T10:51:59.1773438+00:00\r\n2026-05-15T10:51:59.1773438Z:Gateway Client: response duration time between cloud gateway and client SendAsync: 00:00:00.3229878\r\n2026-05-15T10:51:59.2614353Z:Session request requestid: 3ca2fd0c-7d78-471c-81b7-a1d6bbadaee5, and submission status is: Pass\r\n2026-05-15T10:51:59.3099687Z:Provision storage complete. Total shards: 100\r\n2026-05-15T10:51:59.3136736Z:Loading DigestSignErrorMappingCache mapping info\r\n2026-05-15T10:51:59.3205308Z:DigestSignErrorMappingCache from server, # of DigestSignOperationErrorPatterns object we get is :: \r\n2026-05-15T10:51:59.3408816Z:Consolidate DigestSignErrorMappingCache, # of DigestSignOperationErrorPatterns object we get is :: 34\r\n2026-05-15T10:51:59.3408816Z:Successfully retrieved policy: policy is {\"policy\":{\"id\":\"0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f-0\",\"workflowExecutionType\":3}}\r\n2026-05-15T10:51:59.3484084Z:Successfully get telemetry connection string: Endpo......\r\n2026-05-15T10:51:59.3504257Z:Warning: \r\n2026-05-15T10:51:59.3524431Z:IAuthInfo constructed: {\r\n \"authenticationType\": \"AAD_CERT\",\r\n \"clientId\": \"0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f\",\r\n \"tenantId\": \"33e01921-4d64-4f8c-a055-5bdaffd5e33d\",\r\n \"aadAuthorityBaseUri\": \"https://login.microsoftonline.com/\",\r\n \"authCert\": {\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"My\",\r\n \"subjectName\": \"CN=0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f.microsoft.com\",\r\n \"sendX5c\": true,\r\n \"withAzureRegion\": false,\r\n \"getCertFromKeyVault\": false,\r\n \"keyVaultName\": null,\r\n \"keyVaultCertName\": null\r\n },\r\n \"requestSigningCert\": {\r\n \"storeLocation\": \"LocalMachine\",\r\n \"storeName\": \"My\",\r\n \"subjectName\": \"CN=0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f\",\r\n \"sendX5c\": false,\r\n \"withAzureRegion\": false,\r\n \"getCertFromKeyVault\": false,\r\n \"keyVaultName\": null,\r\n \"keyVaultCertName\": null\r\n },\r\n \"oAuthToken\": null,\r\n \"version\": \"1.0.0\",\r\n \"esrpClientId\": \"0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f\",\r\n \"federatedTokenData\": null,\r\n \"federatedTokenPath\": null\r\n}\r\n2026-05-15T10:51:59.3538497Z:IPolicyInfo constructed: {\r\n \"intent\": \"digestsign\",\r\n \"contentType\": \"Bin\",\r\n \"contentOrigin\": \"3rd Party\",\r\n \"productState\": null,\r\n \"audience\": \"External Broad\",\r\n \"version\": \"1.0.0\"\r\n}\r\n2026-05-15T10:51:59.3574003Z:IConfigInfo constructed: {\r\n \"esrpApiBaseUri\": \"https://api.esrp.microsoft.com/api/v2/\",\r\n \"esrpSessionTimeoutInSec\": 60,\r\n \"minThreadPoolThreads\": 64,\r\n \"maxDegreeOfParallelism\": 64,\r\n \"exponentialFirstFastRetry\": true,\r\n \"exponentialRetryCount\": 2,\r\n \"exponentialRetryDeltaBackOff\": \"00:00:05\",\r\n \"exponentialRetryMaxBackOff\": \"00:01:00\",\r\n \"exponentialRetryMinBackOff\": \"00:00:03\",\r\n \"appDataFolder\": \"C:\\\\Windows\\\\ServiceProfiles\\\\NetworkService\\\\AppData\\\\Local\",\r\n \"certificateCacheFolder\": null,\r\n \"version\": \"1.0.0\",\r\n \"exitOnFlaggedFile\": false,\r\n \"flaggedFileClientWaitTimeout\": \"1.00:00:00\",\r\n \"servicePointManagerDefaultConnectionLimit\": 64,\r\n \"isOnPremGateway\": false,\r\n \"diagnosticListeners\": null,\r\n \"securityProtocolType\": \"Tls12\",\r\n \"parallelOperationsInFileUploadDownload\": 300,\r\n \"maxTelemetryBuffer\": 200000,\r\n \"telemetryTimeoutInSec\": 0,\r\n \"resourceUri\": \"https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com\",\r\n \"cacheRootFolder\": null,\r\n \"cachedFileTTLInMin\": 7200\r\n}\r\n2026-05-15T10:51:59.5583777Z:Client Telemetry: Xpert agent is not running on the machine. Using events hub for processing client telemetry.\r\n2026-05-15T10:51:59.7592228Z:Key: TotalSignOperationDataCount, Value: 1\r\n2026-05-15T10:51:59.7730663Z:Start Time:5/15/2026 10:51:59 AM, Starting the sign workflow...\r\n2026-05-15T10:51:59.7825525Z:some input info: {\r\n \"contextData\": {\r\n \"build_buildnumber\": \"AzureDevOps_M273_20260428.14\",\r\n \"esrpClientVersion\": \"1.2.142+Branch.master.Sha.90404b43284ec55b3e2251d0e272f8932aa583e2\",\r\n \"userIpAddress\": \"10.211.0.57\",\r\n \"userAgent\": \"at-green0XTUMY\"\r\n },\r\n \"sourceDirectory\": null,\r\n \"sourceLocation\": \"c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\",\r\n \"destinationDirectory\": null,\r\n \"destinationLocation\": \"c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\",\r\n \"sizeInBytes\": 0,\r\n \"name\": \"manifest.cat\",\r\n \"isSuccess\": null,\r\n \"operationStartedAt\": \"0001-01-01T00:00:00+00:00\",\r\n \"operationEndedAt\": \"0001-01-01T00:00:00+00:00\",\r\n \"operationDurationMS\": 0,\r\n \"processName\": \"EsrpClient\",\r\n \"processId\": 14208,\r\n \"processVersion\": \"1.2.142+Branch.master.Sha.90404b43284ec55b3e2251d0e272f8932aa583e2\",\r\n \"customerCorrelationId\": null,\r\n \"esrpClientSessionGuid\": \"1d875fbe-455e-4b9c-a422-c973a2b24bf1\",\r\n \"callerProgram\": \"EsrpClient\",\r\n \"indentity\": \"NT AUTHORITY\\\\NETWORK SERVICE\",\r\n \"clientId\": \"0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f\",\r\n \"exceptionData\": null,\r\n \"apiBaseUrl\": \"https://api.esrp.microsoft.com/api/v2/\",\r\n \"handlerWorkflow\": \"Sign\",\r\n \"submissionRequest\": {\r\n \"contextData\": {\r\n \"build_buildnumber\": \"AzureDevOps_M273_20260428.14\",\r\n \"esrpClientVersion\": \"1.2.142+Branch.master.Sha.90404b43284ec55b3e2251d0e272f8932aa583e2\",\r\n \"userIpAddress\": \"10.211.0.57\",\r\n \"userAgent\": \"at-green0XTUMY\"\r\n },\r\n \"groupId\": null,\r\n \"correlationVector\": \"60e92504-9e49-4ea1-94f0-c4b550d61018\",\r\n \"driEmail\": null,\r\n \"version\": \"1.0.0\"\r\n },\r\n \"policyInfo\": {\r\n \"intent\": \"digestsign\",\r\n \"contentType\": \"Bin\",\r\n \"contentOrigin\": \"3rd Party\",\r\n \"productState\": null,\r\n \"audience\": \"External Broad\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osVersion\": \"Microsoft Windows NT 10.0.26100.0\",\r\n \"executingMachineIPAddress\": \"10.211.0.57\"\r\n}\r\n2026-05-15T10:51:59.8197823Z:Executing SignWorkflowType is DigestSignStaticAzure\r\n2026-05-15T10:51:59.8323396Z:Source file \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" hashed in 2 ms\r\n2026-05-15T10:51:59.8692998Z:Thread: 1 - Certificate file mutex \"knC4qENh66/dZuyz5QXJwbqjPQJOSEbDCp+w3cIpJ8Y=_CP-464321\" acquired (waited 0 ms).\r\nMSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:59Z] ConfidentialClientApplication 44123454 created\r\n2026-05-15T10:51:59.8788622Z:Gateway Client: Enter AuthenticationProvider, no calls to AAD yet, client id is 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f, and resource url is https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com, tenant id is 33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:59.8793018Z:Cached token found with name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:59.8797621Z:AAD auth caching is in use with this name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:59.9568162Z:Global cached token is valid from 5/15/2026 10:46:58 AM to 5/16/2026 10:51:58 AM (UTC). Total validity from current time is 86398.0443413 seconds\r\n2026-05-15T10:51:59.9568162Z:Validate and Renew Token if necessary finished: 00:00:00.0771530\r\nMSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:51:59Z] ConfidentialClientApplication 20852350 created\r\n2026-05-15T10:51:59.9571569Z:Gateway Client: Enter AuthenticationProvider, no calls to AAD yet, client id is 0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f, and resource url is https://msazurecloud.onmicrosoft.com/api.esrp.microsoft.com, tenant id is 33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:51:59.9571569Z:Gateway Client: a new client and client id is created: 9f7e6936-76e0-4d40-af5e-f77a0cf0adc0\r\n2026-05-15T10:51:59.9571569Z:5/15/2026 10:51:59 AM +00:00:Digest Signing Factory Client type loaded is - [AzureGatewaySubmitter].\r\n2026-05-15T10:51:59.9712954Z:Existing Token Acquisition Time: 00:00:00.0005939\r\n2026-05-15T10:52:00.0387982Z:Gateway Client: the client id that is sending a request is: 9f7e6936-76e0-4d40-af5e-f77a0cf0adc0\r\n2026-05-15T10:52:00.2137260Z:Gateway Client: response send time from cloud gateway: 2026-05-15T10:52:00.1609131+00:00\r\n2026-05-15T10:52:00.2137260Z:Gateway Client: response receive time from client SendAsync: 2026-05-15T10:52:00.2137260+00:00\r\n2026-05-15T10:52:00.2137260Z:Gateway Client: response duration time between cloud gateway and client SendAsync: 00:00:00.0528129\r\n2026-05-15T10:52:00.2148728Z:Gateway Client: response time after converting from http response to object: 2026-05-15T10:52:00.2148728+00:00\r\n2026-05-15T10:52:00.7406921Z:Existing Token Acquisition Time: 00:00:00.0006431\r\n2026-05-15T10:52:00.7430951Z:Gateway Client: the client id that is sending a request is: 9f7e6936-76e0-4d40-af5e-f77a0cf0adc0\r\n2026-05-15T10:52:00.8854832Z:Gateway Client: response send time from cloud gateway: 2026-05-15T10:52:00.7931834+00:00\r\n2026-05-15T10:52:00.8854832Z:Gateway Client: response receive time from client SendAsync: 2026-05-15T10:52:00.8854832+00:00\r\n2026-05-15T10:52:00.8854832Z:Gateway Client: response duration time between cloud gateway and client SendAsync: 00:00:00.0922998\r\n2026-05-15T10:52:00.8912838Z:Gateway Client: response time after converting from http response to object: 2026-05-15T10:52:00.8912838+00:00\r\n2026-05-15T10:52:00.8943030Z:Reading thumbprint from \"C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Local\\EsrpClient_1d875fbe455e4b9ca422c973a2b24bf1\\Certificates\\CP-464321.p7b\" (9692 bytes)...\r\n2026-05-15T10:52:00.9182630Z:Thread: 1 - Wrote new certificate file to \"C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Local\\EsrpClient_1d875fbe455e4b9ca422c973a2b24bf1\\Certificates\\CP-464321.p7b\".\r\n2026-05-15T10:52:00.9182630Z:Thread: 1 - Certificate file mutex \"knC4qENh66/dZuyz5QXJwbqjPQJOSEbDCp+w3cIpJ8Y=_CP-464321\" released (held for 1049 ms).\r\n2026-05-15T10:52:00.9190418Z:digest sign request expire time is: 5/15/2026 10:52:59 AM\r\n2026-05-15T10:52:02.3758129Z:Client Telemetry: Events published in this batch: 4\r\n2026-05-15T10:52:02.3758129Z:Client Telemetry: Events received so far in this session: 4\r\n2026-05-15T10:52:02.3758129Z:Client Telemetry: Events published so far in this session: 4\r\n2026-05-15T10:52:03.5847712Z:Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe sign /NPH /fd \"SHA256\" /f \"C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Local\\EsrpClient_1d875fbe455e4b9ca422c973a2b24bf1\\Certificates\\CP-464321.p7b\" /sha1 \"464FA2A9D4A43EA5C3E53CE4562B501CB6EFA47F\" /du \"https://www.1eswiki.com/wiki/ADO_Manifest_Generator\" /d \"Packaging SSSC Codesign - DigestSign\" /tr \"http://aztss.trafficmanager.net/TSS/HttpTspServer\" /td sha256 /dlib \"c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\EsrpClient.Sign.DigestSignLib.dll\" /dmdf \"C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Local\\EsrpClient_1d875fbe455e4b9ca422c973a2b24bf1\\07FCB7358EED475DB87752A550DF7593.json\" \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" completed in 2664 ms\r\nExit Code: 0\r\nStdOut:\r\nDone Adding Additional Store\r\n\r\nESRP Digest Signing\r\n\r\n2026-05-15T10:52:01.6767425Z:Digest Signer : SecurityProtocolType used from the metadata info is : Tls12\r\nMSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:52:01Z] ConfidentialClientApplication 654897 created\r\n2026-05-15T10:52:01.7893951Z:Cached token found with name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:52:01.7911128Z:AAD auth caching is in use with this name: api.esrp.microsoft.com_0d3b5b1a-8684-4f3a-b294-66c3b9aa8c8f_33e01921-4d64-4f8c-a055-5bdaffd5e33d\r\n2026-05-15T10:52:01.8789901Z:Global cached token is valid from 5/15/2026 10:46:58 AM to 5/16/2026 10:51:58 AM (UTC). Total validity from current time is 86396.1210099 seconds\r\n2026-05-15T10:52:01.8797330Z:Validate and Renew Token if necessary finished: 00:00:00.0877329\r\nMSAL logging: False MSAL 4.70.0.0 MSAL.Desktop 4.8 or later Windows Server 2025 Datacenter Azure Edition [2026-05-15 10:52:01Z] ConfidentialClientApplication 49044892 created\r\n2026-05-15T10:52:01.9356901Z:Existing Token Acquisition Time: 00:00:00.0024090\r\n2026-05-15T10:52:02.5573969Z:Gateway Submission Request Signing Time: 00:00:00.0958980\r\n2026-05-15T10:52:02.5573969Z:Gateway Submission Request Send Time: 00:00:00.5092737\r\n2026-05-15T10:52:02.5573969Z:Gateway Submission Overall Submission Time: 00:00:00.6189298\r\n2026-05-15T10:52:02.5573969Z:Operation ID: fbea2245-afde-4e1f-8c34-d606cadbe53c\r\n2026-05-15T10:52:03.0680244Z:Gateway Status Delay Time: 00:00:00.5105593\r\n2026-05-15T10:52:03.0765345Z:Existing Token Acquisition Time: 00:00:00.0006836\r\n2026-05-15T10:52:03.2710886Z:Gateway Status Request Send Time: 00:00:00.1906282\r\n2026-05-15T10:52:03.2710886Z:Gateway Status Overall Time: 00:00:00.1926506\r\n2026-05-15T10:52:03.2776382Z:Gateway Submission Duration: 879\r\n2026-05-15T10:52:03.2776382Z:Gateway Submission Attempts: 1\r\n2026-05-15T10:52:03.2776382Z:Gateway GetStatus Duration: 202\r\n2026-05-15T10:52:03.2776382Z:Gateway GetStatus Attempts: 1\r\n2026-05-15T10:52:03.2776382Z:$$5a9f5111cf8f42a0a0edc419862b95dc##_ThrottleCount: 0\r\n2026-05-15T10:52:03.2776382Z:$$65265a48891640eb86e148d3c9a627fa##_ThrottledTimeInSec: 0\r\n2026-05-15T10:52:03.2776382Z:Service Call: 1704.8585 ms\r\nSuccessfully signed: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\n\r\n\r\n\r\nStdErr:\r\n\r\n\r\n\r\n\r\n2026-05-15T10:52:03.7310307Z:Warning: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n2026-05-15T10:52:03.7320547Z:Warning: Warning: Operation Error (1) - Operation: signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" - Retrying in 500 ms...\r\n2026-05-15T10:52:03.8511971Z:Warning: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n2026-05-15T10:52:03.8511971Z:Warning: Warning: Operation Error (2) - Operation: signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" - Retrying in 500 ms...\r\n2026-05-15T10:52:04.0694432Z:Client Telemetry: Events published in this batch: 3\r\n2026-05-15T10:52:04.0694432Z:Client Telemetry: Events received so far in this session: 7\r\n2026-05-15T10:52:04.0694432Z:Client Telemetry: Events published so far in this session: 7\r\n2026-05-15T10:52:04.4498785Z:Warning: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n2026-05-15T10:52:04.4758476Z:\r\n2026-05-15T10:52:04.4758476Z:Error: System.AggregateException: One or more errors occurred. ---> MS.Ess.EsrpClient.Sign.Exceptions.EsrpDigestSignExecuteProcessFailedException: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass27_0.b__1()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.<>c__DisplayClass1.b__0()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.ExecuteDigestSignOperation(Input digestSignInput, Operation digestSignOperation, SignOperationData fileEntry, SignStatusResponse completionResponse, SignCommandDefinition param, Guid correlationId, String correlationVector, CancellationToken cancellationToken, String requestId, String tmpDestinationLocation)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.DigestSignInternal(Input digestSignInput, SignCommandDefinition param, Guid& correlationId, String correlationVector, CancellationToken cancellationToken, String groupId, SignOperationData fileEntry, Int32& signedFileCount, Int32& certRefreshCount, ConcurrentBag`1 completionResponses, RetryPolicy`1 operationRetryPolicy, String dynamicCertificateFile, String dynamicCertificateThumbprint, String requestId)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass23_3.b__6(SignOperationData fileEntry)\r\n --- End of inner exception stack trace ---\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.d__23.MoveNext()\r\n---> (Inner Exception #0) MS.Ess.EsrpClient.Sign.Exceptions.EsrpDigestSignExecuteProcessFailedException: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass27_0.b__1()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.<>c__DisplayClass1.b__0()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.ExecuteDigestSignOperation(Input digestSignInput, Operation digestSignOperation, SignOperationData fileEntry, SignStatusResponse completionResponse, SignCommandDefinition param, Guid correlationId, String correlationVector, CancellationToken cancellationToken, String requestId, String tmpDestinationLocation)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.DigestSignInternal(Input digestSignInput, SignCommandDefinition param, Guid& correlationId, String correlationVector, CancellationToken cancellationToken, String groupId, SignOperationData fileEntry, Int32& signedFileCount, Int32& certRefreshCount, ConcurrentBag`1 completionResponses, RetryPolicy`1 operationRetryPolicy, String dynamicCertificateFile, String dynamicCertificateThumbprint, String requestId)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass23_3.b__6(SignOperationData fileEntry)<---\r\n\r\n2026-05-15T10:52:04.5010605Z:Constructing EsrpClientResponse\r\n2026-05-15T10:52:04.5026390Z:EsrpClientResponse is constructed\r\n2026-05-15T10:52:04.5261859Z:OperationDurationMs: 4689\r\n2026-05-15T10:52:04.5261859Z:DynamicCertGenerationTimeMs: 0\r\n2026-05-15T10:52:04.5261859Z:TimeToGetStorageShradsMs: 0\r\n2026-05-15T10:52:04.5261859Z:TotalScanSubmissionTimeMs: 0\r\n2026-05-15T10:52:04.5261859Z:ThrottleCount: 0\r\n2026-05-15T10:52:04.5261859Z:ThrottledTimeInSec: 0\r\n2026-05-15T10:52:04.5261859Z:\r\n2026-05-15T10:52:04.5261859Z:0/1 files signed in 00:00:04.689 (0 files/s, total number of certs refreshed: 0)\r\n2026-05-15T10:52:04.5294660Z:result json is: {\r\n \"submissionResponses\": [\r\n {\r\n \"fileStatusDetail\": [\r\n {\r\n \"sourceHash\": \"QnkzKJLNjhywfZ7QzNql5O/cE+khJp8qIfNjuwOzz18=\",\r\n \"hashType\": \"sha256\",\r\n \"destinationHash\": null,\r\n \"certificateThumbprint\": null,\r\n \"destinationLocation\": \"c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\",\r\n \"destinationFileSizeInBytes\": 0,\r\n \"sourceLocation\": \"c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\"\r\n }\r\n ],\r\n \"operationId\": \"fbea2245-afde-4e1f-8c34-d606cadbe53c\",\r\n \"customerCorrelationId\": \"60e92504-9e49-4ea1-94f0-c4b550d61018\",\r\n \"statusCode\": \"failCanRetry\",\r\n \"errorInfo\": {\r\n \"code\": \"3138\",\r\n \"details\": {\r\n \"operation\": \"c:\\\\AT\\\\sitesroot\\\\0\\\\bin\\\\Plugins\\\\ESRPClient\\\\Win10.x86\\\\signtool.exe verify /pa /tw \\\"c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\\\"\",\r\n \"exitCode\": \"1\",\r\n \"stdOut\": \"File: c:\\\\Temp\\\\AzureTemp\\\\dwgf0gjm.dv2\\\\manifest.cat\\r\\nIndex Algorithm Timestamp \\r\\n========================================\\r\\n\\r\\nNumber of errors: 1\\r\\n\\r\\n\\r\\n\",\r\n \"stdErr\": \"SignTool Error: A certificate chain processed, but terminated in a root\\r\\n\\tcertificate which is not trusted by the trust provider.\\r\\n\\r\\n\"\r\n },\r\n \"innerError\": null\r\n }\r\n }\r\n ],\r\n \"esrpClientSessionGuid\": \"1d875fbe-455e-4b9c-a422-c973a2b24bf1\",\r\n \"version\": \"1.0.0\"\r\n}\r\n2026-05-15T10:52:04.5654405Z:Warning: \r\n\r\n2026-05-15T10:52:04.5658958Z:esrp-client-finalTime: 8114.4729\r\n2026-05-15T10:52:04.5658958Z:Final return code is: 1\r\n2026-05-15T10:52:04.5658958Z:ClientTelemetryDispose started, this is not affecting Exe reliability, only lost telemetry if error happens ***********************\r\n2026-05-15T10:52:04.5696793Z:Client Telemetry: Flushing telemetry buffer with timeout 0 ms\r\n2026-05-15T10:52:04.5716983Z:Client Telemetry: Flushing telemetry buffer completed within timeout (true/false): False\r\n2026-05-15T10:52:04.5716983Z:Client Telemetry: Disposing telemetry buffer and event hub client\r\n2026-05-15T10:52:05.0508850Z:Warning: event lost number: 4\r\n2026-05-15T10:52:05.0508850Z:total event processed number: 7\r\n2026-05-15T10:52:05.0508850Z:total event received number: 11\r\n2026-05-15T10:52:05.0508850Z:##EsrpClientTelemetry.TotalEventsProcessed##: 7\r\n2026-05-15T10:52:05.0508850Z:##EsrpClientTelemetry.TotalEventsReceived##: 11\r\n2026-05-15T10:52:05.0508850Z:##EsrpClientTelemetry.DisposeTimeMilliseconds##: 485\r\n2026-05-15T10:52:05.0508850Z:ClientTelemetryDispose ended ***********************\r\n","StdErr":"2026-05-15T10:52:04.4758476Z:Error: System.AggregateException: One or more errors occurred. ---> MS.Ess.EsrpClient.Sign.Exceptions.EsrpDigestSignExecuteProcessFailedException: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass27_0.b__1()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.<>c__DisplayClass1.b__0()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.ExecuteDigestSignOperation(Input digestSignInput, Operation digestSignOperation, SignOperationData fileEntry, SignStatusResponse completionResponse, SignCommandDefinition param, Guid correlationId, String correlationVector, CancellationToken cancellationToken, String requestId, String tmpDestinationLocation)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.DigestSignInternal(Input digestSignInput, SignCommandDefinition param, Guid& correlationId, String correlationVector, CancellationToken cancellationToken, String groupId, SignOperationData fileEntry, Int32& signedFileCount, Int32& certRefreshCount, ConcurrentBag`1 completionResponses, RetryPolicy`1 operationRetryPolicy, String dynamicCertificateFile, String dynamicCertificateThumbprint, String requestId)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass23_3.b__6(SignOperationData fileEntry)\r\n --- End of inner exception stack trace ---\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.d__23.MoveNext()\r\n---> (Inner Exception #0) MS.Ess.EsrpClient.Sign.Exceptions.EsrpDigestSignExecuteProcessFailedException: Operation: c:\\AT\\sitesroot\\0\\bin\\Plugins\\ESRPClient\\Win10.x86\\signtool.exe verify /pa /tw \"c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\" failed\r\nExit Code: 1\r\nStdOut:\r\nFile: c:\\Temp\\AzureTemp\\dwgf0gjm.dv2\\manifest.cat\r\nIndex Algorithm Timestamp \r\n========================================\r\n\r\nNumber of errors: 1\r\n\r\n\r\n\r\nStdErr:\r\nSignTool Error: A certificate chain processed, but terminated in a root\r\n\tcertificate which is not trusted by the trust provider.\r\n\r\n\r\n\r\n\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass27_0.b__1()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.<>c__DisplayClass1.b__0()\r\n at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.ExecuteDigestSignOperation(Input digestSignInput, Operation digestSignOperation, SignOperationData fileEntry, SignStatusResponse completionResponse, SignCommandDefinition param, Guid correlationId, String correlationVector, CancellationToken cancellationToken, String requestId, String tmpDestinationLocation)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.DigestSignInternal(Input digestSignInput, SignCommandDefinition param, Guid& correlationId, String correlationVector, CancellationToken cancellationToken, String groupId, SignOperationData fileEntry, Int32& signedFileCount, Int32& certRefreshCount, ConcurrentBag`1 completionResponses, RetryPolicy`1 operationRetryPolicy, String dynamicCertificateFile, String dynamicCertificateThumbprint, String requestId)\r\n at MS.Ess.EsrpClient.Sign.SignHandlers.SignJobHandler.<>c__DisplayClass23_3.b__6(SignOperationData fileEntry)<---\r\n\r\n","ExitCode":1,"RunningTime":"00:00:09.2389873"} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.cose b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.cose deleted file mode 100644 index 8a0b6f3b372d0..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.cose and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.json b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.json deleted file mode 100644 index 100300cb0448b..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/bsi.json +++ /dev/null @@ -1 +0,0 @@ -{"Source":"InternalBuild","Data":{"System.CollectionId":"2ce6486e-7d3b-47bb-8e16-5f19a43015c9","System.DefinitionId":"17372","System.TeamProjectId":"81cf09ca-992f-4cab-9a5f-96d728b4c339","System.TeamProject":"SBS","Build.BuildId":"77861064","Build.BuildNumber":"2.260515.5","Build.DefinitionName":"infrastructure_itpro_teamspowershellmodule","Build.DefinitionRevision":"158","Build.Repository.Name":"infrastructure_itpro_teamspowershellmodule","Build.Repository.Provider":"TfsGit","Build.Repository.Id":"fe62ea1f-ff64-4287-87a3-b6184a6fc36c","Build.SourceBranch":"refs/heads/release/7.8.0","Build.SourceBranchName":"7.8.0","Build.SourceVersion":"4b19e3d751830dabfa9fc5f2a03048e6cb66cfeb","Build.Repository.Uri":"https://skype.visualstudio.com/SBS/_git/infrastructure_itpro_teamspowershellmodule","EbomId":"6a89740a-ac2c-57fd-8da7-1711b05b9a58","1ES.PT.TemplateType":"official"},"Feed":null} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.cat b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.cat deleted file mode 100644 index 42506471a6db8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.cat and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.cose b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.cose deleted file mode 100644 index eaeef22627444..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.cose and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json deleted file mode 100644 index 17d9d9a4f10fb..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json +++ /dev/null @@ -1,23013 +0,0 @@ -{ - "files": [ - { - "fileName": "./../../_manifest/spdx_2.2/manifest.spdx.json", - "SPDXID": "SPDXRef-File--..-..--manifest-spdx-2.2-manifest.spdx.json-F53DBEC94E41633796908076A051A053F4B30949", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "66ec7992d0dd039b73b5760d23213cd96e6c8c258b42c012fb8a537999215ea7" - }, - { - "algorithm": "SHA1", - "checksumValue": "f53dbec94e41633796908076a051a053f4b30949" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION", - "fileTypes": [ - "SPDX" - ] - }, - { - "fileName": "./Microsoft.Teams.ConfigAPI.Cmdlets.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.psd1-BE057B5CDC1AC66DFB00C1E1F9F02EAA0D43BAEC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1f6fa76fc0b7b1872cdcd3773bb28125b22392822ab9220e82ed319c109a0468" - }, - { - "algorithm": "SHA1", - "checksumValue": "be057b5cdc1ac66dfb00c1e1f9f02eaa0d43baec" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1-1BB35417280E4864B57ED04424E9C909DB6FEC37", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "33563a06597ea9760479f95234d7dc347330d0e9b3d304c42b4c65d1d5696924" - }, - { - "algorithm": "SHA1", - "checksumValue": "1bb35417280e4864b57ed04424e9c909db6fec37" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml-147147A04EDB1134407908A81CC41795E66D241B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "25034310a43fcd9128d69229b335aa5a642cd77bfeb6cf19df8ab34fcf1a69d6" - }, - { - "algorithm": "SHA1", - "checksumValue": "147147a04edb1134407908a81cc41795e66d241b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./LICENSE.txt", - "SPDXID": "SPDXRef-File--LICENSE.txt-AB40082210620A2914D58B309A048459E784E962", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1cd91cba185bdde7d815c11eb1fd9ec359715d9c071172dc964755c5801ad905" - }, - { - "algorithm": "SHA1", - "checksumValue": "ab40082210620a2914d58b309a048459e784e962" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml-D3FDDB0A5FD354410739EE97E022CBB9E41C9D47", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1df511aab8ab742432cb1a1508772dc026d6449467e5d50bc019e44f66f3ca3b" - }, - { - "algorithm": "SHA1", - "checksumValue": "d3fddb0a5fd354410739ee97e022cbb9e41c9d47" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./GetTeamSettings.format.ps1xml", - "SPDXID": "SPDXRef-File--GetTeamSettings.format.ps1xml-221D345FF5B6EA9531E16650A5933275BD99F436", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "376c3af10cb6de50c9360b4bb31d6806efd91a2ad5dcfb722121308779bfa074" - }, - { - "algorithm": "SHA1", - "checksumValue": "221d345ff5b6ea9531e16650a5933275bd99f436" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml-01205EEC3FEE19AE754913E53C3E602139B1294D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "3063294bffe34b7a25197fbb23713e1d800e0840011ec57819366117819e8c7d" - }, - { - "algorithm": "SHA1", - "checksumValue": "01205eec3fee19ae754913e53c3e602139b1294d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.ConfigAPI.Cmdlets.psm1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.psm1-3FBD715FA1629CAAAE22966948ECF0906B05B2C0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "fc464bed69f9567509f755d47e7a13eb21f67d574863bb09f734cd487a89ac49" - }, - { - "algorithm": "SHA1", - "checksumValue": "3fbd715fa1629caaae22966948ecf0906b05b2c0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml-80E913A0F1A38D54853BACF21AB983C41654F8EC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "9545196cf7b1b48455270a718f9cb1ffd05b729222a560f7ab54c3553255255e" - }, - { - "algorithm": "SHA1", - "checksumValue": "80e913a0f1a38d54853bacf21ab983c41654f8ec" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml-A79E1C5A27145A6FA9ECA55F2B45D9898954E6FA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "293d7038e293e6a408e7d867b1aeef37a3be0451106810d58d120cffdf5e3918" - }, - { - "algorithm": "SHA1", - "checksumValue": "a79e1c5a27145a6fa9eca55f2b45d9898954e6fa" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1-4BD93678C7661EC78A74469498A08CFA5AB8BD86", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4aeefd4d0f75cb9a6110b71c236423871ca5c60f1e409acaba90edd8909a92c2" - }, - { - "algorithm": "SHA1", - "checksumValue": "4bd93678c7661ec78a74469498a08cfa5ab8bd86" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml-727399508AB3CCE70B9C6E6579102E6DBBB0BF99", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "82879fa79e6e1d64a96a9359914784f7fc1b20e8b524e4a2ea5c69e3afed916d" - }, - { - "algorithm": "SHA1", - "checksumValue": "727399508ab3cce70b9c6e6579102e6dbbb0bf99" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml-5D436787F2E0059F3AAC1ACAAD6EAAE9E42DC94E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "2e292c3f9de2edf1e3a941e65be696540241e5fa00e5b4db5d12aa6b953fd9d6" - }, - { - "algorithm": "SHA1", - "checksumValue": "5d436787f2e0059f3aac1acaad6eaae9e42dc94e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml-BD892C31569C8F3F91FA833F5F157B8350A45A78", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "081ff9a67c78610faf07b9e90a16085512db8e00267a7a13985cf52bc08d6c49" - }, - { - "algorithm": "SHA1", - "checksumValue": "bd892c31569c8f3f91fa833f5f157b8350a45a78" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml-90557469793DE4EA232313FD9C8D566B1B64BAAE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "185cf4b610b07715cfb35e08a763129a103d6df8fdc459fe9a0b98e22612c13d" - }, - { - "algorithm": "SHA1", - "checksumValue": "90557469793de4ea232313fd9c8d566b1b64baae" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml-90EB58E597610ECDFDBF141BC606D277F135A9C0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "b95b6824e0167447bbe89891b9ba477dceb226ff849dd63aa81e5f35ccbf999f" - }, - { - "algorithm": "SHA1", - "checksumValue": "90eb58e597610ecdfdbf141bc606d277f135a9c0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml-5F97356FBC3C16A5F53968660865677045129370", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "b622a7bf8ae3c91080002fc6607e0d647a59736ebe7469dd4700616d2b2200d1" - }, - { - "algorithm": "SHA1", - "checksumValue": "5f97356fbc3c16a5f53968660865677045129370" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml-416C25B7A3CA0191608D22D61445151DE1E24322", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d9903f81f538b20a60b97f9a2049e13ee18caddf8bd58523fbfc19ac6d626700" - }, - { - "algorithm": "SHA1", - "checksumValue": "416c25b7a3ca0191608d22d61445151de1e24322" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1-1B27E475819F6D0ED072F456A9DF1109C2B269A6", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c9bd8098db87e21fadd8711d7c3adf8e8130fd3ea20a9164a39cf6e768fb8125" - }, - { - "algorithm": "SHA1", - "checksumValue": "1b27e475819f6d0ed072f456a9df1109c2b269a6" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml-F12CACDE4C6233B7690239FBB2FDD188579F4338", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "784364e4fb0edbc8ddb40c70a13bd24f396fbd762235ae3636e0d1a91e6017b2" - }, - { - "algorithm": "SHA1", - "checksumValue": "f12cacde4c6233b7690239fbb2fdd188579f4338" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml-F5EE940AF0B70FB5F04A9AC3C94816B990B02E9F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c00f78dc7d128093089fd0f0185dcda0c83c52b5649ee78278e018e336890db7" - }, - { - "algorithm": "SHA1", - "checksumValue": "f5ee940af0b70fb5f04a9ac3c94816b990b02e9f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml-393E4EABF163F477335FE75D05FECF4D58B73371", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6d5c147d2ca9b89e4de331892d27f6a3bba313bb44f055e5f7d91b9e5b261f3a" - }, - { - "algorithm": "SHA1", - "checksumValue": "393e4eabf163f477335fe75d05fecf4d58b73371" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml-BB3533E74BF0D34B82FA0A5E0A1BFE3E102F29EC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "3da7d3111dfa5760948cda1a5c4437b905f6f68bd847b93b65b9499c217caa0b" - }, - { - "algorithm": "SHA1", - "checksumValue": "bb3533e74bf0d34b82fa0a5e0a1bfe3e102f29ec" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.PowerShell.TeamsCmdlets.psm1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.psm1-D32AAAB63ACAD91BF397D5AD71B67E478A0591FE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "407df65683f48e8d593bb272708954e5fd454f889a39b778fdd3d38af5c89588" - }, - { - "algorithm": "SHA1", - "checksumValue": "d32aaab63acad91bf397d5ad71b67e478a0591fe" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.xml-56E8BFB9F020ADF074710972F5AFD1B1CED156FD", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6e11132a8afa44b044667064190ba3e354f5a705eaf6952bccd22b1100c4dc16" - }, - { - "algorithm": "SHA1", - "checksumValue": "56e8bfb9f020adf074710972f5afd1b1ced156fd" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.psm1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.psm1-AFCACA2072D8D7580854D227373B3948B2BA46C2", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "8d6a88759a9558d7a06ff1396c9ae05de62bcf3c68c10a58f914f450e7b002f5" - }, - { - "algorithm": "SHA1", - "checksumValue": "afcaca2072d8d7580854d227373b3948b2ba46c2" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml-7FCF058D856A4A8502D8F5F77AF363B013EF119F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c69fe0796ac8fc55cf38e76f8f2b7ae47aac8029bbb6b81ac9cb65934912555e" - }, - { - "algorithm": "SHA1", - "checksumValue": "7fcf058d856a4a8502d8f5f77af363b013ef119f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./SetMSTeamsReleaseEnvironment.ps1", - "SPDXID": "SPDXRef-File--SetMSTeamsReleaseEnvironment.ps1-7C85E4F6A95D503DDF5BC20487DB3D0841F936D2", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7ba40557186fb1dab186cf05d49e4b28cf74ed7ef2917071f9e1d0094a2dfe93" - }, - { - "algorithm": "SHA1", - "checksumValue": "7c85e4f6a95d503ddf5bc20487db3d0841f936d2" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml-AC2751FAB183B7E16FA60E58CB94986BC7F2D319", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "196fc96392203318848b45a657d6f1d16439b092be8de9a2677a6e2ae60cab9f" - }, - { - "algorithm": "SHA1", - "checksumValue": "ac2751fab183b7e16fa60e58cb94986bc7f2d319" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./MicrosoftTeams.psm1", - "SPDXID": "SPDXRef-File--MicrosoftTeams.psm1-E9F40BF22FEAC976D1C79CEB52559C2284C3C061", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "efa736c4d5c29bf5c32c5b3338b79228b7846275c4d64ebd480f0a270009e150" - }, - { - "algorithm": "SHA1", - "checksumValue": "e9f40bf22feac976d1c79ceb52559c2284c3c061" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml-43D1FE924284BC6F8C5FFC2ED9A421B0D822BFD4", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "2072fa6392dc69223534e203d9ae862d7a56b6bb1232faef309ca02c3ea9e37b" - }, - { - "algorithm": "SHA1", - "checksumValue": "43d1fe924284bc6f8c5ffc2ed9a421b0d822bfd4" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json", - "SPDXID": "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json-58AB9EB77D02D736BD758F9105634F4FAE08C39B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "685f9ac4aed8fe0defc4566019cfae76ac92b3e6f9be9a9861376a53d5fb07b3" - }, - { - "algorithm": "SHA1", - "checksumValue": "58ab9eb77d02d736bd758f9105634f4fae08c39b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.PowerShell.Module.xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "14e403c1b3082085432ca2f1ae0d47c0491bd4cfd3234bc819493a7b4254c971" - }, - { - "algorithm": "SHA1", - "checksumValue": "eb2b86d36ade4e37542f46ac4af2a0e81087e582" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.psd1-D99C624620B7A7BAA87541C2FAA5EFDAD970C4D5", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "8bc12f47c1334ee4ae1071657c6aa4eea09ac27cd64dd18643ed402f99847e7b" - }, - { - "algorithm": "SHA1", - "checksumValue": "d99c624620b7a7baa87541c2faa5efdad970c4d5" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./en-US/Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml", - "SPDXID": "SPDXRef-File--en-US-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml-FEFA595D1ECC65F8818C1A38F2BFEE3CF7E0575E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "345bab954c5ae4f9a52420f3b88e78d96080dc4a4d0a8db76d50dd9af571eaa9" - }, - { - "algorithm": "SHA1", - "checksumValue": "fefa595d1ecc65f8818c1a38f2bfee3cf7e0575e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.PowerShell.TeamsCmdlets.xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.xml-B40B1B3405682B53B75CCB134EF2E9EF79840F6D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "57d7763fd86bde79e6e67ac7aca9ee41980d8d5d43707bcb18409adaa3022e0d" - }, - { - "algorithm": "SHA1", - "checksumValue": "b40b1b3405682b53b75ccb134ef2e9ef79840f6d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.IdentityModel.Logging.dll", - "SPDXID": "SPDXRef-File--bin-Microsoft.IdentityModel.Logging.dll-A8394F8CB30171C7B73315F5F85F639C3C1CB45F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4260ef3d3c959ab0d5fa1776daab253d1de24f7dc5ee896055f9ec71dfa9990b" - }, - { - "algorithm": "SHA1", - "checksumValue": "a8394f8cb30171c7b73315f5f85f639c3c1cb45f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./custom/Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1", - "SPDXID": "SPDXRef-File--custom-Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1-261147D26BB1861AEC16598D37E072984FA3F06D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f6e71252bfe6a22b88e94c4331adad6484c5a8784476ad05514c8111d6f10a09" - }, - { - "algorithm": "SHA1", - "checksumValue": "261147d26bb1861aec16598d37e072984fa3f06d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./MicrosoftTeams.psd1", - "SPDXID": "SPDXRef-File--MicrosoftTeams.psd1-0C138942995EC744D90646D9B712F713517B9981", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "11141a6b800b2f073a6f7d398458f067f6f2713a286d756776f8e22c4f2453af" - }, - { - "algorithm": "SHA1", - "checksumValue": "0c138942995ec744d90646d9b712f713517b9981" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/CmdletSettings.json", - "SPDXID": "SPDXRef-File--net472-CmdletSettings.json-98919B572DB8494892B52408CD0FE23531388E32", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c0549eba3a249ef431b0d0c61ee232c815b74fe0cfa1b41b0860a8531f33e6dd" - }, - { - "algorithm": "SHA1", - "checksumValue": "98919b572db8494892b52408cd0fe23531388e32" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml-0A1DDF7C4AA751F672F0FAC1B6C40A81EFE84125", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "06beebe50634436fc1d215d6fdff8cfce7cdbba57909fb132d8b13b4c6d8bd27" - }, - { - "algorithm": "SHA1", - "checksumValue": "0a1ddf7c4aa751f672f0fac1b6c40a81efe84125" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Azure.KeyVault.AzureServiceDeploy.dll-B1830D2DF82A343694AA0E6974F835BE8B68A66E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0fce5d08fa6ba7a48db38d7bf148dbcc881cb9bd02f8993f089809dfc7599d53" - }, - { - "algorithm": "SHA1", - "checksumValue": "b1830d2df82a343694aa0e6974f835be8b68a66e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll", - "SPDXID": "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-4C269A3FA28A4A8A213EFF94B97E2BE817E6B04D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "77868b65f31adbefa761aca8be4728927dbe9f1e3f927c904f52aca96a35810f" - }, - { - "algorithm": "SHA1", - "checksumValue": "4c269a3fa28a4a8a213eff94b97e2be817e6b04d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1-17FFC1A92EB505F3DA265A06014E7F6B64D870D2", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0f22fccb91f71888ea67be9ea90c4ce5d0a61a7ce6bd055b0e834a819a9599da" - }, - { - "algorithm": "SHA1", - "checksumValue": "17ffc1a92eb505f3da265a06014e7f6b64d870d2" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Bcl.Memory.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Bcl.Memory.dll-F53F85584C2F22623A928D0F5F1385BCA76E9692", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "141e95ab3c8a09493183236d1a0b6213d37cb112157d0e7abe7dcb1e355c8382" - }, - { - "algorithm": "SHA1", - "checksumValue": "f53f85584c2f22623a928d0f5f1385bca76e9692" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml-98FB01D72EBCC9822A8F2D2B371A67F5EB68FFD9", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "45436033258db265663a1248e0e3eb4e9cbbabd5f9491ca74841b969af55f91a" - }, - { - "algorithm": "SHA1", - "checksumValue": "98fb01d72ebcc9822a8f2d2b371a67f5eb68ffd9" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Configuration.Abstractions.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Configuration.Abstractions.dll-665B76385D009F8C92A8C25975433BAA87F3C634", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4ac45bd3cd744d35ff5d734a5d1060dbd74528fd8ce6833b87fbfee83d73bc1b" - }, - { - "algorithm": "SHA1", - "checksumValue": "665b76385d009f8c92a8c25975433baa87f3c634" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.IdentityModel.Tokens.dll", - "SPDXID": "SPDXRef-File--bin-Microsoft.IdentityModel.Tokens.dll-2E7877B9106C2E6D988650EC12E5B9A1D7CEA645", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "02e57c3266915f8024f331ed713a9c9209cc41f60f6b6a6af897c041b868d0de" - }, - { - "algorithm": "SHA1", - "checksumValue": "2e7877b9106c2e6d988650ec12e5b9a1d7cea645" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Logging.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Logging.dll-0F4C03A61B0F7EED635DCC3DD23D87F045BE2542", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "92de988f9c0d8a93f838b681ab78db0a6ae6dd0f75c3f598c25edb9c4ce251c0" - }, - { - "algorithm": "SHA1", - "checksumValue": "0f4c03a61b0f7eed635dcc3dd23d87f045be2542" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Ic3.TenantAdminApi.Common.Helper.dll-9A5C91091494220316C7FACD90E0E8E5753DCFF1", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f5b4376e9237a23fc1dfd01dbece4bd82bdb670b49c079052fc6724e6afc7778" - }, - { - "algorithm": "SHA1", - "checksumValue": "9a5c91091494220316c7facd90e0e8e5753dcff1" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.IdentityModel.Logging.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.IdentityModel.Logging.dll-5871C81F013C6291891E0D62356AD55AEF14CD2B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "9c21f271e6486ed88e820b400125e6a6b5efd88fb9e0889360f776c32239e3f1" - }, - { - "algorithm": "SHA1", - "checksumValue": "5871c81f013c6291891e0d62356ad55aef14cd2b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Identity.Client.NativeInterop.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Identity.Client.NativeInterop.dll-1640E14C0AAE53A2BFA52C54FC541A1DDC518B7F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6ed3d4685128fe1e72d696406fedac52c0df0493ff7218b19e242ce1fbd22f65" - }, - { - "algorithm": "SHA1", - "checksumValue": "1640e14c0aae53a2bfa52c54fc541a1ddc518b7f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml-7CDED0C6E62B251DCFC9BC19C4538D23FD83F487", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6c84ebdfb3d92f7265b3c69b747d0a38742f44f2917111772929f121d70ae5be" - }, - { - "algorithm": "SHA1", - "checksumValue": "7cded0c6e62b251dcfc9bc19c4538d23fd83f487" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml", - "SPDXID": "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml-06AD726144D5A070183F97898D06FEB9A6D07F53", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c014873e0c7e26fce2766c7087e5660ba7479403fac9bff94ad49bbc7e68ff3d" - }, - { - "algorithm": "SHA1", - "checksumValue": "06ad726144d5a070183f97898d06feb9a6d07f53" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./Microsoft.Teams.PowerShell.TeamsCmdlets.psd1", - "SPDXID": "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.psd1-AFD106CC91229EA6BB1B5546BCB67D169DDF2302", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "32898b55eda18a2d5344f3a5f573f68565660a7a4606d8ec3220a2c495bfda86" - }, - { - "algorithm": "SHA1", - "checksumValue": "afd106cc91229ea6bb1b5546bcb67d169ddf2302" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Rtc.Management.Acms.EntityModel.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Rtc.Management.Acms.EntityModel.dll-EA0552B188E81697650622B829C7173798F75700", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "e8d1ccbc616997b5f8bb97a7961b7b7ae8a9fa245c9dc0df78a4b59531899963" - }, - { - "algorithm": "SHA1", - "checksumValue": "ea0552b188e81697650622b829c7173798f75700" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.IdentityModel.JsonWebTokens.dll", - "SPDXID": "SPDXRef-File--bin-Microsoft.IdentityModel.JsonWebTokens.dll-893E041EE3B4B557FE7F760AACB79C4AF65A0E03", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "5f18837e25c668ae77117585e1daf8e006faf27fce3fef6436994cd996858438" - }, - { - "algorithm": "SHA1", - "checksumValue": "893e041ee3b4b557fe7f760aacb79c4af65a0e03" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.PowerShell.Module.pdb", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.pdb-0C57AD93939A8177648CA13A53379A2A4ED3776A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "914cf453efd242cda7bbf2afe17d162ec7c76e0bcbc57b0e08ca0f627166b55f" - }, - { - "algorithm": "SHA1", - "checksumValue": "0c57ad93939a8177648ca13a53379a2a4ed3776a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./SfbRpsModule.format.ps1xml", - "SPDXID": "SPDXRef-File--SfbRpsModule.format.ps1xml-6B1BFA84C1A3BD1CB5CF5FF7CF28BF8EE730B4BA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1a821bbc8033e30c962c9c2df96c989ed1306c432e96aba3253bb064fa72a57a" - }, - { - "algorithm": "SHA1", - "checksumValue": "6b1bfa84c1a3bd1cb5cf5ff7cf28bf8ee730b4ba" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll-2A265332E120B5CD566820488C5454D75BBB68FE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "eb3ce56c03bf507f481b235cde7946aac3bbd3cd604782a4a58c3368361d42ad" - }, - { - "algorithm": "SHA1", - "checksumValue": "2a265332e120b5cd566820488c5454d75bbb68fe" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./en-US/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml", - "SPDXID": "SPDXRef-File--en-US-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml-43033E504F16A2D37A94A8B0AF9E5D772F44EA8B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c7fa123b2550b99ae6ae91ed59ef1edfe1d587debb5d6cfa1dc42e12422a51ba" - }, - { - "algorithm": "SHA1", - "checksumValue": "43033e504f16a2d37a94a8b0af9e5d772f44ea8b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/OneCollectorChannel.dll", - "SPDXID": "SPDXRef-File--net472-OneCollectorChannel.dll-017A18B3C291A61DC4914D2CE9262681BAF66693", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0c449788faa7b148be6191b3172a2e7ee7a13f0c7fd27e4ddf01884ed6ac864d" - }, - { - "algorithm": "SHA1", - "checksumValue": "017a18b3c291a61dc4914d2ce9262681baf66693" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/System.IdentityModel.Tokens.Jwt.dll", - "SPDXID": "SPDXRef-File--bin-System.IdentityModel.Tokens.Jwt.dll-190C8332A20024E5D86873C303EDDD2CE10E4ECF", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "34746bd2609174fa350eb6dfd2afaac6e5f05fc23783e7b79c3885cd78fd113f" - }, - { - "algorithm": "SHA1", - "checksumValue": "190c8332a20024e5d86873c303eddd2ce10e4ecf" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.TeamsCmdlets.PowerShell.Connect.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-6ED76FFD42FD3B11FA0477EF5BEB518FFBE6B918", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "23a1e021816c634fee2a48b2789cc8782eee87e0cd2303fe0afae0ca4a6065f2" - }, - { - "algorithm": "SHA1", - "checksumValue": "6ed76ffd42fd3b11fa0477ef5beb518ffbe6b918" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/SQLitePCLRaw.batteries_v2.dll", - "SPDXID": "SPDXRef-File--net472-SQLitePCLRaw.batteries-v2.dll-736F0E174933C7C56B18ED4347069FAC9E8103AF", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1773e50e6418429cea29c9d8a9bd9ea9bec8ae4a2dc472bda782c93c171c8c5b" - }, - { - "algorithm": "SHA1", - "checksumValue": "736f0e174933c7c56b18ed4347069fac9e8103af" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Diagnostics.DiagnosticSource.dll", - "SPDXID": "SPDXRef-File--net472-System.Diagnostics.DiagnosticSource.dll-E100A9FB5B1AD35A09302551EC35753DC2F1DD81", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "12502da31b11d427481720d3f0990ee9c685a96b002fceb0e113e965aee94577" - }, - { - "algorithm": "SHA1", - "checksumValue": "e100a9fb5b1ad35a09302551ec35753dc2f1dd81" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.IO.FileSystem.AccessControl.dll", - "SPDXID": "SPDXRef-File--net472-System.IO.FileSystem.AccessControl.dll-A6FCEFD3A87A8D79BFB05D3513FF176A172ABE74", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "72339b23a7c8d7a9633593dd7ee1e4ee3c05c84d416bec1e94b8b4647aa7a2a8" - }, - { - "algorithm": "SHA1", - "checksumValue": "a6fcefd3a87a8d79bfb05d3513ff176a172abe74" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Security.AccessControl.dll", - "SPDXID": "SPDXRef-File--net472-System.Security.AccessControl.dll-BC7340F6203F4ADC773CFE7F7897C183F72E4C32", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "06e482140a8a36799bfbda35b6db158e4c1e21b0ba2f18e0cdcf3acaf0a9cc27" - }, - { - "algorithm": "SHA1", - "checksumValue": "bc7340f6203f4adc773cfe7f7897c183f72e4c32" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Applications.Events.Server.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Applications.Events.Server.dll-CAA1D2CA261D0246798E2A57382A473D46ED1640", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "ed63b3698dc910cf612a9d2131d371a2098565e80657eabb948f26eb85351e1f" - }, - { - "algorithm": "SHA1", - "checksumValue": "caa1d2ca261d0246798e2a57382a473d46ed1640" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Text.Encodings.Web.dll", - "SPDXID": "SPDXRef-File--net472-System.Text.Encodings.Web.dll-24B2717FB5DDE5065B9432233ED0B264387C2B75", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "55883e5f9eaab76dafa7a433f300faeb3c2aeedd686e00265f6a064f0c36262d" - }, - { - "algorithm": "SHA1", - "checksumValue": "24b2717fb5dde5065b9432233ed0b264387c2b75" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Data.Sqlite.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Data.Sqlite.dll-74E236DF914D5A9A663699E167D42F8CB2AE07C5", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "08b9ac0c0dcb8638da23d40c2e70b93073fb65d0f5b828bd88c9c8bb6bbd3bd7" - }, - { - "algorithm": "SHA1", - "checksumValue": "74e236df914d5a9a663699e167d42f8cb2ae07c5" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./custom/Merged_custom_PsExt.ps1", - "SPDXID": "SPDXRef-File--custom-Merged-custom-PsExt.ps1-F7AF4980B20DD28AE15C5DBBD5B7249B881DEB81", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4328db38dfe18dc36b3e0028eced1dab8cd7abdf282d94624e54660a8ba38538" - }, - { - "algorithm": "SHA1", - "checksumValue": "f7af4980b20dd28ae15c5dbbd5b7249b881deb81" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./internal/Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1", - "SPDXID": "SPDXRef-File--internal-Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1-CB63A2BC6F807442527EEEC625364E279634E2E8", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "bc7195d19b32ffb444d1b37705714a25ec7ec8eb78617868c707940131bc119b" - }, - { - "algorithm": "SHA1", - "checksumValue": "cb63a2bc6f807442527eeec625364e279634e2e8" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Primitives.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Primitives.dll-3E7D7832538447A5E96DD7EE9D666B2FDD5714ED", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6fb6746a80ae964ce7dcd77462fdc79a09503b8dddd04944b9b54e1ab836ac9b" - }, - { - "algorithm": "SHA1", - "checksumValue": "3e7d7832538447a5e96dd7ee9d666b2fdd5714ed" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Bcl.AsyncInterfaces.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Bcl.AsyncInterfaces.dll-CE95C8D2E9467C7A25596EADE83DA4293012B9EA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "ce0844e9d43710498596ee1dcec5402d0efea841e7e15930e7c52a6f16c53ff8" - }, - { - "algorithm": "SHA1", - "checksumValue": "ce95c8d2e9467c7a25596eade83da4293012b9ea" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Logging.Abstractions.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Logging.Abstractions.dll-7D9D3DFB7FA7D901C838CE4612A5BF13CE7EF441", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0e5e7bb1c3ef20344d8efd3ea33d2465025647b546c7349a229cd95b46fce93c" - }, - { - "algorithm": "SHA1", - "checksumValue": "7d9d3dfb7fa7d901c838ce4612a5bf13ce7ef441" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.IdentityModel.JsonWebTokens.dll-551CFA9344A0DB3B7F17005ADA5AD2524AE403CD", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "78d6ad159fbf8f45ae00b9e360b528236d38f50ecdd6776a1792c85efb44a6c0" - }, - { - "algorithm": "SHA1", - "checksumValue": "551cfa9344a0db3b7f17005ada5ad2524ae403cd" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Identity.Client.Extensions.Msal.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Identity.Client.Extensions.Msal.dll-3F49891D4F655703D28040D99DF390872912D5FA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "fe4dd1a2d714f5f2aa64885b6c0efb3cc120e36a536dc35a3661b16f538e160a" - }, - { - "algorithm": "SHA1", - "checksumValue": "3f49891d4f655703d28040d99df390872912d5fa" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Rest.ClientRuntime.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Rest.ClientRuntime.dll-38B4FFBDDBC5FA6630767BD0C0874A2D0F270076", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "30e1d19c3d3e12edf57d2a6f07295e1dee9e87b633b587b180175f715c426663" - }, - { - "algorithm": "SHA1", - "checksumValue": "38b4ffbddbc5fa6630767bd0c0874a2d0f270076" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/BrotliSharpLib.dll", - "SPDXID": "SPDXRef-File--bin-BrotliSharpLib.dll-69F8F0F6B23A28B5574FA6D3C56144C33802C96D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "9e51ecea9b248a6755d5fd621bf10a338eca517593230dfbeac8cecf08a440e0" - }, - { - "algorithm": "SHA1", - "checksumValue": "69f8f0f6b23a28b5574fa6d3c56144c33802c96d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.PowerShell.Module.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.dll-CF432FFF7AD135D3F3480CFDECFE43688355C93F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d21a4abd86df5821f76e8ddd667f784432943f6de23a3dcbc984c071da61a623" - }, - { - "algorithm": "SHA1", - "checksumValue": "cf432fff7ad135d3f3480cfdecfe43688355c93f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./custom/CmdletConfig.json", - "SPDXID": "SPDXRef-File--custom-CmdletConfig.json-03B0F581BF4FEB7C04CF56800C2A7CE2B4F413A3", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a07e476b9c4c3d7446b326c5f4466b2aaf5d8e433bc4324b63602a9e5d4fdfcd" - }, - { - "algorithm": "SHA1", - "checksumValue": "03b0f581bf4feb7c04cf56800c2a7ce2b4f413a3" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Newtonsoft.Json.dll", - "SPDXID": "SPDXRef-File--net472-Newtonsoft.Json.dll-DB06F4AB7804BB034013D3B6C5DE73406D1DC3DE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "3618d0107d5179a4ea087456439198e7968dc3dd10d06c70b741df803250429a" - }, - { - "algorithm": "SHA1", - "checksumValue": "db06f4ab7804bb034013d3b6c5de73406d1dc3de" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.ComponentModel.Annotations.dll", - "SPDXID": "SPDXRef-File--net472-System.ComponentModel.Annotations.dll-CED059E305BC3004A20FAD2F4059396260AF48F1", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "658e6a822235a397519ad529f4cedb5b213703d15f0255540c42a2de602ccbc5" - }, - { - "algorithm": "SHA1", - "checksumValue": "ced059e305bc3004a20fad2f4059396260af48f1" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Runtime.CompilerServices.Unsafe.dll", - "SPDXID": "SPDXRef-File--net472-System.Runtime.CompilerServices.Unsafe.dll-46C76583337E5C3886D53F06CF7D68B2DF842658", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "23b850c955c6fa35def6645af3c6d3c49a532b528d6ed653e34268a573215007" - }, - { - "algorithm": "SHA1", - "checksumValue": "46c76583337e5c3886d53f06cf7d68b2df842658" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./exports/ProxyCmdletDefinitionsWithHelp.ps1", - "SPDXID": "SPDXRef-File--exports-ProxyCmdletDefinitionsWithHelp.ps1-6E23653F5E9B33219BB7ECECB3E08F924D84ED49", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "2d7e547eeb46631c08059e172a616686280fb910df078575b94d598c1d4ec319" - }, - { - "algorithm": "SHA1", - "checksumValue": "6e23653f5e9b33219bb7ececb3e08f924d84ed49" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Azure.KeyVault.Cryptography.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Cryptography.dll-44E63403BFF5783C20040770EF46387D5C7ACCE6", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "cae0092e2191446d188f042f71308e98a9518143686f18520bc1bd0eb854ef41" - }, - { - "algorithm": "SHA1", - "checksumValue": "44e63403bff5783c20040770ef46387d5c7acce6" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Configuration.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Configuration.dll-9B846E9AFA5923BF7DC48CC7FBA5B9A8D0536519", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "e920dccc5a981c751aa3f3ead200a3a15bfec4aa2a18516934eb824be5ef036c" - }, - { - "algorithm": "SHA1", - "checksumValue": "9b846e9afa5923bf7dc48cc7fba5b9a8d0536519" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Identity.Client.Desktop.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Identity.Client.Desktop.dll-7DC8632A23C716AA61CDDC3E534D956F6A36CB51", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "5167b9ed7bec1d1d38eb5ffcf99a21e4854704d080cb07087fcdc748cc531485" - }, - { - "algorithm": "SHA1", - "checksumValue": "7dc8632a23c716aa61cddc3e534d956f6a36cb51" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-2592B322DD66FA3F39822AA6BE21C83B822C6A0F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "18b193e9fa6b306479660b45d56c5b9d58587764394f7a427397fd65a76c0181" - }, - { - "algorithm": "SHA1", - "checksumValue": "2592b322dd66fa3f39822aa6be21c83b822c6a0f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Internal.AntiSSRF.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Internal.AntiSSRF.dll-B33A3E902E75E3057E113AC8E86033A16201F17D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f8c10660d57929e2a1d7b58f031f598d6e3c41f18d0e546987ed68f95201c0dd" - }, - { - "algorithm": "SHA1", - "checksumValue": "b33a3e902e75e3057e113ac8e86033a16201f17d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll-2BF0E3E16494481357FEA9A34CFA2D59180A2F95", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "321711cb973fb2fc2142cf46474fe49aba545442b2e5805d03257ff5aa1b464e" - }, - { - "algorithm": "SHA1", - "checksumValue": "2bf0e3e16494481357fea9a34cfa2d59180a2f95" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Web.WebView2.WinForms.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Web.WebView2.WinForms.dll-BAAB6C096B33456B7E5BD16DF0F9589E567732BE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c9aadb2241aeb6e083b23d732c76fd988f0e19b403f8896823bf525c5b07dd11" - }, - { - "algorithm": "SHA1", - "checksumValue": "baab6c096b33456b7e5bd16df0f9589e567732be" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.PowerShell.TeamsCmdlets.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-E58708ED13C19177831E84B922F5671BBACD5E6D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "abb06e2c750a30b0aaa0038be493c35c3f0faeee4bf464a6396edaed9c2b2af3" - }, - { - "algorithm": "SHA1", - "checksumValue": "e58708ed13c19177831e84b922f5671bbacd5e6d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/SQLitePCLRaw.provider.dynamic_cdecl.dll", - "SPDXID": "SPDXRef-File--net472-SQLitePCLRaw.provider.dynamic-cdecl.dll-483778CDF63907548E858E81E6B9E7E17DE3F712", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6453610fae45792c4dfc4215a22b7241986f2d056ea0c7cb3a114b778cf19f23" - }, - { - "algorithm": "SHA1", - "checksumValue": "483778cdf63907548e858e81e6b9e7e17de3f712" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-arm/native/e_sqlite3.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-arm-native-e-sqlite3.dll-9C6F67C5197A2C1786B310CA5AD3EA20199B845E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "758e83464d8de89f19c3a7c944810e86a8233ca631be24455b170656b3421c83" - }, - { - "algorithm": "SHA1", - "checksumValue": "9c6f67c5197a2c1786b310ca5ad3ea20199b845e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Memory.dll", - "SPDXID": "SPDXRef-File--net472-System.Memory.dll-ADC9A7F0A69711A826F23439E1C0547103630D07", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "47c9f8b621dc9c36c624dfcab664cb6b4fcd1084103b9e4e00dfb3ec74dc88d5" - }, - { - "algorithm": "SHA1", - "checksumValue": "adc9a7f0a69711a826f23439e1c0547103630d07" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Threading.Tasks.Extensions.dll", - "SPDXID": "SPDXRef-File--net472-System.Threading.Tasks.Extensions.dll-8DCCFB99CF7D247346ADFB73D9CBCEE5B3233A36", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "2198a4d24190cba900e7bb5d18dbfb6653d0093ae52bdce35636974c1b5c7d6b" - }, - { - "algorithm": "SHA1", - "checksumValue": "8dccfb99cf7d247346adfb73d9cbcee5b3233a36" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x86/native/WebView2Loader.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x86-native-WebView2Loader.dll-AD45EACCBF72DE769EB3C1928A4150734EB48CE0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "3b9699d1591ca76b60f551bf84d2d6767f4c41cb4cebec67d89e893c81d3da36" - }, - { - "algorithm": "SHA1", - "checksumValue": "ad45eaccbf72de769eb3c1928a4150734eb48ce0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.AsyncInterfaces.dll-916AD45FB84C72AB2F049DEE52E93FB832A4D48C", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "adc65cf5657210494c56e07932697d867c74d0421ff841261efe7ead3dc93b6e" - }, - { - "algorithm": "SHA1", - "checksumValue": "916ad45fb84c72ab2f049dee52e93fb832a4d48c" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Polly.dll", - "SPDXID": "SPDXRef-File--net472-Polly.dll-E08E149E6144946C1F1D4395B5CE75ABC834F138", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "36e603e7a7a53cc6389d588dc45cc58e3fb868ad3b013a7ec890d031bfde4fea" - }, - { - "algorithm": "SHA1", - "checksumValue": "e08e149e6144946c1f1d4395b5ce75abc834f138" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Logging.Abstractions.dll-7D9D3DFB7FA7D901C838CE4612A5BF13CE7EF441", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0e5e7bb1c3ef20344d8efd3ea33d2465025647b546c7349a229cd95b46fce93c" - }, - { - "algorithm": "SHA1", - "checksumValue": "7d9d3dfb7fa7d901c838ce4612a5bf13ce7ef441" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.IdentityModel.Tokens.Jwt.dll", - "SPDXID": "SPDXRef-File--net472-System.IdentityModel.Tokens.Jwt.dll-F3A2B78B93246C914D67BDBBF315D0CDA9E4C206", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "26f91e83b902bab8548b32a413c93cb0647fab7cbcc8c05125f2a742257c4b75" - }, - { - "algorithm": "SHA1", - "checksumValue": "f3a2b78b93246c914d67bdbbf315d0cda9e4c206" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Extensions.Msal.dll-3F49891D4F655703D28040D99DF390872912D5FA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "fe4dd1a2d714f5f2aa64885b6c0efb3cc120e36a536dc35a3661b16f538e160a" - }, - { - "algorithm": "SHA1", - "checksumValue": "3f49891d4f655703d28040d99df390872912d5fa" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./internal/Merged_internal.ps1", - "SPDXID": "SPDXRef-File--internal-Merged-internal.ps1-20B16F82EB3AB9F1E2D230ADF6BA780A7B883C76", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a159846090decda01137c6fcabec3915bd2184a9521f70e7db3909184a577ea9" - }, - { - "algorithm": "SHA1", - "checksumValue": "20b16f82eb3ab9f1e2d230adf6ba780a7b883c76" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Security.Principal.Windows.dll", - "SPDXID": "SPDXRef-File--net472-System.Security.Principal.Windows.dll-5B2A53E8A33E0CFF9F8C0C28F0676D7E00C6AD3F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "12264c67d6d0e585180c94908af61f71b939288e7c7c06671f1b36ab09558580" - }, - { - "algorithm": "SHA1", - "checksumValue": "5b2a53e8a33e0cff9f8c0c28f0676d7e00c6ad3f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-arm64/native/msalruntime_arm64.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-arm64-native-msalruntime-arm64.dll-B4066FA73ACFC594AE146AF61E56EFEDEC605408", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "23cf2cc0fe030e4a33f523568416c4d160c3de054ddf31c66082602c5c899f07" - }, - { - "algorithm": "SHA1", - "checksumValue": "b4066fa73acfc594ae146af61e56efedec605408" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/CmdletSettings.json", - "SPDXID": "SPDXRef-File--netcoreapp3.1-CmdletSettings.json-98919B572DB8494892B52408CD0FE23531388E32", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c0549eba3a249ef431b0d0c61ee232c815b74fe0cfa1b41b0860a8531f33e6dd" - }, - { - "algorithm": "SHA1", - "checksumValue": "98919b572db8494892b52408cd0fe23531388e32" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Azure.KeyVault.Jose.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Jose.dll-99E8E2F33F86D04F717A52D499402C4C4A237622", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "5c9c6eba8f3b784fc4eee22b847b0d22d375daade88ab84554bee66ecb5ee7db" - }, - { - "algorithm": "SHA1", - "checksumValue": "99e8e2f33f86d04f717a52d499402c4c4a237622" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Rest.ClientRuntime.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Rest.ClientRuntime.dll-04B89EBA96301340E1C3F724FA3B97B612CFA49F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "830c0dd4be63d91ceaed8e359ac34c717ad70196b9cc29f32c2c480e166b43c8" - }, - { - "algorithm": "SHA1", - "checksumValue": "04b89eba96301340e1c3f724fa3b97b612cfa49f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Bcl.Memory.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.Memory.dll-8DA4BF4997A6F6DF47A37EC71DCBB92D587751B9", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "31cf21071bce500b8ce61a00871a4873344e5e9628da9f8dbaa20fd111d30692" - }, - { - "algorithm": "SHA1", - "checksumValue": "8da4bf4997a6f6df47a37ec71dcbb92d587751b9" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x64/native/msalruntime.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x64-native-msalruntime.dll-CCE6FEBDB63AF45C43FD5CD8E41DFD7A3CC4C0D0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d9a1d8e9096aafca2c4f77431affd0374af4acaeb2dec1cb73ead5d511d20cf5" - }, - { - "algorithm": "SHA1", - "checksumValue": "cce6febdb63af45c43fd5cd8e41dfd7a3cc4c0d0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.DependencyInjection.Abstractions.dll-D41541381215BB391A8DBB35515E98F9D4EAA085", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c2909b7973c6fdafa90f02c64a07f4f475ea09d9c7ad5cdd0bd6db9189d61b17" - }, - { - "algorithm": "SHA1", - "checksumValue": "d41541381215bb391a8dbb35515e98f9d4eaa085" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Logging.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Logging.dll-0F4C03A61B0F7EED635DCC3DD23D87F045BE2542", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "92de988f9c0d8a93f838b681ab78db0a6ae6dd0f75c3f598c25edb9c4ce251c0" - }, - { - "algorithm": "SHA1", - "checksumValue": "0f4c03a61b0f7eed635dcc3dd23d87f045be2542" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.AzureServiceDeploy.dll-F9BE29510A6F81AB477126F87CA063DC86646B2B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "05923efc69e3a14b826269ef49b5e366d02ed174579ad4b7392697938678cf5a" - }, - { - "algorithm": "SHA1", - "checksumValue": "f9be29510a6f81ab477126f87ca063dc86646b2b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.Abstractions.dll-2D33D471067B84C0D1A7D01C03DE1A7764D3BCE3", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7098dd9b991009765f23d11458e9a8fd554c3183cac069ab09d1a9d9d42c62a8" - }, - { - "algorithm": "SHA1", - "checksumValue": "2d33d471067b84c0d1a7d01c03de1a7764d3bce3" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.PowerShell.Module.deps.json", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.deps.json-676586C506F9338177B3E1EDD47B9ADD5F6D0404", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "26344dec5e99fed86c251b0902145aaca2d3ec9b7d599260b3026bf21fed0cf1" - }, - { - "algorithm": "SHA1", - "checksumValue": "676586c506f9338177b3e1edd47b9add5f6d0404" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Identity.Client.NativeInterop.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.NativeInterop.dll-21DF323C7EFB42403BE070CB71D4FEF704E3B217", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "9157d98b5450a5c851d6f82bbdd515113ee78d66b39d07dab571fef69f3d2a4a" - }, - { - "algorithm": "SHA1", - "checksumValue": "21df323c7efb42403be070cb71d4fef704e3b217" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Ic3.TenantAdminApi.Common.Helper.dll-9A5C91091494220316C7FACD90E0E8E5753DCFF1", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f5b4376e9237a23fc1dfd01dbece4bd82bdb670b49c079052fc6724e6afc7778" - }, - { - "algorithm": "SHA1", - "checksumValue": "9a5c91091494220316c7facd90e0e8e5753dcff1" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Rtc.Management.Acms.EntityModel.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Rtc.Management.Acms.EntityModel.dll-23A58AD8D8B56ED0682E0E90F1A55E7645ED384F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "dc9288c66a9688a8ad4f3be7b8427cd0ac07987afd800dc6c32ed3af86a0b393" - }, - { - "algorithm": "SHA1", - "checksumValue": "23a58ad8d8b56ed0682e0e90f1a55e7645ed384f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.Wpf.dll-4684CB6007053FCDF5B96BD6AA7B531184353D1D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "b72140d4ce75c1f41cb17d1e941edbe3d8ac8d25083cf486b96a65dec11f1e98" - }, - { - "algorithm": "SHA1", - "checksumValue": "4684cb6007053fcdf5b96bd6aa7b531184353d1d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.IdentityModel.Logging.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Logging.dll-2C57F4F01CD14548D85DE1704FA23BE031D2D1CB", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "5daa7ecb82d93944c49653de73a7f3e842273f9e98fca985f87d438f7d988353" - }, - { - "algorithm": "SHA1", - "checksumValue": "2c57f4f01cd14548d85de1704fa23be031d2d1cb" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.PowerShell.Module.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.dll-8D02D93567D101D79F748677C1F450899456DF33", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c7019cf7bfed2f751b8362128d621da06bc31ef06540e93ea98386bbefe11073" - }, - { - "algorithm": "SHA1", - "checksumValue": "8d02d93567d101d79f748677c1f450899456df33" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll-ECC6F121C121B9E6CC7E9C292054FC5BF0BB7463", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "3ae1783b574afe092eb6d8c82aba982cf8e3a67a09ec243204eaa1f5e9f63d2c" - }, - { - "algorithm": "SHA1", - "checksumValue": "ecc6f121c121b9e6cc7e9c292054fc5bf0bb7463" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Diagnostics.DiagnosticSource.dll-4ECCCD29DDF8354B94AE0900A0917D03EED57FE8", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c47e05ae4f9a9921c6dbdf945ee7358c57ca476453f03eb2ac3a72936ccb8dda" - }, - { - "algorithm": "SHA1", - "checksumValue": "4ecccd29ddf8354b94ae0900a0917d03eed57fe8" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Security.Cryptography.Cng.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Security.Cryptography.Cng.dll-A10454E271FD59DC3E042267A4BB89A53E613F5B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "de6cfdc77b7b9027c438e42fc4751f31ddbe046fe7fbeb357c1bab29370e2089" - }, - { - "algorithm": "SHA1", - "checksumValue": "a10454e271fd59dc3e042267a4bb89a53e613f5b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.PowerShell.TeamsCmdlets.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-229F9F6F90E6AA5F5B4FA84E09C39E4E628BCA96", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4a020cf02bd6e852316007f3016dffda8defcf89c5a6dcf19de7f909b420019e" - }, - { - "algorithm": "SHA1", - "checksumValue": "229f9f6f90e6aa5f5b4fa84e09c39e4e628bca96" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Polly.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Polly.dll-0A16485C831900BFB44BAE1E7DEF5E0090B0CFFA", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "18ebc9cb2e99c25cea3246fe09d9d345162d8023b7d0e564bf46b3213ea9e77c" - }, - { - "algorithm": "SHA1", - "checksumValue": "0a16485c831900bfb44bae1e7def5e0090b0cffa" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x86/native/e_sqlite3.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x86-native-e-sqlite3.dll-3BB48E54C65E348A6F4D1FC2541C0CDD8515F099", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "8470323e8adb07d5e1a4ca3c93e864fc02baabf04edcef3db94bd8a43eb6903b" - }, - { - "algorithm": "SHA1", - "checksumValue": "3bb48e54c65e348a6f4d1fc2541c0cdd8515f099" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Azure.KeyVault.Cryptography.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Cryptography.dll-A99D3945BF179C0B7C58986BA40FEC3CEFC32B2E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "59ef03603e80c4ebe295ab762ac1328c1d92b15bd29691d694c8008af2484fc8" - }, - { - "algorithm": "SHA1", - "checksumValue": "a99d3945bf179c0b7c58986ba40fec3cefc32b2e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Newtonsoft.Json.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Newtonsoft.Json.dll-6DA2C0F98F682DB041FF719A5B96F735B204ADD3", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "577fb670523ac55c999de07436d0d053649852f4cab9bbce7594a4c49a30e1f8" - }, - { - "algorithm": "SHA1", - "checksumValue": "6da2c0f98f682db041ff719a5b96f735b204add3" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Configuration.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.dll-C75BFF35C71267761E351AFC5778E8B8CE0DD2A4", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "bee143e21956fc5bf76fa18577c4e82d21c03619402daa24884f0a0affbbdf38" - }, - { - "algorithm": "SHA1", - "checksumValue": "c75bff35c71267761e351afc5778e8b8ce0dd2a4" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Management.Automation.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Management.Automation.dll-BD695FF49B4EBEE39DE912FFD0CCC1BAB39B02A0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6c908a8ef3b69d4529ee93237f7523ba25efa82ab10fdf39748cec91cde7516e" - }, - { - "algorithm": "SHA1", - "checksumValue": "bd695ff49b4ebee39de912ffd0ccc1bab39b02a0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Formats.Asn1.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Formats.Asn1.dll-416B0C4DEED6B46F9D69E29FBDFAE4225A900214", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "432ba8cbcca6bb487987a77ff01ec186e84066ecdb8c835eef551d939a40d62b" - }, - { - "algorithm": "SHA1", - "checksumValue": "416b0c4deed6b46f9d69e29fbdfae4225a900214" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Desktop.dll-1BAD5C4CA8AD47D1A773B0F30F7FFDB3AE31819A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "40147288c2c547e17a6a10b2097c0773f5c49fcbf34312eeab9be4b40f149b86" - }, - { - "algorithm": "SHA1", - "checksumValue": "1bad5c4ca8ad47d1a773b0f30f7ffdb3ae31819a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Internal.AntiSSRF.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Internal.AntiSSRF.dll-B33A3E902E75E3057E113AC8E86033A16201F17D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f8c10660d57929e2a1d7b58f031f598d6e3c41f18d0e546987ed68f95201c0dd" - }, - { - "algorithm": "SHA1", - "checksumValue": "b33a3e902e75e3057e113ac8e86033a16201f17d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Security.Cryptography.ProtectedData.dll-DBD0A22037288048EC19E6E53F5968168B1FA357", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f5f080b9ecb519dbfe52fcc21496af8212bdec1845950be8a2ae713f17dda9ff" - }, - { - "algorithm": "SHA1", - "checksumValue": "dbd0a22037288048ec19e6e53f5968168b1fa357" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll-60B94AE4C21681BCE62B6241AB37253A18AAEB73", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "07c120c4892bf9235c5e107c28c38a457c2298ae5bc5e066679afa6f8236d16f" - }, - { - "algorithm": "SHA1", - "checksumValue": "60b94ae4c21681bce62b6241ab37253a18aaeb73" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Text.Json.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Text.Json.dll-F8B9032DA0D3C3DDF3CD44EF223BF0F35AFDB96F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6ad71ed8053503bff798d3ed43d05cc26f82b95b4c573f55d2f7093d3c38165f" - }, - { - "algorithm": "SHA1", - "checksumValue": "f8b9032da0d3c3ddf3cd44ef223bf0f35afdb96f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x64/native/e_sqlite3.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x64-native-e-sqlite3.dll-5D191FA41338C17AC5C652F8BEE78888A55C12B9", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "60b6c4539899966f5dada4cfae60d0e03d976bb4e553b3e39ce3448f37b16315" - }, - { - "algorithm": "SHA1", - "checksumValue": "5d191fa41338c17ac5c652f8bee78888a55c12b9" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Identity.Client.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Identity.Client.dll-D8E68178AD96A18CE47FA04A7BAE523E5A124A48", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "8e31074073a09a5f7b0bf6e692002675468c490b638cfe03b7c8150b9e3ce797" - }, - { - "algorithm": "SHA1", - "checksumValue": "d8e68178ad96a18ce47fa04a7bae523e5a124a48" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Rest.ClientRuntime.Azure.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Rest.ClientRuntime.Azure.dll-73AEFE1ED13A582629745455415AA8E2AA6A7890", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "771576295087501d610129481ceb6da8bfe91119682141f38e6123118c1c5b8d" - }, - { - "algorithm": "SHA1", - "checksumValue": "73aefe1ed13a582629745455415aa8e2aa6a7890" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.Policy.Administration.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.dll-18018A13914258C05CA26314B6F250F441E8C712", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7ab2635f6d86474923de8ccfecba3e17cd73e76850c02bef71d4746464a71e59" - }, - { - "algorithm": "SHA1", - "checksumValue": "18018a13914258c05ca26314b6f250f441e8c712" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Applications.Events.Server.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Applications.Events.Server.dll-CAA1D2CA261D0246798E2A57382A473D46ED1640", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "ed63b3698dc910cf612a9d2131d371a2098565e80657eabb948f26eb85351e1f" - }, - { - "algorithm": "SHA1", - "checksumValue": "caa1d2ca261d0246798e2a57382a473d46ed1640" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Web.WebView2.Core.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.Core.dll-C086611A6FA64CF01F8B71CF90ECDB38DA0E8F89", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7efc39ca57956e21a2058db9471f54216edbf23750a49e59e5a0256f8eca7453" - }, - { - "algorithm": "SHA1", - "checksumValue": "c086611a6fa64cf01f8b71cf90ecdb38da0e8f89" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Web.WebView2.Wpf.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Web.WebView2.Wpf.dll-D93F593CC2A962D37F72D545AA511575D536AA6A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "eca9840e01475d8b77d2e6b64af64dd0d3d26634a7572ac28ba8cdbec9b14d38" - }, - { - "algorithm": "SHA1", - "checksumValue": "d93f593cc2a962d37f72d545aa511575d536aa6a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Buffers.dll", - "SPDXID": "SPDXRef-File--net472-System.Buffers.dll-1BA302D9E8A283E93EAF054BC619B9D65CC06B07", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1ee12f0a8df84ccc33ce5d443148d312c2ad8c498e70ab833e748619e59d2d2e" - }, - { - "algorithm": "SHA1", - "checksumValue": "1ba302d9e8a283e93eaf054bc619b9d65cc06b07" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/SQLitePCLRaw.core.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.core.dll-CA42BF6ABFAE26EDB8D1D94E0E07F2AF55DCE7DC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a0bd4360b5544c061a2cb5651b5a3308ea2ebc81877071cd41f41910ecf1d74d" - }, - { - "algorithm": "SHA1", - "checksumValue": "ca42bf6abfae26edb8d1d94e0e07f2af55dce7dc" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Runtime.CompilerServices.Unsafe.dll-3584ECA62B318CA3C21A4E343B96E083584C631A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d54ae48720f587d954a188b9ce29cffb24e5002f620a896282b15b7f262b18e0" - }, - { - "algorithm": "SHA1", - "checksumValue": "3584eca62b318ca3c21a4e343b96e083584c631a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Data.Sqlite.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Data.Sqlite.dll-74E236DF914D5A9A663699E167D42F8CB2AE07C5", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "08b9ac0c0dcb8638da23d40c2e70b93073fb65d0f5b828bd88c9c8bb6bbd3bd7" - }, - { - "algorithm": "SHA1", - "checksumValue": "74e236df914d5a9a663699e167d42f8cb2ae07c5" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Numerics.Vectors.dll", - "SPDXID": "SPDXRef-File--net472-System.Numerics.Vectors.dll-15F1EF098EC6598D3E10159B4F1436629F93F763", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "205fbe13cb61597144784a75346ff124e33093ca1dbe89a75b13ae14e14c140a" - }, - { - "algorithm": "SHA1", - "checksumValue": "15f1ef098ec6598d3e10159b4f1436629f93f763" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.ValueTuple.dll", - "SPDXID": "SPDXRef-File--net472-System.ValueTuple.dll-F8AC40E6934E355D47184EB306AC9DF85CEED1D6", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "e154af51b65c9e9db8201afe3a8ee8d99b4d1eb9539c6b44233cc6d42023e9a0" - }, - { - "algorithm": "SHA1", - "checksumValue": "f8ac40e6934e355d47184eb306ac9df85ceed1d6" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Primitives.dll-0A4E72B93D8D265F5731C652F5BF5F788CB58C24", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f48269a0764c082d9f3a5a0063466a389d280dc762a51314df66b2b5aa73f987" - }, - { - "algorithm": "SHA1", - "checksumValue": "0a4e72b93d8d265f5731c652f5bf5f788cb58c24" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.JsonWebTokens.dll-22E95BD9D7F502F09E4469869BFD7ECB5E922230", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "28df5724e3853c726748926c0a40a0040ce56e4c363485690dc9c2ce30f62bbe" - }, - { - "algorithm": "SHA1", - "checksumValue": "22e95bd9d7f502f09e4469869bfd7ecb5e922230" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./en-US/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml", - "SPDXID": "SPDXRef-File--en-US-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml-48967089F87BFFBD464D5F3755182A8854204BC7", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "9252390c2a062e9b7c29878f8549a9689415859d3ff7c5c64a7f4ba12ec7935a" - }, - { - "algorithm": "SHA1", - "checksumValue": "48967089f87bffbd464d5f3755182a8854204bc7" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.ApplicationInsights.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.ApplicationInsights.dll-43E8E51CB645C9AEA3E9735A97F03529C207CA9C", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "06af8aba641005bef7808d57503b8bc9fc8f728290a06b3951fd591ccf8e14e7" - }, - { - "algorithm": "SHA1", - "checksumValue": "43e8e51cb645c9aea3e9735a97f03529c207ca9c" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Bcl.TimeProvider.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Bcl.TimeProvider.dll-8050339042462F4CFDD191031A3369FC79A183B4", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "79003cfd22b15e1e22b9a483a8b4e78ba50bd46dc73716b61640a835efd3ebe4" - }, - { - "algorithm": "SHA1", - "checksumValue": "8050339042462f4cfdd191031a3369fc79a183b4" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Options.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Options.dll-39A12A71B36FC770A6861E8FD853DFB4909C18DC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "30a7d932c0d65b553645510f0aae9cdf43598fed9d8995c8e201105f0a8cd1e1" - }, - { - "algorithm": "SHA1", - "checksumValue": "39a12a71b36fc770a6861e8fd853dfb4909c18dc" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.IdentityModel.Abstractions.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.IdentityModel.Abstractions.dll-4A96595FA801485D87A01606B59164EF70CEF3AC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "94bac86dbce0498492dec9da3ef71fb9c23caa199ec32c909f78b56bf7966c0b" - }, - { - "algorithm": "SHA1", - "checksumValue": "4a96595fa801485d87a01606b59164ef70cef3ac" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-EBD53D122CE1300D7A228013BF400DB12B619716", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c318c731e5ad51684190c4a9323f594764b6ad510866d4145a6d26ec844c82bc" - }, - { - "algorithm": "SHA1", - "checksumValue": "ebd53d122ce1300d7a228013bf400db12b619716" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.PowerShell.Module.xml", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "14e403c1b3082085432ca2f1ae0d47c0491bd4cfd3234bc819493a7b4254c971" - }, - { - "algorithm": "SHA1", - "checksumValue": "eb2b86d36ade4e37542f46ac4af2a0e81087e582" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Polly.Contrib.WaitAndRetry.dll", - "SPDXID": "SPDXRef-File--net472-Polly.Contrib.WaitAndRetry.dll-8D6BDA2AFBA6224021333EE190A8F8DCD9831E4A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0afa36dbbeb54cdfb850e77dc0403195a11b0d9ad85e8c757ecaf03302468299" - }, - { - "algorithm": "SHA1", - "checksumValue": "8d6bda2afba6224021333ee190a8f8dcd9831e4a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-EC491FBC4F6373314DD76E2EA023F1C5D5CE529E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "1185d971a9365007b586cb0e348516cce8880bed3357347401202acad6b116ac" - }, - { - "algorithm": "SHA1", - "checksumValue": "ec491fbc4f6373314dd76e2ea023f1c5d5ce529e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.PowerShell.Module.xml", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "14e403c1b3082085432ca2f1ae0d47c0491bd4cfd3234bc819493a7b4254c971" - }, - { - "algorithm": "SHA1", - "checksumValue": "eb2b86d36ade4e37542f46ac4af2a0e81087e582" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Polly.Contrib.WaitAndRetry.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Polly.Contrib.WaitAndRetry.dll-217D1DA5C8A7BDF06B3A88715E7EA42FB3075EBB", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "133797b313a3abe61a6f8cc228a04d43f5f92877f1c073dc48d28637b0c8e54e" - }, - { - "algorithm": "SHA1", - "checksumValue": "217d1da5c8a7bdf06b3a88715e7ea42fb3075ebb" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Formats.Asn1.dll", - "SPDXID": "SPDXRef-File--net472-System.Formats.Asn1.dll-E6FB009837E632D7A2F187AB238CD67F51FD190F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "2d508438f857f49bc1fc82013b291a8a68b6d2172809421fb1194b1076f84a98" - }, - { - "algorithm": "SHA1", - "checksumValue": "e6fb009837e632d7a2f187ab238cd67f51fd190f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.IO.FileSystem.AccessControl.dll-9C7CC9DD8FAEDADA55866E9510063EC55569480C", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "17190c1fc908a37c8144ace77cd81315230875c20f6f46774c9ae4ee3a9d2fc1" - }, - { - "algorithm": "SHA1", - "checksumValue": "9c7cc9dd8faedada55866e9510063ec55569480c" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Security.Cryptography.ProtectedData.dll", - "SPDXID": "SPDXRef-File--net472-System.Security.Cryptography.ProtectedData.dll-E3AF9A63764B23E5D8D35C2CF589C23BC47BF8E9", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "952a8505578db1a6f21c513869855dad7dd0f0109ad28693b37188cfe1b9236f" - }, - { - "algorithm": "SHA1", - "checksumValue": "e3af9a63764b23e5d8d35c2cf589c23bc47bf8e9" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Text.Encodings.Web.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Text.Encodings.Web.dll-937BD8A82DA6B42C38D2F8D3DCF31202F67CF36F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f479a291e00e5b91715880ef3be48958a90d5c098561ed366a40ecb018ff2470" - }, - { - "algorithm": "SHA1", - "checksumValue": "937bd8a82da6b42c38d2f8d3dcf31202f67cf36f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-arm64/native/WebView2Loader.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-arm64-native-WebView2Loader.dll-3A699FE0425EA4419CC0468FF21668BEF508225D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "b441cd7387e612dff7d299785dc9fd3096ada8f3973794165f800ce3a9a435ac" - }, - { - "algorithm": "SHA1", - "checksumValue": "3a699fe0425ea4419cc0468ff21668bef508225d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.ApplicationInsights.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.ApplicationInsights.dll-1D39498E317C765A93D5BD0FA4A2743B7E60D8F1", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7de40a9c94e7ea200354f4b44406f01b5e07c27f0d8199af5310b1349f101f15" - }, - { - "algorithm": "SHA1", - "checksumValue": "1d39498e317c765a93d5bd0fa4a2743b7e60d8f1" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Bcl.TimeProvider.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.TimeProvider.dll-F90D2E4191072554D854691990ACAA8B3E31910F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "545429766554152c9a5b0a90c0863b23e2190704d3cbfdafd982f5b99ee82e64" - }, - { - "algorithm": "SHA1", - "checksumValue": "f90d2e4191072554d854691990acaa8b3e31910f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Options.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Options.dll-39A12A71B36FC770A6861E8FD853DFB4909C18DC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "30a7d932c0d65b553645510f0aae9cdf43598fed9d8995c8e201105f0a8cd1e1" - }, - { - "algorithm": "SHA1", - "checksumValue": "39a12a71b36fc770a6861e8fd853dfb4909c18dc" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Abstractions.dll-B9631BB0507EE55C8B656F4DD9AEC286DF238166", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "56d4e6c22c5d586fe9a52b48ffedcf785b6efe2fd97137c6fe3d4819232190f5" - }, - { - "algorithm": "SHA1", - "checksumValue": "b9631bb0507ee55c8b656f4dd9aec286df238166" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-EBD53D122CE1300D7A228013BF400DB12B619716", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c318c731e5ad51684190c4a9323f594764b6ad510866d4145a6d26ec844c82bc" - }, - { - "algorithm": "SHA1", - "checksumValue": "ebd53d122ce1300d7a228013bf400db12b619716" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.PowerShell.Module.pdb", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.pdb-0D752097DFC79029B8C687EB7CFE6DFA669AA0D0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "4601c57ab7c448f079a1de0ab0163b9c76381b6efb62a1c2de5aaa61956121c1" - }, - { - "algorithm": "SHA1", - "checksumValue": "0d752097dfc79029b8c687eb7cfe6dfa669aa0d0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/OneCollectorChannel.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-OneCollectorChannel.dll-017A18B3C291A61DC4914D2CE9262681BAF66693", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0c449788faa7b148be6191b3172a2e7ee7a13f0c7fd27e4ddf01884ed6ac864d" - }, - { - "algorithm": "SHA1", - "checksumValue": "017a18b3c291a61dc4914d2ce9262681baf66693" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.IdentityModel.Tokens.Jwt.dll-9F62957084D6E53EC82176FE21090BB983AABC46", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "061e18304294ba7a32645b10beb526cf245fe7c4ca0e44de6cfbe989094358e4" - }, - { - "algorithm": "SHA1", - "checksumValue": "9f62957084d6e53ec82176fe21090bb983aabc46" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Security.Principal.Windows.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Security.Principal.Windows.dll-6EC09133FD4C1BD747B41E59B77CFCF4B3B66DAE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "7412afa8d314f4e5152bc20a5101db421259d1d59c0ae1f128664a566a017dc4" - }, - { - "algorithm": "SHA1", - "checksumValue": "6ec09133fd4c1bd747b41e59b77cfcf4b3b66dae" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x86/native/msalruntime_x86.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x86-native-msalruntime-x86.dll-13BC089AE19F012B9B6DCA332671667CD3AB5D93", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "72d337e054c8e5e8ea217fb3fd8a72a6b2d21f575acd912bc23af6410f54c009" - }, - { - "algorithm": "SHA1", - "checksumValue": "13bc089ae19f012b9b6dca332671667cd3ab5d93" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Azure.KeyVault.Jose.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Jose.dll-FDAFD690CB1AC9C994F202D42D547FC65DD64C09", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "846e7010b1abd4c95ad8e5b7dfaedfff65539a1ffbfabde46bb2d1e8454ee108" - }, - { - "algorithm": "SHA1", - "checksumValue": "fdafd690cb1ac9c994f202d42d547fc65dd64c09" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.DependencyInjection.Abstractions.dll-D41541381215BB391A8DBB35515E98F9D4EAA085", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "c2909b7973c6fdafa90f02c64a07f4f475ea09d9c7ad5cdd0bd6db9189d61b17" - }, - { - "algorithm": "SHA1", - "checksumValue": "d41541381215bb391a8dbb35515e98f9d4eaa085" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/runtimes/win-x64/native/msalruntime.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-runtimes-win-x64-native-msalruntime.dll-CCE6FEBDB63AF45C43FD5CD8E41DFD7A3CC4C0D0", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d9a1d8e9096aafca2c4f77431affd0374af4acaeb2dec1cb73ead5d511d20cf5" - }, - { - "algorithm": "SHA1", - "checksumValue": "cce6febdb63af45c43fd5cd8e41dfd7a3cc4c0d0" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Identity.Client.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.dll-C83F4D2E881397AC2A89386B651ADDBF1DA51C0E", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "95bec1764e66b56281d84c81f615e06b75ae003535b36a18ddc9647c65c505f3" - }, - { - "algorithm": "SHA1", - "checksumValue": "c83f4d2e881397ac2a89386b651addbf1da51c0e" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Rest.ClientRuntime.Azure.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Rest.ClientRuntime.Azure.dll-56972B6F438563DEC79DEAE4FCBFB68573698B40", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "169648650741b168c25bccbcfd8e212d882ffbc348c39f285091d3d8e2689371" - }, - { - "algorithm": "SHA1", - "checksumValue": "56972b6f438563dec79deae4fcbfb68573698b40" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.Policy.Administration.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.dll-9A921D466088D2AAAE77F4E5AEB31C1F684FE578", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "81c55558609328d57c07570c81bd485496b908c8a9119d24a01386ddd107208b" - }, - { - "algorithm": "SHA1", - "checksumValue": "9a921d466088d2aaae77f4e5aeb31c1f684fe578" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.WinForms.dll-D5DFA91290D92D915643AC4F9C802D1353DF5573", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "23c93a1181036a07573b9f08e921aebf896f8a7bfb6ba2e6540afda00bedbffb" - }, - { - "algorithm": "SHA1", - "checksumValue": "d5dfa91290d92d915643ac4f9c802d1353df5573" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.provider.e-sqlite3.dll-B002FD7A2C4E00D588D61F4DEB3DAFB2BEA0C575", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "8a54819427391fe13164b504425fd1e522ebd28363ea1c4bddaab9449791a0c2" - }, - { - "algorithm": "SHA1", - "checksumValue": "b002fd7a2c4e00d588d61f4deb3dafb2bea0c575" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Security.AccessControl.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Security.AccessControl.dll-8E22A6A48230644A1F92188531CD5C7328FE141D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "381452606981187e01a25b79450094d272f7f6559fe6e8ca4ec612cf51d7cbd4" - }, - { - "algorithm": "SHA1", - "checksumValue": "8e22a6a48230644a1f92188531cd5c7328fe141d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.dll", - "SPDXID": "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.Cmdlets.private.dll-6BAA759BA0279F186EBF1A0AB90B372EEB9E0592", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "dc328b354674832ce32e8d50bf316e652e5aa6e78b018c548a080bf880c7a8a9" - }, - { - "algorithm": "SHA1", - "checksumValue": "6baa759ba0279f186ebf1a0ab90b372eeb9e0592" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/runtimes/win-x86/native/msalruntime_x86.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-runtimes-win-x86-native-msalruntime-x86.dll-13BC089AE19F012B9B6DCA332671667CD3AB5D93", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "72d337e054c8e5e8ea217fb3fd8a72a6b2d21f575acd912bc23af6410f54c009" - }, - { - "algorithm": "SHA1", - "checksumValue": "13bc089ae19f012b9b6dca332671667cd3ab5d93" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./en-US/MicrosoftTeams-help.xml", - "SPDXID": "SPDXRef-File--en-US-MicrosoftTeams-help.xml-C8D608910D1FF169B99E0C44A93F115BCADAB04D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "18815d71f139549bdc5daa7eadfcc4091d6c40f3e36aa5bc04f6c83550a00229" - }, - { - "algorithm": "SHA1", - "checksumValue": "c8d608910d1ff169b99e0c44a93f115bcadab04d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Azure.KeyVault.Core.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Core.dll-3E2E489B8284761B91B8803422D283E5CAD645DE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "fac94bc85818651d33aed06b34a666f7b8ea549ba3e0cb48b187e1bec3b27097" - }, - { - "algorithm": "SHA1", - "checksumValue": "3e2e489b8284761b91b8803422d283e5cad645de" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Extensions.Configuration.Binder.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Extensions.Configuration.Binder.dll-A4E0F70802D6413D4DEAD5CC46EE174485F3C4EE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "928b5add6af2e836d711dde027ea48e86e1e1639289c0888c513470a3f2754b7" - }, - { - "algorithm": "SHA1", - "checksumValue": "a4e0f70802d6413d4dead5cc46ee174485f3c4ee" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Identity.Client.Broker.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Identity.Client.Broker.dll-7AE318636BEBF14BF1C8D654A1C223842372B0BD", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "efcb0ca541eda466e2c874773048faceccd33cdee2300c06f6dc30ef853b6a2e" - }, - { - "algorithm": "SHA1", - "checksumValue": "7ae318636bebf14bf1c8d654a1c223842372b0bd" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.IdentityModel.Tokens.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.IdentityModel.Tokens.dll-811381A87693C651988FB2B8436B259FFE4A2D11", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "5720d1240f809bba99a9b0c511e4c19774168177401e85f2b38d6a8fa8bdc6dc" - }, - { - "algorithm": "SHA1", - "checksumValue": "811381a87693c651988fb2b8436b259ffe4a2d11" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll-7F52BF4A3B5E10797CB2F29E30B81BC29220E94D", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "6c395452ac30ca0c405511d9fd0072fccd8eb611cf1527ce441abdaeca2de5f2" - }, - { - "algorithm": "SHA1", - "checksumValue": "7f52bf4a3b5e10797cb2f29e30b81bc29220e94d" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/Microsoft.Web.WebView2.Core.dll", - "SPDXID": "SPDXRef-File--net472-Microsoft.Web.WebView2.Core.dll-FFF71CE96D90BB7FE79B563F4340C50AED6809DE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "b7fd7256102d29aba351e7e4fc7d57cf2e921a57ce4219fe0a0768f056e26e39" - }, - { - "algorithm": "SHA1", - "checksumValue": "fff71ce96d90bb7fe79b563f4340c50aed6809de" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/SQLitePCLRaw.core.dll", - "SPDXID": "SPDXRef-File--net472-SQLitePCLRaw.core.dll-CA42BF6ABFAE26EDB8D1D94E0E07F2AF55DCE7DC", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a0bd4360b5544c061a2cb5651b5a3308ea2ebc81877071cd41f41910ecf1d74d" - }, - { - "algorithm": "SHA1", - "checksumValue": "ca42bf6abfae26edb8d1d94e0e07f2af55dce7dc" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Management.Automation.dll", - "SPDXID": "SPDXRef-File--net472-System.Management.Automation.dll-9EBB56872F7271C9FCC32B128F7A2E94DDB9A79B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "def1794a43a559402d88f143221c484a723f618146ea062ad2f894c557042a8e" - }, - { - "algorithm": "SHA1", - "checksumValue": "9ebb56872f7271c9fcc32b128f7a2e94ddb9a79b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/System.Text.Json.dll", - "SPDXID": "SPDXRef-File--net472-System.Text.Json.dll-285A99D29F66CFBF55F79110738A3F8902A63D68", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d8b4b7964c50a1b75efd2717cbdfd24bb06e9130f777ddd8a894b8f321bdd3c1" - }, - { - "algorithm": "SHA1", - "checksumValue": "285a99d29f66cfbf55f79110738a3f8902a63d68" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./net472/runtimes/win-x64/native/WebView2Loader.dll", - "SPDXID": "SPDXRef-File--net472-runtimes-win-x64-native-WebView2Loader.dll-8269F0DECAFCD9B81B9E61D09A293B3B25B869E9", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "f5ba0c21b144317ea9d88ff07909203d6964f13383ad73b7805c1e2543ff8cab" - }, - { - "algorithm": "SHA1", - "checksumValue": "8269f0decafcd9b81b9e61d09a293b3b25b869e9" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Core.dll-0546BC20ACF1B5EB84C2F7F47BF9494CD8F2B9AF", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a351c3d730e7752c34c69a33144c958dd0a03fe6b912ebb6ca342b271e5b6b41" - }, - { - "algorithm": "SHA1", - "checksumValue": "0546bc20acf1b5eb84c2f7f47bf9494cd8f2b9af" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.Binder.dll-A4E0F70802D6413D4DEAD5CC46EE174485F3C4EE", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "928b5add6af2e836d711dde027ea48e86e1e1639289c0888c513470a3f2754b7" - }, - { - "algorithm": "SHA1", - "checksumValue": "a4e0f70802d6413d4dead5cc46ee174485f3c4ee" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Identity.Client.Broker.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Broker.dll-43BC6036CBB26DE7272DFDF0002C9C78C33C980B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "a24dad0b5267dbaa3e958603d9a636ef706f097d9636c018dd3e8d347003cc81" - }, - { - "algorithm": "SHA1", - "checksumValue": "43bc6036cbb26de7272dfdf0002c9c78c33c980b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Tokens.dll-3B228D25D8C546C6D70B5C112E18F18E8092B67B", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "dd5677cb2a9301a8503301bb6883bd7a226960d7a906281ef0363adaaf067899" - }, - { - "algorithm": "SHA1", - "checksumValue": "3b228d25d8c546c6d70b5c112e18f18e8092b67b" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll-7EC92D06F7FF64C7F3FC950EDB098379FCD69F3A", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "ea5083c1c6f64ce5f09c67993f8dfce18d9fbdc37e361e078eed01814ca4cd7b" - }, - { - "algorithm": "SHA1", - "checksumValue": "7ec92d06f7ff64c7f3fc950edb098379fcd69f3a" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/Microsoft.TeamsCmdlets.PowerShell.Connect.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-BDD5BF9BBE152A44EB11D675A320FBAEB6DC9C45", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d42df7cee7481ab570bbf3cfc3ee990642d423b97fc65e2d276fb7bf83dcebfe" - }, - { - "algorithm": "SHA1", - "checksumValue": "bdd5bf9bbe152a44eb11d675a320fbaeb6dc9c45" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.batteries-v2.dll-F828337A4CE225A7E0D67240CFF10CF9503BF39F", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "d0048782157c8357e2a3afbd74af0c952c676f77fd13865081a9c49eae3473ea" - }, - { - "algorithm": "SHA1", - "checksumValue": "f828337a4ce225a7e0d67240cff10cf9503bf39f" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/System.Management.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-System.Management.dll-A942654DD75175663D23BAEC669F89E1000D1604", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "0f4ff1924c4e50075f5dc04404f9e2b3437e69ece50039d2be6c1c5841b2d550" - }, - { - "algorithm": "SHA1", - "checksumValue": "a942654dd75175663d23baec669f89e1000d1604" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - }, - { - "fileName": "./netcoreapp3.1/runtimes/win-arm64/native/msalruntime_arm64.dll", - "SPDXID": "SPDXRef-File--netcoreapp3.1-runtimes-win-arm64-native-msalruntime-arm64.dll-B4066FA73ACFC594AE146AF61E56EFEDEC605408", - "checksums": [ - { - "algorithm": "SHA256", - "checksumValue": "23cf2cc0fe030e4a33f523568416c4d160c3de054ddf31c66082602c5c899f07" - }, - { - "algorithm": "SHA1", - "checksumValue": "b4066fa73acfc594ae146af61e56efedec605408" - } - ], - "licenseConcluded": "NOASSERTION", - "licenseInfoInFiles": [ - "NOASSERTION" - ], - "copyrightText": "NOASSERTION" - } - ], - "packages": [ - { - "name": "pasta-build-info-mcp", - "SPDXID": "SPDXRef-Package-3F0C5D103B079B45BF8DEFC8B52B9701DBACF7DAB875FE41DE23992118F1D4BD", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/pasta-build-info-mcp@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "@azure/functions", - "SPDXID": "SPDXRef-Package-B8941EA4D327E9DF1B6B20DAE6C8E829C1CE2D30767C17D9F5E00161D2719B01", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.11.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/@azure/functions@4.11.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "mime-types", - "SPDXID": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.35", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/mime-types@2.1.35" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "teams-graph-mcp", - "SPDXID": "SPDXRef-Package-D8F66A750BC4522EDDCB1FED49211BD16878D1E062948FDCB10409A487EFE776", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/teams-graph-mcp@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "pasta-build-info-azure-function", - "SPDXID": "SPDXRef-Package-D9C62F109B90768D0D80D73DCDA722E90934102239FB285F6656A82B6A5C259E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/pasta-build-info-azure-function@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "office-cmdlet-updater", - "SPDXID": "SPDXRef-Package-2B845BD152273D72FE2AFC20FA987AF1A6499713ECA5A9C6306E0B5B4C72DA3B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/office-cmdlet-updater@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "axios", - "SPDXID": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.13.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/axios@1.13.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "chalk", - "SPDXID": "SPDXRef-Package-02928BC4111CCFA2CD7E08B66F8359B34C75FE9078FD53EFE000BC8EF30E8A04", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/chalk@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "follow-redirects", - "SPDXID": "SPDXRef-Package-3B4793028138A7D5E8C52DB5B098477C0A479E8FFC27F5086B1C7AF9905062B6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.15.11", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/follow-redirects@1.15.11" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "extract-zip", - "SPDXID": "SPDXRef-Package-926EB12DE79BD05D8EF9BF30D510AF0261709972112040F31074B63256E640AD", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/extract-zip@2.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "mime-db", - "SPDXID": "SPDXRef-Package-793F2F06EF22CE5CB8967C424EBADF37A6411D23830B3882F3E3E922F30B1424", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.52.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/mime-db@1.52.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "has-tostringtag", - "SPDXID": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/has-tostringtag@1.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "hasown", - "SPDXID": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/hasown@2.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "call-bind-apply-helpers", - "SPDXID": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/call-bind-apply-helpers@1.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "es-errors", - "SPDXID": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/es-errors@1.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "combined-stream", - "SPDXID": "SPDXRef-Package-5694FF104CAA072DDA8305286A4084CED01B318F61F638B8CC49840E1740138B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.8", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/combined-stream@1.0.8" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "math-intrinsics", - "SPDXID": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/math-intrinsics@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "form-data", - "SPDXID": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.0.5", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/form-data@4.0.5" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "cookie", - "SPDXID": "SPDXRef-Package-7AC30CED6B471D84045CFC7ED656D7DC3A705606C1BEA007DC1C9E64F18605C1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.7.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/cookie@0.7.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "delayed-stream", - "SPDXID": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/delayed-stream@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "gopd", - "SPDXID": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/gopd@1.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "function-bind", - "SPDXID": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/function-bind@1.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "rimraf", - "SPDXID": "SPDXRef-Package-913A228A945AF3F88B31639A3883F755AB3ABA2E84D7880912A0474164A7C46D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.4.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/rimraf@4.4.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "get-proto", - "SPDXID": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/get-proto@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "es-define-property", - "SPDXID": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/es-define-property@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "https-proxy-agent", - "SPDXID": "SPDXRef-Package-FBA75402C4126CB443958B444A39B664E4E26665223A7740EA4B1AA0668821AA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/https-proxy-agent@5.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ajv", - "SPDXID": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.18.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ajv@8.18.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "es-set-tostringtag", - "SPDXID": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/es-set-tostringtag@2.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "progress", - "SPDXID": "SPDXRef-Package-37A1483DD1763AB3C4B23B88CDA41D11D4E3F6ED794DDB199BB90D62AC5F8FCB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/progress@2.0.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "get-intrinsic", - "SPDXID": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/get-intrinsic@1.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "proxy-from-env", - "SPDXID": "SPDXRef-Package-4CC5DBDCCAE51F8348CEBFD69E142141529DC10D95850243E697656D01AE3BFA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/proxy-from-env@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "@azure/functions-extensions-base", - "SPDXID": "SPDXRef-Package-151B462B5712BA99AE2AC779A855692CDDD4E5138BBC14F9B2AE2C276E4645FB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/@azure/functions-extensions-base@0.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "asynckit", - "SPDXID": "SPDXRef-Package-F35849C8B2DCB8B60526798822B91FA08BA8D78AE9D2DA91D684246AE802748E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.4.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/asynckit@0.4.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "safer-buffer", - "SPDXID": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/safer-buffer@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "iconv-lite", - "SPDXID": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.7.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/iconv-lite@0.7.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "es-object-atoms", - "SPDXID": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/es-object-atoms@1.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "dunder-proto", - "SPDXID": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/dunder-proto@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "azure-functions-core-tools", - "SPDXID": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.6.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/azure-functions-core-tools@4.6.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "long", - "SPDXID": "SPDXRef-Package-044336899C3AD719572161F32356DFBD386B721EFA99ECA36B059C7A2374DA68", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/long@4.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "serve-static", - "SPDXID": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/serve-static@2.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "json-schema-typed", - "SPDXID": "SPDXRef-Package-6F46A57C03E1A552F66B05335AB076D37723023639EAACDD42E67BB17ED19199", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/json-schema-typed@8.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "accepts", - "SPDXID": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/accepts@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "cross-spawn", - "SPDXID": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.0.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/cross-spawn@7.0.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "router", - "SPDXID": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/router@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "has-symbols", - "SPDXID": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/has-symbols@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "fast-uri", - "SPDXID": "SPDXRef-Package-B86E0354E378A5920FB80A4C9BCE82CF680188B76AF3A3FC48E045BEE5390B6B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/fast-uri@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "cors", - "SPDXID": "SPDXRef-Package-FD4D0676D4BBE7FDFDA4728DA9DBF54E5C6D337E3AD53775696C48E7147CC418", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.8.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/cors@2.8.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "escape-html", - "SPDXID": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/escape-html@1.0.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "hono", - "SPDXID": "SPDXRef-Package-DEE3ECA7AF9C2B9A4B46744654872A6D59A5D278A2452E8C9406AAD8D8ED04A2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.12.5", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/hono@4.12.5" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ms", - "SPDXID": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ms@2.1.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "side-channel-list", - "SPDXID": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/side-channel-list@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "@hono/node-server", - "SPDXID": "SPDXRef-Package-7D19C5341ECD411F0351D96DCFBC8804A92FC9E3BFAC27D0E45B7F6B37A45C19", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.19.11", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/@hono/node-server@1.19.11" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "express-rate-limit", - "SPDXID": "SPDXRef-Package-0F0DD0EDE0BBAF0379D03AA3F2ED16A3C735F4E6EF3EDDA59CEED1D9300EAEF5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/express-rate-limit@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "forwarded", - "SPDXID": "SPDXRef-Package-CEEE8DC0A7508C974FC1203CE01718525DD2B7450BCB7849BC60DE3FB999D381", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/forwarded@0.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "content-disposition", - "SPDXID": "SPDXRef-Package-FE901B2458552B013B96E3BA79E320DAAA24DD01409CFA777BEF18712043A1A4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/content-disposition@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "call-bound", - "SPDXID": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/call-bound@1.0.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "which", - "SPDXID": "SPDXRef-Package-51957A2F03794092299CD8B250D59E6E87D2964CEA6FE0F571A96CC7D8E74CB3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/which@2.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ip-address", - "SPDXID": "SPDXRef-Package-3CC155EC2F4D0A0C5107E686C7608DFE2287D93EA8CCFCD7785B2C23CC3D4669", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "10.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ip-address@10.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "range-parser", - "SPDXID": "SPDXRef-Package-064E3F52F19A9F52462D0913B23BC6D7AD7188274D70A2ACC1BC96053AB5372D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/range-parser@1.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "path-to-regexp", - "SPDXID": "SPDXRef-Package-4245F01EF6295CCFBE916D72B9B70B1BF1F02E5B010FD91ED953A647A967C6E2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/path-to-regexp@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "zod", - "SPDXID": "SPDXRef-Package-7A36072A7D2031DA1B9EDFBE87B13AF2737B5CFE06B2D11F3FB435E9197EA122", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/zod@4.3.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "unpipe", - "SPDXID": "SPDXRef-Package-24A07393AA7FDC27BC3AA05C31A1FCB72E205C972224A1288B23FDECDC893F7C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/unpipe@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ipaddr.js", - "SPDXID": "SPDXRef-Package-5638E16E1E5402C22608F58FD835AE32404115FF41B57B3022829C3A08D36221", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.9.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ipaddr.js@1.9.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "cookie-signature", - "SPDXID": "SPDXRef-Package-AD9F159632798592616EC237399FD83A1ADED5E44AF080EB3E73708CFDFC58B7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.2.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/cookie-signature@1.2.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "once", - "SPDXID": "SPDXRef-Package-AB99903AA6BB7A2B201660FC44DC99CF67FD7C6FFC8466FB86CFFE6AFA6AC395", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.4.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/once@1.4.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "json-schema-traverse", - "SPDXID": "SPDXRef-Package-E6F6FFF0B81176DCBDDDF1EB47A15CF70A0995E5FDD9ADB3533FFDC82A4DA85E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/json-schema-traverse@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "side-channel-map", - "SPDXID": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/side-channel-map@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "eventsource", - "SPDXID": "SPDXRef-Package-C424FAC4BC587AE266531A7866E897980EF167F3FA3678460B11D82CC76AACCE", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.7", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/eventsource@3.0.7" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "object-inspect", - "SPDXID": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.13.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/object-inspect@1.13.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "merge-descriptors", - "SPDXID": "SPDXRef-Package-B464486EAD6F1D66964E4E136DA8BB3AB592F668708C4EF210002F84361CED8B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/merge-descriptors@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "path-key", - "SPDXID": "SPDXRef-Package-B656407861AF208B027FAA1060EF79169BD6BF13246FE5684184809C447B3524", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/path-key@3.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "shebang-regex", - "SPDXID": "SPDXRef-Package-A24B12112923FCC8A01619F06DEE1321BFBEC31F74BA8195143AA61CE5CCC65A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/shebang-regex@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "setprototypeof", - "SPDXID": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/setprototypeof@1.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "etag", - "SPDXID": "SPDXRef-Package-49456CCAD0992D7553E76C04120D4CB8B2BF6AD1E88DEB8E6A76867FF9046354", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.8.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/etag@1.8.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "debug", - "SPDXID": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.4.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/debug@4.4.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "media-typer", - "SPDXID": "SPDXRef-Package-CA93236BB8CBD334C13AC9C1CD2E622525D381692098863C7594DF3E2184C6D4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/media-typer@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "@modelcontextprotocol/sdk", - "SPDXID": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.27.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/@modelcontextprotocol/sdk@1.27.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ajv-formats", - "SPDXID": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ajv-formats@3.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "wrappy", - "SPDXID": "SPDXRef-Package-227E1194E47F7C3B267A998FF7C34792AA926E946B1C3FAEAF4B3B587E8ECED1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/wrappy@1.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "zod-to-json-schema", - "SPDXID": "SPDXRef-Package-5AAB3EF1DC78B2FEFB98C7D0D369DA3FD0039A477C05EE0511FE5D0120E3FE8E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.25.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/zod-to-json-schema@3.25.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "axios", - "SPDXID": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.13.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/axios@1.13.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "raw-body", - "SPDXID": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/raw-body@3.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "mime-db", - "SPDXID": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.54.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/mime-db@1.54.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "statuses", - "SPDXID": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/statuses@2.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "body-parser", - "SPDXID": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/body-parser@2.2.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "side-channel-weakmap", - "SPDXID": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/side-channel-weakmap@1.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "send", - "SPDXID": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/send@1.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "encodeurl", - "SPDXID": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/encodeurl@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "isexe", - "SPDXID": "SPDXRef-Package-6741E5F884492B2D63E14F53560904F7CA698191F70BA379192255737B5BCE37", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/isexe@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "http-errors", - "SPDXID": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/http-errors@2.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "fast-deep-equal", - "SPDXID": "SPDXRef-Package-DE62A5EFFFCCFC7572C1A7EF4A7DF8A0359F3C2A82A456A0497F3FE458D3D75C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/fast-deep-equal@3.1.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "bytes", - "SPDXID": "SPDXRef-Package-87A17A98BD1A3AB0A7E6397AB880DC8EA1131E5163C5E2D7082A1752BE241E5F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/bytes@3.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "jose", - "SPDXID": "SPDXRef-Package-3D9E32FFF6EE52E447F0576400DC72399116A4FDD1281DF86866A217D1015F30", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/jose@6.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "express", - "SPDXID": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/express@5.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "finalhandler", - "SPDXID": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/finalhandler@2.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "eventsource-parser", - "SPDXID": "SPDXRef-Package-3BB80936FEB03F889745CCBBCFB523A1144E22309A52CEEC5F81A61968307C88", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/eventsource-parser@3.0.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "vary", - "SPDXID": "SPDXRef-Package-9FD6502628D2E93332977AC067DA580AC7C10D7CBD7E131D0B11BE62152259BF", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/vary@1.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.PowerShell.Connect", - "SPDXID": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.9.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.PowerShell.Connect@1.9.1" - } - ], - "supplier": "Organization: Skype Admin Tenant Interfaces team" - }, - { - "name": "ServiceTopology", - "SPDXID": "SPDXRef-Package-51859863AD2341A201A718E83102C31AD33750C7FDCCCABDA897001A4B4ADAC1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/ServiceTopology@1.0.0" - } - ], - "supplier": "Organization: ServiceTopology" - }, - { - "name": "toidentifier", - "SPDXID": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/toidentifier@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "type-is", - "SPDXID": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/type-is@2.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "parseurl", - "SPDXID": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.3.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/parseurl@1.3.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "fresh", - "SPDXID": "SPDXRef-Package-2524CE27AB1FF79DE7F00E8821C641462F9770711C39E1F4BD45CB279B2407B2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/fresh@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "require-from-string", - "SPDXID": "SPDXRef-Package-07FC9E8982BC96AC1D68E19C23D0C76E791903F9733AF10674833D695D17C4D6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/require-from-string@2.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client", - "SPDXID": "SPDXRef-Package-EF2D54FA98EC031265B142FF80780E498D62AF1FBF37D1B881F4D1528A8A8A0E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.70.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client@4.70.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "combined-stream", - "SPDXID": "SPDXRef-Package-55E9DD1F8F31E2D2EC487B45C8EEBAB02AD2D83DC4FED445AE1A7F6E51FF8F4E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.9", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/combined-stream@1.0.9" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.DiagnosticSource", - "SPDXID": "SPDXRef-Package-A092770E8354CA90D85493FC4F2941F25FCE4214BAF8EB9A9E4383C495E133E9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "9.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.DiagnosticSource@9.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IdentityModel.Abstractions", - "SPDXID": "SPDXRef-Package-DA2AF0572DFE796D5ED4CBA3C0D769A0AEB1D2D1712BA876E8ACB41B661353B4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IdentityModel.Abstractions@8.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "MSTest.TestFramework", - "SPDXID": "SPDXRef-Package-BD578492E1B6D65E73FA738A546B0E31220C520674A7812D79178EADA585420A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/MSTest.TestFramework@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Moq", - "SPDXID": "SPDXRef-Package-3248038335932D1D4047F57731B65A00918297ABB00C3DCFB05FB8A456FB63A2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.28", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Moq@4.5.28" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "proxy-addr", - "SPDXID": "SPDXRef-Package-EAE371CB9AE792ECE6EED12661A57E00CF9F51EED477A6844F7F491DDBF4C1EC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.7", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/proxy-addr@2.0.7" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "object-assign", - "SPDXID": "SPDXRef-Package-E71175A78EA84E85197956127B9C5F437A2A35D3B7F4BF302567BA45F9179CF5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/object-assign@4.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Castle.Core", - "SPDXID": "SPDXRef-Package-4EC77DE72DF7856001C57E24CCB11F437B92DC6132B2272D5765CC62E1851102", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.3.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Castle.Core@3.3.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "is-promise", - "SPDXID": "SPDXRef-Package-42FBEB99FA709B0F8774C835A34EBDFEC1B321FBA33DB4DD42067875B48C7C84", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/is-promise@4.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "mime-types", - "SPDXID": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/mime-types@3.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "inherits", - "SPDXID": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/inherits@2.0.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.Debug", - "SPDXID": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.Debug@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "side-channel", - "SPDXID": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/side-channel@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Azure.KeyVault.Core", - "SPDXID": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Azure.KeyVault.Core@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "depd", - "SPDXID": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/depd@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "negotiator", - "SPDXID": "SPDXRef-Package-007A2FEC84A17429C9739297D8C443BC48F2D6E7DFFC4BCCA1649DAC91356F42", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/negotiator@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "on-finished", - "SPDXID": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.4.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/on-finished@2.4.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "content-type", - "SPDXID": "SPDXRef-Package-AD09729A317A6A482F957292D68DCDEFB89DB8E231EA51446547254FBC6DA198", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.5", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/content-type@1.0.5" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Console", - "SPDXID": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Console@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "SQLitePCLRaw.bundle_e_sqlite3", - "SPDXID": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/SQLitePCLRaw.bundle_e_sqlite3@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "shebang-command", - "SPDXID": "SPDXRef-Package-76A407C381C6740BADB41C36108E63471CAD429FD5585DB562F76D454120A660", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/shebang-command@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Ic3.AdminConfig.RP.Policy.FunctionalTest", - "SPDXID": "SPDXRef-Package-12940D6BE2876784EA340C496D8F1EFB056BFA21680D6A5A4CCEDC33AFDDFC9E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "30.1.15", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Ic3.AdminConfig.RP.Policy.FunctionalTest@30.1.15" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "MSTest.TestFramework", - "SPDXID": "SPDXRef-Package-B7D63C69227797DAB4E0B488D700205A02ABA2C1D1A6841FF891E5F417797B09", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/MSTest.TestFramework@2.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.PowerShell.Module", - "SPDXID": "SPDXRef-Package-890D141F47E5CF499E021030DBA301739CF5CEC29C6282FF9433EF08D8FE1551", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.8.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.PowerShell.Module@7.8.0" - } - ], - "supplier": "Organization: Microsoft Corporation" - }, - { - "name": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Win32.Registry", - "SPDXID": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Win32.Registry@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "pkce-challenge", - "SPDXID": "SPDXRef-Package-3072F1DB253F01997C30572A98803311C4B70648E41469C5DF01FA5E5CADC2D8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/pkce-challenge@5.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "MSTest.TestAdapter", - "SPDXID": "SPDXRef-Package-74671EB8E35B4A22DF14E3B027232B1C75778285F2258802720CA2F93AC9490D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/MSTest.TestAdapter@2.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Newtonsoft.Json", - "SPDXID": "SPDXRef-Package-A7749B3F7443A0F0AFF64F71746F18D670D8D4FBF18B2138A4AD85A6BC9A810F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "13.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Newtonsoft.Json@13.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Resources.ResourceManager", - "SPDXID": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Resources.ResourceManager@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ee-first", - "SPDXID": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/ee-first@1.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.CodeCoverage", - "SPDXID": "SPDXRef-Package-288304B4D65CA653A9F91AEEED832C8EDBDE12D62998B237EDD814A65B0F11CE", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "16.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.CodeCoverage@16.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "MSTest.TestAdapter", - "SPDXID": "SPDXRef-Package-8DF9F1DC6CCE99BCAB81EC8023E1ED3CD940A36704E358DAE8362D08FAFD45B0", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/MSTest.TestAdapter@2.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "SQLitePCLRaw.lib.e_sqlite3", - "SPDXID": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/SQLitePCLRaw.lib.e_sqlite3@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.ApplicationInsights", - "SPDXID": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.9.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.ApplicationInsights@2.9.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.AppContext", - "SPDXID": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.AppContext@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "OneCollectorChannel", - "SPDXID": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0.234", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/OneCollectorChannel@1.1.0.234" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.Primitives", - "SPDXID": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.RegularExpressions", - "SPDXID": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.RegularExpressions@4.3.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "coverlet.collector", - "SPDXID": "SPDXRef-Package-4C3B9EAB65F57A8012A61AB041013CC14DDEF227C8C011C485D68401ED4A33A1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/coverlet.collector@1.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "SPDXID": "SPDXRef-Package-8F4F099CF0C93C778298B3BBCE55BF07CA151A2C35C8535BDA77B9D9C17898ED", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NETCore.App.Ref@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "qs", - "SPDXID": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.15.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:npm/qs@6.15.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Metadata", - "SPDXID": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.4.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Metadata@1.4.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Globalization", - "SPDXID": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Globalization@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "NETStandard.Library", - "SPDXID": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.6.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/NETStandard.Library@1.6.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Skype.Security.Lorenz", - "SPDXID": "SPDXRef-Package-CE645B91D1E102C5ADFA2FE9FA88293752E1ED47F685D9D5DC5E03075280E0E3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Skype.Security.Lorenz@0.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Polly", - "SPDXID": "SPDXRef-Package-D87A871D9DCC8A4B4DC16C993FF9320F3AAB938B64A6EC2472FC2C1CBF3F7219", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.2.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Polly@7.2.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Emit.ILGeneration", - "SPDXID": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Emit.ILGeneration@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Management.Automation", - "SPDXID": "SPDXRef-Package-BEF799D6C49E27B8BA7EBAB371D28EC846DDA74F24BF0C17F527B7FAD829502F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Management.Automation@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.ProtectedData", - "SPDXID": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.ProtectedData@7.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Xml.ReaderWriter", - "SPDXID": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Xml.ReaderWriter@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime", - "SPDXID": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime@4.3.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.TypeExtensions", - "SPDXID": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.TypeExtensions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NET.Test.Sdk", - "SPDXID": "SPDXRef-Package-BD049C5100B248F06EBEC66C3BE118753E842489EC3E40AF36E080A56CF8286E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "16.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NET.Test.Sdk@16.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.InteropServices.RuntimeInformation", - "SPDXID": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.InteropServices.RuntimeInformation@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.InteropServices", - "SPDXID": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.InteropServices@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Win32.Registry.AccessControl", - "SPDXID": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Win32.Registry.AccessControl@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.CSharp", - "SPDXID": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.7.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.CSharp@4.7.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.Encodings.Web", - "SPDXID": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.Encodings.Web@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Algorithms", - "SPDXID": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Algorithms@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Web.WebView2", - "SPDXID": "SPDXRef-Package-FFBB38C681A9D9DB8597FA3F985E7D78BB1C4A8B8637487DA5C62A6B5EE0DAC5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.2903.40", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Web.WebView2@1.0.2903.40" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Buffers", - "SPDXID": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Buffers@4.5.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.OpenSsl@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Principal.Windows", - "SPDXID": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Principal.Windows@5.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO", - "SPDXID": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IdentityModel.Abstractions", - "SPDXID": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.14.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IdentityModel.Abstractions@8.14.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.Requests", - "SPDXID": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.Requests@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.StackTrace", - "SPDXID": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.StackTrace@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Azure.KeyVault.Cryptography", - "SPDXID": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Azure.KeyVault.Cryptography@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading.Tasks.Extensions", - "SPDXID": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading.Tasks.Extensions@4.5.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IdentityModel.Tokens.Jwt", - "SPDXID": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IdentityModel.Tokens.Jwt@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Win32.Primitives", - "SPDXID": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Win32.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration", - "SPDXID": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Xml.XPath", - "SPDXID": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Xml.XPath@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Primitives", - "SPDXID": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Primitives@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.PowerShell.Native", - "SPDXID": "SPDXRef-Package-98974C6C7FFEA0934A0B49276F784EF7433A314B8F4352E602465184EE7B9350", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.PowerShell.Native@6.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.Tracing", - "SPDXID": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.Tracing@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.Encoding.Extensions", - "SPDXID": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.Encoding.Extensions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.ComponentModel.Annotations", - "SPDXID": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.ComponentModel.Annotations@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Emit", - "SPDXID": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Emit@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IdentityModel.Logging", - "SPDXID": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IdentityModel.Logging@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Xml.XmlSerializer", - "SPDXID": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Xml.XmlSerializer@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Newtonsoft.Json", - "SPDXID": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "13.0.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Newtonsoft.Json@13.0.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Ic3.TenantAdminApi.Common.Helper", - "SPDXID": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.28", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Ic3.TenantAdminApi.Common.Helper@1.0.28" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.native.System.Net.Http", - "SPDXID": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.native.System.Net.Http@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO.Compression", - "SPDXID": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO.Compression@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Data.Sqlite", - "SPDXID": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Data.Sqlite@7.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NETCore.Platforms", - "SPDXID": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NETCore.Platforms@5.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Globalization.Extensions", - "SPDXID": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Globalization.Extensions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection", - "SPDXID": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IdentityModel.JsonWebTokens", - "SPDXID": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IdentityModel.JsonWebTokens@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging.Abstractions", - "SPDXID": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging.Abstractions@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Collections.Concurrent", - "SPDXID": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Collections.Concurrent@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", - "SPDXID": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client.Extensions.Msal", - "SPDXID": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.81.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client.Extensions.Msal@4.81.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "PowerShellStandard.Library", - "SPDXID": "SPDXRef-Package-B512828296F96786715767A9D629FA4E02BEACAC0CC0BE4A7A1CFF55AF155FB6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/PowerShellStandard.Library@5.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.CompilerServices.Unsafe", - "SPDXID": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.CompilerServices.Unsafe@6.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.Policy.Administration.Cmdlets.OCE", - "SPDXID": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.1.12", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.Policy.Administration.Cmdlets.OCE@0.1.12" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Formats.Asn1", - "SPDXID": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Formats.Asn1@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "SQLitePCLRaw.provider.dynamic_cdecl", - "SPDXID": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/SQLitePCLRaw.provider.dynamic_cdecl@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.Serialization.Xml", - "SPDXID": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.Serialization.Xml@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.ConfigAPI.CmdletHostContract", - "SPDXID": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.2.8", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.ConfigAPI.CmdletHostContract@3.2.8" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Pkcs", - "SPDXID": "SPDXRef-Package-96C6F4964A911ECC8415520C77654FAF06CF5E4E3529948D9A3EE44CAB576A1E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Pkcs@4.5.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Primitives", - "SPDXID": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "SPDXID": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.DependencyInjection.Abstractions@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Encoding", - "SPDXID": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Encoding@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Emit.Lightweight", - "SPDXID": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Emit.Lightweight@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "NuGet.Build.Tasks.Pack", - "SPDXID": "SPDXRef-Package-C5208AC43A9B8525DA67EA002836F84382F0C16587D945CE108125CDC4492B2A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/NuGet.Build.Tasks.Pack@5.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.Json", - "SPDXID": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.5", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.Json@8.0.5" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.Http", - "SPDXID": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.Http@4.3.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO.FileSystem.Primitives", - "SPDXID": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO.FileSystem.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.DirectoryServices", - "SPDXID": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.DirectoryServices@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Management", - "SPDXID": "SPDXRef-Package-2D315204EDF1805A0597A6B2DA6C5F35A222859A45FDEC22A15E70E4B966EEC2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Management@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Linq.Expressions", - "SPDXID": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Linq.Expressions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client.Desktop", - "SPDXID": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.81.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client.Desktop@4.81.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Private.DataContractSerialization", - "SPDXID": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Private.DataContractSerialization@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client.NativeInterop", - "SPDXID": "SPDXRef-Package-008E5E7FCBBA26C8A73113B4A7624F1DC2CD5CD76D35421D82EDC38DC94E6E6C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "0.19.4", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client.NativeInterop@0.19.4" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Applications.Events.Server", - "SPDXID": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Applications.Events.Server@1.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.Encoding", - "SPDXID": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.Encoding@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Cng", - "SPDXID": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Cng@5.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration.Binder", - "SPDXID": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration.Binder@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Collections", - "SPDXID": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Collections@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.Handles", - "SPDXID": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.Handles@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Linq", - "SPDXID": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Linq@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IdentityModel.Tokens", - "SPDXID": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IdentityModel.Tokens@8.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Xml.XmlDocument", - "SPDXID": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Xml.XmlDocument@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Primitives", - "SPDXID": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.PowerShell.TeamsCmdlets", - "SPDXID": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.6.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.PowerShell.TeamsCmdlets@1.6.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.CodeDom", - "SPDXID": "SPDXRef-Package-9BEFA8934C7016259385BFDA2906F038610220B7BCF08D5AA651BE6CB1541E51", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.CodeDom@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.Policy.Administration", - "SPDXID": "SPDXRef-Package-D20AD87424AA67B443E72A0F6BE0462BE2EDC83B09E847098FC677FEE919195C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "31.6.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.Policy.Administration@31.6.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Bcl.AsyncInterfaces", - "SPDXID": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Bcl.AsyncInterfaces@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration.Abstractions", - "SPDXID": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration.Abstractions@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO.FileSystem.AccessControl", - "SPDXID": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO.FileSystem.AccessControl@5.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Rest.ClientRuntime.Azure", - "SPDXID": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.3.19", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Rest.ClientRuntime.Azure@3.3.19" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading.Thread", - "SPDXID": "SPDXRef-Package-EB28CDD241D6CCBF0718B9E555251C41DF66A198C6ECC693D09211542C656620", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading.Thread@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Memory", - "SPDXID": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.5", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Memory@4.5.5" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Azure.KeyVault.Jose", - "SPDXID": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Azure.KeyVault.Jose@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Management.Automation", - "SPDXID": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.2.7", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Management.Automation@6.2.7" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.ValueTuple", - "SPDXID": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.ValueTuple@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.AspNetCore.App.Ref", - "SPDXID": "SPDXRef-Package-960414DA8719C10D04651A042C6327736F11D52FA2FCB8501240FBA2B4B8FA57", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.10", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.AspNetCore.App.Ref@3.1.10" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "NuGet.CommandLine", - "SPDXID": "SPDXRef-Package-33B1D8F98040445C1C019996980972FB5A3DA85A789108E0440ED021F416AB88", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.11.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/NuGet.CommandLine@5.11.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.Csp", - "SPDXID": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.Csp@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client", - "SPDXID": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.81.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client@4.81.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Newtonsoft.Json.Schema", - "SPDXID": "SPDXRef-Package-4253C15F4CFBF421ED9475A1ECC51B7D5AB8AAFB29FAA89F5A7CAD36B3E238BF", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.11", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Newtonsoft.Json.Schema@3.0.11" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.Sockets", - "SPDXID": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.Sockets@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO.Compression.ZipFile", - "SPDXID": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO.Compression.ZipFile@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Xml.XDocument", - "SPDXID": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Xml.XDocument@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "SPDXID": "SPDXRef-Package-85FB27F5A68228D1E9331D9E7057200D9845B178A51F7F40560E070D910A3E78", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.WindowsDesktop.App.Ref@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Configuration.ConfigurationManager", - "SPDXID": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Configuration.ConfigurationManager@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging.Configuration", - "SPDXID": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging.Configuration@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.CompilerServices.VisualC", - "SPDXID": "SPDXRef-Package-74783B1098990678258F1B4E741A3CAF2954BDB52AB144B4550E60FBB11A594C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.CompilerServices.VisualC@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "SQLitePCLRaw.core", - "SPDXID": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/SQLitePCLRaw.core@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging", - "SPDXID": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Globalization.Calendars", - "SPDXID": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Globalization.Calendars@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.DiagnosticSource", - "SPDXID": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.DiagnosticSource@6.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Identity.Client.Broker", - "SPDXID": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.81.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Identity.Client.Broker@4.81.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging.Console", - "SPDXID": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging.Console@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.Serialization.Primitives", - "SPDXID": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.Serialization.Primitives@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading.Tasks", - "SPDXID": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading.Tasks@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.native.System.Security.Cryptography.Apple", - "SPDXID": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.native.System.Security.Cryptography.Apple@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.AccessControl", - "SPDXID": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.AccessControl@5.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Rest.ClientRuntime", - "SPDXID": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.3.21", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Rest.ClientRuntime@2.3.21" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration.Abstractions", - "SPDXID": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration.Abstractions@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "NJsonSchema", - "SPDXID": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "10.6.6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/NJsonSchema@10.6.6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading", - "SPDXID": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.ConfigAPI.Cmdlets", - "SPDXID": "SPDXRef-Package-20973EB4A512F795D0CAD96B6B985175AC5B76AF8DF4EF776E09F9BE87EC9DDD", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "9.514.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.ConfigAPI.Cmdlets@9.514.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.X509Certificates", - "SPDXID": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.X509Certificates@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.native.System.IO.Compression", - "SPDXID": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.native.System.IO.Compression@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Ev2.PipeGen", - "SPDXID": "SPDXRef-Package-F1B6BB0BB534A7DBDD941A4FC083166529EB0E4AE0436D03BF9A19DF39568682", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.9.3116.14", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Ev2.PipeGen@3.9.3116.14" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.PowerShell.CoreCLR.Eventing", - "SPDXID": "SPDXRef-Package-2BD1526E06B0F242413706B6514589398B1723F2A354DCCBF1BCCF210693E051", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.2.7", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.PowerShell.CoreCLR.Eventing@6.2.7" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Azure.KeyVault.AzureServiceDeploy", - "SPDXID": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Azure.KeyVault.AzureServiceDeploy@3.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "YamlDotNet", - "SPDXID": "SPDXRef-Package-E9A7D272BEB1E5E7E2F201094675F616632FBFBDCBC919F56E63E2050698EFEA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "16.2.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/YamlDotNet@16.2.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IC3.IaC.ServiceTopology", - "SPDXID": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.38.0-beta0.dev6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IC3.IaC.ServiceTopology@1.38.0-beta0.dev6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.SecureString", - "SPDXID": "SPDXRef-Package-556E04674AB21C6E689B621B54F3C112DD3673B2C5F20B63EE80559940B575CD", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.SecureString@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Options", - "SPDXID": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.2.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Options@2.2.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading.ThreadPool", - "SPDXID": "SPDXRef-Package-6B07767B8D24067A9C860F27DE2655663A6187C7DCB86797C0F07D5D2827293E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading.ThreadPool@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging.Abstractions", - "SPDXID": "SPDXRef-Package-97BC400C410A127EA0A6F1E477C40574387AA14FF569FF0CFC3D1E557EF6B346", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging.Abstractions@8.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.native.System", - "SPDXID": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.native.System@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.IO.FileSystem", - "SPDXID": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.IO.FileSystem@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Collections.Immutable", - "SPDXID": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Collections.Immutable@1.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Primitives", - "SPDXID": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Primitives@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.Primitives", - "SPDXID": "SPDXRef-Package-4A772E41F4A6EAB3FE426188D806207AA324762A1E8660E13FE72401D48FAA62", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.0.11", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.Primitives@4.0.11" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "EV2.ArtifactsGenerator", - "SPDXID": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.13.3069.1548", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/EV2.ArtifactsGenerator@6.13.3069.1548" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "SPDXID": "SPDXRef-Package-D45E310E2C14FFDECCB77BD34DCB98F27CC8FD0868B7FC5852809E9398F9DBBB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.DependencyInjection.Abstractions@8.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Data.Sqlite.Core", - "SPDXID": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Data.Sqlite.Core@7.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NETCore.Platforms", - "SPDXID": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NETCore.Platforms@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.RegularExpressions", - "SPDXID": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.RegularExpressions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IC3.Resilience.ResilientAKV", - "SPDXID": "SPDXRef-Package-40690A07BFA5376B7B03E215586CF3C2EB068AC0A65919F6944423643354D09C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.38.0-beta0.dev6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IC3.Resilience.ResilientAKV@1.38.0-beta0.dev6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.Tools", - "SPDXID": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.Tools@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "EV2.ArtifactsGenerator.M365", - "SPDXID": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.13.3069.1548", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/EV2.ArtifactsGenerator.M365@6.13.3069.1548" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Configuration.ConfigurationManager", - "SPDXID": "SPDXRef-Package-B3D5F30C6F4C897DA31933117BFB391A9177287CC31D26072129972E47E06996", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Configuration.ConfigurationManager@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IC3.IaC.ServiceTopologyDataConnector", - "SPDXID": "SPDXRef-Package-87282A7A87A76DE572F9692A8F47DBB1F03CF570E45C9FC0B0310E8D6478FE19", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.38.0-beta0.dev6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IC3.IaC.ServiceTopologyDataConnector@1.38.0-beta0.dev6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Reflection.Extensions", - "SPDXID": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Reflection.Extensions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "EV2.ArtifactsGenerator.Stubs", - "SPDXID": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.13.3069.1548", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/EV2.ArtifactsGenerator.Stubs@6.13.3069.1548" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Polly.Contrib.WaitAndRetry", - "SPDXID": "SPDXRef-Package-65F3BB807AF49E7AD397E2DCDE7E8152B0F742044FF2ABFB7B8136F4D77F3E3D", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Polly.Contrib.WaitAndRetry@1.1.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NETCore.Targets", - "SPDXID": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NETCore.Targets@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.IC3.Resilience.ResilientATM", - "SPDXID": "SPDXRef-Package-4E51A8116E7C39A9C87837BD3B1C17B8322CEA23323DD29B2E41173CD8E4D5B7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.38.0-beta0.dev6", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.IC3.Resilience.ResilientATM@1.38.0-beta0.dev6" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "EV2.ArtifactsGenerator.Arm", - "SPDXID": "SPDXRef-Package-A55FFA0033D6824E362612DD7487681403BD255B228F8228120800797DDBF595", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "6.13.3069.1548", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/EV2.ArtifactsGenerator.Arm@6.13.3069.1548" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.M365.ConfigManagement.SAGE", - "SPDXID": "SPDXRef-Package-2EB7C341BA0E8C29E8E7D403BD2E1AC0BF0D499083C5EA6C264531D44D1DB591", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.0.3", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.M365.ConfigManagement.SAGE@3.0.3" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Management.Infrastructure", - "SPDXID": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Management.Infrastructure@1.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Text.Encoding.CodePages", - "SPDXID": "SPDXRef-Package-E389C196CC3B31F9F0F95EF8A726F64453E62013B00C3C8B8C248EA8F581C52E", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Text.Encoding.CodePages@4.5.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.DependencyInjection", - "SPDXID": "SPDXRef-Package-50552D21DF380D2099AFC1BBDC3E90D648B6A631AC6A5912BB03D103DBD4C61F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.DependencyInjection@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "ncrontab.signed", - "SPDXID": "SPDXRef-Package-0699C5B5BDA6C36E045C7CF5007C875DB68042CC8C566010576A760C9A8836BA", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/ncrontab.signed@3.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Diagnostics.EventLog", - "SPDXID": "SPDXRef-Package-E74BE45208CF0E8CC846214160452E430DEA41E9714DB021F198D887076066F1", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Diagnostics.EventLog@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Permissions", - "SPDXID": "SPDXRef-Package-422B168409BFFB6195EFFC810AEE94179F01C0BEFB6D8F78809CB9B8E5990035", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Permissions@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.Extensions", - "SPDXID": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.Extensions@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Teams.Policy.Administration.Configurations", - "SPDXID": "SPDXRef-Package-B421A049D84918A1509D87157C10713A7AB4A5875825A80B6DEA4A96C3685E82", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "12.2.29", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Teams.Policy.Administration.Configurations@12.2.29" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.NETCore.Targets", - "SPDXID": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "1.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.NETCore.Targets@1.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Options.ConfigurationExtensions", - "SPDXID": "SPDXRef-Package-E66C6C3453F877C7645FD43F03250C16CF932A10D88048D6D91237A3B0CD7D79", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Options.ConfigurationExtensions@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration.Binder", - "SPDXID": "SPDXRef-Package-FA6524D4327177392F48D12F631FFB032EB1A9664E0130A4D5FC2DF650DAF25A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration.Binder@8.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime.Numerics", - "SPDXID": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime.Numerics@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "SQLitePCLRaw.provider.e_sqlite3", - "SPDXID": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.1.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/SQLitePCLRaw.provider.e_sqlite3@2.1.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Security.Cryptography.ProtectedData", - "SPDXID": "SPDXRef-Package-01FBE39297615D5615DCAF2AB4E213D489A90F4CC6E7CAA4E1F22CC76BA02C6A", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Security.Cryptography.ProtectedData@8.0.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Threading.Timer", - "SPDXID": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Threading.Timer@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Options", - "SPDXID": "SPDXRef-Package-38EB9C1270DDB3C49EB53BA52C164FE55D40DE5425BDD41EA43CAF4CEE32F946", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Options@8.0.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Runtime", - "SPDXID": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Runtime@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Numerics.Vectors", - "SPDXID": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.5.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Numerics.Vectors@4.5.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "EV2.ArtifactsGenerator.Arm.CodeGen", - "SPDXID": "SPDXRef-Package-19657174A611A55D249468976305B5C48B4BCB2F4799785E382B139741337943", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "7.0.2775.279", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/EV2.ArtifactsGenerator.Arm.CodeGen@7.0.2775.279" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "FluentValidation", - "SPDXID": "SPDXRef-Package-D575E218E1AD9C06A5DB8DB369BA731FF160790530E672CE197C7A756E60F275", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.6.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/FluentValidation@8.6.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Bcl.TimeProvider", - "SPDXID": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Bcl.TimeProvider@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Logging", - "SPDXID": "SPDXRef-Package-516B1175E3D416CA4328C97F94B8F3B3E28B0CB287494AAD09779F55F1DD33B5", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "8.0.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Logging@8.0.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Namotion.Reflection", - "SPDXID": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "2.0.9", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Namotion.Reflection@2.0.9" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "SPDXID": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.2", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.2" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Net.WebHeaderCollection", - "SPDXID": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Net.WebHeaderCollection@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.ObjectModel", - "SPDXID": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.ObjectModel@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.Extensions.Configuration", - "SPDXID": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "3.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.Extensions.Configuration@3.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.Dynamic.Runtime", - "SPDXID": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.Dynamic.Runtime@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Castle.Core", - "SPDXID": "SPDXRef-Package-C6794715F4D3BB5F1392158FD713732FBB3814F34B6E0A7BB46F8C3FF448143C", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "5.1.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Castle.Core@5.1.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "Microsoft.CSharp", - "SPDXID": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.3.0", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/Microsoft.CSharp@4.3.0" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "System.ComponentModel.Annotations", - "SPDXID": "SPDXRef-Package-6C4A577336DCEC1BFF078EE13466E604E8E8E1BCFDF5260E7493C92E8A3CB3D8", - "downloadLocation": "NOASSERTION", - "filesAnalyzed": false, - "licenseConcluded": "NOASSERTION", - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "4.4.1", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:nuget/System.ComponentModel.Annotations@4.4.1" - } - ], - "supplier": "NOASSERTION" - }, - { - "name": "infrastructure_itpro_teamspowershellmodule", - "SPDXID": "SPDXRef-RootPackage", - "downloadLocation": "NOASSERTION", - "packageVerificationCode": { - "packageVerificationCodeValue": "956400383850827f40451b2b5798e3be3a19b4fb" - }, - "filesAnalyzed": true, - "licenseConcluded": "NOASSERTION", - "licenseInfoFromFiles": [ - "NOASSERTION" - ], - "licenseDeclared": "NOASSERTION", - "copyrightText": "NOASSERTION", - "versionInfo": "77861064", - "externalRefs": [ - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:swid/Microsoft/sbom.microsoft/infrastructure_itpro_teamspowershellmodule@77861064?tag_id=b4bc3da2-4184-4f9b-802a-4cf5fb5574ce" - } - ], - "supplier": "Organization: Microsoft", - "hasFiles": [ - "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Broker.dll-43BC6036CBB26DE7272DFDF0002C9C78C33C980B", - "SPDXRef-File--net472-System.Text.Json.dll-285A99D29F66CFBF55F79110738A3F8902A63D68", - "SPDXRef-File--netcoreapp3.1-runtimes-win-arm64-native-msalruntime-arm64.dll-B4066FA73ACFC594AE146AF61E56EFEDEC605408", - "SPDXRef-File--netcoreapp3.1-System.Management.dll-A942654DD75175663D23BAEC669F89E1000D1604", - "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.batteries-v2.dll-F828337A4CE225A7E0D67240CFF10CF9503BF39F", - "SPDXRef-File--netcoreapp3.1-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-BDD5BF9BBE152A44EB11D675A320FBAEB6DC9C45", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll-7EC92D06F7FF64C7F3FC950EDB098379FCD69F3A", - "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Tokens.dll-3B228D25D8C546C6D70B5C112E18F18E8092B67B", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.Binder.dll-A4E0F70802D6413D4DEAD5CC46EE174485F3C4EE", - "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Core.dll-0546BC20ACF1B5EB84C2F7F47BF9494CD8F2B9AF", - "SPDXRef-File--net472-runtimes-win-x64-native-WebView2Loader.dll-8269F0DECAFCD9B81B9E61D09A293B3B25B869E9", - "SPDXRef-File--net472-System.Management.Automation.dll-9EBB56872F7271C9FCC32B128F7A2E94DDB9A79B", - "SPDXRef-File--net472-SQLitePCLRaw.core.dll-CA42BF6ABFAE26EDB8D1D94E0E07F2AF55DCE7DC", - "SPDXRef-File--net472-Microsoft.Web.WebView2.Core.dll-FFF71CE96D90BB7FE79B563F4340C50AED6809DE", - "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll-7F52BF4A3B5E10797CB2F29E30B81BC29220E94D", - "SPDXRef-File--net472-Microsoft.IdentityModel.Tokens.dll-811381A87693C651988FB2B8436B259FFE4A2D11", - "SPDXRef-File--net472-Microsoft.Identity.Client.Broker.dll-7AE318636BEBF14BF1C8D654A1C223842372B0BD", - "SPDXRef-File--net472-Microsoft.Extensions.Configuration.Binder.dll-A4E0F70802D6413D4DEAD5CC46EE174485F3C4EE", - "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Core.dll-3E2E489B8284761B91B8803422D283E5CAD645DE", - "SPDXRef-File--en-US-MicrosoftTeams-help.xml-C8D608910D1FF169B99E0C44A93F115BCADAB04D", - "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.Cmdlets.private.dll-6BAA759BA0279F186EBF1A0AB90B372EEB9E0592", - "SPDXRef-File--netcoreapp3.1-System.Security.AccessControl.dll-8E22A6A48230644A1F92188531CD5C7328FE141D", - "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.provider.e-sqlite3.dll-B002FD7A2C4E00D588D61F4DEB3DAFB2BEA0C575", - "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.WinForms.dll-D5DFA91290D92D915643AC4F9C802D1353DF5573", - "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.TimeProvider.dll-F90D2E4191072554D854691990ACAA8B3E31910F", - "SPDXRef-File--netcoreapp3.1-Microsoft.ApplicationInsights.dll-1D39498E317C765A93D5BD0FA4A2743B7E60D8F1", - "SPDXRef-File--net472-runtimes-win-arm64-native-WebView2Loader.dll-3A699FE0425EA4419CC0468FF21668BEF508225D", - "SPDXRef-File--netcoreapp3.1-System.Management.Automation.dll-BD695FF49B4EBEE39DE912FFD0CCC1BAB39B02A0", - "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.Wpf.dll-4684CB6007053FCDF5B96BD6AA7B531184353D1D", - "SPDXRef-File--netcoreapp3.1-Microsoft.Ic3.TenantAdminApi.Common.Helper.dll-9A5C91091494220316C7FACD90E0E8E5753DCFF1", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.Abstractions.dll-2D33D471067B84C0D1A7D01C03DE1A7764D3BCE3", - "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.AzureServiceDeploy.dll-F9BE29510A6F81AB477126F87CA063DC86646B2B", - "SPDXRef-File--net472-runtimes-win-x64-native-msalruntime.dll-CCE6FEBDB63AF45C43FD5CD8E41DFD7A3CC4C0D0", - "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Extensions.Msal.dll-3F49891D4F655703D28040D99DF390872912D5FA", - "SPDXRef-File--custom-CmdletConfig.json-03B0F581BF4FEB7C04CF56800C2A7CE2B4F413A3", - "SPDXRef-File--bin-BrotliSharpLib.dll-69F8F0F6B23A28B5574FA6D3C56144C33802C96D", - "SPDXRef-File--net472-Microsoft.Bcl.AsyncInterfaces.dll-CE95C8D2E9467C7A25596EADE83DA4293012B9EA", - "SPDXRef-File--bin-Microsoft.IdentityModel.JsonWebTokens.dll-893E041EE3B4B557FE7F760AACB79C4AF65A0E03", - "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.psd1-AFD106CC91229EA6BB1B5546BCB67D169DDF2302", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreRecordingRollOutPolicy.format.ps1xml-06AD726144D5A070183F97898D06FEB9A6D07F53", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TenantConfiguration.format.ps1xml-7CDED0C6E62B251DCFC9BC19C4538D23FD83F487", - "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml-98FB01D72EBCC9822A8F2D2B371A67F5EB68FFD9", - "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.xml-B40B1B3405682B53B75CCB134EF2E9EF79840F6D", - "SPDXRef-File--netcoreapp3.1-System.IO.FileSystem.AccessControl.dll-9C7CC9DD8FAEDADA55866E9510063EC55569480C", - "SPDXRef-File--net472-System.Formats.Asn1.dll-E6FB009837E632D7A2F187AB238CD67F51FD190F", - "SPDXRef-File--net472-Polly.Contrib.WaitAndRetry.dll-8D6BDA2AFBA6224021333EE190A8F8DCD9831E4A", - "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "SPDXRef-File--net472-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-EBD53D122CE1300D7A228013BF400DB12B619716", - "SPDXRef-File--net472-Microsoft.Bcl.TimeProvider.dll-8050339042462F4CFDD191031A3369FC79A183B4", - "SPDXRef-File--en-US-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml-48967089F87BFFBD464D5F3755182A8854204BC7", - "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.JsonWebTokens.dll-22E95BD9D7F502F09E4469869BFD7ECB5E922230", - "SPDXRef-File--netcoreapp3.1-Microsoft.Data.Sqlite.dll-74E236DF914D5A9A663699E167D42F8CB2AE07C5", - "SPDXRef-File--netcoreapp3.1-System.Runtime.CompilerServices.Unsafe.dll-3584ECA62B318CA3C21A4E343B96E083584C631A", - "SPDXRef-File--netcoreapp3.1-SQLitePCLRaw.core.dll-CA42BF6ABFAE26EDB8D1D94E0E07F2AF55DCE7DC", - "SPDXRef-File--netcoreapp3.1-Microsoft.Web.WebView2.Core.dll-C086611A6FA64CF01F8B71CF90ECDB38DA0E8F89", - "SPDXRef-File--net472-runtimes-win-x64-native-e-sqlite3.dll-5D191FA41338C17AC5C652F8BEE78888A55C12B9", - "SPDXRef-File--netcoreapp3.1-System.Formats.Asn1.dll-416B0C4DEED6B46F9D69E29FBDFAE4225A900214", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Configuration.dll-C75BFF35C71267761E351AFC5778E8B8CE0DD2A4", - "SPDXRef-File--netcoreapp3.1-Newtonsoft.Json.dll-6DA2C0F98F682DB041FF719A5B96F735B204ADD3", - "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Cryptography.dll-A99D3945BF179C0B7C58986BA40FEC3CEFC32B2E", - "SPDXRef-File--netcoreapp3.1-Polly.dll-0A16485C831900BFB44BAE1E7DEF5E0090B0CFFA", - "SPDXRef-File--netcoreapp3.1-System.Security.Cryptography.Cng.dll-A10454E271FD59DC3E042267A4BB89A53E613F5B", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll-ECC6F121C121B9E6CC7E9C292054FC5BF0BB7463", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.dll-8D02D93567D101D79F748677C1F450899456DF33", - "SPDXRef-File--netcoreapp3.1-Microsoft.Rtc.Management.Acms.EntityModel.dll-23A58AD8D8B56ED0682E0E90F1A55E7645ED384F", - "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.NativeInterop.dll-21DF323C7EFB42403BE070CB71D4FEF704E3B217", - "SPDXRef-File--net472-Microsoft.Extensions.DependencyInjection.Abstractions.dll-D41541381215BB391A8DBB35515E98F9D4EAA085", - "SPDXRef-File--net472-Microsoft.IdentityModel.JsonWebTokens.dll-551CFA9344A0DB3B7F17005ADA5AD2524AE403CD", - "SPDXRef-File--net472-Microsoft.Data.Sqlite.dll-74E236DF914D5A9A663699E167D42F8CB2AE07C5", - "SPDXRef-File--net472-System.IO.FileSystem.AccessControl.dll-A6FCEFD3A87A8D79BFB05D3513FF176A172ABE74", - "SPDXRef-File--net472-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-6ED76FFD42FD3B11FA0477EF5BEB518FFBE6B918", - "SPDXRef-File--net472-OneCollectorChannel.dll-017A18B3C291A61DC4914D2CE9262681BAF66693", - "SPDXRef-File--SfbRpsModule.format.ps1xml-6B1BFA84C1A3BD1CB5CF5FF7CF28BF8EE730B4BA", - "SPDXRef-File--Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Jose.dll-99E8E2F33F86D04F717A52D499402C4C4A237622", - "SPDXRef-File--custom-Merged-custom-PsExt.ps1-F7AF4980B20DD28AE15C5DBBD5B7249B881DEB81", - "SPDXRef-File--net472-System.Text.Encodings.Web.dll-24B2717FB5DDE5065B9432233ED0B264387C2B75", - "SPDXRef-File--bin-System.IdentityModel.Tokens.Jwt.dll-190C8332A20024E5D86873C303EDDD2CE10E4ECF", - "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.pdb-0C57AD93939A8177648CA13A53379A2A4ED3776A", - "SPDXRef-File--net472-Microsoft.Rtc.Management.Acms.EntityModel.dll-EA0552B188E81697650622B829C7173798F75700", - "SPDXRef-File--net472-Microsoft.Identity.Client.NativeInterop.dll-1640E14C0AAE53A2BFA52C54FC541A1DDC518B7F", - "SPDXRef-File--net472-Microsoft.Ic3.TenantAdminApi.Common.Helper.dll-9A5C91091494220316C7FACD90E0E8E5753DCFF1", - "SPDXRef-File--net472-Microsoft.Extensions.Configuration.Abstractions.dll-665B76385D009F8C92A8C25975433BAA87F3C634", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.psd1-17FFC1A92EB505F3DA265A06014E7F6B64D870D2", - "SPDXRef-File--net472-Microsoft.Azure.KeyVault.AzureServiceDeploy.dll-B1830D2DF82A343694AA0E6974F835BE8B68A66E", - "SPDXRef-File--MicrosoftTeams.psd1-0C138942995EC744D90646D9B712F713517B9981", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.psd1-D99C624620B7A7BAA87541C2FAA5EFDAD970C4D5", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CorePersonalAttendantPolicy.format.ps1xml-AC2751FAB183B7E16FA60E58CB94986BC7F2D319", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreAIPolicy.format.ps1xml-43D1FE924284BC6F8C5FFC2ED9A421B0D822BFD4", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMeetingConfiguration.format.ps1xml-7FCF058D856A4A8502D8F5F77AF363B013EF119F", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsSipDevicesConfiguration.format.ps1xml-BB3533E74BF0D34B82FA0A5E0A1BFE3E102F29EC", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.preview.psd1-1B27E475819F6D0ED072F456A9DF1109C2B269A6", - "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.custom.format.ps1xml-90EB58E597610ECDFDBF141BC606D277F135A9C0", - "SPDXRef-File--en-US-Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml-FEFA595D1ECC65F8818C1A38F2BFEE3CF7E0575E", - "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json-58AB9EB77D02D736BD758F9105634F4FAE08C39B", - "SPDXRef-File--MicrosoftTeams.psm1-E9F40BF22FEAC976D1C79CEB52559C2284C3C061", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.psm1-AFCACA2072D8D7580854D227373B3948B2BA46C2", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreAudioConferencing.format.ps1xml-393E4EABF163F477335FE75D05FECF4D58B73371", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMigrationConfiguration.format.ps1xml-5F97356FBC3C16A5F53968660865677045129370", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.oce.psd1-4BD93678C7661EC78A74469498A08CFA5AB8BD86", - "SPDXRef-File--netcoreapp3.1-Microsoft.Rest.ClientRuntime.Azure.dll-56972B6F438563DEC79DEAE4FCBFB68573698B40", - "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.dll-C83F4D2E881397AC2A89386B651ADDBF1DA51C0E", - "SPDXRef-File--netcoreapp3.1-Microsoft.Azure.KeyVault.Jose.dll-FDAFD690CB1AC9C994F202D42D547FC65DD64C09", - "SPDXRef-File--netcoreapp3.1-OneCollectorChannel.dll-017A18B3C291A61DC4914D2CE9262681BAF66693", - "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Abstractions.dll-B9631BB0507EE55C8B656F4DD9AEC286DF238166", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Options.dll-39A12A71B36FC770A6861E8FD853DFB4909C18DC", - "SPDXRef-File--netcoreapp3.1-System.Text.Encodings.Web.dll-937BD8A82DA6B42C38D2F8D3DCF31202F67CF36F", - "SPDXRef-File--net472-System.Security.Cryptography.ProtectedData.dll-E3AF9A63764B23E5D8D35C2CF589C23BC47BF8E9", - "SPDXRef-File--net472-System.ValueTuple.dll-F8AC40E6934E355D47184EB306AC9DF85CEED1D6", - "SPDXRef-File--net472-System.Numerics.Vectors.dll-15F1EF098EC6598D3E10159B4F1436629F93F763", - "SPDXRef-File--net472-System.Buffers.dll-1BA302D9E8A283E93EAF054BC619B9D65CC06B07", - "SPDXRef-File--net472-Microsoft.Web.WebView2.Wpf.dll-D93F593CC2A962D37F72D545AA511575D536AA6A", - "SPDXRef-File--netcoreapp3.1-Microsoft.Applications.Events.Server.dll-CAA1D2CA261D0246798E2A57382A473D46ED1640", - "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.dll-18018A13914258C05CA26314B6F250F441E8C712", - "SPDXRef-File--net472-Microsoft.Rest.ClientRuntime.Azure.dll-73AEFE1ED13A582629745455415AA8E2AA6A7890", - "SPDXRef-File--net472-Microsoft.Identity.Client.dll-D8E68178AD96A18CE47FA04A7BAE523E5A124A48", - "SPDXRef-File--netcoreapp3.1-System.Text.Json.dll-F8B9032DA0D3C3DDF3CD44EF223BF0F35AFDB96F", - "SPDXRef-File--SetMSTeamsReleaseEnvironment.ps1-7C85E4F6A95D503DDF5BC20487DB3D0841F936D2", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.xml-56E8BFB9F020ADF074710972F5AFD1B1CED156FD", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreBYODAndDesksPolicy.format.ps1xml-F5EE940AF0B70FB5F04A9AC3C94816B990B02E9F", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsMultiTenantOrganizationConfiguration.format.ps1xml-5D436787F2E0059F3AAC1ACAAD6EAAE9E42DC94E", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineDialinConferencing.format.ps1xml-01205EEC3FEE19AE754913E53C3E602139B1294D", - "SPDXRef-File--GetTeamSettings.format.ps1xml-221D345FF5B6EA9531E16650A5933275BD99F436", - "SPDXRef-File--net472-runtimes-win-x86-native-e-sqlite3.dll-3BB48E54C65E348A6F4D1FC2541C0CDD8515F099", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-229F9F6F90E6AA5F5B4FA84E09C39E4E628BCA96", - "SPDXRef-File--netcoreapp3.1-Microsoft.Rest.ClientRuntime.dll-04B89EBA96301340E1C3F724FA3B97B612CFA49F", - "SPDXRef-File--internal-Merged-internal.ps1-20B16F82EB3AB9F1E2D230ADF6BA780A7B883C76", - "SPDXRef-File--net472-System.IdentityModel.Tokens.Jwt.dll-F3A2B78B93246C914D67BDBBF315D0CDA9E4C206", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Logging.Abstractions.dll-7D9D3DFB7FA7D901C838CE4612A5BF13CE7EF441", - "SPDXRef-File--net472-runtimes-win-x86-native-WebView2Loader.dll-AD45EACCBF72DE769EB3C1928A4150734EB48CE0", - "SPDXRef-File--net472-System.Threading.Tasks.Extensions.dll-8DCCFB99CF7D247346ADFB73D9CBCEE5B3233A36", - "SPDXRef-File--net472-System.Memory.dll-ADC9A7F0A69711A826F23439E1C0547103630D07", - "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-2592B322DD66FA3F39822AA6BE21C83B822C6A0F", - "SPDXRef-File--net472-Microsoft.Identity.Client.Desktop.dll-7DC8632A23C716AA61CDDC3E534D956F6A36CB51", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.format.ps1xml-F12CACDE4C6233B7690239FBB2FDD188579F4338", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreMediaConnectivityPolicy.format.ps1xml-90557469793DE4EA232313FD9C8D566B1B64BAAE", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsRoutingConfiguration.format.ps1xml-727399508AB3CCE70B9C6E6579102E6DBBB0BF99", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.OnlineVoicemail.format.ps1xml-D3FDDB0A5FD354410739EE97E022CBB9E41C9D47", - "SPDXRef-File--LICENSE.txt-AB40082210620A2914D58B309A048459E784E962", - "SPDXRef-File--netcoreapp3.1-System.Security.Cryptography.ProtectedData.dll-DBD0A22037288048EC19E6E53F5968168B1FA357", - "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.Memory.dll-8DA4BF4997A6F6DF47A37EC71DCBB92D587751B9", - "SPDXRef-File--netcoreapp3.1-CmdletSettings.json-98919B572DB8494892B52408CD0FE23531388E32", - "SPDXRef-File--net472-runtimes-win-arm64-native-msalruntime-arm64.dll-B4066FA73ACFC594AE146AF61E56EFEDEC605408", - "SPDXRef-File--netcoreapp3.1-Microsoft.Bcl.AsyncInterfaces.dll-916AD45FB84C72AB2F049DEE52E93FB832A4D48C", - "SPDXRef-File--net472-runtimes-win-arm-native-e-sqlite3.dll-9C6F67C5197A2C1786B310CA5AD3EA20199B845E", - "SPDXRef-File--net472-SQLitePCLRaw.provider.dynamic-cdecl.dll-483778CDF63907548E858E81E6B9E7E17DE3F712", - "SPDXRef-File--net472-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-E58708ED13C19177831E84B922F5671BBACD5E6D", - "SPDXRef-File--net472-Microsoft.Web.WebView2.WinForms.dll-BAAB6C096B33456B7E5BD16DF0F9589E567732BE", - "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll-2BF0E3E16494481357FEA9A34CFA2D59180A2F95", - "SPDXRef-File--net472-Microsoft.Internal.AntiSSRF.dll-B33A3E902E75E3057E113AC8E86033A16201F17D", - "SPDXRef-File--net472-Newtonsoft.Json.dll-DB06F4AB7804BB034013D3B6C5DE73406D1DC3DE", - "SPDXRef-File--net472-Microsoft.Extensions.Logging.Abstractions.dll-7D9D3DFB7FA7D901C838CE4612A5BF13CE7EF441", - "SPDXRef-File--net472-Microsoft.Extensions.Primitives.dll-3E7D7832538447A5E96DD7EE9D666B2FDD5714ED", - "SPDXRef-File--en-US-Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml-43033E504F16A2D37A94A8B0AF9E5D772F44EA8B", - "SPDXRef-File--net472-Microsoft.IdentityModel.Logging.dll-5871C81F013C6291891E0D62356AD55AEF14CD2B", - "SPDXRef-File--net472-Microsoft.Extensions.Logging.dll-0F4C03A61B0F7EED635DCC3DD23D87F045BE2542", - "SPDXRef-File--bin-Microsoft.IdentityModel.Tokens.dll-2E7877B9106C2E6D988650EC12E5B9A1D7CEA645", - "SPDXRef-File--net472-Microsoft.Bcl.Memory.dll-F53F85584C2F22623A928D0F5F1385BCA76E9692", - "SPDXRef-File--bin-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-4C269A3FA28A4A8A213EFF94B97E2BE817E6B04D", - "SPDXRef-File--net472-CmdletSettings.json-98919B572DB8494892B52408CD0FE23531388E32", - "SPDXRef-File--custom-Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1-261147D26BB1861AEC16598D37E072984FA3F06D", - "SPDXRef-File--bin-Microsoft.IdentityModel.Logging.dll-A8394F8CB30171C7B73315F5F85F639C3C1CB45F", - "SPDXRef-File--Microsoft.Teams.PowerShell.TeamsCmdlets.psm1-D32AAAB63ACAD91BF397D5AD71B67E478A0591FE", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreVirtualAppointmentsPolicy.format.ps1xml-416C25B7A3CA0191608D22D61445151DE1E24322", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.VoicemailConfig.format.ps1xml-147147A04EDB1134407908A81CC41795E66D241B", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.psm1-1BB35417280E4864B57ED04424E9C909DB6FEC37", - "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.psd1-BE057B5CDC1AC66DFB00C1E1F9F02EAA0D43BAEC", - "SPDXRef-File--netcoreapp3.1-runtimes-win-x86-native-msalruntime-x86.dll-13BC089AE19F012B9B6DCA332671667CD3AB5D93", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.dll-9A921D466088D2AAAE77F4E5AEB31C1F684FE578", - "SPDXRef-File--netcoreapp3.1-runtimes-win-x64-native-msalruntime.dll-CCE6FEBDB63AF45C43FD5CD8E41DFD7A3CC4C0D0", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.DependencyInjection.Abstractions.dll-D41541381215BB391A8DBB35515E98F9D4EAA085", - "SPDXRef-File--net472-runtimes-win-x86-native-msalruntime-x86.dll-13BC089AE19F012B9B6DCA332671667CD3AB5D93", - "SPDXRef-File--netcoreapp3.1-System.Security.Principal.Windows.dll-6EC09133FD4C1BD747B41E59B77CFCF4B3B66DAE", - "SPDXRef-File--netcoreapp3.1-System.IdentityModel.Tokens.Jwt.dll-9F62957084D6E53EC82176FE21090BB983AABC46", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.pdb-0D752097DFC79029B8C687EB7CFE6DFA669AA0D0", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.ConfigAPI.CmdletHostContract.dll-EBD53D122CE1300D7A228013BF400DB12B619716", - "SPDXRef-File--netcoreapp3.1-Polly.Contrib.WaitAndRetry.dll-217D1DA5C8A7BDF06B3A88715E7EA42FB3075EBB", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.xml-EB2B86D36ADE4E37542F46AC4AF2A0E81087E582", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-EC491FBC4F6373314DD76E2EA023F1C5D5CE529E", - "SPDXRef-File--net472-Microsoft.IdentityModel.Abstractions.dll-4A96595FA801485D87A01606B59164EF70CEF3AC", - "SPDXRef-File--net472-Microsoft.Extensions.Options.dll-39A12A71B36FC770A6861E8FD853DFB4909C18DC", - "SPDXRef-File--net472-Microsoft.ApplicationInsights.dll-43E8E51CB645C9AEA3E9735A97F03529C207CA9C", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Primitives.dll-0A4E72B93D8D265F5731C652F5BF5F788CB58C24", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll-60B94AE4C21681BCE62B6241AB37253A18AAEB73", - "SPDXRef-File--netcoreapp3.1-Microsoft.Internal.AntiSSRF.dll-B33A3E902E75E3057E113AC8E86033A16201F17D", - "SPDXRef-File--netcoreapp3.1-Microsoft.Identity.Client.Desktop.dll-1BAD5C4CA8AD47D1A773B0F30F7FFDB3AE31819A", - "SPDXRef-File--netcoreapp3.1-System.Diagnostics.DiagnosticSource.dll-4ECCCD29DDF8354B94AE0900A0917D03EED57FE8", - "SPDXRef-File--netcoreapp3.1-Microsoft.IdentityModel.Logging.dll-2C57F4F01CD14548D85DE1704FA23BE031D2D1CB", - "SPDXRef-File--netcoreapp3.1-Microsoft.Teams.PowerShell.Module.deps.json-676586C506F9338177B3E1EDD47B9ADD5F6D0404", - "SPDXRef-File--netcoreapp3.1-Microsoft.Extensions.Logging.dll-0F4C03A61B0F7EED635DCC3DD23D87F045BE2542", - "SPDXRef-File--net472-System.Security.Principal.Windows.dll-5B2A53E8A33E0CFF9F8C0C28F0676D7E00C6AD3F", - "SPDXRef-File--net472-Polly.dll-E08E149E6144946C1F1D4395B5CE75ABC834F138", - "SPDXRef-File--net472-Microsoft.Extensions.Configuration.dll-9B846E9AFA5923BF7DC48CC7FBA5B9A8D0536519", - "SPDXRef-File--net472-Microsoft.Azure.KeyVault.Cryptography.dll-44E63403BFF5783C20040770EF46387D5C7ACCE6", - "SPDXRef-File--exports-ProxyCmdletDefinitionsWithHelp.ps1-6E23653F5E9B33219BB7ECECB3E08F924D84ED49", - "SPDXRef-File--net472-System.Runtime.CompilerServices.Unsafe.dll-46C76583337E5C3886D53F06CF7D68B2DF842658", - "SPDXRef-File--net472-System.ComponentModel.Annotations.dll-CED059E305BC3004A20FAD2F4059396260AF48F1", - "SPDXRef-File--net472-Microsoft.Teams.PowerShell.Module.dll-CF432FFF7AD135D3F3480CFDECFE43688355C93F", - "SPDXRef-File--net472-Microsoft.Rest.ClientRuntime.dll-38B4FFBDDBC5FA6630767BD0C0874A2D0F270076", - "SPDXRef-File--net472-Microsoft.Identity.Client.Extensions.Msal.dll-3F49891D4F655703D28040D99DF390872912D5FA", - "SPDXRef-File--internal-Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1-CB63A2BC6F807442527EEEC625364E279634E2E8", - "SPDXRef-File--net472-Microsoft.Applications.Events.Server.dll-CAA1D2CA261D0246798E2A57382A473D46ED1640", - "SPDXRef-File--net472-System.Security.AccessControl.dll-BC7340F6203F4ADC773CFE7F7897C183F72E4C32", - "SPDXRef-File--net472-System.Diagnostics.DiagnosticSource.dll-E100A9FB5B1AD35A09302551EC35753DC2F1DD81", - "SPDXRef-File--net472-SQLitePCLRaw.batteries-v2.dll-736F0E174933C7C56B18ED4347069FAC9E8103AF", - "SPDXRef-File--net472-Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll-2A265332E120B5CD566820488C5454D75BBB68FE", - "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.format.ps1xml-0A1DDF7C4AA751F672F0FAC1B6C40A81EFE84125", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.CoreWorkLocationDetectionPolicy.format.ps1xml-BD892C31569C8F3F91FA833F5F157B8350A45A78", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.xml-A79E1C5A27145A6FA9ECA55F2B45D9898954E6FA", - "SPDXRef-File--Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsAppPolicyConfiguration.format.ps1xml-80E913A0F1A38D54853BACF21AB983C41654F8EC", - "SPDXRef-File--Microsoft.Teams.ConfigAPI.Cmdlets.psm1-3FBD715FA1629CAAAE22966948ECF0906B05B2C0" - ] - } - ], - "externalDocumentRefs": [ - { - "externalDocumentId": "DocumentRef-infrastructure-itpro-teamspowershellmodule-77861064-f53dbec94e41633796908076a051a053f4b30949", - "spdxDocument": "https://sbom.microsoft/1:bkjmLDt9u0eOFl8ZpDAVyQ:ygnPgS-Zq0yaX5bXKLTDOQ/17372:77861064/0Sb9hH4UXkGTMrxyKVf9eA", - "checksum": { - "algorithm": "SHA1", - "checksumValue": "f53dbec94e41633796908076a051a053f4b30949" - } - } - ], - "relationships": [ - { - "relationshipType": "DESCRIBED_BY", - "relatedSpdxElement": "SPDXRef-DOCUMENT", - "spdxElementId": "SPDXRef-File--..-..--manifest-spdx-2.2-manifest.spdx.json-F53DBEC94E41633796908076A051A053F4B30949" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-38EB9C1270DDB3C49EB53BA52C164FE55D40DE5425BDD41EA43CAF4CEE32F946", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DESCRIBES", - "relatedSpdxElement": "SPDXRef-RootPackage", - "spdxElementId": "SPDXRef-DOCUMENT" - }, - { - "relationshipType": "PREREQUISITE_FOR", - "relatedSpdxElement": "DocumentRef-infrastructure-itpro-teamspowershellmodule-77861064-f53dbec94e41633796908076a051a053f4b30949:SPDXRef-RootPackage", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-38EB9C1270DDB3C49EB53BA52C164FE55D40DE5425BDD41EA43CAF4CEE32F946", - "spdxElementId": "SPDXRef-Package-516B1175E3D416CA4328C97F94B8F3B3E28B0CB287494AAD09779F55F1DD33B5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-01FBE39297615D5615DCAF2AB4E213D489A90F4CC6E7CAA4E1F22CC76BA02C6A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-01FBE39297615D5615DCAF2AB4E213D489A90F4CC6E7CAA4E1F22CC76BA02C6A", - "spdxElementId": "SPDXRef-Package-40690A07BFA5376B7B03E215586CF3C2EB068AC0A65919F6944423643354D09C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-01FBE39297615D5615DCAF2AB4E213D489A90F4CC6E7CAA4E1F22CC76BA02C6A", - "spdxElementId": "SPDXRef-Package-B3D5F30C6F4C897DA31933117BFB391A9177287CC31D26072129972E47E06996" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FA6524D4327177392F48D12F631FFB032EB1A9664E0130A4D5FC2DF650DAF25A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FA6524D4327177392F48D12F631FFB032EB1A9664E0130A4D5FC2DF650DAF25A", - "spdxElementId": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FA6524D4327177392F48D12F631FFB032EB1A9664E0130A4D5FC2DF650DAF25A", - "spdxElementId": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E66C6C3453F877C7645FD43F03250C16CF932A10D88048D6D91237A3B0CD7D79", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E66C6C3453F877C7645FD43F03250C16CF932A10D88048D6D91237A3B0CD7D79", - "spdxElementId": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E66C6C3453F877C7645FD43F03250C16CF932A10D88048D6D91237A3B0CD7D79", - "spdxElementId": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30C2341EA16E5818C131E9D23284D1C63F93C660C4B0DF5EFB33708201B93ED7", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1D191B13C73F7AA570C121E8ACCAD625116B8267E418ECDD7222AAAB63A76A84", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9D8BA3D488724E35BD3387F1A6F805D5D4F98AF4C932C29469E010917CBF0501", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2BD1526E06B0F242413706B6514589398B1723F2A354DCCBF1BCCF210693E051", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2BD1526E06B0F242413706B6514589398B1723F2A354DCCBF1BCCF210693E051", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2BD1526E06B0F242413706B6514589398B1723F2A354DCCBF1BCCF210693E051", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7", - "spdxElementId": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C2767F12ECACB70D60EC8D1F53D7F3499FE060FCB06D60FB60B63675CE73DEF6", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6A2CA26FEB072F57DA3D0DD36381727D71400F3E3436EA9BCECDB8289ACD918", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6", - "spdxElementId": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CF468559CDD6D329BCE1D3BA07C2D190050CC92CEE57A0887D5F8B9449C9C9F", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-661434A59D6F94FBB37A749B951CFA724E0427FB84B679F9AE12979CD15F406E", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8F4F099CF0C93C778298B3BBCE55BF07CA151A2C35C8535BDA77B9D9C17898ED", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-64F831883BC54B072B1165F221173FEDE2CF5F22630A42C12BCE5A96E275D181", - "spdxElementId": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1CFF4F08AD4F80F664A100E30A9F28C1592FBF4A9FE6F2199E506A7961683D5B", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4EC77DE72DF7856001C57E24CCB11F437B92DC6132B2272D5765CC62E1851102", - "spdxElementId": "SPDXRef-Package-3248038335932D1D4047F57731B65A00918297ABB00C3DCFB05FB8A456FB63A2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA2AF0572DFE796D5ED4CBA3C0D769A0AEB1D2D1712BA876E8ACB41B661353B4", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D68D6D7F522D19DA4C22216D1BAF736B9960C6A1B0E49CB884609F8D68EBC88D", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB80936FEB03F889745CCBBCFB523A1144E22309A52CEEC5F81A61968307C88", - "spdxElementId": "SPDXRef-Package-C424FAC4BC587AE266531A7866E897980EF167F3FA3678460B11D82CC76AACCE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3BB80936FEB03F889745CCBBCFB523A1144E22309A52CEEC5F81A61968307C88", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87A17A98BD1A3AB0A7E6397AB880DC8EA1131E5163C5E2D7082A1752BE241E5F", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87A17A98BD1A3AB0A7E6397AB880DC8EA1131E5163C5E2D7082A1752BE241E5F", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87A17A98BD1A3AB0A7E6397AB880DC8EA1131E5163C5E2D7082A1752BE241E5F", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87A17A98BD1A3AB0A7E6397AB880DC8EA1131E5163C5E2D7082A1752BE241E5F", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AAB3EF1DC78B2FEFB98C7D0D369DA3FD0039A477C05EE0511FE5D0120E3FE8E", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BBD981C6CB778973BCB1EF55373EF7532D0398EF4BF202FCC00CA753EABD1B1C", - "spdxElementId": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E6F6FFF0B81176DCBDDDF1EB47A15CF70A0995E5FDD9ADB3533FFDC82A4DA85E", - "spdxElementId": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E6F6FFF0B81176DCBDDDF1EB47A15CF70A0995E5FDD9ADB3533FFDC82A4DA85E", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E6F6FFF0B81176DCBDDDF1EB47A15CF70A0995E5FDD9ADB3533FFDC82A4DA85E", - "spdxElementId": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24A07393AA7FDC27BC3AA05C31A1FCB72E205C972224A1288B23FDECDC893F7C", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24A07393AA7FDC27BC3AA05C31A1FCB72E205C972224A1288B23FDECDC893F7C", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24A07393AA7FDC27BC3AA05C31A1FCB72E205C972224A1288B23FDECDC893F7C", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24A07393AA7FDC27BC3AA05C31A1FCB72E205C972224A1288B23FDECDC893F7C", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DEE3ECA7AF9C2B9A4B46744654872A6D59A5D278A2452E8C9406AAD8D8ED04A2", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FBA75402C4126CB443958B444A39B664E4E26665223A7740EA4B1AA0668821AA", - "spdxElementId": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "spdxElementId": "SPDXRef-Package-55E9DD1F8F31E2D2EC487B45C8EEBAB02AD2D83DC4FED445AE1A7F6E51FF8F4E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BC20F17C2AA7840EBBA7B89BC60E8541BA4242092F74945FA06C84BC94ADE4D3", - "spdxElementId": "SPDXRef-Package-5694FF104CAA072DDA8305286A4084CED01B318F61F638B8CC49840E1740138B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-30053A8FCF3D08F812CC26B11B515CD1E908C68D34C0C6EBA865DE1672403F79", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02928BC4111CCFA2CD7E08B66F8359B34C75FE9078FD53EFE000BC8EF30E8A04", - "spdxElementId": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-50552D21DF380D2099AFC1BBDC3E90D648B6A631AC6A5912BB03D103DBD4C61F", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2EB7C341BA0E8C29E8E7D403BD2E1AC0BF0D499083C5EA6C264531D44D1DB591", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2EB7C341BA0E8C29E8E7D403BD2E1AC0BF0D499083C5EA6C264531D44D1DB591", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2EB7C341BA0E8C29E8E7D403BD2E1AC0BF0D499083C5EA6C264531D44D1DB591", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87282A7A87A76DE572F9692A8F47DBB1F03CF570E45C9FC0B0310E8D6478FE19", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40690A07BFA5376B7B03E215586CF3C2EB068AC0A65919F6944423643354D09C", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D45E310E2C14FFDECCB77BD34DCB98F27CC8FD0868B7FC5852809E9398F9DBBB", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D45E310E2C14FFDECCB77BD34DCB98F27CC8FD0868B7FC5852809E9398F9DBBB", - "spdxElementId": "SPDXRef-Package-50552D21DF380D2099AFC1BBDC3E90D648B6A631AC6A5912BB03D103DBD4C61F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3", - "spdxElementId": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5D34709A26D1F9AB9ACF1533059FF2089C126911B090DF3B9961364420E01C7E", - "spdxElementId": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445", - "spdxElementId": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD4D3452C9EDD5CD086F5DB661C3C499EB728742D124407A70243922223968DC", - "spdxElementId": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AB77E2D247FCCB982D55790EC198F2360B622C4D6568FE87E68DDB1EC0576B6", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-292F9905FDC94B3223A24EBC083E4F30174E09A0FE98F3E588D7BD0E7DE4B74B", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FFBB38C681A9D9DB8597FA3F985E7D78BB1C4A8B8637487DA5C62A6B5EE0DAC5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FFBB38C681A9D9DB8597FA3F985E7D78BB1C4A8B8637487DA5C62A6B5EE0DAC5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FFBB38C681A9D9DB8597FA3F985E7D78BB1C4A8B8637487DA5C62A6B5EE0DAC5", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-802329F30C6D05E97029D15F8B4C26B6723192FEC8DF7B1AAA9A79955D3B541F", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3", - "spdxElementId": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8B56D8DE1FE4C0E3A4FE4C7FB39058D5E01E2104010C2F40A8D9AF43A9A58FD5", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A7749B3F7443A0F0AFF64F71746F18D670D8D4FBF18B2138A4AD85A6BC9A810F", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-890D141F47E5CF499E021030DBA301739CF5CEC29C6282FF9433EF08D8FE1551", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-007A2FEC84A17429C9739297D8C443BC48F2D6E7DFFC4BCCA1649DAC91356F42", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-007A2FEC84A17429C9739297D8C443BC48F2D6E7DFFC4BCCA1649DAC91356F42", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-007A2FEC84A17429C9739297D8C443BC48F2D6E7DFFC4BCCA1649DAC91356F42", - "spdxElementId": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E71175A78EA84E85197956127B9C5F437A2A35D3B7F4BF302567BA45F9179CF5", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E71175A78EA84E85197956127B9C5F437A2A35D3B7F4BF302567BA45F9179CF5", - "spdxElementId": "SPDXRef-Package-FD4D0676D4BBE7FDFDA4728DA9DBF54E5C6D337E3AD53775696C48E7147CC418" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51459BBE2BEE5CB0B8CDE031EEDA84744A444DB6B739D00C48189F02CBDE16C9", - "spdxElementId": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DE62A5EFFFCCFC7572C1A7EF4A7DF8A0359F3C2A82A456A0497F3FE458D3D75C", - "spdxElementId": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DE62A5EFFFCCFC7572C1A7EF4A7DF8A0359F3C2A82A456A0497F3FE458D3D75C", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DE62A5EFFFCCFC7572C1A7EF4A7DF8A0359F3C2A82A456A0497F3FE458D3D75C", - "spdxElementId": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A24B12112923FCC8A01619F06DEE1321BFBEC31F74BA8195143AA61CE5CCC65A", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A24B12112923FCC8A01619F06DEE1321BFBEC31F74BA8195143AA61CE5CCC65A", - "spdxElementId": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A24B12112923FCC8A01619F06DEE1321BFBEC31F74BA8195143AA61CE5CCC65A", - "spdxElementId": "SPDXRef-Package-76A407C381C6740BADB41C36108E63471CAD429FD5585DB562F76D454120A660" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD9F159632798592616EC237399FD83A1ADED5E44AF080EB3E73708CFDFC58B7", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD9F159632798592616EC237399FD83A1ADED5E44AF080EB3E73708CFDFC58B7", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE901B2458552B013B96E3BA79E320DAAA24DD01409CFA777BEF18712043A1A4", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE901B2458552B013B96E3BA79E320DAAA24DD01409CFA777BEF18712043A1A4", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FD4D0676D4BBE7FDFDA4728DA9DBF54E5C6D337E3AD53775696C48E7147CC418", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9793C11E26716D10847A48273A6B2FF1BA344AD5704F148D3AFF0576D5D18BAA", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-516B1175E3D416CA4328C97F94B8F3B3E28B0CB287494AAD09779F55F1DD33B5", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D575E218E1AD9C06A5DB8DB369BA731FF160790530E672CE197C7A756E60F275", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D575E218E1AD9C06A5DB8DB369BA731FF160790530E672CE197C7A756E60F275", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-19657174A611A55D249468976305B5C48B4BCB2F4799785E382B139741337943", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE26D3480D7C4AD0D6266E6A9AF31F9A5818EF79760B6C0A16E79C90957AB362", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3701BADEE64B01FD2D2A6B234D001851E29E5710E08D433BDA8F5F6239F07B4C", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9537892092B42C735654118874AFEBF8978792450A4D6AE9BF50D1C7DA77CB2", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B421A049D84918A1509D87157C10713A7AB4A5875825A80B6DEA4A96C3685E82", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-422B168409BFFB6195EFFC810AEE94179F01C0BEFB6D8F78809CB9B8E5990035", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-422B168409BFFB6195EFFC810AEE94179F01C0BEFB6D8F78809CB9B8E5990035", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-422B168409BFFB6195EFFC810AEE94179F01C0BEFB6D8F78809CB9B8E5990035", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-422B168409BFFB6195EFFC810AEE94179F01C0BEFB6D8F78809CB9B8E5990035", - "spdxElementId": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E389C196CC3B31F9F0F95EF8A726F64453E62013B00C3C8B8C248EA8F581C52E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E389C196CC3B31F9F0F95EF8A726F64453E62013B00C3C8B8C248EA8F581C52E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E389C196CC3B31F9F0F95EF8A726F64453E62013B00C3C8B8C248EA8F581C52E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-65F3BB807AF49E7AD397E2DCDE7E8152B0F742044FF2ABFB7B8136F4D77F3E3D", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6B07767B8D24067A9C860F27DE2655663A6187C7DCB86797C0F07D5D2827293E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6B07767B8D24067A9C860F27DE2655663A6187C7DCB86797C0F07D5D2827293E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6B07767B8D24067A9C860F27DE2655663A6187C7DCB86797C0F07D5D2827293E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6B07767B8D24067A9C860F27DE2655663A6187C7DCB86797C0F07D5D2827293E", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B", - "spdxElementId": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E80B9979113D4C0C10670D6E93B96CFEC103C1AB34E61C3F96D93043152F9388", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1", - "spdxElementId": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FF56CE386DAA51DE966986FCE41887C06D4533EB272D2930936B0A29003F631B", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB", - "spdxElementId": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96C6F4964A911ECC8415520C77654FAF06CF5E4E3529948D9A3EE44CAB576A1E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96C6F4964A911ECC8415520C77654FAF06CF5E4E3529948D9A3EE44CAB576A1E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96C6F4964A911ECC8415520C77654FAF06CF5E4E3529948D9A3EE44CAB576A1E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1B140F7FA3F784DD56CC7A8B4145E9AD58D8CDD4C249A0F27F2262E47C9B41AF", - "spdxElementId": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-22BC1B62603E565BA5827501118C102A4E869955E3DB43D001A4ADA2384D657B", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A", - "spdxElementId": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D87A871D9DCC8A4B4DC16C993FF9320F3AAB938B64A6EC2472FC2C1CBF3F7219", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D87A871D9DCC8A4B4DC16C993FF9320F3AAB938B64A6EC2472FC2C1CBF3F7219", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D87A871D9DCC8A4B4DC16C993FF9320F3AAB938B64A6EC2472FC2C1CBF3F7219", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4C3B9EAB65F57A8012A61AB041013CC14DDEF227C8C011C485D68401ED4A33A1", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8DF9F1DC6CCE99BCAB81EC8023E1ED3CD940A36704E358DAE8362D08FAFD45B0", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3072F1DB253F01997C30572A98803311C4B70648E41469C5DF01FA5E5CADC2D8", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD09729A317A6A482F957292D68DCDEFB89DB8E231EA51446547254FBC6DA198", - "spdxElementId": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD09729A317A6A482F957292D68DCDEFB89DB8E231EA51446547254FBC6DA198", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD09729A317A6A482F957292D68DCDEFB89DB8E231EA51446547254FBC6DA198", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AD09729A317A6A482F957292D68DCDEFB89DB8E231EA51446547254FBC6DA198", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EAE371CB9AE792ECE6EED12661A57E00CF9F51EED477A6844F7F491DDBF4C1EC", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EAE371CB9AE792ECE6EED12661A57E00CF9F51EED477A6844F7F491DDBF4C1EC", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3D9E32FFF6EE52E447F0576400DC72399116A4FDD1281DF86866A217D1015F30", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B464486EAD6F1D66964E4E136DA8BB3AB592F668708C4EF210002F84361CED8B", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B464486EAD6F1D66964E4E136DA8BB3AB592F668708C4EF210002F84361CED8B", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7A36072A7D2031DA1B9EDFBE87B13AF2737B5CFE06B2D11F3FB435E9197EA122", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7D19C5341ECD411F0351D96DCFBC8804A92FC9E3BFAC27D0E45B7F6B37A45C19", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-044336899C3AD719572161F32356DFBD386B721EFA99ECA36B059C7A2374DA68", - "spdxElementId": "SPDXRef-Package-B8941EA4D327E9DF1B6B20DAE6C8E829C1CE2D30767C17D9F5E00161D2719B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4CC5DBDCCAE51F8348CEBFD69E142141529DC10D95850243E697656D01AE3BFA", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4CC5DBDCCAE51F8348CEBFD69E142141529DC10D95850243E697656D01AE3BFA", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D9C62F109B90768D0D80D73DCDA722E90934102239FB285F6656A82B6A5C259E", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-97BC400C410A127EA0A6F1E477C40574387AA14FF569FF0CFC3D1E557EF6B346", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-97BC400C410A127EA0A6F1E477C40574387AA14FF569FF0CFC3D1E557EF6B346", - "spdxElementId": "SPDXRef-Package-516B1175E3D416CA4328C97F94B8F3B3E28B0CB287494AAD09779F55F1DD33B5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F1B6BB0BB534A7DBDD941A4FC083166529EB0E4AE0436D03BF9A19DF39568682", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E1BF9828A3EFD6C11C068DFF7CE77FBE33246278F84CBCC70B65ECFCC9C8E968", - "spdxElementId": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-85FB27F5A68228D1E9331D9E7057200D9845B178A51F7F40560E070D910A3E78", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-33B1D8F98040445C1C019996980972FB5A3DA85A789108E0440ED021F416AB88", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EB28CDD241D6CCBF0718B9E555251C41DF66A198C6ECC693D09211542C656620", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EB28CDD241D6CCBF0718B9E555251C41DF66A198C6ECC693D09211542C656620", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EB28CDD241D6CCBF0718B9E555251C41DF66A198C6ECC693D09211542C656620", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EB28CDD241D6CCBF0718B9E555251C41DF66A198C6ECC693D09211542C656620", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D20AD87424AA67B443E72A0F6BE0462BE2EDC83B09E847098FC677FEE919195C", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DDE5C44E3BD87F8156A218CD1BA03D4DA71B87C82336BF66C024F3A0F49CE80C", - "spdxElementId": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D3CFD0E43003E618EEF37E2815DE44CF2107C79C821D7D2D622B5A820EE116B2", - "spdxElementId": "SPDXRef-Package-2E8A8BE0C396986EBDE3F4EA0E93239EDB1D3B0EAEBD46C1BAC39AAD831F2E7A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7C1071FA59864BDC1864DB36651680604E0B72A4920F6413414E04DFAE72E901", - "spdxElementId": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E2FDC0A28192926A47E5E659EC5BE2358B2DD4A97FDE6B0309479F32DD40BD", - "spdxElementId": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-516B1175E3D416CA4328C97F94B8F3B3E28B0CB287494AAD09779F55F1DD33B5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-38EB9C1270DDB3C49EB53BA52C164FE55D40DE5425BDD41EA43CAF4CEE32F946" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-8CBE003E74515A3E2C97B11512919FB967C94F6B6B727894776E7DFDCC10DE5F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E3540916512D5EDE04FD58819DD03CF53F199E5E9CA386ED39C5CDF144137C39", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ECBD70CEBDE1151174664BE0BFA1BA99EED93329501B504C655E0C31073E8D5A", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-043A20841D9DB8977CADC48D3E05228314FC1EA519D405DB0AEB9968C1FA02C8", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "spdxElementId": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DA0AF8340DCB876C7A8B0C3746460DBC5EE231998B283C8070BAB226E6C9182E", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-288304B4D65CA653A9F91AEEED832C8EDBDE12D62998B237EDD814A65B0F11CE", - "spdxElementId": "SPDXRef-Package-BD049C5100B248F06EBEC66C3BE118753E842489EC3E40AF36E080A56CF8286E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B7D63C69227797DAB4E0B488D700205A02ABA2C1D1A6841FF891E5F417797B09", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-55E9DD1F8F31E2D2EC487B45C8EEBAB02AD2D83DC4FED445AE1A7F6E51FF8F4E", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-55E9DD1F8F31E2D2EC487B45C8EEBAB02AD2D83DC4FED445AE1A7F6E51FF8F4E", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9FD6502628D2E93332977AC067DA580AC7C10D7CBD7E131D0B11BE62152259BF", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9FD6502628D2E93332977AC067DA580AC7C10D7CBD7E131D0B11BE62152259BF", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9FD6502628D2E93332977AC067DA580AC7C10D7CBD7E131D0B11BE62152259BF", - "spdxElementId": "SPDXRef-Package-FD4D0676D4BBE7FDFDA4728DA9DBF54E5C6D337E3AD53775696C48E7147CC418" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C424FAC4BC587AE266531A7866E897980EF167F3FA3678460B11D82CC76AACCE", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3CC155EC2F4D0A0C5107E686C7608DFE2287D93EA8CCFCD7785B2C23CC3D4669", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3CC155EC2F4D0A0C5107E686C7608DFE2287D93EA8CCFCD7785B2C23CC3D4669", - "spdxElementId": "SPDXRef-Package-0F0DD0EDE0BBAF0379D03AA3F2ED16A3C735F4E6EF3EDDA59CEED1D9300EAEF5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B689DF5E94EDA2A0DDEC1F931FBDC01D63B0A8C1298749808F63D138B632F33C", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-913A228A945AF3F88B31639A3883F755AB3ABA2E84D7880912A0474164A7C46D", - "spdxElementId": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D8F66A750BC4522EDDCB1FED49211BD16878D1E062948FDCB10409A487EFE776", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6C4A577336DCEC1BFF078EE13466E604E8E8E1BCFDF5260E7493C92E8A3CB3D8", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6C4A577336DCEC1BFF078EE13466E604E8E8E1BCFDF5260E7493C92E8A3CB3D8", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6C4A577336DCEC1BFF078EE13466E604E8E8E1BCFDF5260E7493C92E8A3CB3D8", - "spdxElementId": "SPDXRef-Package-D575E218E1AD9C06A5DB8DB369BA731FF160790530E672CE197C7A756E60F275" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6794715F4D3BB5F1392158FD713732FBB3814F34B6E0A7BB46F8C3FF448143C", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C6794715F4D3BB5F1392158FD713732FBB3814F34B6E0A7BB46F8C3FF448143C", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5343B694E9E8D06887CF8F4008BE0581FC0BD9BD2D28FC4370905FB693F311F8", - "spdxElementId": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9EB6D1B4C28070605472CA357F8839C43F5BAE0951273DA95985FD3AF01F2E3", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9913FC77FF1C1171C738782E410BE9C92E9F6C7F5FD54F4D911DC70DDA615920", - "spdxElementId": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C4184B9BDF0F5A12F303FFE8A22AC696A63BE6D720A51ED1751AFDF84C7F1FF8", - "spdxElementId": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E05EAEA12DA6A7C1B4FE709F96D8EA9F6343D2D76EFCC40A9CAA44769388362", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9B37C02243E2064BFF93529886692A903173BD523982E0A80D12E7F5A5B0BAAB", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B06C59408A23D0ADC8EA4F69AB5B5C701AE8704CFE1D367E5E10ADE4C3C4E9C5", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-96EE889F5432A3BE6ED27C46C0D4F67103461B8167C4F7C74DEAE28935F3CD40" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-08A0DA7A4360355B018E9B97F1A5913D78687CC4C7135CC7EBD3C97D8F7B84BA", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9BEFA8934C7016259385BFDA2906F038610220B7BCF08D5AA651BE6CB1541E51", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9BEFA8934C7016259385BFDA2906F038610220B7BCF08D5AA651BE6CB1541E51", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9BEFA8934C7016259385BFDA2906F038610220B7BCF08D5AA651BE6CB1541E51", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-9BEFA8934C7016259385BFDA2906F038610220B7BCF08D5AA651BE6CB1541E51", - "spdxElementId": "SPDXRef-Package-2D315204EDF1805A0597A6B2DA6C5F35A222859A45FDEC22A15E70E4B966EEC2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C5208AC43A9B8525DA67EA002836F84382F0C16587D945CE108125CDC4492B2A", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B10728B62CADA55921F5100E5B8806FC153C886CC8BA6D0E91912A5B052F57D5", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B97D97910BAB4B1AF83030D14DC7AA7FCDAAD214A70EB711E9B3740E03F4ABEE", - "spdxElementId": "SPDXRef-Package-5097DC779307BE5C1DB1377E514EED45D5E68133BFF0D66CE931BDBDD36887F2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-2BD1526E06B0F242413706B6514589398B1723F2A354DCCBF1BCCF210693E051" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A374F707F6B7C424E9A289EF1AE3D63E95D327CE5B5E80C72BA9AE27F64C11B", - "spdxElementId": "SPDXRef-Package-51F158669105E7517709DAA0BB58D31555101DE3988F1381C3501A7DD94042C7" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD049C5100B248F06EBEC66C3BE118753E842489EC3E40AF36E080A56CF8286E", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CE645B91D1E102C5ADFA2FE9FA88293752E1ED47F685D9D5DC5E03075280E0E3", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B462D788B1C2DD0300866F38984EE87F98E8FFF6321A2076680162B73069ABA1", - "spdxElementId": "SPDXRef-Package-3C67C9CDD2763962244A8CE714E9521C23CF9E4DB1DA91A1AE8798AF50FA5384" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-76A407C381C6740BADB41C36108E63471CAD429FD5585DB562F76D454120A660", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-76A407C381C6740BADB41C36108E63471CAD429FD5585DB562F76D454120A660", - "spdxElementId": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-42FBEB99FA709B0F8774C835A34EBDFEC1B321FBA33DB4DD42067875B48C7C84", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-42FBEB99FA709B0F8774C835A34EBDFEC1B321FBA33DB4DD42067875B48C7C84", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-42FBEB99FA709B0F8774C835A34EBDFEC1B321FBA33DB4DD42067875B48C7C84", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-07FC9E8982BC96AC1D68E19C23D0C76E791903F9733AF10674833D695D17C4D6", - "spdxElementId": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-07FC9E8982BC96AC1D68E19C23D0C76E791903F9733AF10674833D695D17C4D6", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-07FC9E8982BC96AC1D68E19C23D0C76E791903F9733AF10674833D695D17C4D6", - "spdxElementId": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCD5CD0ED708DD744AB2CC54D8738C236A061C858F0886143D2C2FFB3B2F357E", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-49456CCAD0992D7553E76C04120D4CB8B2BF6AD1E88DEB8E6A76867FF9046354", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-49456CCAD0992D7553E76C04120D4CB8B2BF6AD1E88DEB8E6A76867FF9046354", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-49456CCAD0992D7553E76C04120D4CB8B2BF6AD1E88DEB8E6A76867FF9046354", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-49456CCAD0992D7553E76C04120D4CB8B2BF6AD1E88DEB8E6A76867FF9046354", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB99903AA6BB7A2B201660FC44DC99CF67FD7C6FFC8466FB86CFFE6AFA6AC395", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AB99903AA6BB7A2B201660FC44DC99CF67FD7C6FFC8466FB86CFFE6AFA6AC395", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-F37E3F5F80F8FC87888A695E7E26687B39BD37AD5BB3FDF6E73B1B0CB7AD00D9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5A41DBF8B83AC897B306C8972B608EFB26BA3F82892E1B32791CC474635718C8", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F35849C8B2DCB8B60526798822B91FA08BA8D78AE9D2DA91D684246AE802748E", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F35849C8B2DCB8B60526798822B91FA08BA8D78AE9D2DA91D684246AE802748E", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F35849C8B2DCB8B60526798822B91FA08BA8D78AE9D2DA91D684246AE802748E", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EDADBE8E358E2B54233605C232C23C9BC19119F559985A3E5064616E8DCFDB91", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B4793028138A7D5E8C52DB5B098477C0A479E8FFC27F5086B1C7AF9905062B6", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3B4793028138A7D5E8C52DB5B098477C0A479E8FFC27F5086B1C7AF9905062B6", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B845BD152273D72FE2AFC20FA987AF1A6499713ECA5A9C6306E0B5B4C72DA3B", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E9A7D272BEB1E5E7E2F201094675F616632FBFBDCBC919F56E63E2050698EFEA", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E9A7D272BEB1E5E7E2F201094675F616632FBFBDCBC919F56E63E2050698EFEA", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264", - "spdxElementId": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4253C15F4CFBF421ED9475A1ECC51B7D5AB8AAFB29FAA89F5A7CAD36B3E238BF", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4253C15F4CFBF421ED9475A1ECC51B7D5AB8AAFB29FAA89F5A7CAD36B3E238BF", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-960414DA8719C10D04651A042C6327736F11D52FA2FCB8501240FBA2B4B8FA57", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C1475C5380732C85127A15B8BADF74D2619786E90578875B650082AE4497BC14", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7F1409A720964601F0982FD6D7FEDFB2577409C224B50F3A11C711BDA48164CC", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-008E5E7FCBBA26C8A73113B4A7624F1DC2CD5CD76D35421D82EDC38DC94E6E6C", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-008E5E7FCBBA26C8A73113B4A7624F1DC2CD5CD76D35421D82EDC38DC94E6E6C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-008E5E7FCBBA26C8A73113B4A7624F1DC2CD5CD76D35421D82EDC38DC94E6E6C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-008E5E7FCBBA26C8A73113B4A7624F1DC2CD5CD76D35421D82EDC38DC94E6E6C", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D315204EDF1805A0597A6B2DA6C5F35A222859A45FDEC22A15E70E4B966EEC2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D315204EDF1805A0597A6B2DA6C5F35A222859A45FDEC22A15E70E4B966EEC2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D315204EDF1805A0597A6B2DA6C5F35A222859A45FDEC22A15E70E4B966EEC2", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-2EB7C341BA0E8C29E8E7D403BD2E1AC0BF0D499083C5EA6C264531D44D1DB591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-96B5137EA2A8D2FD65321F31232EF9A633C07BCE1090EC9DAB6F4A0EF0DCF546", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C398039E46B1EEC131FAB9356829D60036EA11386F4C3A70183AB97A7D94938A", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-F40DEF754E46DBDC302850778582C6E171E2B20C9B601F1BE2CCEA4880178B89" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51B112946B53F473049CC515F08F27E227C044A2E330920154720B3FCA47D0A9", - "spdxElementId": "SPDXRef-Package-A531AAA4BC3CDFCEC913CF5C350C00B1CB7008576A31BBB07F876DCD2A78CCBB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98974C6C7FFEA0934A0B49276F784EF7433A314B8F4352E602465184EE7B9350", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98974C6C7FFEA0934A0B49276F784EF7433A314B8F4352E602465184EE7B9350", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98974C6C7FFEA0934A0B49276F784EF7433A314B8F4352E602465184EE7B9350", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-27ADC6850C7FD2CF083E74AECDEAA437E3E718567F972E2FDA09AB369A0C4579", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CB3E43ED2FAAF926BACC8A3E5A5219246BD37049F5C72FD776C3144C1DBAB0A3", - "spdxElementId": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BEF799D6C49E27B8BA7EBAB371D28EC846DDA74F24BF0C17F527B7FAD829502F", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BEF799D6C49E27B8BA7EBAB371D28EC846DDA74F24BF0C17F527B7FAD829502F", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CBF7802F9254B3E3712AE8A8BB936744B7150C66FD19F540F73399779686C851", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CDAAFFA05EBF9CB4769A0302D45C4994A3310E518046D8A5549AFEE765ADFD9C", - "spdxElementId": "SPDXRef-Package-0FC7C18C18F48CA2321CCA8E088120C9CCCCBE93BCC1BF1CC39C9C81C6243BBC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5950DB3F79831616DDE4536F6E5A014E9D6C386EEFFDB32301148C6AECB0FCD2", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AFB71973C08F32C3EACE2EBD9C415207BA3323445D2B02B6E7356512AE7A78F6", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3248038335932D1D4047F57731B65A00918297ABB00C3DCFB05FB8A456FB63A2", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A092770E8354CA90D85493FC4F2941F25FCE4214BAF8EB9A9E4383C495E133E9", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51859863AD2341A201A718E83102C31AD33750C7FDCCCABDA897001A4B4ADAC1", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8CCC96C60BF31B4FF156792F053C44C325CD53B669EE2566294A3B1DF507491", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-064E3F52F19A9F52462D0913B23BC6D7AD7188274D70A2ACC1BC96053AB5372D", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-064E3F52F19A9F52462D0913B23BC6D7AD7188274D70A2ACC1BC96053AB5372D", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-064E3F52F19A9F52462D0913B23BC6D7AD7188274D70A2ACC1BC96053AB5372D", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-064E3F52F19A9F52462D0913B23BC6D7AD7188274D70A2ACC1BC96053AB5372D", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0F0DD0EDE0BBAF0379D03AA3F2ED16A3C735F4E6EF3EDDA59CEED1D9300EAEF5", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B86E0354E378A5920FB80A4C9BCE82CF680188B76AF3A3FC48E045BEE5390B6B", - "spdxElementId": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B86E0354E378A5920FB80A4C9BCE82CF680188B76AF3A3FC48E045BEE5390B6B", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B86E0354E378A5920FB80A4C9BCE82CF680188B76AF3A3FC48E045BEE5390B6B", - "spdxElementId": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6F46A57C03E1A552F66B05335AB076D37723023639EAACDD42E67BB17ED19199", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DBA0EACCA85A46E91A7567F20D60695AF5D117996500EFA78FD8F82CB177F801", - "spdxElementId": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461", - "spdxElementId": "SPDXRef-Package-082E8DB47BF4122BD234E3802A311293F58B61532847B46C607B66273F5EEAFC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-29EB97D294311062F4EE2104410531D6D0E9094E61B1856E633C3A45D0F86461", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7AC30CED6B471D84045CFC7ED656D7DC3A705606C1BEA007DC1C9E64F18605C1", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7AC30CED6B471D84045CFC7ED656D7DC3A705606C1BEA007DC1C9E64F18605C1", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7AC30CED6B471D84045CFC7ED656D7DC3A705606C1BEA007DC1C9E64F18605C1", - "spdxElementId": "SPDXRef-Package-B8941EA4D327E9DF1B6B20DAE6C8E829C1CE2D30767C17D9F5E00161D2719B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5694FF104CAA072DDA8305286A4084CED01B318F61F638B8CC49840E1740138B", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5694FF104CAA072DDA8305286A4084CED01B318F61F638B8CC49840E1740138B", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-793F2F06EF22CE5CB8967C424EBADF37A6411D23830B3882F3E3E922F30B1424", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-793F2F06EF22CE5CB8967C424EBADF37A6411D23830B3882F3E3E922F30B1424", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-793F2F06EF22CE5CB8967C424EBADF37A6411D23830B3882F3E3E922F30B1424", - "spdxElementId": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A55FFA0033D6824E362612DD7487681403BD255B228F8228120800797DDBF595", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-846C7B671CE0E884005EF626B209AD4D24EBA1FF032B6BA0242D62EC1793AA97", - "spdxElementId": "SPDXRef-Package-2F9C7C046268BCFAACDFF2B9D1CA2BF8E54E5EE2453E3D72B78BCFE4CF6B1BE1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A772E41F4A6EAB3FE426188D806207AA324762A1E8660E13FE72401D48FAA62", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A772E41F4A6EAB3FE426188D806207AA324762A1E8660E13FE72401D48FAA62", - "spdxElementId": "SPDXRef-Package-F1B6BB0BB534A7DBDD941A4FC083166529EB0E4AE0436D03BF9A19DF39568682" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4A772E41F4A6EAB3FE426188D806207AA324762A1E8660E13FE72401D48FAA62", - "spdxElementId": "SPDXRef-Package-0699C5B5BDA6C36E045C7CF5007C875DB68042CC8C566010576A760C9A8836BA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3DD5DE0E10246B0F36AFDDED416D6773EEA8060A4714989AF784397BE3CE9558", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-20973EB4A512F795D0CAD96B6B985175AC5B76AF8DF4EF776E09F9BE87EC9DDD", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40E259CA16677FF2F00A0BBD434EE732A1B368771D75232C5934C0E69D3F8649", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-3AA91AC82BC50105BAA785EFA25675A27458E28F643BC4289A18DDC937DFB505" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-E8D0184AED843C8B48D3348C34E510C1AECCD9E05D002C20871C83F97B6A7A93" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-44DB18E004D7C51DDF86DF1293D672335A4845195A2E9FD5A2759AC640E455F3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-AB5F2C3FF098B6420CA5D19279AD89DF3818DFCB30FD532622DF6D7BFA76E656" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-BF99EC942B91EF59E73CE48124083556A0ACAF0AAF457DFEE4A4447C1B60B993" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-C6C536497A4D0FC60D2034C526D2D017FBBEDDB4E09198854A3119B73E42544F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-94004F1D9E495048B7DDC680757AD96C5549911E159B9FB4170D01C1EDFE34F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-4FBD1B594E30375185354B60FAC8D8C5CDE93C841F441DF66BAF2716425E1083" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-39E6E1DA68D4A3FC7E997DC25F6E794A3170E036FFCBE770B9C09DB99BE5F445" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A2645140C49BA822DFA302147B90231A2DD8246C825B2E5561535F2BFFD43192", - "spdxElementId": "SPDXRef-Package-8D06DF291817DDFE90DEF98A2470F5E9BEC769CC740E0A952AD456BA01BA5B0D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-8611F888E5F96D267FF1C1ABB73E5294331D93731E744F03D50ABF1762031537" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-2FBD391BA4E4E1B2D4B3224133632EDF2AA6050D2D8D4F8942C885821F16E941" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-ADE6F2EA06FCF21C3EE606943B254F360F4EFADFA22B69BC16B42323972F4FCC", - "spdxElementId": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-52A29FD561F2FBF291743E53E5182CC1A2D43502E7997CDFBB51983A21E1FFBC", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D6769B97AAAE015F045FC29DE22CA48890324B3BB267696D72AB16536B1AB23B", - "spdxElementId": "SPDXRef-Package-10E9F39A21C43F3067944A8DDFF45AF4C489988D6CD413D71EF0B01C5974B023" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-B4386F479CAD2138CB25B80EA8E202DF303499EA4B2022C700CE4B2BA1B4CDB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-E52419E7EAB2E968092DE27E896C15F5D7DC4C20942A0E49D3BDA9FBA93CC5F6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-867248F97C6C41C75AD10676673191D1F589BE302E260F953ED535BC34C37F44", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2368FA764D14A29B034685CA6771EFB8706AB2F7216577390AAC665519CB21C7", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-7E8F5D9C6DA9ECA19F26976E63A1CC0C561E0322DB2B51639DE9F378C64E1789", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D660E3F61DA4E975B294E111E588F31D6767CD5D04D074886A87077C5F7B51A4", - "spdxElementId": "SPDXRef-Package-37BF3908EE32502C05EF96060487E9072F24B3F77D9B074B4325B90A7525BEED" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4B55F9611FFC8C6B82B587F28C48F878A9DC64C30A678D5A818D041A7DD944B3", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-24F8B5EE850308581F605222462CD97783EA00F1FE1A8EAC8132DAE7C79A32EF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B9DF27AEA03C297D4D9DDEFCFF0AB1BC1FCDFB43605E6C299DBC309162C4925C", - "spdxElementId": "SPDXRef-Package-3B165F23526511BB1BC3D25D1DFA478AA3213A8F180EC384033A50AAA5208E83" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-89CE1414CAA94972797D6FF8979E0DBFAA9CD3E2D057BE38B55740A9DCA2C294", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-4BD59FA441EC172173A157C82D048C8C769AA630982117F095C011203ECA80FA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DAF4410E2BB3C9087A169B3DC5D387E2098271B822FB842CEE77007D9CF7BC7A", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-BD578492E1B6D65E73FA738A546B0E31220C520674A7812D79178EADA585420A", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EF2D54FA98EC031265B142FF80780E498D62AF1FBF37D1B881F4D1528A8A8A0E", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-4C9A6B5D0C7AB95415F37A76F2692798AF5AA704A9A302DC43AB4EA0B5B2EA0A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-98D65ACAB9FDFD06648CA579FBDE13C5A00FC03C599D45455020B2DF583A2D8A", - "spdxElementId": "SPDXRef-Package-A34549BDDFE40CD730D562332106997DFAD6CEEEAB5B97DA893F70E8445E3C5F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CA93236BB8CBD334C13AC9C1CD2E622525D381692098863C7594DF3E2184C6D4", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CA93236BB8CBD334C13AC9C1CD2E622525D381692098863C7594DF3E2184C6D4", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CA93236BB8CBD334C13AC9C1CD2E622525D381692098863C7594DF3E2184C6D4", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CA93236BB8CBD334C13AC9C1CD2E622525D381692098863C7594DF3E2184C6D4", - "spdxElementId": "SPDXRef-Package-E5BB1CDB85FC9C783AB0059597526D769DE1E7C59E412144C059ED6260054024" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-3200D7CA6D8927E619EAE6E3FB82BB80DA6BF3F5DB0C0CAABC506466C3902590" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-40769EAACBAA0E245D9E20C5022EFF47A8786D9E485746007AC036D4B10CC425", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4245F01EF6295CCFBE916D72B9B70B1BF1F02E5B010FD91ED953A647A967C6E2", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4245F01EF6295CCFBE916D72B9B70B1BF1F02E5B010FD91ED953A647A967C6E2", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4245F01EF6295CCFBE916D72B9B70B1BF1F02E5B010FD91ED953A647A967C6E2", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CEEE8DC0A7508C974FC1203CE01718525DD2B7450BCB7849BC60DE3FB999D381", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CEEE8DC0A7508C974FC1203CE01718525DD2B7450BCB7849BC60DE3FB999D381", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-CEEE8DC0A7508C974FC1203CE01718525DD2B7450BCB7849BC60DE3FB999D381", - "spdxElementId": "SPDXRef-Package-EAE371CB9AE792ECE6EED12661A57E00CF9F51EED477A6844F7F491DDBF4C1EC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-DF82BD14F784A131678FF4C2242C61318126DA556EDF689549C76BC77A5DDA7D", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2EA730D69A3CC53FE2BA4510A03AF6C9D4EDE95BD8C2E4A78A3D1C4F3794537D", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5CA7F7BDFD59B3E6CB4DD2C744DA673AE73EA3825668594E2ADAFD481B8B1F02", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-1AA643FC5878AC89CCC4B94E70E4DB80CC6D329BE2FE93313932B3D1B86669D7" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5AB7C5650CE119F2005CD8EC0C5E4FC4BA8B3B4C0774DC61470A842312077BA9", - "spdxElementId": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-C896BF4ABA8CC3D6B049A44CC1FBD493F78DFD34A41E93C5E2D1476C6010F320", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B8941EA4D327E9DF1B6B20DAE6C8E829C1CE2D30767C17D9F5E00161D2719B01", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E74BE45208CF0E8CC846214160452E430DEA41E9714DB021F198D887076066F1", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E74BE45208CF0E8CC846214160452E430DEA41E9714DB021F198D887076066F1", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E74BE45208CF0E8CC846214160452E430DEA41E9714DB021F198D887076066F1", - "spdxElementId": "SPDXRef-Package-C6794715F4D3BB5F1392158FD713732FBB3814F34B6E0A7BB46F8C3FF448143C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0699C5B5BDA6C36E045C7CF5007C875DB68042CC8C566010576A760C9A8836BA", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0699C5B5BDA6C36E045C7CF5007C875DB68042CC8C566010576A760C9A8836BA", - "spdxElementId": "SPDXRef-Package-F1B6BB0BB534A7DBDD941A4FC083166529EB0E4AE0436D03BF9A19DF39568682" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-4E51A8116E7C39A9C87837BD3B1C17B8322CEA23323DD29B2E41173CD8E4D5B7", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B3D5F30C6F4C897DA31933117BFB391A9177287CC31D26072129972E47E06996", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B3D5F30C6F4C897DA31933117BFB391A9177287CC31D26072129972E47E06996", - "spdxElementId": "SPDXRef-Package-40690A07BFA5376B7B03E215586CF3C2EB068AC0A65919F6944423643354D09C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-43357C895306E69902F1DB752C436B0CD3BF18128E7FBCD01CF1056589153BE0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2DDDCADBFE6B92643DE7C58162ADFAC7B5C0782ED38B363CC1CC0F27F935683B", - "spdxElementId": "SPDXRef-Package-FE635F843655F7E3AEF4480D35B3CC94F183E089CECD65DF92BF411E98FFC60A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-3BB6EBDC93E34DB9728F390186CC96E21CEA3F6204694FE88B4E928DA5F590A2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-8D6E0C5870BF65665DE70BE60EBDBCAE0A4EF9BFBD566A07D2FF53D2429D3D8A", - "spdxElementId": "SPDXRef-Package-1699161828195A03FDB363E7F903B609D236C7AAADF0F4BC0BA1A33D4F1ADFD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-556E04674AB21C6E689B621B54F3C112DD3673B2C5F20B63EE80559940B575CD", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-556E04674AB21C6E689B621B54F3C112DD3673B2C5F20B63EE80559940B575CD", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-556E04674AB21C6E689B621B54F3C112DD3673B2C5F20B63EE80559940B575CD", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-556E04674AB21C6E689B621B54F3C112DD3673B2C5F20B63EE80559940B575CD", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-FCC624413DD4742309757E31875689069D064242B463300702415FBA5F38C510", - "spdxElementId": "SPDXRef-Package-2D72581546DB40B96E35C44F26F28B9A0BE56BAEBD80338909D2C1DBC722E3A8" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74783B1098990678258F1B4E741A3CAF2954BDB52AB144B4550E60FBB11A594C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74783B1098990678258F1B4E741A3CAF2954BDB52AB144B4550E60FBB11A594C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74783B1098990678258F1B4E741A3CAF2954BDB52AB144B4550E60FBB11A594C", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74783B1098990678258F1B4E741A3CAF2954BDB52AB144B4550E60FBB11A594C", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-48265A488C29B4798425AAB3E6AB86C51F61DA2EC4140043AB6467A6D1E98574", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-160343BBDB6361CA05173FF6DAAEE8066034C85CEB37AC2227A7274B191A0B65", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "spdxElementId": "SPDXRef-Package-CC37C138AFE3FD56BAF5242097421D8A247510DAC602473C0F908356A935DFBA" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-953C20146688FC8F67C9FB0145FA4774C712C2CB6535C3AC2EC45DDFA7EBB308", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-582C6138764CA4C27CEBB0B8153CFA010167B90BCA6FE3227F944184FB07C33F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-889A62B4F13587DFFDF78B0239281C2669188D1649B2A8230ADACB0D24423F02" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-2108A1C39C65FE62DBFCED96BFCF2761D47F1F790B76147AABE38CC01E65C2C5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-608C6B2682F63752E6B4428F49433F8217EF9519DDDDE6CDF389C752FB9C26F4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-EFDC3B9BBCA44B781E4DB0D6A38A929AC5685AA1F3F21C6436DF959400C2815E", - "spdxElementId": "SPDXRef-Package-3A1C4597F0B796F6E17D6884D08BD91B53282B4143190BB5111EF13C2BFF3904" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-265C2226766351B16DE2AC774DD89E69FDFC13A7386B3B5D723DB697BB50E108", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B512828296F96786715767A9D629FA4E02BEACAC0CC0BE4A7A1CFF55AF155FB6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B512828296F96786715767A9D629FA4E02BEACAC0CC0BE4A7A1CFF55AF155FB6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B512828296F96786715767A9D629FA4E02BEACAC0CC0BE4A7A1CFF55AF155FB6", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B512828296F96786715767A9D629FA4E02BEACAC0CC0BE4A7A1CFF55AF155FB6", - "spdxElementId": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-95D82EAC2B7AFA76CDE80F2C785B59787DAD3868CF9C247FB4EA57B72AD972F6", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-07CF9D53D5D4D5E805493E9E69850AE6F3EE8BF6912290B58FBB9989E99FE550" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-270ED84947C7777BB807C511A9593856711C3D4CDD93E10AC7AEFEE203559CC1" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-F5B1FB353339B8697A0ED2F54610AD24DBB36C6215C9B0F18F0BD2159D8766DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-1EACB92C7FF042A154C8EFC0FC9296B19D6CCD9906991B0DCF684ADCEF34982B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B886264C88915A93892AFBE3D28CD5B3C8B7990F0C6A47AD506184440C46436E", - "spdxElementId": "SPDXRef-Package-2C44190107C76AB35AA723643DC045292BB4DA16C0DEB29FCB6ADCEA3C69FF8C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-0C807593FD29954BC8F35B130404576B5EFB1BE225BA5CE0D4D6982EBBDFA51A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-60E34765351FF197560F23F5A33487CE6A9CDAB7B864D630D385B30962F69264" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-C1683859D8D20AFA5B6E30531B17F537C6E3D6E545A35F18B0CCF6B221F0424F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-AEEDCEDA40742A0B1EF5C5E85E9C8ADCBAD99538D58EBA33B8A8D2F473436380" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-87D68B72738D91F4DAF5CFB35842E9DF26E614088A03DDD0EEA0D8F9EF2C78E2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D90E98FC3B3B4DB665D755E2346928B7890FAD6B00F57C503C43E3C4F16F7320", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-71F0727D1B02C5BEA2BE2C6985E0093660DAEC028DB347AB157E3CFFC6779892", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-EE85C6EEE954408AAFB35E43684ADB143297A9BD6A0915CEA647578EDB3B731F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-DBB73CAA0D4C538FD6DE2E7CC9DE531CB4228A5F275E0080B86F5EC3271F4D26" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-05A879F58DA1F31BE91952607DE2238ADAE3442065578EC89F83A199EE9E14FB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-D595C7CA243D238A94C6D0F9277EB98AE42EDA370259D4615A58E5BE78BAD562", - "spdxElementId": "SPDXRef-Package-2B70DCBDC91EBEE336A1E16DB1DB1C8D526FA433CB119E1CEBEC78CF76C2F429" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-2B53194AB5049779F3DCA31DEDD2DE05E80886EE215D7B42133B3F70B8BD17CF" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-D914F9D8753FC410B2A274561F88A3ADEEEED806A07EF94597D3068A95F76C2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-E06878D27EAB6F7665BC108F4852BB134746E2BCBF39F878B7C343F3DF5382DB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-A99FA80B0FE3022A078DA4562A1202704676BCD524F323106D769CC13334A591" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-213DBBA42E13359B27286D3744C43A0164D08EC3701294B0F147C11CEEE1A35B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-1E4C3C35999515322548566010E5657C41BAE2FFF0D0C45C8152495F1A645E90" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-02989F46467027BB3ADA96214E87DA7E9E9AB0FD2BFEB97FF765D237E0D1DD0F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E19948650D65A6CAC7C8598896B9D62260DAD3CC447A8DA3F86BF19BBBBFE2C3", - "spdxElementId": "SPDXRef-Package-52178EE1FB928380D66A9D0AF31FD1C7344BFE244742C9A3D8977EB381CA9C18" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-CA9EE4EDC8F867D571CA60981F69E15424E01985B1723E9C278DE08CDF8D85FC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-5DC5543BEDCB9EA9FB8B0C1B92F7E0CA9B7ACFDE1956F135448A6051FBB8283B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-C984B977516D6939C42430EF57A6A46DEC1665C411D741B10CB40739A2250C8B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-B6E263C241FC96C630E9B713451E0D0357E0B3F030201ECC2054DDB27C3B77C0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-61236BF9567313D7B33FAA4E1A1A2284871E52F3C55730B6A94981711095C615", - "spdxElementId": "SPDXRef-Package-F9388BB13D5D03BED09EB347B6AF0722919D62B6C761B986DC0E1D7EE693DB79" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-6ECEB7A09CD4FBD19B518C781F0CBE22FECA793B93AD87B9C4836946365AEA6E" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-E85692888E9F1087AAA8C37F815965148063AC73E15EA3CA4CFFB8B541986FAB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-A3CB98C42744A12EF36BA06A9E2CA06793701BA2E4727B56F5C0D54539DDE775" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-D0E899BED16BB06DD7189AA43D0966603682691F0B72B035E2A2E480FB31B2B6" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-709711424B89F0C2B246908D56854B43AA436C12CFE44094F18B1683E1A2B012" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-12E7360F7DF42E507132435A2F47A02B26B534C2C386A71052C70F60048EDF24" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-74C4672C7746545B890D7A35796C1049E6EBA68C5492053C3E4A99962BB6F15D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-7CDE16953CCB6637622784E3FA286DAD730ECEBA7826A22FF4F916FCA0063004" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-152A981D8D88BE81B1E86D19781BFDD9225E3B8CEE01070301374DBF60266762" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-0F0C79445F7405AD99492CB868D16B038C492FAEAD2608C8658F42426B581AE4" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-A4EF115C8893855C705030E1A252FC7E255CC1E3C9E8E661CFAADB16AD20AA2B", - "spdxElementId": "SPDXRef-Package-E05BE988C35E4A771123056763DFE1BE5BE07C758B2393E9282BC65D91858A63" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-74671EB8E35B4A22DF14E3B027232B1C75778285F2258802720CA2F93AC9490D", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-12940D6BE2876784EA340C496D8F1EFB056BFA21680D6A5A4CCEDC33AFDDFC9E", - "spdxElementId": "SPDXRef-RootPackage" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E8EA0F3E97FD8C7D36F763A368D9EC861B4D2C1C83434E91025A6A3E31EA4481", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-A28FA4B3B4FE91EE123334299064F603602BD1EBAD52FCEE7EBC54B84A5D90C9" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-E078FB58DE3F3AAFA8A52E3AE135E26FAA17CF0B6343A1B297B6C79E7E704AB9", - "spdxElementId": "SPDXRef-Package-399E0A543BFCF377BC0C4545A9CA8FF6F849B32029CF24C26CEB399324AE3B45" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2524CE27AB1FF79DE7F00E8821C641462F9770711C39E1F4BD45CB279B2407B2", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2524CE27AB1FF79DE7F00E8821C641462F9770711C39E1F4BD45CB279B2407B2", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2524CE27AB1FF79DE7F00E8821C641462F9770711C39E1F4BD45CB279B2407B2", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-2524CE27AB1FF79DE7F00E8821C641462F9770711C39E1F4BD45CB279B2407B2", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6741E5F884492B2D63E14F53560904F7CA698191F70BA379192255737B5BCE37", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6741E5F884492B2D63E14F53560904F7CA698191F70BA379192255737B5BCE37", - "spdxElementId": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-6741E5F884492B2D63E14F53560904F7CA698191F70BA379192255737B5BCE37", - "spdxElementId": "SPDXRef-Package-51957A2F03794092299CD8B250D59E6E87D2964CEA6FE0F571A96CC7D8E74CB3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-227E1194E47F7C3B267A998FF7C34792AA926E946B1C3FAEAF4B3B587E8ECED1", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-227E1194E47F7C3B267A998FF7C34792AA926E946B1C3FAEAF4B3B587E8ECED1", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-227E1194E47F7C3B267A998FF7C34792AA926E946B1C3FAEAF4B3B587E8ECED1", - "spdxElementId": "SPDXRef-Package-AB99903AA6BB7A2B201660FC44DC99CF67FD7C6FFC8466FB86CFFE6AFA6AC395" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B656407861AF208B027FAA1060EF79169BD6BF13246FE5684184809C447B3524", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-B656407861AF208B027FAA1060EF79169BD6BF13246FE5684184809C447B3524", - "spdxElementId": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5638E16E1E5402C22608F58FD835AE32404115FF41B57B3022829C3A08D36221", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5638E16E1E5402C22608F58FD835AE32404115FF41B57B3022829C3A08D36221", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5638E16E1E5402C22608F58FD835AE32404115FF41B57B3022829C3A08D36221", - "spdxElementId": "SPDXRef-Package-EAE371CB9AE792ECE6EED12661A57E00CF9F51EED477A6844F7F491DDBF4C1EC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51957A2F03794092299CD8B250D59E6E87D2964CEA6FE0F571A96CC7D8E74CB3", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-51957A2F03794092299CD8B250D59E6E87D2964CEA6FE0F571A96CC7D8E74CB3", - "spdxElementId": "SPDXRef-Package-3FD87BEBAF1421F25AC1070301239F163FB8E829969BA9348D7BAD2B2DC07DAE" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-A80E0C0722B099BC50794AC153C139176E415312F7FBFBABE742A34A79C2F5EB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-D64E41B4D447CBA6CE497C97AF6AB77786151A6D63A8B726A2C218D1F841F575" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-57FCAB9803ABA49ADF75EAC335FFAC0B21877D5BBDA67BBB3CDBC8E9290DEF7B" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-5344998CA8D94083AA2F907DAF43720B451E49DEE6AA2F0506F709D72F03E8B5", - "spdxElementId": "SPDXRef-Package-82A432D2728DABE771A1A43A17837E66571856738102DB74E0CA369488D6CDEB" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-F83C05A8544E54E54B38F78EA1DE0B76D9ABF8E9E7F1033EFFB67FDAF9D9DF2A", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-151B462B5712BA99AE2AC779A855692CDDD4E5138BBC14F9B2AE2C276E4645FB", - "spdxElementId": "SPDXRef-Package-B8941EA4D327E9DF1B6B20DAE6C8E829C1CE2D30767C17D9F5E00161D2719B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-37A1483DD1763AB3C4B23B88CDA41D11D4E3F6ED794DDB199BB90D62AC5F8FCB", - "spdxElementId": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-6C916872592301A7E41237B86EA18BBD7B3DDF166A4CE137E658DE7B7E96D11A" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-82688DE51EF1C9277A562822C937986899BDF204FF4532E6654922AA2968306C" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-6A58FB6206755980F72FDE4AA54142243E587EDDD6BE9CCD5C06F4BFFFD96A14" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-11C148282CB4B49053C32A394BCFF4A907BC944D59856E0F9521F2A5D6B83D37" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-65A0D3DE72E1B0F88AE4E719E6DC932BDC36232915C2DEE7BF0F7A18BC63B47F" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-BD1200E80F9F5836C918F1DA2045F1BB34A3B5325C541A7F680B4A739F687DB5" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-50E3A099016EFDAF62F69A76CE12A69F0B6EAD9D10C441CF1F5CC9B4EAAB5B01" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-8D4D8890E4E5038539123CD3D93420605A964FD72C1CE4F265D62DD5DE84C519" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-A68F8C82D02BDC5F078511C5EB272BDD413E458DEEDFA5A1AFDA87357F735960" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-D145BDB0CDAE33ED8C497A2AD510DB0599AA6F20FBFAE6AEFC946419A747C2A0" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-FD824409FC3C201D9D551B477B64880FB4FC0651EA4B655546478CA816F67E95" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-F70B5A708CFA02ED4706CB3E384A469336A66721F7B6C0EEE0E093E8283C5FD3" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-51C71631059BF665DC01585F93A232C4862BC78DE1AB0A01E3984D828FD5AAE2" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-5F284C0699E8072311ACE01807355B205D8365817C4778C9D18ED87EAB591602" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-0B05E6109F79399ABE1FDF4AE3B4479811BFC89A8C4D607494108D9B06394DC7", - "spdxElementId": "SPDXRef-Package-FE2678309E1424FC5E48DF1AA8AEEDE23CE108205C7F2149D5E1A5A90CC301DC" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-926EB12DE79BD05D8EF9BF30D510AF0261709972112040F31074B63256E640AD", - "spdxElementId": "SPDXRef-Package-AF1322FFBE3E55E3728455C1978002A5D1555C455DC5DF5E166DF140FEE4446D" - }, - { - "relationshipType": "DEPENDS_ON", - "relatedSpdxElement": "SPDXRef-Package-3F0C5D103B079B45BF8DEFC8B52B9701DBACF7DAB875FE41DE23992118F1D4BD", - "spdxElementId": "SPDXRef-RootPackage" - } - ], - "spdxVersion": "SPDX-2.2", - "dataLicense": "CC0-1.0", - "SPDXID": "SPDXRef-DOCUMENT", - "name": "infrastructure_itpro_teamspowershellmodule 77861064", - "documentNamespace": "https://sbom.microsoft/1:bkjmLDt9u0eOFl8ZpDAVyQ:ygnPgS-Zq0yaX5bXKLTDOQ/17372:77861064/id7eZYzMaUKCxcWA9Antnw", - "creationInfo": { - "created": "2026-05-15T10:51:46Z", - "creators": [ - "Organization: Microsoft", - "Tool: Microsoft.SBOMTool-4.1.9" - ] - }, - "documentDescribes": [ - "SPDXRef-RootPackage" - ] -} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json.sha256 b/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json.sha256 deleted file mode 100644 index d690b921cb808..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/_manifest/spdx_2.2/manifest.spdx.json.sha256 +++ /dev/null @@ -1 +0,0 @@ -462146ac92cf50257cb51e235b16e0ba98ac673f31ade83f4f166d310d2825bc \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/bin/BrotliSharpLib.dll b/Modules/MicrosoftTeams/7.8.0/bin/BrotliSharpLib.dll deleted file mode 100644 index cacfea40be04f..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/BrotliSharpLib.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.JsonWebTokens.dll b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 81ff7d8c5ffe8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Logging.dll b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 80342935b8daa..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Tokens.dll b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 5896b1741acc0..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll deleted file mode 100644 index 61e9e56fc5878..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json deleted file mode 100644 index 2fca8472e4c49..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.deps.json +++ /dev/null @@ -1,414 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "Microsoft.Teams.ConfigAPI.Cmdlets.private/1.0.0": { - "dependencies": { - "BrotliSharpLib": "0.3.3", - "Microsoft.CSharp": "4.7.0", - "Microsoft.Teams.ConfigAPI.CmdletHostContract": "3.2.8", - "NETStandard.Library": "2.0.3", - "Newtonsoft.Json": "13.0.3", - "PowerShellStandard.Library": "5.1.0", - "StyleCop.Analyzers": "1.1.118", - "System.IdentityModel.Tokens.Jwt": "8.3.0" - }, - "runtime": { - "Microsoft.Teams.ConfigAPI.Cmdlets.private.dll": {} - } - }, - "BrotliSharpLib/0.3.3": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/BrotliSharpLib.dll": { - "assemblyVersion": "0.3.2.0", - "fileVersion": "0.3.3.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Bcl.TimeProvider/8.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": { - "assemblyVersion": "8.0.0.1", - "fileVersion": "8.0.123.58001" - } - } - }, - "Microsoft.CSharp/4.7.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CSharp.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.3.0": { - "dependencies": { - "Microsoft.Bcl.TimeProvider": "8.0.1", - "Microsoft.IdentityModel.Tokens": "8.3.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - } - } - }, - "Microsoft.IdentityModel.Logging/8.3.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.3.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.3.0": { - "dependencies": { - "Microsoft.Bcl.TimeProvider": "8.0.1", - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "8.3.0", - "System.Security.Cryptography.Cng": "4.5.0", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.Teams.ConfigAPI.CmdletHostContract/3.2.8": { - "dependencies": { - "Newtonsoft.Json": "13.0.3", - "PowerShellStandard.Library": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll": { - "assemblyVersion": "3.2.8.0", - "fileVersion": "3.2.8.0" - } - } - }, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "PowerShellStandard.Library/5.1.0": { - "runtime": { - "lib/netstandard2.0/System.Management.Automation.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "StyleCop.Analyzers/1.1.118": {}, - "System.Buffers/4.5.1": { - "runtime": { - "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.3.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.3.0", - "Microsoft.IdentityModel.Tokens": "8.3.0" - }, - "runtime": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - } - } - }, - "System.Memory/4.5.5": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.4.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.2", - "fileVersion": "4.6.31308.1" - } - } - }, - "System.Numerics.Vectors/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Cng/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "4.3.0.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Text.Encodings.Web/8.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Text.Json/8.0.5": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "8.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" - } - } - } - } - }, - "libraries": { - "Microsoft.Teams.ConfigAPI.Cmdlets.private/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BrotliSharpLib/0.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/z74VNg6etlQK/N1mSD5Tz2qQUZqc3RMiuv2F8Q/MOfvg4l7a6lDYhQQTPd9s9saSokh1GqUD7JTuunOiQid8w==", - "path": "brotlisharplib/0.3.3", - "hashPath": "brotlisharplib.0.3.3.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.TimeProvider/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7kWHJnMRY7EvJev2S8+yJHZ1y7A4ZlLbA4NE+O23BDIAN5mHeqND1m+SKv1ChRS5YlCDW7yAMUe7lttRsJaAA==", - "path": "microsoft.bcl.timeprovider/8.0.1", - "hashPath": "microsoft.bcl.timeprovider.8.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jNin7yvWZu+K3U24q+6kD+LmGSRfbkHl9Px8hN1XrGwq6ZHgKGi/zuTm5m08G27fwqKfVXIWuIcUeq4Y1VQUOg==", - "path": "microsoft.identitymodel.abstractions/8.3.0", - "hashPath": "microsoft.identitymodel.abstractions.8.3.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4SVXLT8sDG7CrHiszEBrsDYi+aDW0W9d+fuWUGdZPBdan56aM6fGXJDjbI0TVGEDjJhXbACQd8F/BnC7a+m2RQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.3.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.3.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4w4pSIGHhCCLTHqtVNR2Cc/zbDIUWIBHTZCu/9ZHm2SVwrXY3RJMcZ7EFGiKqmKZMQZJzA0bpwCZ6R8Yb7i5VQ==", - "path": "microsoft.identitymodel.logging/8.3.0", - "hashPath": "microsoft.identitymodel.logging.8.3.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yGzqmk+kInH50zeSEH/L1/J0G4/yqTQNq4YmdzOhpE7s/86tz37NS2YbbY2ievbyGjmeBI1mq26QH+yBR6AK3Q==", - "path": "microsoft.identitymodel.tokens/8.3.0", - "hashPath": "microsoft.identitymodel.tokens.8.3.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.Teams.ConfigAPI.CmdletHostContract/3.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xTnN9yN80vZ0FYPx6DCzhe2Savzge3qotCXLGHpha0zywILST3Yp/2ZPW9axqf8ZTHENq9AvqdaHdiPlVuw51w==", - "path": "microsoft.teams.configapi.cmdlethostcontract/3.2.8", - "hashPath": "microsoft.teams.configapi.cmdlethostcontract.3.2.8.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "PowerShellStandard.Library/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw==", - "path": "powershellstandard.library/5.1.0", - "hashPath": "powershellstandard.library.5.1.0.nupkg.sha512" - }, - "StyleCop.Analyzers/1.1.118": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==", - "path": "stylecop.analyzers/1.1.118", - "hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9GESpDG0Zb17HD5mBW/uEWi2yz/uKPmCthX2UhyLnk42moGH2FpMgXA2Y4l2Qc7P75eXSUTA6wb/c9D9GSVkzw==", - "path": "system.identitymodel.tokens.jwt/8.3.0", - "hashPath": "system.identitymodel.tokens.jwt.8.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Numerics.Vectors/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==", - "path": "system.numerics.vectors/4.4.0", - "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", - "path": "system.text.encodings.web/8.0.0", - "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.dll b/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.dll deleted file mode 100644 index cfc0b97af69a5..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/Microsoft.Teams.ConfigAPI.Cmdlets.private.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/bin/System.IdentityModel.Tokens.Jwt.dll b/Modules/MicrosoftTeams/7.8.0/bin/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 1629dcd471af9..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/bin/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/custom/CmdletConfig.json b/Modules/MicrosoftTeams/7.8.0/custom/CmdletConfig.json deleted file mode 100644 index ddb505de9464e..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/custom/CmdletConfig.json +++ /dev/null @@ -1,5136 +0,0 @@ -{ - "CmdletConfiguration": { - "Connect-CsConfigAPI": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsSDGBulkSignInRequestStatus": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "SelfHost", - "TeamsPreview" - ] - }, - "New-CsSDGBulkSignInRequest": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "SelfHost", - "TeamsPreview" - ] - }, - "Get-CsSDGBulkSignInRequestsSummary": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "SelfHost", - "TeamsPreview" - ] - }, - "New-CsSDGDeviceTaggingRequest": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "Torus", - "SelfHost" - ] - }, - "New-CsSDGDeviceTransferRequest": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "Torus", - "SelfHost" - ] - }, - "Disconnect-CsConfigAPI": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsEffectiveTenantDialPlanModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Test-CsEffectiveTenantDialPlanModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Test-CsVoiceNormalizationRuleModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsInternalConfigApiModuleVersion": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsSessionState": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Set-CsSessionState": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Register-CsOdcServiceNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Unregister-CsOdcServiceNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsUserPoint": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsUserList": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsUserSearch": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsTenantPoint": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsVoiceUserPoint": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Get-CsVoiceUserList": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Grant-CsTeamsPolicy": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Remove-CsConfigurationModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsBatchPolicyAssignmentOperation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsBatchPolicyAssignmentOperation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsBatchPolicyPackageAssignmentOperation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsCustomPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsCustomPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Update-CsCustomPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsGroupPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsGroupPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsGroupPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Grant-CsGroupPolicyPackageAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsUserPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsUserPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsTeamTemplateList": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Update-CsTeamTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsTeamTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsTeamTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsUserPolicyPackageRecommendation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Grant-CsUserPolicyPackage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsBatchTeamsDeployment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsBatchTeamsDeploymentStatus": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionConnector": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionOperation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Test-CsTeamsShiftsConnectionValidate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsTeamsShiftsConnectionInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsTeamsShiftsConnectionInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Update-CsTeamsShiftsConnectionInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsTeamsShiftsConnectionInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionWfmTeam": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsTeamsShiftsConnectionBatchTeamMap": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsTeamsShiftsConnectionTeamMap": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionTeamMap": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionSyncResult": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionWfmUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsTeamsShiftsScheduleRecord": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnectionErrorReport": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Disable-CsTeamsShiftsConnectionErrorReport": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsTeamsShiftsConnection": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsTeamsShiftsConnection": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsTeamsShiftsConnection": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Update-CsTeamsShiftsConnection": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsTeamsShiftsConnection": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsOnlineAudioFile": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsOnlineAudioFile": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Export-CsOnlineAudioFile": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Move-CsInternalHelper": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Invoke-CsRehomeUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "Torus", - "SelfHost" - ] - }, - "Invoke-CsInternalPSTelemetry": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineTelephoneNumberCountry": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineTelephoneNumberType": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineTelephoneNumberOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineTelephoneNumberOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Complete-CsOnlineTelephoneNumberOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Clear-CsOnlineTelephoneNumberOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsPhoneNumberAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsPhoneNumberAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsPhoneNumberAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsPhoneNumberTag": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsPhoneNumberTag": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsPhoneNumberTag": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Update-CsPhoneNumberTag": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsPhoneNumberUsageChangeOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsPhoneNumberBulkUpdateTagsOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsPhoneNumberBulkUpdateLocationIdOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsPhoneNumberAssignmentBlock": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsPhoneNumberAssignmentBlock": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Export-CsAcquiredPhoneNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsExportAcquiredPhoneNumberStatus": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsPhoneNumberPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsPhoneNumberPolicyAssignment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsPhoneNumberTenantConfiguration": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsPhoneNumberTenantConfiguration": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsPhoneNumberTenantConfiguration": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsPhoneNumberSmsActivation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsPhoneNumberSmsActivation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsConfigurationModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Set-CsConfigurationModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "New-CsConfigurationModern": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost" - ] - }, - "Invoke-CsDeprecatedError": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost" - ] - }, - "Disable-CsOnlineSipDomain": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineSipDomainModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "Action": "Disable" - } - }, - "Enable-CsOnlineSipDomain": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineSipDomainModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "Action": "Enable" - } - }, - "Export-CsAutoAttendantHolidays": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Find-CsGroup": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Find-CsOnlineApplicationInstance": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsApplicationAccessPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationAccessPolicy" - } - }, - "Get-CsApplicationMeetingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationMeetingConfiguration" - } - }, - "Get-CsAutoAttendant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoAttendantHolidays": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoAttendantStatus": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoAttendantSupportedLanguage": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoAttendantSupportedTimeZone": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoAttendantTenantInformation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsCallingLineIdentity": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "CallingLineIdentity" - } - }, - "Get-CsCallQueue": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsComplianceRecordingForCallQueueTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsTagsTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsSharedCallQueueHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsSharedCallHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAutoRecordingTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAgent": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsCloudCallDataConnection": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsCloudCallDataConnectionModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "DialPlan" - } - }, - "Get-CsEffectiveTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsEffectiveTenantDialPlanModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsHostingProvider": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "Torus", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "ConfigType": "HostingProvider" - } - }, - "Get-CsHybridTelephoneNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsInboundBlockedNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundBlockedNumberPattern" - } - }, - "Get-CsInboundExemptNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundExemptNumberPattern" - } - }, - "Get-CsMeetingMigrationStatus": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsMmsStatus", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineApplicationInstance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineApplicationInstanceV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineApplicationInstanceAssociation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineApplicationInstanceAssociationStatus": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineAudioConferencingRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineAudioConferencingRoutingPolicy" - } - }, - "Get-CsBusinessVoiceDirectoryDiagnosticData": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineDialInConferencingBridge": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineDialInConferencingLanguagesSupported": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineDialinConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialinConferencingPolicy" - } - }, - "Get-CsOnlineDialInConferencingServiceNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOdcServiceNumber", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineDialinConferencingTenantConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialinConferencingTenantConfiguration" - } - }, - "Get-CsOnlineDialInConferencingTenantSettings": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialInConferencingTenantSettings" - } - }, - "Get-CsOnlineDialInConferencingUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineDialOutPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialOutPolicy" - } - }, - "Get-CsOnlineDirectoryTenant": { - "CmdletType": "Remoting", - "ModernCmdlet": "Invoke-CsDeprecatedError", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "DeprecatedErrorMessage": "This cmdlet is no longer supported, please consult public documentation or use Get-CsTenant and Get-CsOnlineDialinConferencingBridge to get the relevant attributes." - } - }, - "Get-CsOnlineEnhancedEmergencyServiceDisclaimer": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineEnhancedEmergencyServiceDisclaimerModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisCivicAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisCivicAddressModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisLocation": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisLocationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisPort": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisPortModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisSubnetModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisSwitch": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisSwitchModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineLisWirelessAccessPoint": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineLisWirelessAccessPointModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlinePSTNGateway": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePSTNGateway" - } - }, - "Get-CsOnlinePstnUsage": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePstnUsages" - } - }, - "Get-CsOnlineSchedule": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineSipDomain": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsOnlineSipDomainModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineTelephoneNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Invoke-CsDeprecatedError", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "DeprecatedErrorMessage": "This cmdlet is no longer supported, please consult public documentation" - } - }, - "Get-CsOnlineUser": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsUserSearch", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMasObjectChangelog": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsMasVersionedSchemaData": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Invoke-CsDirectObjectSync": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Set-CsTenantUserBackfill": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Invoke-CsCustomHandlerNgtprov": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Invoke-CsCustomHandlerCallBackNgtprov": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsMoveTenantServiceInstanceTaskStatus": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Move-CsTenantServiceInstance": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Move-CsTenantCrossRegion": { - "CmdletType": "Custom", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineVoicemailUserSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineVoiceRoute": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoute" - } - }, - "Get-CsOnlineVoiceRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoutingPolicy" - } - }, - "Get-CsOnlineVoiceUser": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsVoiceUserList", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsTeamsAudioConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsAudioConferencingPolicy" - } - }, - "Get-CsTeamsCallParkPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCallParkPolicy" - } - }, - "Get-CsTeamsCortanaPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCortanaPolicy" - } - }, - "Get-CsTeamsEmergencyCallRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEmergencyCallRoutingPolicy" - } - }, - "Get-CsTeamsGuestCallingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestCallingConfiguration" - } - }, - "Get-CsTeamsGuestMeetingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestMeetingConfiguration" - } - }, - "Get-CsTeamsGuestMessagingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestMessagingConfiguration" - } - }, - "Get-CsTeamsIPPhonePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsIPPhonePolicy" - } - }, - "Get-CsTeamsMeetingBroadcastConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastConfiguration" - } - }, - "Get-CsTeamsMeetingBroadcastPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastPolicy" - } - }, - "Get-CsTeamsEventsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEventsPolicy" - } - }, - "Get-CsTeamsMigrationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMigrationConfiguration" - } - }, - "Get-CsTeamsMobilityPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMobilityPolicy" - } - }, - "Get-CsTeamsNetworkRoamingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsNetworkRoamingPolicy" - } - }, - "Get-CsTeamsShiftsAppPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsShiftsAppPolicy" - } - }, - "Get-CsTeamsSurvivableBranchAppliance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliance" - } - }, - "Get-CsTeamsSurvivableBranchAppliancePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliancePolicy" - } - }, - "Get-CsTeamsTargetingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTargetingPolicy" - } - }, - "Get-CsTeamsTranslationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTranslationRule" - } - }, - "Get-CsTeamsUpgradePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsUpgradePolicy" - } - }, - "Get-CsTeamsVideoInteropServicePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsVideoInteropServicePolicy" - } - }, - "Get-CsTeamsWorkLoadPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsWorkLoadPolicy" - } - }, - "Get-CsTenant": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsTenantPoint", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsTenantBlockedCallingNumbers": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantBlockedCallingNumbers" - } - }, - "Get-CsTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantDialPlan" - } - }, - "Get-CsTenantFederationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantFederationSettings" - } - }, - "Get-CsTenantLicensingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantLicensingConfiguration" - } - }, - "Get-CsTenantMigrationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantMigrationConfiguration" - } - }, - "Get-CsTenantNetworkConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkConfiguration" - } - }, - "Get-CsTenantNetworkRegion": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkRegion" - } - }, - "Get-CsTenantNetworkSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSubnet" - } - }, - "Get-CsTenantTrustedIPAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantTrustedIPAddress" - } - }, - "Get-CsVideoInteropServiceProvider": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "VideoInteropServiceProvider" - } - }, - "Get-CsMainlineAttendantFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Grant-CsApplicationAccessPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "ApplicationAccessPolicy" - } - }, - "Grant-CsCallingLineIdentity": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "CallingLineIdentity" - } - }, - "Grant-CsDialoutPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "OnlineDialOutPolicy" - } - }, - "Grant-CsOnlineAudioConferencingRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "OnlineAudioConferencingRoutingPolicy" - } - }, - "Grant-CsOnlineVoicemailPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "OnlineVoicemailPolicy" - } - }, - "Grant-CsOnlineVoiceRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "OnlineVoiceRoutingPolicy" - } - }, - "Grant-CsTeamsAudioConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsAudioConferencingPolicy" - } - }, - "Grant-CsTeamsCallHoldPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsCallHoldPolicy" - } - }, - "Grant-CsTeamsCallParkPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsCallParkPolicy" - } - }, - "Grant-CsTeamsChannelsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsChannelsPolicy" - } - }, - "Grant-CsTeamsComplianceRecordingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsComplianceRecordingPolicy" - } - }, - "Grant-CsTeamsCortanaPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsCortanaPolicy" - } - }, - "Grant-CsTeamsEmergencyCallingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsEmergencyCallingPolicy" - } - }, - "Grant-CsTeamsEmergencyCallRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsEmergencyCallRoutingPolicy" - } - }, - "Grant-CsTeamsEnhancedEncryptionPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsEnhancedEncryptionPolicy" - } - }, - "Grant-CsTeamsFeedbackPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsFeedbackPolicy" - } - }, - "Grant-CsTeamsIPPhonePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsIPPhonePolicy" - } - }, - "Get-CsTeamsMediaLoggingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMediaLoggingPolicy" - } - }, - "Grant-CsTeamsMediaLoggingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsMediaLoggingPolicy" - } - }, - "Grant-CsTeamsMeetingBroadcastPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsMeetingBroadcastPolicy" - } - }, - "Grant-CsTeamsEventsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsEventsPolicy" - } - }, - "Grant-CsTeamsMeetingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsMeetingPolicy" - } - }, - "Grant-CsTeamsMessagingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsMessagingPolicy" - } - }, - "Grant-CsTeamsMobilityPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsMobilityPolicy" - } - }, - "Grant-CsTeamsSurvivableBranchAppliancePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsSurvivableBranchAppliancePolicy" - } - }, - "Grant-CsTeamsUpdateManagementPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsUpdateManagementPolicy" - } - }, - "Grant-CsTeamsUpgradePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsUpgradePolicy" - } - }, - "Grant-CsTeamsVideoInteropServicePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsVideoInteropServicePolicy" - } - }, - "Grant-CsTeamsVoiceApplicationsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsVoiceApplicationsPolicy" - } - }, - "Grant-CsTeamsWorkLoadPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsWorkLoadPolicy" - } - }, - "Grant-CsTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TenantDialPlan" - } - }, - "Import-CsAutoAttendantHolidays": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Import-CsOnlineAudioFile": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsApplicationAccessPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationAccessPolicy" - } - }, - "New-CsAutoAttendant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantCallableEntity": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantCallFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantCallHandlingAssociation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantDialScope": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantMenu": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantMenuOption": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoAttendantPrompt": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAutoRecordingTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsAgent": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsTagsTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsTag": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsCallingLineIdentity": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "CallingLineIdentity" - } - }, - "New-CsCallQueue": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsComplianceRecordingForCallQueueTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsSharedCallQueueHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsSharedCallHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsMainlineAttendantAppointmentBookingFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMainlineAttendantAppointmentBookingFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsMainlineAttendantAppointmentBookingFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsMainlineAttendantAppointmentBookingFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsMainlineAttendantQuestionAnswerFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMainlineAttendantQuestionAnswerFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsMainlineAttendantQuestionAnswerFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsMainlineAttendantQuestionAnswerFlow": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMainlineAttendantTenantInformation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMainlineAttendantSupportedLanguages": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsMainlineAttendantSupportedVoices": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsCloudCallDataConnection": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsCloudCallDataConnectionModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsEdgeAllowAllKnownDomains": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsEdgeAllowAllKnownDomainsHelper", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsEdgeAllowList": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsEdgeAllowListHelper", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsEdgeDomainPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsEdgeDomainPatternHelper", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsHybridTelephoneNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsInboundBlockedNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundBlockedNumberPattern" - } - }, - "New-CsInboundExemptNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundExemptNumberPattern" - } - }, - "New-CsOnlineApplicationInstance": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsOnlineApplicationInstanceV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineApplicationInstanceAssociation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineAudioConferencingRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineAudioConferencingRoutingPolicy" - } - }, - "New-CsOnlineDateTimeRange": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineLisCivicAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsOnlineLisCivicAddressModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineLisLocation": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsOnlineLisLocationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlinePSTNGateway": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePSTNGateway" - } - }, - "New-CsOnlineSchedule": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineTimeRange": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineVoiceRoute": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoute" - } - }, - "New-CsOnlineVoiceRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoutingPolicy" - } - }, - "New-CsTeamsAudioConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsAudioConferencingPolicy" - } - }, - "New-CsTeamsCallParkPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCallParkPolicy" - } - }, - "New-CsTeamsCortanaPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCortanaPolicy" - } - }, - "New-CsTeamsEmergencyCallRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEmergencyCallRoutingPolicy" - } - }, - "New-CsTeamsEmergencyNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsTeamsEmergencyNumberHelper", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsTeamsIPPhonePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsIPPhonePolicy" - } - }, - "New-CsTeamsMeetingBroadcastPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastPolicy" - } - }, - "New-CsTeamsEventsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEventsPolicy" - } - }, - "New-CsTeamsMobilityPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMobilityPolicy" - } - }, - "New-CsTeamsNetworkRoamingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsNetworkRoamingPolicy" - } - }, - "New-CsTeamsSurvivableBranchAppliance": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliance" - } - }, - "New-CsTeamsSurvivableBranchAppliancePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliancePolicy" - } - }, - "New-CsTeamsTranslationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTranslationRule" - } - }, - "New-CsTeamsWorkLoadPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsWorkLoadPolicy" - } - }, - "New-CsTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantDialPlan" - } - }, - "New-CsTenantNetworkRegion": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkRegion" - } - }, - "New-CsTenantNetworkSite": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSite" - } - }, - "New-CsTenantNetworkSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSubnet" - } - }, - "New-CsTenantTrustedIPAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantTrustedIPAddress" - } - }, - "New-CsVideoInteropServiceProvider": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "VideoInteropServiceProvider" - } - }, - "New-CsVoiceNormalizationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsVoiceNormalizationRuleHelper", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Register-CsOnlineDialInConferencingServiceNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Register-CsOdcServiceNumber", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsApplicationAccessPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationAccessPolicy" - } - }, - "Remove-CsAutoAttendant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsCallingLineIdentity": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "CallingLineIdentity" - } - }, - "Remove-CsCallQueue": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsComplianceRecordingForCallQueueTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsAutoRecordingTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsAgent": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsTagsTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsSharedCallQueueHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsSharedCallHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsHybridTelephoneNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsInboundBlockedNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundBlockedNumberPattern" - } - }, - "Remove-CsInboundExemptNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundExemptNumberPattern" - } - }, - "Remove-CsOnlineApplicationInstanceAssociation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineAudioConferencingRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineAudioConferencingRoutingPolicy" - } - }, - "Remove-CsOnlineDialInConferencingTenantSettings": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialInConferencingTenantSettings" - } - }, - "Remove-CsOnlineLisCivicAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisCivicAddressModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineLisLocation": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisLocationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineLisPort": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisPortModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineLisSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisSubnetModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineLisSwitch": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisSwitchModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineLisWirelessAccessPoint": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineLisWirelessAccessPointModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlinePSTNGateway": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePSTNGateway" - } - }, - "Remove-CsOnlineSchedule": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineTelephoneNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsOnlineTelephoneNumberModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineTelephoneNumberReleaseOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "New-CsOnlineDirectRoutingTelephoneNumberUploadOrder": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Remove-CsOnlineVoiceRoute": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoute" - } - }, - "Remove-CsOnlineVoiceRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoutingPolicy" - } - }, - "Remove-CsTeamsAudioConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsAudioConferencingPolicy" - } - }, - "Remove-CsTeamsCallParkPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCallParkPolicy" - } - }, - "Remove-CsTeamsCortanaPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCortanaPolicy" - } - }, - "Remove-CsTeamsEmergencyCallRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEmergencyCallRoutingPolicy" - } - }, - "Remove-CsTeamsIPPhonePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsIPPhonePolicy" - } - }, - "Remove-CsTeamsMeetingBroadcastPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastPolicy" - } - }, - "Remove-CsTeamsEventsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEventsPolicy" - } - }, - "Remove-CsTeamsMobilityPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMobilityPolicy" - } - }, - "Remove-CsTeamsNetworkRoamingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsNetworkRoamingPolicy" - } - }, - "Remove-CsTeamsSurvivableBranchAppliance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliance" - } - }, - "Remove-CsTeamsSurvivableBranchAppliancePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliancePolicy" - } - }, - "Remove-CsTeamsTargetingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTargetingPolicy" - } - }, - "Remove-CsTeamsTranslationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTranslationRule" - } - }, - "Remove-CsTeamsWorkLoadPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsWorkLoadPolicy" - } - }, - "Remove-CsTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantDialPlan" - } - }, - "Remove-CsTenantNetworkRegion": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkRegion" - } - }, - "Remove-CsTenantNetworkSite": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSite" - } - }, - "Remove-CsTenantNetworkSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSubnet" - } - }, - "Remove-CsTenantTrustedIPAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantTrustedIPAddress" - } - }, - "Remove-CsVideoInteropServiceProvider": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "VideoInteropServiceProvider" - } - }, - "Set-CsApplicationAccessPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationAccessPolicy" - } - }, - "Set-CsApplicationMeetingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "ApplicationMeetingConfiguration" - } - }, - "Set-CsAutoAttendant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsCallingLineIdentity": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "CallingLineIdentity" - } - }, - "Set-CsCallQueue": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsComplianceRecordingForCallQueueTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsTagsTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsSharedCallQueueHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsSharedCallHistoryTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsInboundBlockedNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundBlockedNumberPattern" - } - }, - "Set-CsInboundExemptNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "InboundExemptNumberPattern" - } - }, - "Set-CsOnlineApplicationInstance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineApplicationInstanceV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineAudioConferencingRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineAudioConferencingRoutingPolicy" - } - }, - "Set-CsOnlineDialInConferencingBridge": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineDialInConferencingServiceNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOdcServiceNumber", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineDialInConferencingTenantSettings": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineDialInConferencingTenantSettings" - } - }, - "Set-CsOnlineDialInConferencingUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineDialInConferencingUserDefaultNumber": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineEnhancedEmergencyServiceDisclaimer": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineEnhancedEmergencyServiceDisclaimerModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisCivicAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisCivicAddressModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisLocation": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisLocationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisPort": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisPortModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisSubnetModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsAutoRecordingTemplate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsAgent": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisSwitch": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisSwitchModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineLisWirelessAccessPoint": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineLisWirelessAccessPointModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlinePSTNGateway": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePSTNGateway" - } - }, - "Set-CsOnlinePstnUsage": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlinePstnUsages" - } - }, - "Set-CsOnlineSchedule": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineVoiceApplicationInstance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineVoiceApplicationInstanceV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineVoicemailUserSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsOnlineVoiceRoute": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoute" - } - }, - "Set-CsOnlineVoiceRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "OnlineVoiceRoutingPolicy" - } - }, - "Set-CsOnlineVoiceUser": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsOnlineVoiceUserV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsTeamsAudioConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsAudioConferencingPolicy" - } - }, - "Set-CsTeamsCallParkPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCallParkPolicy" - } - }, - "Set-CsTeamsCortanaPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsCortanaPolicy" - } - }, - "Set-CsTeamsEmergencyCallRoutingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEmergencyCallRoutingPolicy" - } - }, - "Set-CsTeamsGuestCallingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestCallingConfiguration" - } - }, - "Set-CsTeamsGuestMeetingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestMeetingConfiguration" - } - }, - "Set-CsTeamsGuestMessagingConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsGuestMessagingConfiguration" - } - }, - "Set-CsTeamsIPPhonePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsIPPhonePolicy" - } - }, - "Set-CsTeamsMeetingBroadcastConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastConfiguration" - } - }, - "Set-CsTeamsMeetingBroadcastPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMeetingBroadcastPolicy" - } - }, - "Set-CsTeamsEventsPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEventsPolicy" - } - }, - "Set-CsTeamsMigrationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMigrationConfiguration" - } - }, - "Set-CsTeamsMobilityPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsMobilityPolicy" - } - }, - "Set-CsTeamsNetworkRoamingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsNetworkRoamingPolicy" - } - }, - "Set-CsTeamsShiftsAppPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsShiftsAppPolicy" - } - }, - "Set-CsTeamsSurvivableBranchAppliance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliance" - } - }, - "Set-CsTeamsSurvivableBranchAppliancePolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsSurvivableBranchAppliancePolicy" - } - }, - "Set-CsTeamsTargetingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTargetingPolicy" - } - }, - "Set-CsTeamsTranslationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsTranslationRule" - } - }, - "Set-CsTeamsWorkLoadPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsWorkLoadPolicy" - } - }, - "Set-CsTenantBlockedCallingNumbers": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantBlockedCallingNumbers" - } - }, - "Set-CsTenantDialPlan": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantDialPlan" - } - }, - "Set-CsTenantFederationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantFederationSettings" - } - }, - "Set-CsTenantMigrationConfiguration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantMigrationConfiguration" - } - }, - "Set-CsTenantNetworkRegion": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkRegion" - } - }, - "Set-CsTenantNetworkSite": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSite" - } - }, - "Set-CsTenantNetworkSubnet": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantNetworkSubnet" - } - }, - "Set-CsTenantTrustedIPAddress": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TenantTrustedIPAddress" - } - }, - "Set-CsUser": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsUserModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsVideoInteropServiceProvider": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "VideoInteropServiceProvider" - } - }, - "Start-CsExMeetingMigration": { - "CmdletType": "Remoting", - "ModernCmdlet": "Start-CsMeetingMigrationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Sync-CsOnlineApplicationInstance": { - "CmdletType": "Remoting", - "ModernCmdlet": "Sync-CsOnlineApplicationInstanceV2", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsOnlineApplicationInstanceDiagnosticData": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Test-CsEffectiveTenantDialPlan": { - "CmdletType": "Remoting", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ModernCmdlet": "Test-CsEffectiveTenantDialPlanModern", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Test-CsInboundBlockedNumberPattern": { - "CmdletType": "Remoting", - "ModernCmdlet": "Test-CsInboundBlockedNumberPatternModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Test-CsTeamsUnassignedNumberTreatment": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Test-CsTeamsTranslationRule": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Test-CsVoiceNormalizationRule": { - "CmdletType": "Remoting", - "ModernCmdlet": "Test-CsVoiceNormalizationRuleModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Unregister-CsOnlineDialInConferencingServiceNumber": { - "CmdletType": "Remoting", - "ModernCmdlet": "Unregister-CsOdcServiceNumber", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Update-CsAutoAttendant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Set-CsTeamsUnassignedNumberTreatment": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsUnassignedNumberTreatment" - } - }, - "Remove-CsTeamsUnassignedNumberTreatment": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsUnassignedNumberTreatment" - } - }, - "New-CsTeamsUnassignedNumberTreatment": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsUnassignedNumberTreatment" - } - }, - "Get-CsTeamsUnassignedNumberTreatment": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsUnassignedNumberTreatment" - } - }, - "Get-CsTeamsEnhancedEncryptionPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEnhancedEncryptionPolicy" - } - }, - "Set-CsTeamsEnhancedEncryptionPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEnhancedEncryptionPolicy" - } - }, - "Remove-CsTeamsEnhancedEncryptionPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEnhancedEncryptionPolicy" - } - }, - "New-CsTeamsEnhancedEncryptionPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsEnhancedEncryptionPolicy" - } - }, - "Get-CsTeamsRoomVideoTeleConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Get-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsRoomVideoTeleConferencingPolicy" - } - }, - "Set-CsTeamsRoomVideoTeleConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Set-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsRoomVideoTeleConferencingPolicy" - } - }, - "Remove-CsTeamsRoomVideoTeleConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Remove-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsRoomVideoTeleConferencingPolicy" - } - }, - "New-CsTeamsRoomVideoTeleConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "New-CsConfigurationModern", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "ConfigType": "TeamsRoomVideoTeleConferencingPolicy" - } - }, - "Grant-CsTeamsRoomVideoTeleConferencingPolicy": { - "CmdletType": "Remoting", - "ModernCmdlet": "Grant-CsTeamsPolicy", - "AutoRestModuleName": "Microsoft.Teams.ConfigAPI.Cmdlets", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ], - "DefaultAutoRestParameters": { - "PolicyType": "TeamsRoomVideoTeleConferencingPolicy" - } - }, - "Get-CsUssUserSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Set-CsUssUserSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsUserCallingSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsUserCallingSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "New-CsUserCallingDelegate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsUserCallingDelegate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsUserCallingDelegate": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsOCEContext": { - "CmdletType": "Custom", - "ExportsTo": [ - "Torus" - ] - }, - "Clear-CsOCEContext": { - "CmdletType": "Custom", - "ExportsTo": [ - "Torus" - ] - }, - "Set-CsRegionContext": { - "CmdletType": "Custom", - "ExportsTo": [ - "Torus" - ] - }, - "Get-CsRegionContext": { - "CmdletType": "Custom", - "ExportsTo": [ - "Torus" - ] - }, - "Clear-CsRegionContext": { - "CmdletType": "Custom", - "ExportsTo": [ - "Torus" - ] - }, - "Get-CsMeetingMigrationTransactionHistory": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "Torus" - ] - }, - "Get-CsCloudTenant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsCloudUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsTeamsSettingsCustomApp": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsTeamsSettingsCustomApp": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Remove-CsUserLicenseGracePeriod": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost", - "Torus" - ] - }, - "Get-CsAadTenant": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsAadUser": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Clear-CsCacheOperation": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Move-CsAvsTenantPartition": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Invoke-CsMsodsSync": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "SelfHost", - "Torus" - ] - }, - "Get-CsPersonalAttendantSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Set-CsPersonalAttendantSettings": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - }, - "Get-CsAiAgents": { - "CmdletType": "AutoRest", - "ExportsTo": [ - "TeamsGA", - "TeamsPreview", - "SelfHost" - ] - } - } -} diff --git a/Modules/MicrosoftTeams/7.8.0/custom/Merged_custom_PsExt.ps1 b/Modules/MicrosoftTeams/7.8.0/custom/Merged_custom_PsExt.ps1 deleted file mode 100644 index cbde29b9dcb84..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/custom/Merged_custom_PsExt.ps1 +++ /dev/null @@ -1,15060 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this file is to throw an error message that it is deprecated or there is equivalent cmdlets that do the work - -function Invoke-CsDeprecatedError { - [CmdletBinding()] - param( - [Parameter(Mandatory=$true)] - [System.String] - # Error action. - ${DeprecatedErrorMessage}, - - [Parameter(Mandatory=$false)] - [System.Collections.Hashtable] - $PropertyBag - ) - - process { - Write-Error -Message $DeprecatedErrorMessage - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format enum of the cmdlet output - -class ProcessedGetOnlineEnhancedEmergencyServiceDisclaimerResponse { - [string]$Country - [string]$Version - [string]$Content - [string]$Response - [string]$RespondedByObjectId - [DateTime]$ResponseTimestamp - [string]$CorrelationId - [string]$Locale -} - -function Get-CsOnlineEnhancedEmergencyServiceDisclaimerModern { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true)] - [System.String] - # CountryOrRegion of the Emergency Disclaimer - ${CountryOrRegion}, - - [Parameter(Mandatory=$false)] - [System.String] - # Version of the Emergency Disclaimer - ${Version}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $edresponse = '' - - $input = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineEnhancedEmergencyServiceDisclaimer @PSBoundParameters -ErrorAction Stop @httpPipelineArgs - - if ($input -ne $null -and $input.Response -ne $null) - { - switch ($input.Response) - { - 0 {$edresponse = 'None'} - 1 {$edresponse = 'Accepted'} - 2 {$edresponse = 'NotAccepted'} - } - - $result = [ProcessedGetOnlineEnhancedEmergencyServiceDisclaimerResponse]::new() - $result.Content = $input.Content - $result.CorrelationId = $input.CorrelationId - $result.Country = $input.Country - $result.Locale = $input.Locale - $result.RespondedByObjectId = $input.RespondedByObjectId - $result.Response = $edresponse - $result.ResponseTimestamp = $input.ResponseTimestamp - $result.Version = $input.Version - - return $result - } - } - catch - { - Write-Host $_ - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Provide option to Accept or Reject Disclaimer - -class ProcessedSetOnlineEnhancedEmergencyServiceDisclaimerResponse { - [string]$Country - [string]$Version - [string]$Content - [string]$Response - [string]$RespondedByObjectId - [DateTime]$ResponseTimestamp - [string]$CorrelationId - [string]$Locale -} - -function Set-CsOnlineEnhancedEmergencyServiceDisclaimerModern { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # CountryOrRegion of the Emergency Disclaimer - ${CountryOrRegion}, - [Parameter(Mandatory=$false, position=1)] - [System.String] - # Version of the Emergency Disclaimer - ${Version}, - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # ForceAccept Emergency Disclaimer, Disclaimer will pop up without this parameter provided - ${ForceAccept}, - [Parameter(Mandatory=$false)] - [System.String] - # Response of the Emergency Disclaimer - ${Response}, - [Parameter(Mandatory=$false)] - [System.String] - # RespondedByObjectId of the Emergency Disclaimer - ${RespondedByObjectId}, - [Parameter(Mandatory=$false)] - [System.String] - # ResponseTimestamp of the Emergency Disclaimer - ${ResponseTimestamp}, - [Parameter(Mandatory=$false)] - [System.String] - # Locale of the Emergency Disclaimer - ${Locale}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($PSBoundParameters.ContainsKey("ForceAccept")) { - $PSBoundParameters.Remove("ForceAccept") | Out-Null - } - - $ged = $null - $edContent = $null - $edCountry = $null - $edVersion = $null - $edResponse = $null - $edRespondedByObjectId = $null - $edResponseTimestamp = $null - $edLocale = $null - - try - { - $ged = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineEnhancedEmergencyServiceDisclaimer @PSBoundParameters -ErrorAction Stop @httpPipelineArgs - $edContent = Out-String -InputObject $ged.Content - $edCountry = Out-String -InputObject $ged.Country - $edVersion = Out-String -InputObject $ged.Version - $edResponse = Out-String -InputObject $ged.Response - $edRespondedByObjectId = Out-String -InputObject $ged.RespondedByObjectId - $edResponseTimestamp = [DateTime]::UtcNow.ToString('u') - $edLocale = Out-String -InputObject $ged.Locale - - if ([string]::IsNullOrEmpty($edContent)) - { - $DiagnosticCode = Out-String -InputObject $ged.DiagnosticCode - $DiagnosticCorrelationId = Out-String -InputObject $ged.DiagnosticCorrelationId - #$DiagnosticDebugContent = Out-String -InputObject $ged.DiagnosticDebugContent - $DiagnosticGenevaLogsUrl = Out-String -InputObject $ged.DiagnosticGenevaLogsUrl - $DiagnosticReason = Out-String -InputObject $ged.DiagnosticReason - $DiagnosticSubCode = Out-String -InputObject $ged.DiagnosticSubCode - - Write-Host "DiagnosticCode : "$DiagnosticCode - Write-Host "DiagnosticCorrelationId :" $DiagnosticCorrelationId - #Write-Host $DiagnosticDebugContent - Write-Host "DiagnosticGenevaLogsUrl : " $DiagnosticGenevaLogsUrl - Write-Host "DiagnosticReason : " $DiagnosticReason - Write-Host "DiagnosticSubCode : "$DiagnosticSubCode - Return - } - } catch { - throw - } - - if(!${ForceAccept}) - { - $confirmation = Read-Host $edContent"`n[Y] Yes [N] No (default is `"N`")" - switch($confirmation) { - 'Y' { - Break - } - Default { - Return - } - } - - } else { - $null = $PSBoundParameters.Remove('ForceAccept') - } - - try { - - [System.String[]]$global:configscopes = @("48ac35b8-9aa8-4d74-927d-1f4a14a0b239/user_impersonation") - - Write-Host "Timestamp " $edResponseTimestamp - - $edResponse = 1 - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOnlineEnhancedEmergencyServiceDisclaimer -Country ${CountryOrRegion} -Version ${Version} -Content $edContent -Response $edResponse -RespondedByObjectId $edRespondedByObjectId -ResponseTimestamp $edResponseTimestamp -Locale ${Locale} -ErrorAction Stop @httpPipelineArgs - } catch { - throw - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsConfigurationModern { - [CmdletBinding(DefaultParameterSetName = 'ConfigType')] - param( - [Parameter(Mandatory=$true, ParameterSetName='ConfigType')] - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [Parameter(Mandatory=$true, ParameterSetName='Filter')] - [System.String] - # Type of configuration retrieved. - ${ConfigType}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - # Name of configuration retrieved. - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Filter')] - [System.String] - # Name of configuration retrieved. - ${Filter}, - - [Parameter(Mandatory=$false)] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $null = $customCmdletUtils.ProcessArgs() - - $xdsConfigurationOutput0 = $null - - $HashArguments = @{ ConfigType = $ConfigType} - - if (![string]::IsNullOrWhiteSpace($Identity)) - { - $HashArguments.Add('ConfigName', $Identity) - } - - $TeamsMeetingBroadcastConfiguration_FixupFormat = $false - - if($PropertyBag -ne $null) - { - if($ConfigType -eq 'TeamsMeetingBroadcastConfiguration') - { - if($PropertyBag['ExposeSDNConfigurationJsonBlob'] -eq $true) - { - $TeamsMeetingBroadcastConfiguration_FixupFormat = $true - $HashArguments.Add('HttpPipelinePrepend', { param($req, $callback, $next ) $req.RequestUri = [Uri]($req.RequestUri.ToString() + '?ExposeSDNConfigurationJsonBlob=true'); return $next.SendAsync($req, $callback); }) - } - } - else - { - #ignore - } - } - - $null = $customCmdletUtils.PutHttpPipelineSteps($HashArguments) - - $xdsConfigurationOutput0 = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsConfiguration @HashArguments - - $xdsConfigurationOutput = ($xdsConfigurationOutput0 | %{ - Convert-PsCustomObjectToPsObject (ConvertFrom-Json -InputObject $_) - }) - - if (![string]::IsNullOrWhiteSpace($Filter)) - { - $xdsConfigurationOutput = $xdsConfigurationOutput | Where-Object {($_.Identity -Like "$Filter") -or ($_.Identity -Like "Tag:$Filter")} - } - - $xdsConfigurationOutput = $xdsConfigurationOutput | %{ Set-FormatOnConfigObject -ConfigObject $_ -ConfigType $ConfigType } - - if($ConfigType -eq 'TenantFederationSettings') - { - $xdsConfigurationOutput = $xdsConfigurationOutput | %{ Convert-PsCustomObjectToPsObject (Set-FixTenantFedConfigObject -ConfigObject $_) } - } - - if($ConfigType -eq 'OnlinePSTNGateway') - { - $xdsConfigurationOutput = $xdsConfigurationOutput | %{ Convert-PsCustomObjectToPsObject (Set-FixTypoInOnlinePSTNGatewayConfigObject -ConfigObject $_) } - } - - if($TeamsMeetingBroadcastConfiguration_FixupFormat) - { - #why are we special handling this? when legacy is run, the format type name is sdnconfigurationextension which is not a wellknown type inside SfbRpsModule.format.ps1xml - #so we hack this here so that we order them and select what we need (so we dont return key, datasource) - $xdsConfigurationOutput = ($xdsConfigurationOutput | select Identity, SupportURL, AllowSdnProviderForBroadcastMeeting, SdnName, SdnLicenseId, SdnAzureSubscriptionId, SdnApiTemplateUrl, SdnApiToken, SdnRuntimeconfiguration, SdnAttendeeFallbackCount) - } - - return (Sort-GlobalFirst $xdsConfigurationOutput) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} - -# output Identity=Global before other identities -function Sort-GlobalFirst($out) -{ - # keep legacy behavior to return nothing instead of $null when nothing is found - if (($out | measure).Count -eq 0) { return } - - $out | ?{ $_.Identity -eq "Global" } - $out | ?{ $_.Identity -ne "Global" } -} - -# convert PSCustom Object to PSObject by using psserializer -function Custom-ToString($xnode) -{ - $props_to_hide = @("Element","XsAnyElements","XsAnyAttributes") - - $nodes = $xnode.SelectNodes('*[name() = "MS" or name() = "Props"]/*') - $values = ($nodes | % { - if ($_.N -notin $props_to_hide) - { - $val = $_.SelectSingleNode("text()").Value - if ($_.Name -eq "B") { $val = [bool]::Parse($val)} - "$($_.N)=$val" - } - }) - if ($values) { [string]::Join(";", $values) } -} - -function Convert-PsCustomObjectToPsObject($in) -{ - $serialized = [System.Management.Automation.PSSerializer]::Serialize($in) - $xml = [xml]$serialized - foreach ($obj in $xml.GetElementsByTagName("Obj")) - { - if ($obj.Item("LST") -eq $null -and $obj.Item("Props") -eq $null) - { - $props = $xml.CreateElement("Props", $xml.Objs.xmlns) - $null = $obj.PrependChild($props) - - if ($obj.Item("ToString") -eq $null) - { - $text = Custom-ToString $obj - if ($text -ne $null) - { - $tostring = $xml.CreateElement("ToString", $xml.Objs.xmlns) - $tostring.InnerText = $text - $null = $obj.PrependChild($tostring) - } - } - } - } - return [System.Management.Automation.PSSerializer]::Deserialize($xml.OuterXml) -} - -function Get-FormatsForConfig { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [string] - # The int status from status record - ${ConfigType} - ) - process { - # order of values like value1 and value2 is important in lines like "ConfigType=value1, value2" - $mappings = @( - "ApplicationAccessPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.ApplicationAccessPolicy", - "ApplicationMeetingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.PlatformApplications.ApplicationMeetingConfiguration", - "CallingLineIdentity=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.CallingLineIdentity", - "DialPlan=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile", - "ExternalAccessPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy", - "InboundBlockedNumberPattern=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundBlockedNumberPattern#Decorated,Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundBlockedNumberPattern", - "InboundExemptNumberPattern=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundExemptNumberPattern#Decorated,Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundExemptNumberPattern", - "OnlineAudioConferencingRoutingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineAudioConferencingRoutingPolicy", - "OnlineDialinConferencingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineDialinConferencing.OnlineDialinConferencingPolicy", - "OnlineDialinConferencingTenantConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialinConferencingTenantConfiguration", - "OnlineDialInConferencingTenantSettings=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingTenantSettings", - "OnlineDialInConferencingTenantSettings.AllowedDialOutExternalDomains=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.OnlineDialInConferencing.OnlineDialInConferencingAllowedDomain", - "OnlineDialOutPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineDialOut.OnlineDialOutPolicy", - "OnlinePSTNGateway=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig#Decorated2,Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.TrunkConfig", - "OnlinePstnUsages=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlinePstnUsages", - "OnlineVoicemailPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.OnlineVoicemail.OnlineVoicemailPolicy", - "OnlineVoiceRoute=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineRoute#Decorated", - "OnlineVoiceRoutingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.OnlineVoiceRoutingPolicy", - "PrivacyConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PrivacyConfiguration", - "TeamsAcsFederationConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AcsConfiguration.TeamsAcsFederationConfiguration", - "TeamsAppPermissionPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsAppPermissionPolicy", - "TeamsAppPermissionPolicy.DefaultCatalogApps=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.DefaultCatalogApp", - "TeamsAppPermissionPolicy.GlobalCatalogApps=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.GlobalCatalogApp", - "TeamsAppPermissionPolicy.PrivateCatalogApps=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PrivateCatalogApp", - "TeamsAppSetupPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsAppSetupPolicy", - "TeamsAppSetupPolicy.AppPresetList=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPreset", - "TeamsAppSetupPolicy.AppPresetMeetingList=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.AppPresetMeeting", - "TeamsAppSetupPolicy.PinnedAppBarApps=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedApp", - "TeamsAppSetupPolicy.PinnedMessageBarApps=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.PinnedMessageBarApp", - "TeamsAudioConferencingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.TeamsAudioConferencing.TeamsAudioConferencingPolicy", - "TeamsCallHoldPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallHoldPolicy", - "TeamsCallingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallingPolicy", - "TeamsCallParkPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCallParkPolicy", - "TeamsChannelsPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsChannelsPolicy", - "TeamsClientConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsClientConfiguration", - "TeamsComplianceRecordingApplication=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingApplication#Decorated,Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingApplication", - "TeamsComplianceRecordingApplication.ComplianceRecordingPairedApplications=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingPairedApplication", - "TeamsComplianceRecordingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsComplianceRecordingPolicy", - "TeamsComplianceRecordingPolicy.ComplianceRecordingApplications=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.ComplianceRecordingApplication", - "TeamsCortanaPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsCortanaPolicy", - "TeamsEducationAssignmentsAppPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEducationAssignmentsAppPolicy", - "TeamsEducationConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsEducationConfiguration", - "TeamsEmergencyCallingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyCallingPolicy", - "TeamsEmergencyCallRoutingPolicy.EmergencyNumbers=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyNumber", - "TeamsEmergencyCallRoutingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEmergencyCallRoutingPolicy", - "TeamsFeedbackPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsFeedbackPolicy", - "TeamsGuestCallingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestCallingConfiguration", - "TeamsGuestMeetingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestMeetingConfiguration", - "TeamsGuestMessagingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsGuestMessagingConfiguration", - "TeamsIPPhonePolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsIPPhonePolicy", - "TeamsMeetingBroadcastConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsMeetingBroadcastConfiguration", - "TeamsMeetingBroadcastPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMeetingBroadcastPolicy", - "TeamsMeetingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsMeetingConfiguration.TeamsMeetingConfiguration", - "TeamsMeetingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.TeamsMeetingPolicy", - "TeamsMessagingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMessagingPolicy", - "TeamsMigrationConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsMigrationConfiguration.TeamsMigrationConfiguration", - "TeamsMobilityPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMobilityPolicy", - "TeamsNetworkRoamingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsNetworkRoamingPolicy", - "TeamsNotificationAndFeedsPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsNotificationAndFeedsPolicy", - "TeamsShiftsAppPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsShiftsAppPolicy", - "TeamsShiftsPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsShiftsPolicy", - "TeamsSurvivableBranchAppliance=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.SurvivableBranchAppliance#Decorated", - "TeamsSurvivableBranchAppliancePolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TeamsBranchSurvivabilityPolicy", - "TeamsTranslationRule=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.AzurePSTNTrunkConfiguration.PstnTranslationRule#Decorated", - "TeamsTargetingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsTargetingPolicy", - "TeamsUnassignedNumberTreatment=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.UnassignedNumberTreatmentConfiguration.UnassignedNumberTreatment#Decorated", - "TeamsUpdateManagementPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpdateManagementPolicy", - "TeamsUpgradeConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TeamsConfiguration.TeamsUpgradeConfiguration", - "TeamsUpgradePolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsUpgradePolicy", - "TeamsVdiPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVdiPolicy", - "TeamsVideoInteropServicePolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVideoInteropServicePolicy", - "TeamsVoiceApplicationsPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsVoiceApplicationsPolicy", - "TeamsWorkLoadPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsWorkLoadPolicy", - "TenantBlockedCallingNumbers=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TenantBlockedCallingNumbers", - "TenantBlockedCallingNumbers.InboundBlockedNumberPatterns=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundBlockedNumberPattern", - "TenantBlockedCallingNumbers.InboundExemptNumberPatterns=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.InboundExemptNumberPattern", - "TenantDialPlan=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TenantDialPlan", - "TenantDialPlan.NormalizationRules=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule", - "TenantFederationSettings=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings", - "TenantFederationSettings.AllowedDomains=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowList", - "TenantFederationSettings.BlockedDomains=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DomainPattern", - "TenantLicensingConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantLicensingConfiguration", - "TenantMigrationConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantMigration.TenantMigrationConfiguration", - "TenantNetworkConfiguration=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.TenantNetworkConfigurationSettings", - "TenantNetworkConfiguration.NetworkRegions=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.NetworkRegionType#Decorated", - "TenantNetworkConfiguration.NetworkSites=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.DisplayNetworkSiteWithExpandParametersType#Decorated", - "TenantNetworkConfiguration.Subnets=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.SubnetType#Decorated", - "TenantNetworkRegion=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.DisplayNetworkRegionType#Decorated", - "TenantNetworkSite=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.DisplayNetworkSiteWithExpandParametersType#Decorated", - "TenantNetworkSubnet=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.SubnetType#Decorated", - "TenantTrustedIPAddress=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantNetworkConfiguration.TrustedIP#Decorated", - "TeamsFilesPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsFilesPolicy", - "TeamsEnhancedEncryptionPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEnhancedEncryptionPolicy", - "TeamsMediaLoggingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsMediaLoggingPolicy", - "TeamsRoomVideoTeleConferencingPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsRoomVideoTeleConferencingPolicy", - "TeamsEventsPolicy=Deserialized.Microsoft.Rtc.Management.WritableConfig.Policy.Teams.TeamsEventsPolicy", - "VideoInteropServiceProvider=Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantVideoInteropServiceConfiguration.VideoInteropServiceProvider#Decorated", - "HostingProvider=Microsoft.Rtc.Management.WritableConfig.Settings.Edge.Hosted.DisplayHostingProviderExtended" - ) - - $mappings | where {$_.StartsWith("$ConfigType")} - } -} - -function Set-FormatOnConfigObject { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true)] - # Object on which typenames need to be set - ${ConfigObject}, - - [Parameter(Mandatory=$true)] - # Type of configuration - ${ConfigType} - ) - process { - $mappings = Get-FormatsForConfig -ConfigType $ConfigType - $parenttn = $mappings | where {$_.StartsWith("$ConfigType=")} - $parenttnList = $parenttn.Split("=")[1].Split(",") - $childtnmappings = $mappings | where {$_.StartsWith("$ConfigType.")} - - foreach ($inst in $ConfigObject) - { - for ($i = 0; $i -lt $parenttnList.Count; $i++) - { - $inst.PsObject.TypeNames.Insert($i, $parenttnList[$i]) - } - - foreach($tn in $childtnmappings) - { - $childtn = $tn.Split("=")[1] - $childPropName = $tn.Split("=")[0].Split(".")[1] - foreach($instc in $inst.$childPropName) - { - $instc.PsObject.TypeNames.Insert(0,$childtn) - } - } - } - - return $ConfigObject - } -} - -function Set-FixToStringOnAllowedDomains($in, $val) -{ - $serialized = [System.Management.Automation.PSSerializer]::Serialize($in) - $xml = [xml]$serialized - foreach ($obj in $xml.GetElementsByTagName("Obj")) - { - if ($obj.Attributes["N"].'#text' -eq 'AllowedDomains') - { - if ($obj.Item("ToString") -ne $null) - { - $obj.Item("ToString").'#text' = $val - } - } - } - return [System.Management.Automation.PSSerializer]::Deserialize($xml.OuterXml) -} - -function Set-FixTenantFedConfigObject { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true)] - # Object for Get-CsTenantFederationConfiguration - ${ConfigObject} - ) - process { - if($ConfigObject.AllowedDomains.AllowedDomain -eq $null) - { - $ConfigObject.AllowedDomains = New-CsEdgeAllowAllKnownDomains -MsftInternalProcessingMode TryModern - } - elseif($ConfigObject.AllowedDomains.AllowedDomain.Count -eq 0) - { - $ConfigObject = Set-FixToStringOnAllowedDomains -val "" -in $ConfigObject - } - elseif($ConfigObject.AllowedDomains.AllowedDomain.Count -gt 0) - { - $str = "Domain=" + [string]::join(",Domain=",$ConfigObject.AllowedDomains.AllowedDomain.Domain) - $ConfigObject = Set-FixToStringOnAllowedDomains -val $str -in $ConfigObject - } - - return $ConfigObject - } -} - -#Add proerty OutboundTeamsNumberTranslationRules into the response object -function Set-FixTypoInOnlinePSTNGatewayConfigObject { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true)] - # Object for Get-CsOnlinePSTNGateway - ${ConfigObject} - ) - process { - foreach ($inst in $ConfigObject) - { - $inst | Add-Member NoteProperty 'OutboundTeamsNumberTranslationRules' $inst.OutbundTeamsNumberTranslationRules - } - - return $ConfigObject - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Transfer $PolicyRankings from user's input from string[] to object[] - -function Grant-CsGroupPolicyPackageAssignment { - [OutputType([System.String])] - [CmdletBinding(DefaultParameterSetName='RequiredPolicyList', - PositionalBinding=$false, - SupportsShouldProcess, - ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - $GroupId, - - [Parameter(Mandatory=$false, position=1)] - [AllowNull()] - [AllowEmptyString()] - $PackageName, - - [Parameter(position=2)] - [System.String[]] - $PolicyRankings, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $Delimiters = ",", ".", ":", ";", " ", "`t" - [psobject[]]$InternalRankingList = @() - foreach ($PolicyTypeAndRank in $PolicyRankings) - { - $PolicyTypeAndRankArray = $PolicyTypeAndRank -Split {$Delimiters -contains $_}, 2 - $PolicyTypeAndRankArray = $PolicyTypeAndRankArray.Trim() - if ($PolicyTypeAndRankArray.Count -lt 2) - { - throw "Invalid Policy Type and Rank pair: $PolicyTypeAndRank. Please use a proper delimeter" - } - $PolicyTypeAndRankObject = [psobject]@{ - PolicyType = $PolicyTypeAndRankArray[0] - Rank = $PolicyTypeAndRankArray[1] -as [int] - } - $InternalRankingList += $PolicyTypeAndRankObject - } - $null = $PSBoundParameters.Remove("PolicyRankings") - $null = $PSBoundParameters.Add("PolicyRankings", $InternalRankingList) - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Grant-CsGroupPolicyPackageAssignment @PSBoundParameters @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Grant-CsTeamsPolicy with Grant-CsUserPolicy, Grant-CsTenantPolicy, and Group grant - -function Grant-CsTeamsPolicy { - [CmdletBinding(PositionalBinding=$true, DefaultParameterSetName="Identity", SupportsShouldProcess=$true, ConfirmImpact='Medium')] - param( - [ArgumentCompleter({param ($CommandName, $ParameterName, $WordToComplete, $CommandAst, $FakeBoundParameters) return @("ApplicationAccessPolicy","BroadcastMeetingPolicy","CallingLineIdentity","ClientPolicy","CloudMeetingPolicy","ConferencingPolicy","DialoutPolicy","ExternalAccessPolicy","ExternalUserCommunicationPolicy","GraphPolicy","GroupPolicyPackageAssignment","HostedVoicemailPolicy","IPPhonePolicy","MobilityPolicy","OnlineAudioConferencingRoutingPolicy","OnlineVoicemailPolicy","OnlineVoiceRoutingPolicy","Policy","TeamsAppPermissionPolicy","TeamsAppSetupPolicy","TeamsAudioConferencingPolicy","TeamsCallHoldPolicy","TeamsCallingPolicy","TeamsCallParkPolicy","TeamsChannelsPolicy","TeamsComplianceRecordingPolicy","TeamsCortanaPolicy","TeamsEmergencyCallingPolicy","TeamsEmergencyCallRoutingPolicy","TeamsEnhancedEncryptionPolicy","TeamsFeedbackPolicy","TeamsFilesPolicy","TeamsIPPhonePolicy","TeamsMeetingBroadcastPolicy","TeamsMeetingPolicy","TeamsMessagingPolicy","TeamsMobilityPolicy","TeamsShiftsPolicy","TeamsSurvivableBranchAppliancePolicy","TeamsUpdateManagementPolicy","TeamsUpgradePolicy","TeamsVdiPolicy","TeamsVerticalPackagePolicy","TeamsVideoInteropServicePolicy","TeamsWorkLoadPolicy","TenantDialPlan","UserOrTenantPolicy","UserPolicyPackage","VoiceRoutingPolicy") | ?{ $_ -like "$WordToComplete*" } })] - [Parameter(Mandatory=$true)] - [System.String] - # Type of the policy - ${PolicyType}, - - [Parameter(Mandatory=$false, Position=1)] - [System.String] - # Name of the policy instance - ${PolicyName}, - - # Mandatory=$false allows for deprecated "identity=$null means Grant-to-tenant" behavior - # eventually we should set Mandatory=$true and require preferred -Global switch for that - [Parameter(Mandatory=$false, Position=0, ParameterSetName="Identity", ValueFromPipelineByPropertyName=$true, ValueFromPipeline=$true)] - [ValidateNotNullOrEmpty()] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$true, Position=0, ParameterSetName="GrantToTenant")] - [Switch] - # Use global indicating grant to tenant - ${Global}, - - [Parameter(Mandatory=$true, Position=0, ParameterSetName="GrantToGroup")] - [ValidateNotNullOrEmpty()] - [System.String] - # Unique identifier for the group - ${Group}, - - [Parameter(Mandatory=$false, ParameterSetName="GrantToGroup")] - [Nullable[int]] - ${Rank}, - - [Parameter(Mandatory=$false)] - ${AdditionalParameters}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (-not $PSBoundParameters.ContainsKey("PolicyName")) - { - # this parameter should be Mandatory=$true, however the [AllowNull]/[AllowEmptyString] attributes don't get surfaced to the wrapper cmdlet that is generated - throw [System.Management.Automation.ParameterBindingException]::new("Cannot process command because of one or more missing mandatory parameters: PolicyName.") - } - - if ($PsCmdlet.ParameterSetName -eq "GrantToGroup") - { - $parameters = @{ - GroupId=$Group - PolicyType=$PolicyType - PolicyName=$PolicyName - } - if ($Rank) { $parameters["Rank"] = $Rank } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Grant-CsGroupPolicyAssignment @parameters - } - elseif ([string]::IsNullOrWhiteSpace($Identity)) - { - if (-not $Global) - { - # The only way to grant to tenant is to use -Global - throw [System.Management.Automation.ParameterBindingException]::new("Cannot process command because of one or more missing mandatory parameters: Global.") - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Grant-CsTenantPolicy -PolicyType $PolicyType -PolicyName $PolicyName -AdditionalParameters $AdditionalParameters -forceSwitchPresent:$Force - } - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Grant-CsUserPolicy -Identity $Identity -PolicyType $PolicyType -PolicyName $PolicyName -AdditionalParameters $AdditionalParameters - } - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsConfigurationModern { - [CmdletBinding()] - param( - [Parameter(Mandatory=$true)] - [System.String] - # Type of configuration retrieved. - ${ConfigType}, - - [Parameter(Mandatory=$true)] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - #Todo: validate that $PropertyBag contains Identity or just depend on the service to reject otherwise - $xdsConfigurationOutput = $null - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsConfiguration -ConfigType $ConfigType -Body $PropertyBag -ErrorVariable err @httpPipelineArgs - if ($err) { return } - - #Todo - Handle where new failed - because the identity already exists, rbac or someother server error - #Todo: Ensure to test this under TPM, given we are referring the Microsoft.Teams.ConfigAPI.Cmdlets module - $xdsConfigurationOutput = Get-CsConfigurationModern -ConfigType $ConfigType -Identity $PropertyBag['Identity'] - - $xdsConfigurationOutput - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the identity - -function Remove-CsConfigurationModern { - [CmdletBinding()] - param( - [Parameter(Mandatory=$true)] - [System.String] - # Type of configuration deleted. - ${ConfigType}, - - [Parameter(Mandatory=$true)] - [System.String] - # Name of configuration deleted. - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsConfiguration -ConfigType $ConfigType -ConfigName $Identity @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsConfigurationModern { - [CmdletBinding()] - param( - [Parameter(Mandatory=$true)] - [System.String] - # Type of configuration retrieved. - ${ConfigType}, - - [Parameter(Mandatory=$true)] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if(!($PropertyBag.ContainsKey('Identity'))) - { - $PropertyBag['Identity'] = "Global" - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsConfiguration -ConfigType $ConfigType -ConfigName $PropertyBag['Identity'] -Body $PropertyBag @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Clear-CsOnlineTelephoneNumberOrder { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # OrderId of the Search Order - ${OrderId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Add("Action", "Cancel") - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Complete-CsOnlineTelephoneNumberOrder @PSBoundParameters -ErrorAction Stop @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Complete-CsOnlineTelephoneNumberOrder { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # OrderId of the Search Order - ${OrderId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Add("Action", "Complete") - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Complete-CsOnlineTelephoneNumberOrder @PSBoundParameters -ErrorAction Stop @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Get-CsOnlineTelephoneNumberOrder { - [CmdletBinding(DefaultParameterSetName="Search")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Search')] - [Parameter(Mandatory=$true, ParameterSetName='Generic')] - [System.String] - ${OrderId}, - - [Parameter(Mandatory=$false, ParameterSetName='Generic')] - [System.String] - ${OrderType}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineTelephoneNumberOrder @PSBoundParameters - $allProperties = $obj | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Base64 encode the byte[] content for the DirectRouting number upload file - -function New-CsOnlineDirectRoutingTelephoneNumberUploadOrder { - [CmdletBinding(DefaultParameterSetName="InputByList")] - param( - [Parameter(Mandatory=$false, ParameterSetName='InputByList')] - [System.String] - ${TelephoneNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByRange')] - [System.String] - ${StartingNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByRange')] - [System.String] - ${EndingNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByFile')] - [System.Byte[]] - ${FileContent}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if($FileContent -ne $null){ - $base64input = [System.Convert]::ToBase64String($FileContent) - $null = $PSBoundParameters.Remove("FileContent") - $null = $PSBoundParameters.Add("FileContent", $base64input) - } - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Base64 encode the byte[] content for the telephone number release file - -function New-CsOnlineTelephoneNumberReleaseOrder { - [CmdletBinding(DefaultParameterSetName="InputByList")] - param( - [Parameter(Mandatory=$false, ParameterSetName='InputByList')] - [System.String] - ${TelephoneNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByRange')] - [System.String] - ${StartingNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByRange')] - [System.String] - ${EndingNumber}, - - [Parameter(Mandatory=$false, ParameterSetName='InputByFile')] - [System.Byte[]] - ${FileContent}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if($FileContent -ne $null){ - $base64input = [System.Convert]::ToBase64String($FileContent) - $null = $PSBoundParameters.Remove("FileContent") - $null = $PSBoundParameters.Add("FileContent", $base64input) - } - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineTelephoneNumberReleaseOrder @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function New-CsPhoneNumberUsageChangeOrderModern { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String[]] - # Telephone numbers to update usage - ${TelephoneNumber}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # Telephone numbers to update usage - ${Usage}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsPhoneNumberUsageChangeOrder -TelephoneNumber $TelephoneNumber -Usage $Usage @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Remove-CsOnlineTelephoneNumberModern { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String[]] - # Telephone numbers to remove - ${TelephoneNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsOnlineTelephoneNumberPrivate -TelephoneNumber $TelephoneNumber @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Remove-CsPhoneNumberAssignment { - [CmdletBinding(DefaultParameterSetName="RemoveSome")] - param( - [Parameter(Mandatory=$true, ParameterSetName='RemoveSome')] - [Parameter(Mandatory=$true, ParameterSetName='RemoveAll')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='RemoveSome')] - [System.String] - ${PhoneNumber}, - - [Parameter(Mandatory=$true, ParameterSetName='RemoveSome')] - [System.String] - ${PhoneNumberType}, - - [Parameter(Mandatory=$true, ParameterSetName='RemoveAll')] - [Switch] - ${RemoveAll}, - - [Parameter(Mandatory=$false, ParameterSetName='RemoveSome')] - [Parameter(Mandatory=$false, ParameterSetName='RemoveAll')] - [Switch] - ${Notify}, - - [Parameter(Mandatory=$false, ParameterSetName='RemoveSome')] - [Switch] - ${AssignmentBlockedForever}, - - [Parameter(Mandatory=$false, ParameterSetName='RemoveSome')] - [System.Int32] - ${AssignmentBlockedDays}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsPhoneNumberAssignment @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsPhoneNumberAssignment { - # Do not change this default parameter set. Since LocationUpdate parameter set is a subset - # of Assignment, changing default parameter set to something else will make Identity to be - # always requried and LocationUpdate never be executed. - [CmdletBinding(DefaultParameterSetName="LocationUpdate")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Assignment')] - [Parameter(Mandatory=$true, ParameterSetName='Attribute')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Assignment')] - [Parameter(Mandatory=$true, ParameterSetName='LocationUpdate')] - [Parameter(Mandatory=$true, ParameterSetName='NetworkSiteUpdate')] - [Parameter(Mandatory=$true, ParameterSetName='ReverseNumberLookupUpdate')] - [System.String] - ${PhoneNumber}, - - [Parameter(Mandatory=$true, ParameterSetName='Assignment')] - [System.String] - ${PhoneNumberType}, - - [Parameter(ParameterSetName='Assignment')] - [Parameter(Mandatory=$true, ParameterSetName='LocationUpdate')] - [System.String] - ${LocationId}, - - [Parameter(ParameterSetName='Assignment')] - [Parameter(Mandatory=$true, ParameterSetName='NetworkSiteUpdate')] - [System.String] - ${NetworkSiteId}, - - [Parameter(ParameterSetName='Assignment')] - [System.String] - ${AssignmentCategory}, - - [Parameter(ParameterSetName='Assignment')] - [Parameter(Mandatory=$true, ParameterSetName='ReverseNumberLookupUpdate')] - [System.String] - ${ReverseNumberLookup}, - - [Parameter(Mandatory=$true, ParameterSetName='Attribute')] - [System.Boolean] - ${EnterpriseVoiceEnabled}, - - [Parameter(ParameterSetName='Assignment')] - [Switch] - ${Notify}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsPhoneNumberAssignment @PSBoundParameters @httpPipelineArgs - - if ($result -eq $null) { - return $null - } - - Write-Warning($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsPhoneNumberTenantConfiguration { - param( - [Parameter(Mandatory=$false)] - [System.Boolean] - ${AssignmentEmailEnabled}, - - [Parameter(Mandatory=$false)] - [System.Boolean] - ${UnassignmentEmailEnabled}, - - [Parameter(Mandatory=$false)] - [System.Int32] - ${AssignmentBlockedDays}, - - [Parameter(Mandatory=$false)] - [System.Boolean] - ${AssignmentBlockedForever}, - - [Parameter(Mandatory=$false)] - [System.Boolean] - ${AllowOnPremToOnlineMigration}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsPhoneNumberTenantConfiguration @PSBoundParameters @httpPipelineArgs - - if ($result -eq $null) { - return $null - } - - Write-Warning($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Write diagnostic message back to console - -function Get-CsBusinessVoiceDirectoryDiagnosticData { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # PartitionKey of the table. - ${PartitionKey}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Region to query Bvd table. - ${Region}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Bvd table name. - ${Table}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Optional resultSize. - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Optional row key. - ${RowKey}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsBusinessVoiceDirectoryDiagnosticData @PSBoundParameters - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $output = @() - foreach($internalProperty in $internalOutput.Property) - { - $entityProperty = [Microsoft.Rtc.Management.Hosted.Group.Models.EntityProperty]::new() - $entityProperty.ParseFrom($internalProperty) - $output += $entityProperty - } - - $output - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- -# Objective of this custom file: Integrate Get-CsOnlineDialinConferencingUser with Get-CsOdcUser and Search-CsOdcUser -function Get-CsOnlineDialInConferencingUser { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Number of users to be returned - ${ResultSize}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (![string]::IsNullOrWhiteSpace($Identity)) - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOdcUser -Identity $Identity @httpPipelineArgs - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsOdcUser -Top $ResultSize @httpPipelineArgs - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Register-CsOdcServiceNumber - -function Register-CsOdcServiceNumber { - [CmdletBinding(PositionalBinding=$false, DefaultParameterSetName="ById")] - param( - - [string] - [ValidateNotNullOrEmpty()] - [Parameter(Mandatory=$true, ParameterSetName="ById", Position=0)] - ${Identity}, - - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - [ValidateNotNull()] - [Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="ByInstance")] - ${Instance}, - - [string] - [ValidateNotNull()] - ${BridgeId}, - - [string] - [ValidateNotNullOrEmpty()] - ${BridgeName}, - - [switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($Identity -ne "") - { - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Register-CsOdcServiceNumber @PSBoundParameters @httpPipelineArgs - } - elseif ($Instance -ne $null) - { - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber]::new() - $Body.Number = $Instance.Number - $Body.PrimaryLanguage = $Instance.PrimaryLanguage - $Body.SecondaryLanguages = $Instance.SecondaryLanguages - - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Register-CsOdcServiceNumber -Body $Body -BridgeId $BridgeId -BridgeName $BridgeName @httpPipelineArgs - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Set-CsOdcBridgeModern - -function Set-CsOnlineDialInConferencingBridge { - [CmdletBinding(PositionalBinding=$false)] - param( - [string] - ${Name}, - - [string] - ${DefaultServiceNumber}, - - [switch] - ${SetDefault}, - - [string] - ${Identity}, - - [switch] - ${Force}, - - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge] - [Parameter(ValueFromPipeline)] - ${Instance}, - - [switch] - ${AsJob}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($Identity -ne "") { - # This should map to SetCsOdcBridge_SetExpanded.cs - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcBridge @PSBoundParameters @httpPipelineArgs - } - elseif ($Name -ne "") { - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BridgeUpdateRequest]::new() - - if ($PSBoundParameters.ContainsKey("DefaultServiceNumber") -and $PSBoundParameters["DefaultServiceNumber"] -ne "") { - $Body.DefaultServiceNumber = $DefaultServiceNumber - } - - $Body.SetDefault = $SetDefault - - # This should map to SetCsOdcBridge_Set1.cs - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcBridge -Name $Name -Body $Body @httpPipelineArgs - } - elseif ($Instance -ne $null) { - if ($DefaultServiceNumber -eq "" -and !($Instance.DefaultServiceNumber -eq $null)) { - $DefaultServiceNumber = $Instance.DefaultServiceNumber.Number - } - - if ($PSBoundParameters.ContainsKey('SetDefault') -eq $false) { - $SetDefault = $Instance.IsDefault - } - - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.BridgeUpdateRequest]::new() - - if ($DefaultServiceNumber -ne "") { - $Body.DefaultServiceNumber = $DefaultServiceNumber - } - - $Body.SetDefault = $SetDefault - $Body.Name = $Instance.Name - - # This should map to SetCsOdcBridge_Set.cs - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcBridge -Identity $Instance.Identity -Body $Body @httpPipelineArgs - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Set-CsOdcUserModern - -function Set-CsOnlineDialInConferencingUser { - [CmdletBinding(PositionalBinding=$false)] - param( - [System.Object] - [Parameter(ValueFromPipelineByPropertyName, ValueFromPipeline)] - ${Identity}, - - [string] - ${TollFreeServiceNumber}, - - [string] - ${BridgeName}, - - [switch] - ${SendEmail}, - - [string] - ${ServiceNumber}, - - [switch] - ${Force}, - - [switch] - ${ResetLeaderPin}, - - [string] - ${SendEmailToAddress}, - - [string] - ${BridgeId}, - - [Nullable[boolean]] - ${AllowTollFreeDialIn}, - - [switch] - ${AsJob}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($Identity -is [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser]){ - $null = $PSBoundParameters.Remove('Identity') - $PSBoundParameters.Add('Identity', $Identity.Identity) - } - - # Change from AllowTollFreeDialIn boolean to switch. - if ($PSBoundParameters.ContainsKey("AllowTollFreeDialIn")){ - $null = $PSBoundParameters.Remove("AllowTollFreeDialIn") - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcUser -AllowTollFreeDialIn:$AllowTollFreeDialIn @PSBoundParameters @httpPipelineArgs - } - else{ - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcUser @PSBoundParameters @httpPipelineArgs - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Unregister-CsOdcServiceNumber - -function Unregister-CsOdcServiceNumber { - [CmdletBinding(PositionalBinding=$false, DefaultParameterSetName="ById")] - param( - - [string] - [ValidateNotNullOrEmpty()] - [Parameter(Mandatory=$true, ParameterSetName="ById", Position=0)] - ${Identity}, - - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - [ValidateNotNull()] - [Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="ByInstance")] - ${Instance}, - - [string] - [ValidateNotNull()] - ${BridgeId}, - - [string] - [ValidateNotNullOrEmpty()] - ${BridgeName}, - - [switch] - ${Force}, - - [switch] - ${RemoveDefaultServiceNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($Identity -ne "") - { - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Unregister-CsOdcServiceNumber @PSBoundParameters @httpPipelineArgs - } - elseif ($Instance -ne $null) - { - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber]::new() - $Body.Number = $Instance.Number - $Body.PrimaryLanguage = $Instance.PrimaryLanguage - $Body.SecondaryLanguages = $Instance.SecondaryLanguages - - if($PSBoundParameters.ContainsKey('RemoveDefaultServiceNumber') -eq $false) - { - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Unregister-CsOdcServiceNumber -Body $Body -BridgeId $BridgeId -BridgeName $BridgeName @httpPipelineArgs - } - else - { - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Unregister-CsOdcServiceNumber -Body $Body -BridgeId $BridgeId -BridgeName $BridgeName -RemoveDefaultServiceNumber @httpPipelineArgs - } - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: cmdlet for Orchestration- This cmdlets compress csv files. - -function New-CsBatchTeamsDeployment -{ - [OutputType([System.String])] - [CmdletBinding( PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - $TeamsFilePath, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - $UsersFilePath, - - [Parameter(Mandatory=$true, position=2)] - [System.String] - $UsersToNotify, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $TeamsFile = "$env:TEMP\Teams.csv" - $UsersFile = "$env:TEMP\Users.csv" - Copy-Item $TeamsFilePath -Destination $TeamsFile -Force - Copy-Item $UsersFilePath -Destination $UsersFile -Force - $zipFile = "$env:TEMP\TeamsDeployment.Zip" - - $compress = @{ - LiteralPath= $TeamsFile , $UsersFile - CompressionLevel = "Fastest" - DestinationPath = $zipFile - } - - Compress-Archive @compress -Update - - $FileStream = [System.IO.File]::ReadAllBytes($zipFile) - $B64String = [System.Convert]::ToBase64String($FileStream, [System.Base64FormattingOptions]::None) - - $null = $PSBoundParameters.Remove("TeamsFilePath") - $null = $PSBoundParameters.Remove("UsersFilePath") - $null = $PSBoundParameters.Add("DeploymentCsv", $B64String) - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsBatchTeamsDeployment @PSBoundParameters @httpPipelineArgs - - Write-Output $internalOutput - - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: To support enums for DeploymentName and ObjectClass and support Boolean - -function Invoke-CsDirectObjectSync { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody] - # Request body for DsSync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.DirectoryDeploymentName] - # Deployment Name. - ${DeploymentName}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.DirectoryObjectClass] - # Object Class enum. - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # GUID of the user. - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # List of ObjectId. - ${ObjectIds}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress. - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant. - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - # Sync all the users of the tenant. - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync options like resync entity with all links. - ${ReSyncOption}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Invoke-CsDirectObjectSync @PSBoundParameters - - Write-Output $obj - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Get-CsTeamsSettingsCustomApp { - [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $settings = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsTeamsSettingsCustomApp @PSBoundParameters @httpPipelineArgs - $targetProperties = $settings | Select-Object -Property isSideloadedAppsInteractionEnabled - if ($targetProperties.isSideloadedAppsInteractionEnabled -eq $null) { - $targetProperties.isSideloadedAppsInteractionEnabled = $false - } - Write-Output $targetProperties - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsTeamsSettingsCustomApp { - [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true)] - [System.Boolean] - ${isSideloadedAppsInteractionEnabled}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $getResult = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsTeamsSettingsCustomApp - # Stop execution if internal cmdlet is failing - if ($getResult -eq $null) { - throw 'Internal Error. Please try again.' - } - - $appSettingsListValue = @() - $null = $PSBoundParameters.Add("isAppsEnabled", $getResult.isAppsEnabled) - $null = $PSBoundParameters.Add("isAppsPurchaseEnabled", $getResult.isAppsPurchaseEnabled) - $null = $PSBoundParameters.Add("isExternalAppsEnabledByDefault", $getResult.isExternalAppsEnabledByDefault) - $null = $PSBoundParameters.Add("isLicenseBasedPinnedAppsEnabled", $getResult.isLicenseBasedPinnedAppsEnabled) - $null = $PSBoundParameters.Add("isTenantWideAutoInstallEnabled", $getResult.isTenantWideAutoInstallEnabled) - $null = $PSBoundParameters.Add("LobTextColor", $getResult.LobTextColor) - $null = $PSBoundParameters.Add("LobBackground", $getResult.LobBackground) - $null = $PSBoundParameters.Add("LobLogo", $getResult.LobLogo) - $null = $PSBoundParameters.Add("LobLogomark", $getResult.LobLogomark) - $null = $PSBoundParameters.Add("appSettingsList", $appSettingsListValue) - $null = $PSBoundParameters.Add("appAccessRequestConfig", $getResult.appAccessRequestConfig) - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsTeamsSettingsCustomApp @PSBoundParameters @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get meeting migration transaction history for a user -.Description -Get meeting migration transaction history for a user -#> -function Get-CsMeetingMigrationTransactionHistory { - param( - [Parameter(Mandatory=$true)] - [System.String] - # Identity. - # Supports UPN and SIP - ${Identity}, - - [Parameter()] - [System.String] - # CorrelationId - ${CorrelationId}, - - [Parameter()] - [System.DateTime] - # start time filter - to get meeting migration transaction history after starttime - ${StartTime}, - - [Parameter()] - [System.DateTime] - # end time filter - to get meeting migration transaction history before endtime - ${EndTime}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Fetching only Meeting Migration transaction history - # need to pipe to convert-ToJson | Convert-FromJson to support output in list format and sending down to further pipeline commands. - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMeetingMigrationTransactionHistoryModern -userIdentity $Identity -StartTime $StartTime -EndTime $EndTime -CorrelationId $CorrelationId @httpPipelineArgs | Foreach-Object { ( ConvertTo-Json $_) } | Foreach-Object {ConvertFrom-Json $_} - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get meeting migration status for a user or at tenant level -.Description -Get meeting migration status for a user or tenant level -#> -function Get-CsMmsStatus { - param( - [Parameter()] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter()] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter()] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [switch] - # SummaryOnly - to get only meting migration status summary. - ${SummaryOnly}, - - [Parameter()] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if($PSBoundParameters.ContainsKey('SummaryOnly')) - { - # Fetching only Meeting Migration status summary - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMeetingMigrationStatusSummaryModern -Identity $Identity -StartTime $StartTime -EndTime $EndTime -State $state -MigrationType $MigrationType @httpPipelineArgs | ConvertTo-Json - } - else - { - # Need to display output in a list format and should be able to pipe output to other cmdlets for filtering. - # with Format-List, not able to send the output for piping. So did this Convert-ToJson and Converting object from Json which displays output in list format and also able to refer with index value. - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMeetingMigrationStatusModern -Identity $Identity -StartTime $StartTime -EndTime $EndTime -State $state -MigrationType $MigrationType @httpPipelineArgs | Foreach-Object { ( ConvertTo-Json $_) } | Foreach-Object {ConvertFrom-Json $_} - } - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: cmdlet for signin batch of user- This cmdlets converts the input from the csv file to required type to call the internal cmdlet - -function New-CsSdgBulkSignInRequest -{ - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true)] - [System.String] - $DeviceDetailsFilePath, - [Parameter(Mandatory=$true)] - [System.String] - $Region - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $deviceDetails = Import-Csv -Path $DeviceDetailsFilePath - $deviceDetailsInput = @(); - $deviceDetails | ForEach-Object { $deviceDetailsInput += [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.SdgBulkSignInRequestItem]@{ Username=$_.Username;HardwareId=$_.HardwareId }} - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsSdgBulkSignInRequest -Body $deviceDetailsInput -TargetRegion $Region - - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Transfer $PolisyList from user's input from string[] to object[], enable inline input - -function Get-CsTeamTemplateList { - [OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject])] - [CmdletBinding(DefaultParameterSetName='DefaultLocaleOverride', PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The language and country code of templates localization. - ${PublicTemplateLocale}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ([string]::IsNullOrWhiteSpace($PublicTemplateLocale)) { - $null = $PSBoundParameters.Add("PublicTemplateLocale", "en-US") - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsTeamTemplateList @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Validate team template payload contains General channel on create, add if not - -function New-CsTeamTemplate { - [OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] - [CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(ParameterSetName='New', Mandatory)] - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Locale of template. - ${Locale}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate] - # The client input for a request to create a template. - # Only admins from Config Api can perform this request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's DisplayName. - ${DisplayName}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template short description. - ${ShortDescription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[]] - # Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - # To construct, see NOTES section for APP properties and create a hash table. - ${App}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets list of categories. - ${Category}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[]] - # Gets or sets the set of channel templates included in the team template. - # To construct, see NOTES section for CHANNEL properties and create a hash table. - ${Channel}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's classification.Tenant admins configure AAD with the set of possible values. - ${Classification}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's Description. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings] - # Governs discoverability of a team. - # To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - ${DiscoverySetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings] - # Governs use of fun media like giphy and stickers in the team. - # To construct, see NOTES section for FUNSETTING properties and create a hash table. - ${FunSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings] - # Guest role settings for the team. - # To construct, see NOTES section for GUESTSETTING properties and create a hash table. - ${GuestSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template icon. - ${Icon}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - ${IsMembershipLimitedToOwner}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings] - # Member role settings for the team. - # To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - ${MemberSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings] - # Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - # To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - ${MessagingSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AAD user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - ${OwnerUserObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets published name. - ${PublishedBy}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - ${Specialization}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - ${TemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets uri to be used for GetTemplate api call. - ${Uri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Used to control the scope of users who can view a group/team and its members, and ability to join. - ${Visibility}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $generalChannel = @{ - DisplayName = "General"; - id= "General"; - isFavoriteByDefault= $true - } - - if ($null -ne $Body) { - $Channel = $Body.Channel - } - - if ($null -eq $Channel) { - if ($null -ne $Body) { - $Body.Channel = $generalChannel - $PSBoundParameters['Body'] = $Body - } else { - $null = $PSBoundParameters.Add("Channel", $generalChannel) - } - } else { - $hasGeneralChannel = $false - foreach ($channel in $Channel){ - if ($channel.displayName -eq "General") { - $hasGeneralChannel = $true - } - } - if ($hasGeneralChannel -eq $false) { - if ($null -ne $Body) { - $Body.Channel += $generalChannel - $PSBoundParameters['Body'] = $Body - } else { - $Channel += $generalChannel - $PSBoundParameters['Channel'] = $Channel - } - } - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsTeamTemplate @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format Response of Get-CsAadTenant - -function Get-CsAadTenant { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAadTenant @PSBoundParameters - $allProperties = $obj | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format Response of Get-CsAadUser - -function Get-CsAadUser { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAadUser @PSBoundParameters - $allProperties = $obj | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsMasVersionedSchemaData with Get-CsMasVersionedData - -function Get-CsMasVersionedSchemaData { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Schema to get from MAS DB. - ${SchemaName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Last X versions to fetch from MAS DB. - ${Version}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMasVersionedSchemaData @PSBoundParameters - $allProperties = $obj | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsMoveTenantServiceInstanceTaskStatus with Get-CsTenantMigrationDetail - -function Get-CsMoveTenantServiceInstanceTaskStatus { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMoveTenantServiceInstanceTaskStatus @PSBoundParameters - $allProperties = $output | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsTenant with Get-CsTenantObou - -function Get-CsTenantPoint { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $defaultPropertySet = "Extended" - $tenant = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsTenantObou -DefaultPropertySet $defaultPropertySet @httpPipelineArgs - $allProperties = $tenant | Select-Object -Property * -ExcludeProperty LastProvisionTimeStamps, LastPublishTimeStamps - $allProperties | Add-Member -NotePropertyName LastProvisionTimeStamps -NotePropertyValue $tenant.LastProvisionTimeStamps.AdditionalProperties -passThru | Add-Member -NotePropertyName LastPublishTimeStamps -NotePropertyValue $tenant.LastPublishTimeStamps.AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - - -function Invoke-CsCustomHandlerCallBackNgtprov { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Unique Id of the Handler. - ${Id}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.CustomHandlerOperationName] - # Callback Operation. - ${Operation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # EventName for the SendEventPostURI. - ${Eventname}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Invoke-CsCustomHandlerCallBackNgtprov @PSBoundParameters - $allProperties = $obj | Select-Object -ExpandProperty AdditionalProperties - - Write-Output $allProperties - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: To support enums for ObjectClass and support Boolean - -function Invoke-CsMsodsSync { - [CmdletBinding(PositionalBinding=$false)] - param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody] - # Request body for ReSync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.ObjectClass] - # Object Class enum. - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # TenantId GUID. - ${TenantId}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # List of User ObjectId. - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress. - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant. - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - # Sync all the users of the tenant. - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync options like resync entity with all links. - ${ReSyncOption}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $obj = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Invoke-CsMsodsSync @PSBoundParameters @httpPipelineArgs - - Write-Output $obj - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Move-CsTenantCrossRegion with New-CsTenantCrossMigration - -function Move-CsTenantCrossRegion { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsTenantCrossMigration @httpPipelineArgs - - Write-Output $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Move-CsTenantServiceInstance with New-CsTenantCrossMigration - -function Move-CsTenantServiceInstance { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Can take following values (PrepForMove, StartDualSync, Finalize) - ${MoveOption}, - - [Parameter(Mandatory=$false)] - [System.String] - # Service Instance where tenant is to be migrated - ${TargetServiceInstance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsTenantCrossMigration -MoveOption $MoveOption -TargetServiceInstance $TargetServiceInstance @httpPipelineArgs - - Write-Output $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: map parameters to request body - -function Set-CsOnlineSipDomainModern { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Domain Name parameter. - ${Domain}, - - [Parameter(Mandatory=$true, Position=1)] - [System.String] - # Action decides enable or disable sip domain - ${Action}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TenantSipDomainRequest]::new() - - $Body.DomainName = $Domain - $Body.Action = $Action - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOnlineSipDomain -Body $Body @httpPipelineArgs - Write-AdminServiceDiagnostic($result.Diagnostic) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsOnlineUser with Get-CsUser and Search-CsUser - -function Get-CsUserList { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Number of users to be returned - ${ResultSize}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - #To not display user policies in output - ${SkipUserPolicies}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To only fetch soft-deleted users - ${SoftDeletedUsers}, - - [Parameter(Mandatory=$false)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.AccountType] - # To only fetch users with specified account type - ${AccountType}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $defaultPropertySet = "Extended" - $internalfilter = "" - if ($AccountType) - { - if (![string]::IsNullOrWhiteSpace($Identity)) - { - Write-Error "AccountType parameter cannot be used with Identity parameter." - return - } - else - { - $internalfilter = "AccountType -eq '$AccountType'" - } - } - if (![string]::IsNullOrWhiteSpace($Identity)) - { - $user = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs - $allProperties = $user | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain, LastProvisionTimeStamps, LastPublishTimeStamps - $allProperties | Add-Member -NotePropertyName LastProvisionTimeStamps -NotePropertyValue $user.LastProvisionTimeStamps.AdditionalProperties -passThru | Add-Member -NotePropertyName LastPublishTimeStamps -NotePropertyValue $user.LastPublishTimeStamps.AdditionalProperties - - Write-Output $allProperties - } - else - { - if ($SoftDeletedUsers) - { - if (![string]::IsNullOrWhiteSpace($internalfilter)) - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $internalfilter -Top $ResultSize -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - else - { - if (![string]::IsNullOrWhiteSpace($internalfilter)) - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $internalfilter -Top $ResultSize -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsOnlineUser with Get-CsUser - -function Get-CsUserPoint { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To not display user policies in output - ${SkipUserPolicies}, - - [Parameter(Mandatory=$false)] - [System.String[]] - # Select Properties - ${Properties}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $forcedProperties = @( - "Identity", - "UserPrincipalName", - "Alias", - "AccountEnabled", - "DisplayName" - ) - - if ($Properties -ne $null -and $Properties.Count -gt 0) { - $propertiesArray = $Properties | ForEach-Object { $_.Trim() } - $selectArray = $forcedProperties + $propertiesArray - $selectArray = $selectArray | ForEach-Object { $_.ToLower() } | Sort-Object -Unique - $propertiesToSelect = $selectArray -join ',' - } else { - $propertiesToSelect = $null - } - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (![string]::IsNullOrWhiteSpace($Identity)) - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $user = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Includedefaultproperty:$false -Select $propertiesToSelect @httpPipelineArgs - } else { - $user = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet "Extended" @httpPipelineArgs - } - - $allProperties = $user | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain, LastProvisionTimeStamps, LastPublishTimeStamps - $allProperties | Add-Member -NotePropertyName LastProvisionTimeStamps -NotePropertyValue $user.LastProvisionTimeStamps.AdditionalProperties -passThru | Add-Member -NotePropertyName LastPublishTimeStamps -NotePropertyValue $user.LastPublishTimeStamps.AdditionalProperties - - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $allProperties = $allProperties | Select-Object -Property $selectArray - } - - Write-Output $allProperties - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsOnlineUser with Get-CsUser and Search-CsUser - -function Get-CsUserSearch { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false, DontShow = $true)] - [System.String[]] - # List of user identifiers - ${Identities}, - - [Parameter(Mandatory=$false)] - [System.String] - # Filter to be applied to the list of users - ${Filter}, - - [Alias('Sort')] - [Parameter(Mandatory=$false)] - [System.String] - # OrderBy to be applied to the list of users - ${OrderBy}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Number of users to be returned - ${ResultSize}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To skip user policies in output - ${SkipUserPolicies}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To only fetch soft-deleted users - ${SoftDeletedUsers}, - - [Parameter(Mandatory=$false)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.AccountType] - # To only fetch users with specified account type - ${AccountType}, - - [Parameter(Mandatory=$false)] - [System.String[]] - # Select Properties - ${Properties}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try - { - # Will break if $forcedProperties has too few elements. Check https://skype.visualstudio.com/DefaultCollection/SBS/_git/infrastructure_web_interfaces-powershell/pullRequest/1121498#1740129091 - # If the final selection of properties has less than 5 properties, the output formatting will be broken. - $forcedProperties = @( - "identity", - "userPrincipalName", - "alias", - "accountEnabled", - "displayName" - ) - - if ($Properties -ne $null -and $Properties.Count -gt 0) { - $propertiesArray = $Properties | ForEach-Object { $_.Trim() } - $selectArray = $forcedProperties + $propertiesArray - $selectArray = $selectArray | ForEach-Object { $_.ToLower() } | Sort-Object -Unique - $propertiesToSelect = $selectArray -join ',' - } else { - $propertiesToSelect = $null - $selectArray = $null - } - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $defaultPropertySet = "Extended" - if ($AccountType) - { - if (![string]::IsNullOrWhiteSpace($Identity)) - { - Write-Error "AccountType parameter cannot be used with Identity parameter." - return - } - if (![string]::IsNullOrWhiteSpace($Filter)) - { - $Filter += " -and AccountType -eq '$AccountType'" - } - else - { - $Filter = "AccountType -eq '$AccountType'" - } - } - if ($Identities -ne $null) - { - if (![string]::IsNullOrWhiteSpace($Filter)) - { - Write-Error "Filter parameter cannot be used along with Identity input." - return - } - $i = 0 - $count = $Identities.Count - $filterstring = "" - while ($i -lt $count) - { - $id = $Identities[$i] - if (![string]::IsNullOrWhiteSpace($filterstring)) - { - $filterstring += " or userprincipalname eq '$id'" - } - else - { - $filterstring = "userprincipalname eq '$id'" - } - $i = $i + 1 - } - - if (![string]::IsNullOrEmpty($filterstring)) - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $filterstring @httpPipelineArgs -OrderBy $OrderBy -Select $propertiesToSelect -Includedefaultproperty:$false | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } else { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $filterstring @httpPipelineArgs -OrderBy $OrderBy | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - } - - elseif (![string]::IsNullOrWhiteSpace($Identity)) - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $user = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Select $propertiesToSelect @httpPipelineArgs - $allProperties = $user | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain, LastProvisionTimeStamps, LastPublishTimeStamps - $allProperties | Add-Member -NotePropertyName LastProvisionTimeStamps -NotePropertyValue $user.LastProvisionTimeStamps.AdditionalProperties -passThru | Add-Member -NotePropertyName LastPublishTimeStamps -NotePropertyValue $user.LastPublishTimeStamps.AdditionalProperties - $selectedProperties = $allProperties | Select-Object -Property $selectArray - - Write-Output $selectedProperties - } else { - $user = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs - $allProperties = $user | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain, LastProvisionTimeStamps, LastPublishTimeStamps - $allProperties | Add-Member -NotePropertyName LastProvisionTimeStamps -NotePropertyValue $user.LastProvisionTimeStamps.AdditionalProperties -passThru | Add-Member -NotePropertyName LastPublishTimeStamps -NotePropertyValue $user.LastPublishTimeStamps.AdditionalProperties - - Write-Output $allProperties - } - return - } - elseif (![string]::IsNullOrWhiteSpace($Filter)) - { - if ($SoftDeletedUsers) - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $Filter -Top $ResultSize -OrderBy $OrderBy -Select $propertiesToSelect -Includedefaultproperty:$false -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } else { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $Filter -Top $ResultSize -OrderBy $OrderBy -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - else - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $Filter -Top $ResultSize -OrderBy $OrderBy -Select $propertiesToSelect -Includedefaultproperty:$false @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } else { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -PSFilter $Filter -Top $ResultSize -OrderBy $OrderBy -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - } - else - { - if ($SoftDeletedUsers) - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -OrderBy $OrderBy -Select $propertiesToSelect -Includedefaultproperty:$false -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } else { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -OrderBy $OrderBy -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet -Softdeleteduser:$true @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - else - { - if (![string]::IsNullOrWhiteSpace($propertiesToSelect)) { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -OrderBy $OrderBy -Select $propertiesToSelect -Includedefaultproperty:$false @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } else { - $users = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Top $ResultSize -OrderBy $OrderBy -SkipUserPolicy:$SkipUserPolicies -DefaultPropertySet $defaultPropertySet @httpPipelineArgs | Select-Object -Property * -ExcludeProperty Location, Number, DataCenter, PSTNconnectivity, SipDomain - } - } - } - - if ($selectArray -ne $null) - { - # Will break if $selectArray has less than 5 elements. Check https://skype.visualstudio.com/DefaultCollection/SBS/_git/infrastructure_web_interfaces-powershell/pullRequest/1121498#1740129091 - $formattedUsers = $users | Select-Object -Property $selectArray - $formattedUsers - } - else{ - $users - } - - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsOnlineVoiceUser with Get-CsUser - -function Get-CsVoiceUserList { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [System.Management.Automation.SwitchParameter] - #To fetch location field - ${ExpandLocation}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Number of users to be returned - ${First}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To only fetch users which have a number assigned to them - ${NumberAssigned}, - - [Parameter(Mandatory=$false)] - [System.Management.Automation.SwitchParameter] - # To only fetch users which don't have a number assigned to them - ${NumberNotAssigned}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Guid]] - # LocationId of users to be returned - ${LocationId}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Guid]] - # CivicAddressId of users to be returned - ${CivicAddressId}, - - [Parameter(Mandatory=$false)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.PSTNConnectivity] - # PSTNConnectivity of the users to be returned - ${PSTNConnectivity}, - - [Parameter(Mandatory=$false)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.EnterpriseVoiceStatus] - # EnterpriseVoiceStatus of the users to be returned - ${EnterpriseVoiceStatus}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process - { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (![string]::IsNullOrWhiteSpace($Identity)) - { - if($ExpandLocation) - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Includedefaultproperty:$false -VoiceUserQuery:$true -Select "Objectid,EnterpriseVoiceEnabled, - DisplayName,Location,LineUri,TenantID,UsageLocation,DataCenter,PSTNconnectivity,SipDomain" @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - Location, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Includedefaultproperty:$false -VoiceUserQuery:$true -Select "Objectid,EnterpriseVoiceEnabled, - DisplayName,LineUri,TenantID,UsageLocation,DataCenter,PSTNconnectivity,SipDomain" @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - @{Name = 'Location' ; Expression = {""}}, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - } - else - { - if($NumberAssigned -and $NumberNotAssigned) - { - Write-Error "You can only pass either NumberAssigned or NumberNotAssigned at a time." - return - } - - if (($LocationId -and !$CivicAddressId) -or ($CivicAddressId -and !$LocationId)) - { - Write-Error "LocationId and CivicAddressId must be provided together." - return - } - - $filters = @() #array of individual filters - $addNumberInSelectProperties = $false - if ($LocationId -and $CivicAddressId) - { - $filters += "Number/LocationId eq '$LocationId' and Number/CivicAddressId eq '$CivicAddressId'" - $addNumberInSelectProperties = $true - } - - if ($PSTNConnectivity) - { - if ($PSTNConnectivity -eq 'OnPremises' -or $PSTNConnectivity -eq 'Online') - { - $filters += "PSTNConnectivity eq '$PSTNConnectivity'" - } - } - - if ($EnterpriseVoiceStatus) - { - if ($EnterpriseVoiceStatus -eq 'Enabled') - { - $filters += "EnterpriseVoiceEnabled eq true" - } - elseif ($EnterpriseVoiceStatus -eq 'Disabled') - { - $filters += "EnterpriseVoiceEnabled eq false" - } - } - - if ($NumberAssigned) - { - $filters += "LineUri ne '$null'" - } - elseif ($NumberNotAssigned) - { - $filters += "LineUri eq '$null'" - } - - $filterstring = $filters -join " and " - $selectProperties = "Objectid,EnterpriseVoiceEnabled,DisplayName,LineUri,TenantID,UsageLocation,DataCenter,PSTNconnectivity,SipDomain" - - if ($addNumberInSelectProperties -eq $true) - { - $selectProperties += ",Number" - } - - if($ExpandLocation) - { - $selectProperties += ",Location" - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Includedefaultproperty:$false -VoiceUserQuery:$true -Select $selectProperties -Filter $filterstring -Top $First @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - Location, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Search-CsUser -Includedefaultproperty:$false -VoiceUserQuery:$true -Select $selectProperties -Filter $filterstring -Top $First @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - @{Name = 'Location' ; Expression = {""}}, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Integrate Get-CsOnlineVoiceUser with Get-CsUser - -function Get-CsVoiceUserPoint { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Unique identifier for the user - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [switch] - #To fetch location field - ${ExpandLocation}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (![string]::IsNullOrWhiteSpace($Identity)) - { - if($ExpandLocation) - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Includedefaultproperty:$false -VoiceUserQuery:$true -Select "Objectid,EnterpriseVoiceEnabled, - DisplayName,Location,LineUri,TenantID,UsageLocation,DataCenter,PSTNconnectivity,SipDomain" @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - Location, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - else - { - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsUser -Identity $Identity -Includedefaultproperty:$false -VoiceUserQuery:$true -Select "Objectid,EnterpriseVoiceEnabled, - DisplayName,LineUri,TenantID,UsageLocation,DataCenter,PSTNconnectivity,SipDomain" @httpPipelineArgs | - Select-Object -Property @{Name = 'Name' ; Expression = {$_.DisplayName}}, - @{Name = 'Id' ; Expression = {$_.Identity}}, - SipDomain, - DataCenter, - TenantID, - @{Name = 'Number' ; Expression = {$_.LineUri}}, - @{Name = 'Location' ; Expression = {""}}, - PSTNconnectivity, - UsageLocation, - EnterpriseVoiceEnabled - } - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -function Set-CsOnlineVoiceUserV2 { -[CmdletBinding(DefaultParameterSetName='Id', SupportsShouldProcess)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.String][AllowNull()] - ${TelephoneNumber}, - - [Parameter(Mandatory=$false)] - [System.String][AllowNull()] - ${LocationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $Body = @{ - TelephoneNumber=$TelephoneNumber - LocationId=$LocationId - } - $Payload = @{ - UserId = $Identity - Body = $Body - } - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsUserGenerated @Payload @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -function Set-CsUserModern { -[CmdletBinding(DefaultParameterSetName='Id')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$false)] - ${EnterpriseVoiceEnabled}, - - [Parameter(Mandatory=$false)] - ${HostedVoiceMail}, - - [Parameter(Mandatory=$false)] - [System.String][AllowNull()] - ${LineURI}, - - [Parameter(Mandatory=$false)] - [System.String][AllowNull()] - ${OnPremLineURI}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $PhoneNumber = $LineURI - if ($PSBoundParameters.ContainsKey('OnPremLineURI')) { - Write-Warning -Message "OnPremLineURI will be deprecated. Please use LineURI to update user's phone number." - if (!$PSBoundParameters.ContainsKey('LineURI')){ - $PhoneNumber = $OnPremLineURI - } - else{ - Write-Error "Please specify either one parameter OnPremLineURI or LineURI to assign phone number." - return - } - } - - $Body = @{ - EnterpriseVoiceEnabled=$EnterpriseVoiceEnabled - HostedVoiceMail=$HostedVoiceMail - } - - if ($PSBoundParameters.ContainsKey('LineURI') -or $PSBoundParameters.ContainsKey('OnPremLineURI')) { - $Body.LineUri = $PhoneNumber - } - - $Payload = @{ - UserId = $Identity - Body = $Body - } - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsUserGenerated @Payload @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function New-CsUserCallingDelegate { - [CmdletBinding(DefaultParameterSetName="Identity")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Delegate}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.Boolean] - ${MakeCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.Boolean] - ${ManageSettings}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.Boolean] - ${ReceiveCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.Boolean] - ${PickUpHeldCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.Boolean] - ${JoinActiveCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsUserCallingDelegate @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Remove-CsUserCallingDelegate { - [CmdletBinding(DefaultParameterSetName="Identity")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Delegate}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsUserCallingDelegate @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsPersonalAttendantSettings { - [CmdletBinding(DefaultParameterSetName="Identity")] - param( - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendantOnOff')] - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendantOnOff')] - [System.Boolean] - ${IsPersonalAttendantEnabled}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [ValidateSet('en-US', 'fr-FR', 'ar-SA', 'zh-CN', 'zh-TW', 'cs-CZ', 'da-DK', 'nl-NL', 'en-AU', 'en-GB', 'fi-FI', 'fr-CA', 'de-DE', 'el-GR', 'hi-IN', 'id-ID', 'it-IT', 'ja-JP', 'ko-KR', 'nb-NO', 'pl-PL', 'pt-BR', 'ru-RU', 'es-ES', 'es-US', 'sv-SE', 'th-TH', 'tr-TR')] - [System.String] - ${DefaultLanguage}, - - [Parameter(Mandatory=$false, ParameterSetName='PersonalAttendant')] - [ValidateSet('Female','Male')] - [System.String] - ${DefaultVoice}, - - [Parameter(Mandatory=$false, ParameterSetName='PersonalAttendant')] - [System.String] - [AllowNull()] - ${CalleeName}, - - [Parameter(Mandatory=$false, ParameterSetName='PersonalAttendant')] - [ValidateSet('Formal','Casual')] - [System.String] - ${DefaultTone}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${IsBookingCalendarEnabled}, - - [Parameter(Mandatory=$false, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${IsNonContactCallbackEnabled}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${IsCallScreeningEnabled}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${AllowInboundInternalCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${AllowInboundFederatedCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${AllowInboundPSTNCalls}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${IsAutomaticTranscriptionEnabled}, - - [Parameter(Mandatory=$true, ParameterSetName='PersonalAttendant')] - [System.Boolean] - ${IsAutomaticRecordingEnabled}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($PSBoundParameters.ContainsKey('IsPersonalAttendantEnabled') -and $PSBoundParameters.ContainsKey('AllowInboundInternalCalls') -and $PSBoundParameters.ContainsKey('AllowInboundFederatedCalls') -and $PSBoundParameters.ContainsKey('AllowInboundPSTNCalls')) - { - if($IsPersonalAttendantEnabled -eq $true -and ($AllowInboundInternalCalls -eq $true -or $AllowInboundFederatedCalls -eq $true -or $AllowInboundPSTNCalls -eq $true)) - { - $IsPersonalAttendantEnabled = $IsPersonalAttendantEnabled - $AllowInboundInternalCalls = $AllowInboundInternalCalls - $AllowInboundFederatedCalls = $AllowInboundFederatedCalls - $AllowInboundPSTNCalls = $AllowInboundPSTNCalls - } - else - { - write-warning "Personal attendant is enabled but no inbound calls are enabled" - return - } - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsPersonalAttendantSettings @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsUserCallingDelegate { - [CmdletBinding(DefaultParameterSetName="Identity")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Delegate}, - - [Parameter(Mandatory=$false, ParameterSetName='Identity')] - [System.Boolean] - ${MakeCalls}, - - [Parameter(Mandatory=$false, ParameterSetName='Identity')] - [System.Boolean] - ${ManageSettings}, - - [Parameter(Mandatory=$false, ParameterSetName='Identity')] - [System.Boolean] - ${ReceiveCalls}, - - [Parameter(Mandatory=$false, ParameterSetName='Identity')] - [System.Boolean] - ${PickUpHeldCalls}, - - [Parameter(Mandatory=$false, ParameterSetName='Identity')] - [System.Boolean] - ${JoinActiveCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsUserCallingDelegate @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function Set-CsUserCallingSettings { - [CmdletBinding(DefaultParameterSetName="Identity")] - param( - [Parameter(Mandatory=$true, ParameterSetName='Forwarding')] - [Parameter(Mandatory=$true, ParameterSetName='ForwardingOnOff')] - [Parameter(Mandatory=$true, ParameterSetName='Unanswered')] - [Parameter(Mandatory=$true, ParameterSetName='UnansweredOnOff')] - [Parameter(Mandatory=$true, ParameterSetName='CallGroup')] - [Parameter(Mandatory=$true, ParameterSetName='CallGroupMembership')] - [Parameter(Mandatory=$true, ParameterSetName='CallGroupNotification')] - [Parameter(Mandatory=$true, ParameterSetName='Identity')] - [System.String] - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Forwarding')] - [Parameter(Mandatory=$true, ParameterSetName='ForwardingOnOff')] - [System.Boolean] - ${IsForwardingEnabled}, - - [Parameter(Mandatory=$true, ParameterSetName='Forwarding')] - [ValidateSet('Immediate','Simultaneous')] - [System.String] - ${ForwardingType}, - - [Parameter(Mandatory=$false, ParameterSetName='Forwarding')] - [System.String] - [AllowNull()] - ${ForwardingTarget}, - - [Parameter(Mandatory=$true, ParameterSetName='Forwarding')] - [ValidateSet('SingleTarget','Voicemail','MyDelegates','Group')] - [System.String] - ${ForwardingTargetType}, - - [Parameter(Mandatory=$true, ParameterSetName='Unanswered')] - [Parameter(Mandatory=$true, ParameterSetName='UnansweredOnOff')] - [System.Boolean] - ${IsUnansweredEnabled}, - - [Parameter(Mandatory=$false, ParameterSetName='Unanswered')] - [System.String] - [AllowNull()] - ${UnansweredTarget}, - - [Parameter(Mandatory=$false, ParameterSetName='Unanswered')] - [ValidateSet("", "SingleTarget","Voicemail","MyDelegates","Group")] - [System.String] - ${UnansweredTargetType}, - - [Parameter(Mandatory=$true, ParameterSetName='Unanswered')] - [System.String] - [AllowNull()] - ${UnansweredDelay}, - - [Parameter(Mandatory=$true, ParameterSetName='CallGroup')] - [ValidateSet('Simultaneous','InOrder')] - [System.String] - ${CallGroupOrder}, - - [Parameter(Mandatory=$true, ParameterSetName='CallGroup')] - [System.Array] - [AllowNull()] - [AllowEmptyCollection()] - ${CallGroupTargets}, - - [Parameter(Mandatory=$true, ParameterSetName='CallGroupMembership')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[]] - [AllowEmptyCollection()] - ${GroupMembershipDetails}, - - [Parameter(Mandatory=$true, ParameterSetName='CallGroupNotification')] - [ValidateSet('Ring','Mute','Banner')] - [System.String] - ${GroupNotificationOverride}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($PSBoundParameters.ContainsKey('UnansweredDelay')) - { - if(($UnansweredDelay -as [TimeSpan]) -and ($UnansweredDelay -le (New-TimeSpan -Hours 0 -Minutes 1 -Seconds 0)) -and ($UnansweredDelay -ge (New-TimeSpan -Hours 0 -Minutes 0 -Seconds 0))) - { - $UnansweredDelay = $UnansweredDelay - } - else - { - write-warning "Unanswered delay is not in correct time range" - return - } - } - - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsUserCallingSettings @PSBoundParameters @httpPipelineArgs - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Transfer $PolisyList from user's input from string[] to object[], enable inline input - -function New-CsCustomPolicyPackage { - [OutputType([System.String])] - [CmdletBinding(DefaultParameterSetName='RequiredPolicyList', - PositionalBinding=$false, - SupportsShouldProcess, - ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - $Identity, - - [Parameter(Mandatory=$true, position=1)] - [System.String[]] - $PolicyList, - - [Parameter(position=2)] - $Description, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $Delimiters = ",", ".", ":", ";", " ", "`t" - [psobject[]]$InternalPolicyList = @() - foreach ($PolicyTypeAndName in $PolicyList) - { - $PolicyTypeAndNameArray = $PolicyTypeAndName -Split {$Delimiters -contains $_}, 2 - $PolicyTypeAndNameArray = $PolicyTypeAndNameArray.Trim() - if ($PolicyTypeAndNameArray.Count -lt 2) - { - throw "Invalid Policy Type and Name pair: $PolicyTypeAndName. Please use a proper delimeter" - } - $PolicyTypeAndNameObject = [psobject]@{ - PolicyType = $PolicyTypeAndNameArray[0] - PolicyName = $PolicyTypeAndNameArray[1] - } - $InternalPolicyList += $PolicyTypeAndNameObject - } - $null = $PSBoundParameters.Remove("PolicyList") - $null = $PSBoundParameters.Add("PolicyList", $InternalPolicyList) - Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsCustomPolicyPackage @PSBoundParameters @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Transfer $PolisyList from user's input from string[] to object[], enable inline input - -function Update-CsCustomPolicyPackage { - [OutputType([System.String])] - [CmdletBinding(DefaultParameterSetName='RequiredPolicyList', - PositionalBinding=$false, - SupportsShouldProcess, - ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - $Identity, - - [Parameter(Mandatory=$true, position=1)] - [System.String[]] - $PolicyList, - - [Parameter(position=2)] - $Description, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $Delimiters = ",", ".", ":", ";", " ", "`t" - [psobject[]]$InternalPolicyList = @() - foreach ($PolicyTypeAndName in $PolicyList) - { - $PolicyTypeAndNameArray = $PolicyTypeAndName -Split {$Delimiters -contains $_}, 2 - $PolicyTypeAndNameArray = $PolicyTypeAndNameArray.Trim() - if ($PolicyTypeAndNameArray.Count -lt 2) - { - throw "Invalid Policy Type and Name pair: $PolicyTypeAndName. Please use a proper delimeter" - } - $PolicyTypeAndNameObject = [psobject]@{ - PolicyType = $PolicyTypeAndNameArray[0] - PolicyName = $PolicyTypeAndNameArray[1] - } - $InternalPolicyList += $PolicyTypeAndNameObject - } - $null = $PSBoundParameters.Remove("PolicyList") - $null = $PSBoundParameters.Add("PolicyList", $InternalPolicyList) - Microsoft.Teams.ConfigAPI.Cmdlets.internal\Update-CsCustomPolicyPackage @PSBoundParameters @httpPipelineArgs - } - catch - { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Export-CsAutoAttendantHolidays { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA whose holiday schedules are to be exported.. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Use ResponseType 1 as binary output - $PSBoundParameters.Add("ResponseType", 1) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantHolidays @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $internalOutput.ExportHolidayResultSerializedHolidayRecord - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Export-CsOnlineAudioFile - -function Export-CsOnlineAudioFile { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Identity parameter is the identifier for the audio file. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [System.String] - # The ApplicationId parameter is the identifier for the application which will use this audio file. - ${ApplicationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default Application ID to TenantGlobal and make it to the correct case - if ($ApplicationId -eq "" -or $ApplicationId -like "TenantGlobal") - { - $ApplicationId = "TenantGlobal" - } - elseif ($ApplicationId -like "OrgAutoAttendant") - { - $ApplicationId = "OrgAutoAttendant" - } - elseif ($ApplicationId -like "HuntGroup") - { - $ApplicationId = "HuntGroup" - } - - $null = $PSBoundParameters.Remove("ApplicationId") - $PSBoundParameters.Add("ApplicationId", $ApplicationId) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $base64content = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Export-CsOnlineAudioFile @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($base64content -eq $null) { - return $null - } - - $output = [System.Convert]::FromBase64CharArray($base64content, 0, $base64content.Length) - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Write diagnostic message back to console - -function Find-CsGroup { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The SearchQuery parameter defines a search query to search the display name or the sip address or the GUID of groups. - ${SearchQuery}, - - [Parameter(Mandatory=$false, position=1)] - [System.Nullable[System.UInt32]] - # The MaxResults parameter identifies the maximum number of results to return. - ${MaxResults}, - - [Parameter(Mandatory=$false, position=2)] - [System.Boolean] - # The ExactMatchOnly parameter instructs the cmdlet to return exact matches only. - ${ExactMatchOnly}, - - [Parameter(Mandatory=$false, position=3)] - [System.Boolean] - # The MailEnabledOnly parameter instructs the cmdlet to return mail enabled only. - ${MailEnabledOnly}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Find-CsGroup @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = @() - foreach($internalGroup in $internalOutput.Group) - { - $group = [Microsoft.Rtc.Management.Hosted.Group.Models.GroupModel]::new() - $group.ParseFrom($internalGroup) - $output += $group - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Put nested ApplicationInstance object as first layer object - -function Find-CsOnlineApplicationInstance { - [OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstance])] - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # A query for application instances by display name, telephone number, or GUID of the application instance - ${SearchQuery}, - - [Parameter(Mandatory=$false, position=1)] - [System.Nullable[System.UInt32]] - # The maximum number of results to return - ${MaxResults}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - # Instruct the cmdlet to return exact matches only - ${ExactMatchOnly}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # Instruct the cmdlet to return only application instances that are associated to a configuration - ${AssociatedOnly}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - # instructs the cmdlet to return only application instances that are not associated to any configuration - ${UnAssociatedOnly}, - - [Parameter(Mandatory=$false, position=5)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Find-CsOnlineApplicationInstance @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = @() - foreach($internalOutputApplicationInstance in $internalOutput.ApplicationInstance) - { - $applicationInstance = [Microsoft.Rtc.Management.Hosted.Online.Models.FindApplicationInstanceResult]::new() - $applicationInstance.ParseFrom($internalOutputApplicationInstance) - $output += $applicationInstance - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsAgent { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the AI Agent which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - # Map Id to Identity for internal cmdlet - if ($PSBoundParameters.ContainsKey("Id")) { - $PSBoundParameters.Add("Identity", $Id) - $PSBoundParameters.Remove("Id") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAgent @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (![string]::IsNullOrEmpty(${Id})) { - $AIAgentConfiguration = [Microsoft.Rtc.Management.Hosted.Online.Models.AIAgentConfiguration]::new() - $AIAgentConfiguration.ParseFromGetResponse($result) - } - else { - $AllAIAgentConfiguration = @() - - if ($result.AIAgent -ne $null) { - foreach ($model in $result.AIAgent) { - $AIAgentConfiguration = [Microsoft.Rtc.Management.Hosted.Online.Models.AIAgentConfiguration]::new() - $AllAIAgentConfiguration += $AIAgentConfiguration.ParseFromDtoModel($model) - } - } - - $AllAIAgentConfiguration - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function Get-CsAutoAttendant { - [CmdletBinding(DefaultParameterSetName='GetAllParamSet', PositionalBinding=$false)] - param( - [Parameter(Mandatory=$true, position=0, ParameterSetName='GetSpecificParamSet')] - [System.String] - # The identity for the AA to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1, ParameterSetName='GetAllParamSet')] - [Switch] - # If specified, the status records for each auto attendant in the result set are also retrieved. - ${IncludeStatus}, - - [Parameter(Mandatory=$false, position=2, ParameterSetName='GetAllParamSet')] - [Int] - # The First parameter indicates the maximum number of auto attendants to retrieve as the result. - ${First}, - - [Parameter(Mandatory=$false, position=3, ParameterSetName='GetAllParamSet')] - [Int] - # The Skip parameter indicates the number of initial auto attendants to skip in the result. - ${Skip}, - - [Parameter(Mandatory=$false, position=4, ParameterSetName='GetAllParamSet')] - [Switch] - # If specified, only auto attendants' names, identities and associated application instances will be retrieved. - ${ExcludeContent}, - - [Parameter(Mandatory=$false, position=5, ParameterSetName='GetAllParamSet')] - [System.String] - # If specified, only auto attendants whose names match that value would be returned. - ${NameFilter}, - - [Parameter(Mandatory=$false, position=6, ParameterSetName='GetAllParamSet')] - [System.String] - # If specified, the retrieved auto attendants would be sorted by the specified property. - ${SortBy}, - - [Parameter(Mandatory=$false, position=7, ParameterSetName='GetAllParamSet')] - [Switch] - # If specified, the retrieved auto attendants would be sorted in descending order. - ${Descending}, - - [Parameter(Mandatory=$false, position=8)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $PSBoundCommonParameters += @{$p.Key = $p.Value} - } - $null = $PSBoundCommonParameters.Remove("Identity") - $null = $PSBoundCommonParameters.Remove("First") - $null = $PSBoundCommonParameters.Remove("Skip") - $null = $PSBoundCommonParameters.Remove("ExcludeContent") - $null = $PSBoundCommonParameters.Remove("NameFilter") - $null = $PSBoundCommonParameters.Remove("SortBy") - $null = $PSBoundCommonParameters.Remove("Descending") - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendant @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = @() - foreach($internalOutputAutoAttendant in $internalOutput.AutoAttendant) - { - $autoAttendant = [Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant]::new() - $autoAttendant.ParseFrom($internalOutputAutoAttendant, $ExcludeContent) - - if ($Identity) - { - # Append common parameter here - $getCsAutoAttendantStatusParameters = @{Identity = $autoAttendant.Identity} - foreach($p in $PSBoundCommonParameters.GetEnumerator()) - { - $getCsAutoAttendantStatusParameters += @{$p.Key = $p.Value} - } - - $internalStatus = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantStatus @getCsAutoAttendantStatusParameters @httpPipelineArgs - - $autoAttendant.AmendStatus($internalStatus) - } - - $output += $autoAttendant - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsAutoAttendantHolidays { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA whose holiday schedules are to be exported.. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [System.String[]] - # The identity for the AA to be retrieved. - ${Years}, - - [Parameter(Mandatory=$false, position=2)] - [System.String[]] - # If specified, the status records for each auto attendant in the result set are also retrieved. - ${Names}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - if ($PSBoundParameters.ContainsKey("Years")) { - $null = $PSBoundParameters.Remove("Years") - $PSBoundParameters.Add("Year", $Years) - } - - if ($PSBoundParameters.ContainsKey("Names")) { - $null = $PSBoundParameters.Remove("Names") - $PSBoundParameters.Add("Name", $Names) - } - - # Use ResponseType 0 as visualization record - $PSBoundParameters.Add("ResponseType", 0) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantHolidays @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = @() - foreach($internalHolidayVisualizationRecord in $internalOutput.HolidayVisualizationRecord) - { - $holidayVisualizationRecord = [Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayVisRecord]::new() - $holidayVisualizationRecord.ParseFrom($internalHolidayVisualizationRecord) - $output += $holidayVisualizationRecord - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function Get-CsAutoAttendantStatus { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [System.String[]] - ${IncludeResources}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantStatus @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.StatusRecord]::new() - $output.ParseFrom($internalOutput) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsAutoAttendantSupportedLanguage { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # The Identity parameter designates a specific language to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Use ResponseType 1 as binary output - if ($PSBoundParameters.ContainsKey('Identity')) { - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantSupportedLanguage @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.Language]::new() - $output.ParseFrom($internalOutput) - - $output - } else { - $tenantInfoOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($tenantInfoOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($tenantInfoOutput.Diagnostic) - - $supportedLanguagesOutput = @() - foreach ($supportedLanguage in $tenantInfoOutput.TenantInformationSupportedLanguage) { - $languageOutput = [Microsoft.Rtc.Management.Hosted.OAA.Models.Language]::new() - $languageOutput.ParseFrom($supportedLanguage) - $supportedLanguagesOutput += $languageOutput - } - - $supportedLanguagesOutput - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsAutoAttendantSupportedTimeZone { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # The Identity parameter specifies a time zone to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Use ResponseType 1 as binary output - if ($PSBoundParameters.ContainsKey('Identity')) { - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantSupportedTimeZone @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.TimeZone]::new() - $output.ParseFrom($internalOutput) - - $output - } else { - $tenantInfoOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($tenantInfoOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($tenantInfoOutput.Diagnostic) - - $supportedTimezonesOutput = @() - foreach ($supportedTimezone in $tenantInfoOutput.TenantInformationSupportedTimeZone) { - $timezoneOutput = [Microsoft.Rtc.Management.Hosted.OAA.Models.TimeZone]::new() - $timezoneOutput.ParseFrom($supportedTimezone) - $supportedTimezonesOutput += $timezoneOutput - } - - $supportedTimezonesOutput - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsAutoAttendantTenantInformation { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.TenantInformation]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsAutoRecordingTemplate { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the auto recording template which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - # Map Id to Identity for internal cmdlet - if ($PSBoundParameters.ContainsKey("Id")) { - $PSBoundParameters.Add("Identity", $Id) - $PSBoundParameters.Remove("Id") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoRecordingTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (![string]::IsNullOrEmpty(${Id})) { - $AutoRecording = [Microsoft.Rtc.Management.Hosted.Online.Models.AutoRecording]::new() - $AutoRecording.ParseFromGetResponse($result) - } - else { - $AllAutoRecordingTemplate = @() - - if ($result.AutoRecordingTemplate -ne $null) { - foreach ($model in $result.AutoRecordingTemplate) { - $AutoRecording = [Microsoft.Rtc.Management.Hosted.Online.Models.AutoRecording]::new() - $AllAutoRecordingTemplate += $AutoRecording.ParseFromDtoModel($model) - } - } - - $AllAutoRecordingTemplate - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsCallQueue { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the call queue which is retrieved. - ${Identity}, - - [Parameter(Mandatory=$false)] - [int] - # The First parameter gets the first N Call Queues. - ${First}, - - [Parameter(Mandatory=$false)] - [int] - # The Skip parameter skips the first N Call Queues. It is intended to be used for pagination purposes. - ${Skip}, - - [Parameter(Mandatory=$false)] - [switch] - # The ExcludeContent parameter only displays the Name and Id of the Call Queues. - ${ExcludeContent}, - - [Parameter(Mandatory=$false)] - [System.String] - # The Sort parameter specifies the property used to sort. - ${Sort}, - - [Parameter(Mandatory=$false)] - [switch] - # The Descending parameter is used to sort descending. - ${Descending}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NameFilter parameter returns Call Queues where name contains specified string - ${NameFilter}, - - [Parameter(Mandatory=$false)] - [Switch] - # Allow the cmdlet to run anyway - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if (${Identity} -and (${First} -or ${Skip} -or ${Sort} -or ${Descending} -or ${NameFilter})) { - throw "Identity parameter cannot be used with any other parameter." - } - - # Set the 'FilterInvalidObos' query parameter value to false. - $PSBoundParameters.Add('FilterInvalidObos', $false) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Endpoint to get single entity does not support content exclusion, so we will filter content when displaying - if ($PSBoundParameters.ContainsKey('Identity') -and $PSBoundParameters.ContainsKey('ExcludeContent')) { - $PSBoundParameters.Remove("ExcludeContent") - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsCallQueue @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (${Identity} -ne '') { - $callQueue = [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $callQueue.ParseFrom($result.CallQueue, $ExcludeContent) - } else { - $callQueues = @() - foreach ($model in $result.CallQueue) { - $callQueue = [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $callQueues += $callQueue.ParseFrom($model, $ExcludeContent) - } - $callQueues - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsComplianceRecordingForCallQueueTemplate { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the compliance recording for CR4CQ template which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsComplianceRecordingForCallQueueTemplate @PSBoundParameters @httpPipelineArgs - - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (![string]::IsNullOrEmpty(${Id})) { - $ComplianceRecordingForCallQueue = [Microsoft.Rtc.Management.Hosted.Online.Models.ComplianceRecordingForCallQueue]::new() - $ComplianceRecordingForCallQueue.ParseFromGetResponse($result) - } - else { - $ComplianceRecordingForCallQueues = @() - foreach ($model in $result.ComplianceRecording) { - $ComplianceRecordingForCallQueue = [Microsoft.Rtc.Management.Hosted.Online.Models.ComplianceRecordingForCallQueue]::new() - $ComplianceRecordingForCallQueues += $ComplianceRecordingForCallQueue.ParseFromDtoModel($model) - } - $ComplianceRecordingForCallQueues - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsMainlineAttendantAppointmentBookingFlow { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the mainline attendant flow which is retrieved. - ${Identity}, - - [Parameter(Mandatory=$false)] - [int] - # The First parameter gets the first N mainline attendant flows. - ${First}, - - [Parameter(Mandatory=$false)] - [int] - # The Skip parameter skips the first N mainline attendant flows. It is intended to be used for pagination purposes. - ${Skip}, - - [Parameter(Mandatory=$false)] - [System.String] - # The SortBy parameter specifies the property used to sort. - ${SortBy}, - - [Parameter(Mandatory=$false)] - [switch] - # The Descending parameter is used to sort descending. - ${Descending}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NameFilter parameter returns mainline attendant flows where name contains specified string - ${NameFilter}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMainlineAttendantAppointmentBookingFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (${Identity} -ne '') { - $appointmentBookingFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - $appointmentBookingFlow.ParseFromGetResponse($result) - } else { - $appointmentBookingFlows = @() - foreach ($model in $result.MainlineAttendantFlowResponse) { - $appointmentBookingFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - $appointmentBookingFlows += $appointmentBookingFlow.ParseFromDomainModel($model) - } - $appointmentBookingFlows - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsMainlineAttendantFlow { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the mainline attendant flow which is retrieved. - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.String] - # The type of the mainline attendant flow which is retrieved. - ${Type}, - - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the related configuration (i.e., the Mainline Attendant Id) which the mainline attendant flow is associated with. - ${RelatedConfigurationId}, - - [Parameter(Mandatory=$false)] - [int] - # The First parameter gets the first N mainline attendant flows. - ${First}, - - [Parameter(Mandatory=$false)] - [int] - # The Skip parameter skips the first N mainline attendant flows. It is intended to be used for pagination purposes. - ${Skip}, - - [Parameter(Mandatory=$false)] - [System.String] - # The SortBy parameter specifies the property used to sort. - ${SortBy}, - - [Parameter(Mandatory=$false)] - [switch] - # The Descending parameter is used to sort descending. - ${Descending}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NameFilter parameter returns mainline attendant flows where name contains specified string - ${NameFilter}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMainlineAttendantFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (${Identity} -ne '') { - if ($result.MainlineAttendantFlowResponseType -eq "AppointmentBooking") { - $mainlineAttendantFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - } else { - $mainlineAttendantFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - } - $mainlineAttendantFlow.ParseFromGetResponse($result) - } else { - $mainlineAttendantFlows = @() - foreach ($model in $result.MainlineAttendantFlowResponse) { - if ($model.Type -eq "AppointmentBooking") { - $mainlineAttendantFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - } else { - $mainlineAttendantFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - } - $mainlineAttendantFlows += $mainlineAttendantFlow.ParseFromDomainModel($model) - } - $mainlineAttendantFlows - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsMainlineAttendantQuestionAnswerFlow { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the mainline attendant flow which is retrieved. - ${Identity}, - - [Parameter(Mandatory=$false)] - [int] - # The First parameter gets the first N mainline attendant flows. - ${First}, - - [Parameter(Mandatory=$false)] - [int] - # The Skip parameter skips the first N mainline attendant flows. It is intended to be used for pagination purposes. - ${Skip}, - - [Parameter(Mandatory=$false)] - [System.String] - # The SortBy parameter specifies the property used to sort. - ${SortBy}, - - [Parameter(Mandatory=$false)] - [switch] - # The Descending parameter is used to sort descending. - ${Descending}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NameFilter parameter returns mainline attendant flows where name contains specified string - ${NameFilter}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsMainlineAttendantQuestionAnswerFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (${Identity} -ne '') { - $questionAnswerFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $questionAnswerFlow.ParseFromGetResponse($result) - } else { - $questionAnswerFlows = @() - foreach ($model in $result.MainlineAttendantFlowResponse) { - $questionAnswerFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $questionAnswerFlows += $questionAnswerFlow.ParseFromDomainModel($model) - } - $questionAnswerFlows - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Return Mainline Attendant supported languages -# parsed from the MainlineAttendantTenantInformation section of the tenant information response. - -function Get-CsMainlineAttendantSupportedLanguages { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $tenantInfoOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($tenantInfoOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($tenantInfoOutput.Diagnostic) - - # Extract languages from the MainlineAttendantTenantInformation section only - $supportedLanguagesOutput = @() - foreach ($supportedLanguage in $tenantInfoOutput.MainlineAttendantTenantInformationSupportedLanguage) { - $languageOutput = [Microsoft.Rtc.Management.Hosted.OAA.Models.MainlineAttendantLanguage]::new() - $languageOutput.ParseFrom($supportedLanguage) - $supportedLanguagesOutput += $languageOutput - } - - $supportedLanguagesOutput - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Return Mainline Attendant supported voices -# parsed from the MainlineAttendantTenantInformation section of the tenant information response. - -function Get-CsMainlineAttendantSupportedVoices { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $tenantInfoOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($tenantInfoOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($tenantInfoOutput.Diagnostic) - - # Extract voices from the MainlineAttendantTenantInformation section only - $supportedVoicesOutput = @() - foreach ($voice in $tenantInfoOutput.MainlineAttendantTenantInformationSupportedVoice) { - $voiceOutput = [Microsoft.Rtc.Management.Hosted.OAA.Models.MainlineAttendantVoice]::new() - $voiceOutput.ParseFrom($voice) - $supportedVoicesOutput += $voiceOutput - } - - $supportedVoicesOutput - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Return Mainline Attendant tenant information -# (supported languages and voices) parsed from the Auto Attendant tenant information response. - -function Get-CsMainlineAttendantTenantInformation { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantTenantInformation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.MainlineAttendantTenantInformation]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsOnlineApplicationInstanceAssociation { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the application instance whose association is to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Encode the given "Identity" if it is a SIP URI (aka User Principle Name (UPN)) - $PSBoundParameters['Identity'] = EncodeSipUri($PSBoundParameters['Identity']) - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineApplicationInstanceAssociation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.ApplicationInstanceAssociation]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function Get-CsOnlineApplicationInstanceAssociationStatus { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the application instance whose association provisioning status is to be retrieved. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineApplicationInstanceAssociationStatus @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.StatusRecord]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Get-CsOnlineAudioFile - -function Get-CsOnlineAudioFile { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # The Identity parameter is the identifier for the audio file. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [System.String] - # The ApplicationId parameter is the identifier for the application which will use this audio file. - ${ApplicationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default Application ID to TenantGlobal and make it to the correct case - if ($ApplicationId -eq "" -or $ApplicationId -like "TenantGlobal") - { - $ApplicationId = "TenantGlobal" - } - elseif ($ApplicationId -like "OrgAutoAttendant") - { - $ApplicationId = "OrgAutoAttendant" - } - elseif ($ApplicationId -like "HuntGroup") - { - $ApplicationId = "HuntGroup" - } - - $null = $PSBoundParameters.Remove("ApplicationId") - $PSBoundParameters.Add("ApplicationId", $ApplicationId) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($Identity -ne "") { - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineAudioFile @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile]::new() - $output.ParseFrom($internalOutput) - } - else { - $internalOutputs = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineAudioFile @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutputs -eq $null) { - return $null - } - - $output = New-Object Collections.Generic.List[Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile] - foreach($internalOutput in $internalOutputs) { - $audioFile = [Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile]::new() - $audioFile.ParseFrom($internalOutput) - $output.Add($audioFile) - } - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsOnlineSchedule { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the schedule which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineSchedule @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (${Id} -ne '') { - $schedule = [Microsoft.Rtc.Management.Hosted.Online.Models.Schedule]::new() - $schedule.ParseFrom($result) - } else { - $schedules = @() - foreach ($model in $result.Schedule) { - $schedule = [Microsoft.Rtc.Management.Hosted.Online.Models.Schedule]::new() - $schedules += $schedule.ParseFrom($model) - } - $schedules - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Get-CsOnlineVoicemailUserSettings { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the user for the voice mail settings - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsOnlineVMUserSetting @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsSharedCallHistoryTemplate { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the shared call history template which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsSharedCallHistoryTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($null -eq $result) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (![string]::IsNullOrEmpty(${Id})) { - $SharedCallHistoryTemplate = [Microsoft.Rtc.Management.Hosted.Online.Models.SharedCallHistoryTemplate]::new() - $SharedCallHistoryTemplate.ParseFromGetResponse($result) - } - else { - $AllSharedCallHistoryTemplates = @() - foreach ($model in $result.AllSharedCallHistoryTemplate) { - $SharedCallHistoryTemplate = [Microsoft.Rtc.Management.Hosted.Online.Models.SharedCallHistoryTemplate]::new() - $AllSharedCallHistoryTemplates += $SharedCallHistoryTemplate.ParseFromDtoModel($model) - } - $AllSharedCallHistoryTemplates - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsSharedCallQueueHistoryTemplate { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the shared call history template which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - Write-Warning -Message "This cmdlet is deprecated and will be removed in future releases. Please use Get-CsSharedCallHistoryTemplate instead." - - # Forward to the new cmdlet - Get-CsSharedCallHistoryTemplate @PSBoundParameters - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Get-CsTagsTemplate { - [CmdletBinding()] - param( - [Parameter(Mandatory=$false)] - [System.String] - # The identity of the shared tags template which is retrieved. - ${Id}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsTagsTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - if (![string]::IsNullOrEmpty(${Id})) { - $TagsTemplate = [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTagsTemplate]::new() - $TagsTemplate.ParseFromGetResponse($result) - } - else { - $AllIvrTagsTemplates = @() - foreach ($model in $result.IvrTagsTemplate) { - $TagsTemplate = [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTagsTemplate]::new() - $AllIvrTagsTemplates += $TagsTemplate.MapFromAutoGeneratedModel($model) - } - $AllIvrTagsTemplates - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Import-CsAutoAttendantHolidays { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA whose holiday schedules are to be imported. - ${Identity}, - - [Alias('Input')] - [Parameter(Mandatory=$true, position=1)] - [System.Byte[]] - ${InputBytes}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - $base64input = [System.Convert]::ToBase64String($InputBytes) - $PSBoundParameters.Add("SerializedHolidayRecord", $base64input) - $null = $PSBoundParameters.Remove("InputBytes") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Import-CsAutoAttendantHolidays @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = @() - foreach($internalImportHolidayStatus in $internalOutput.ImportAutoAttendantHolidayResultImportHolidayStatusRecord) - { - $importHolidayStatus = [Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayImportResult]::new() - $importHolidayStatus.ParseFrom($internalImportHolidayStatus) - $output += $importHolidayStatus - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Base64 encode the content for the audio file - -function Import-CsOnlineAudioFile { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [System.String] - # The ApplicationId parameter is the identifier for the application which will use this audio file. - ${ApplicationId}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The FileName parameter is the name of the audio file. - ${FileName}, - - [Parameter(Mandatory=$true, position=2)] - [System.Byte[]] - # The Content parameter represents the content of the audio file. - ${Content}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - $base64content = [System.Convert]::ToBase64String($Content) - $null = $PSBoundParameters.Remove("Content") - $PSBoundParameters.Add("Content", $base64content) - - # Default Application ID to TenantGlobal and make it to the correct case - if ($ApplicationId -eq "" -or $ApplicationId -like "TenantGlobal") - { - $ApplicationId = "TenantGlobal" - } - elseif ($ApplicationId -like "OrgAutoAttendant") - { - $ApplicationId = "OrgAutoAttendant" - } - elseif ($ApplicationId -like "HuntGroup") - { - $ApplicationId = "HuntGroup" - } - $null = $PSBoundParameters.Remove("ApplicationId") - $PSBoundParameters.Add("ApplicationId", $ApplicationId) - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Import-CsOnlineAudioFile @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsAgent { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the AI Agent. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a AgentId for the AI Agent. - ${AIAgentId}, - - [Parameter(Mandatory=$true, position=2)] - [System.String] - # The Description parameter provides a AgentType for the AI Agent. - ${AIAgentType}, - - [Parameter(Mandatory=$false, position=3)] - [System.String] - # The Description parameter provides a AgentType for the AI Agent. - ${AIAgentTargetTagTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Build the request body - $requestBody = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AiAgentConfigurationDtoModel]::new() - $requestBody.Name = $Name - $requestBody.AgentId = $AIAgentId - $requestBody.AgentType = $AIAgentType - if ($PSBoundParameters.ContainsKey('AIAgentTargetTagTemplateId')) { - $requestBody.AgentTargetTagTemplateId = $AIAgentTargetTagTemplateId - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAgent -Body $requestBody -ErrorAction Stop @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AIAgentConfiguration]::new() - $output.ParseFromCreateResponse($internalOutput) - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of cmdlet - -function New-CsAutoAttendant { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the AA. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The LanguageId parameter is the language that is used to read text-to-speech (TTS) prompts. - ${LanguageId}, - - [Parameter(Mandatory=$false, position=2)] - [System.String] - # The VoiceId parameter represents the voice that is used to read text-to-speech (TTS) prompts. - ${VoiceId}, - - [Parameter(Mandatory=$true, position=3)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow] - # The DefaultCallFlow parameter is the flow to be executed when no other call flow is in effect (for example, during business hours). - ${DefaultCallFlow}, - - [Parameter(Mandatory=$false, position=4)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - # The Operator parameter represents the address or PSTN number of the operator. - ${Operator}, - - [Parameter(Mandatory=$false, position=5)] - [Switch] - # The EnableVoiceResponse parameter indicates whether voice response for AA is enabled. - ${EnableVoiceResponse}, - - [Parameter(Mandatory=$true, position=6)] - [System.String] - # The TimeZoneId parameter represents the AA time zone. - ${TimeZoneId}, - - [Parameter(Mandatory=$false, position=7)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow[]] - # The CallFlows parameter represents call flows, which are required if they are referenced in the CallHandlingAssociations parameter. - ${CallFlows}, - - [Parameter(Mandatory=$false, position=8)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociation[]] - # The CallHandlingAssociations parameter represents the call handling associations. - ${CallHandlingAssociations}, - - [Parameter(Mandatory=$false, position=9)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope] - # Specifies the users to which call transfers are allowed through directory lookup feature. - ${InclusionScope}, - - [Parameter(Mandatory=$false, position=10)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope] - # Specifies the users to which call transfers are not allowed through directory lookup feature. - ${ExclusionScope}, - - [Parameter(Mandatory=$false, position=11)] - [System.Guid[]] - # The list of authorized users. - ${AuthorizedUsers}, - - [Parameter(Mandatory=$false, position=12)] - [System.Guid[]] - # The list of hidden authorized users. - ${HideAuthorizedUsers}, - - [Parameter(Mandatory=$false, position=13)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(Mandatory=$false, position=14)] - [System.String] - # The UserNameExtension parameter represents how username could be extended in dial search, by appending additional info (None, Office, Department). - ${UserNameExtension}, - - [Parameter(Mandatory=$false, position=15)] - [Switch] - # The EnableMainlineAttendant parameter indicates whether mainline attendant is enabled or not. - ${EnableMainlineAttendant}, - - [Parameter(Mandatory=$false, position=16)] - [System.String] - # The MainlineAttendantAgentVoiceId parameter represents the voice that is used for Mainline Attendant. - ${MainlineAttendantAgentVoiceId}, - - [Parameter(Mandatory=$false, position=17)] - [System.String] - # Id for Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $PSBoundCommonParameters += @{$p.Key = $p.Value} - } - $null = $PSBoundCommonParameters.Remove("Name") - $null = $PSBoundCommonParameters.Remove("LanguageId") - $null = $PSBoundCommonParameters.Remove("VoiceId") - $null = $PSBoundCommonParameters.Remove("DefaultCallFlow") - $null = $PSBoundCommonParameters.Remove("Operator") - $null = $PSBoundCommonParameters.Remove("EnableVoiceResponse") - $null = $PSBoundCommonParameters.Remove("TimeZoneId") - $null = $PSBoundCommonParameters.Remove("CallFlows") - $null = $PSBoundCommonParameters.Remove("CallHandlingAssociations") - $null = $PSBoundCommonParameters.Remove("InclusionScope") - $null = $PSBoundCommonParameters.Remove("ExclusionScope") - $null = $PSBoundCommonParameters.Remove("AuthorizedUsers") - $null = $PSBoundCommonParameters.Remove("HideAuthorizedUsers") - $null = $PSBoundCommonParameters.Remove("EnableMainlineAttendant") - $null = $PSBoundCommonParameters.Remove("MainlineAttendantAgentVoiceId") - $null = $PSBoundCommonParameters.Remove("AutoRecordingTemplateId") - - if ($DefaultCallFlow -ne $null) { - $null = $PSBoundParameters.Remove('DefaultCallFlow') - if ($DefaultCallFlow.Id -ne $null) { - $PSBoundParameters.Add('DefaultCallFlowId', $DefaultCallFlow.Id) - } - if ($DefaultCallFlow.Greetings -ne $null) { - $defaultCallFlowGreetings = @() - foreach ($defaultCallFlowGreeting in $DefaultCallFlow.Greetings) { - $defaultCallFlowGreetings += $defaultCallFlowGreeting.ParseToAutoGeneratedModel() - } - $PSBoundParameters.Add('DefaultCallFlowGreeting', $defaultCallFlowGreetings) - } - if ($DefaultCallFlow.Name -ne $null) { - $PSBoundParameters.Add('DefaultCallFlowName', $DefaultCallFlow.Name) - } - if ($DefaultCallFlow.ForceListenMenuEnabled -eq $true) { - $PSBoundParameters.Add('DefaultCallFlowForceListenMenuEnabled', $true) - } - if ($DefaultCallFlow.RingResourceAccountDelegates -eq $true) { - $PSBoundParameters.Add('DefaultCallFlowRingResourceAccountDelegate', $true) - } - if ($DefaultCallFlow.Menu -ne $null) { - if ($DefaultCallFlow.Menu.DialByNameEnabled) { - $PSBoundParameters.Add('MenuDialByNameEnabled', $true) - } - $PSBoundParameters.Add('MenuDirectorySearchMethod', $DefaultCallFlow.Menu.DirectorySearchMethod.ToString()) - if ($DefaultCallFlow.Menu.Name -ne $null) { - $PSBoundParameters.Add('MenuName', $DefaultCallFlow.Menu.Name) - } - if ($DefaultCallFlow.Menu.MenuOptions -ne $null) { - $defaultCallFlowMenuOptions = @() - foreach ($defaultCallFlowMenuOption in $DefaultCallFlow.Menu.MenuOptions) { - $defaultCallFlowMenuOptions += $defaultCallFlowMenuOption.ParseToAutoGeneratedModel() - } - $PSBoundParameters.Add('MenuOption', $defaultCallFlowMenuOptions) - } - if ($DefaultCallFlow.Menu.Prompts -ne $null) { - $defaultCallFlowMenuPrompts = @() - foreach ($defaultCallFlowMenuPrompt in $DefaultCallFlow.Menu.Prompts) { - $defaultCallFlowMenuPrompts += $defaultCallFlowMenuPrompt.ParseToAutoGeneratedModel() - } - $PSBoundParameters.Add('MenuPrompt', $defaultCallFlowMenuPrompts) - } - } - } - if ($CallFlows -ne $null) { - $null = $PSBoundParameters.Remove('CallFlows') - $inputCallFlows = @() - foreach ($callFlow in $CallFlows) { - $inputCallFlows += $callFlow.ParseToAutoGeneratedModel() - } - $PSBoundParameters.Add('CallFlow', $inputCallFlows) - } - if ($CallHandlingAssociations -ne $null) { - $null = $PSBoundParameters.Remove('CallHandlingAssociations') - $inputCallHandlingAssociations = @() - foreach ($callHandlingAssociation in $CallHandlingAssociations) { - $inputCallHandlingAssociations += $callHandlingAssociation.ParseToAutoGeneratedModel() - } - $PSBoundParameters.Add('CallHandlingAssociation', $inputCallHandlingAssociations) - } - if ($Operator -ne $null) { - $null = $PSBoundParameters.Remove('Operator') - $PSBoundParameters.Add('OperatorEnableTranscription', $Operator.EnableTranscription) - $PSBoundParameters.Add('OperatorId', $Operator.Id) - $PSBoundParameters.Add('OperatorType', $Operator.Type.ToString()) - } - if ($InclusionScope -ne $null) { - $null = $PSBoundParameters.Remove('InclusionScope') - $PSBoundParameters.Add('InclusionScopeType', $InclusionScope.Type.ToString()) - $PSBoundParameters.Add('InclusionScopeGroupDialScopeGroupId', $InclusionScope.GroupScope.GroupIds) - } - if ($ExclusionScope -ne $null) { - $null = $PSBoundParameters.Remove('ExclusionScope') - $PSBoundParameters.Add('ExclusionScopeType', $ExclusionScope.Type.ToString()) - $PSBoundParameters.Add('ExclusionScopeGroupDialScopeGroupId', $ExclusionScope.GroupScope.GroupIds) - } - if ($AuthorizedUsers -ne $null) { - $null = $PSBoundParameters.Remove('AuthorizedUsers') - $inputAuthorizedUsers = @() - foreach ($authorizedUser in $AuthorizedUsers) { - $inputAuthorizedUsers += $authorizedUser.ToString() - } - $PSBoundParameters.Add('AuthorizedUser', $inputAuthorizedUsers) - } - if ($HideAuthorizedUsers -ne $null) { - $null = $PSBoundParameters.Remove('HideAuthorizedUsers') - $inputHideAuthorizedUsers = @() - foreach ($hiddenAuthorizedUser in $HideAuthorizedUsers) { - $inputHideAuthorizedUsers += $hiddenAuthorizedUser.ToString() - } - $PSBoundParameters.Add('HideAuthorizedUser', $inputHideAuthorizedUsers) - } - - if ($EnableMainlineAttendant -eq $true) { - # Check whether the greetings is provided by the customer or should we use the default greeting. - if ($DefaultCallFlow.Greetings -eq $null) { - Write-Warning "Greetings is not set for the DefaultCallFlow. The system default greeting will be used for mainline attendant." - $defaultCallFlowGreetings = @() - $defaultCallFlowGreetings += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject( - @{ - ActiveType = [Microsoft.Rtc.Management.Hosted.OAA.Models.PromptType]::TextToSpeech; - TextToSpeechPrompt = "Hello, and thank you for calling $Name. How can I assist you today? Please note that this call may be recorded for compliance purposes." - } - ) - $PSBoundParameters.Add('DefaultCallFlowGreeting', $defaultCallFlowGreetings) - } - - # For mainline attendant, we only support specific voice ids. - $mainlineAttendantVoiceIds = [Microsoft.Rtc.Management.Hosted.OAA.Models.MainlineAttendantSupportedVoiceIds] - if ([string]::IsNullOrWhiteSpace($MainlineAttendantAgentVoiceId) -or - -not [System.Enum]::IsDefined($mainlineAttendantVoiceIds, $MainlineAttendantAgentVoiceId)) { - throw "The provided MainlineAttendantAgentVoiceId '$MainlineAttendantAgentVoiceId' is not supported for Mainline Attendant. Supported values are: $([string]::Join(', ', [System.Enum]::GetNames($mainlineAttendantVoiceIds)))." - } - $mainlineAttendantVoiceId = $mainlineAttendantVoiceIds::$($MainlineAttendantAgentVoiceId) - $null = $PSBoundParameters.Remove('MainlineAttendantAgentVoiceId') - $PSBoundParameters.Add("MainlineAttendantAgentVoiceId", $mainlineAttendantVoiceId) - - # For Mainline Attendant, EnableVoiceResponse should must be true. - if ($EnableVoiceResponse -ne $true) { - Write-Warning "`$EnableVoiceResponse` is not set. Defaulting to 'true' for mainline attendant." - $null = $PSBoundParameters.Remove('EnableVoiceResponse') - $PSBoundParameters.Add('EnableVoiceResponse', $true) - } - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and $AutoRecordingTemplateId -eq $null) { - $null = $PSBoundParameters.Remove('AutoRecordingTemplateId') - } - - # Validate MainlineAttendant requirement for AutoRecordingTemplateId - # MainlineAttendant must be enabled before setting AutoRecordingTemplateId - if ($PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and ![string]::IsNullOrWhiteSpace($AutoRecordingTemplateId)) { - if ($EnableMainlineAttendant -ne $true) { - throw "AutoRecordingTemplateId can only be set when MainlineAttendant is enabled. Please set EnableMainlineAttendant to `$true before setting AutoRecordingTemplateId." - } - - # Validate that the template uses text announcement, not audio - $template = Get-CsAutoRecordingTemplate -Id $AutoRecordingTemplateId - if ($template -ne $null -and ![string]::IsNullOrWhiteSpace($template.AutoRecordingAnnouncementAudioFileId)) { - throw "AutoRecordingTemplate '$AutoRecordingTemplateId' uses an audio file announcement, which is not supported for Mainline Attendant. Please use a template with a text-to-speech announcement instead." - } - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendant @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant]::new() - $output.ParseFrom($internalOutput.AutoAttendant) - - $getCsAutoAttendantStatusParameters = @{Identity = $output.Identity} - foreach($p in $PSBoundCommonParameters.GetEnumerator()) - { - $getCsAutoAttendantStatusParameters += @{$p.Key = $p.Value} - } - - $internalStatus = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantStatus @getCsAutoAttendantStatusParameters @httpPipelineArgs - $output.AmendStatus($internalStatus) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of cmdlet - -function New-CsAutoAttendantCallableEntity { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Identity parameter represents the ID of the callable entity - ${Identity}, - - [Parameter(Mandatory=$true, position=1)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntityType] - # The Type parameter represents the type of the callable entity - ${Type}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - # Enables the email transcription of voicemail, this is only supported with shared voicemail callable entities. - ${EnableTranscription}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail. - ${EnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false, position=4)] - [System.Int16] - # The Call Priority of the MenuOption, only applies when the CallableEntityType (Type) is ApplicationEndpoint. - ${CallPriority}, - - [Parameter(Mandatory=$false, position=5)] - [System.String] - # The SharedVoicemailHistoryTemplateId parameter is the Id of the Shared Call History Template for Shared Voicemail. - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(Mandatory=$false, position=6)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # CallPriority is only applicable for the 'ApplicationEndpoint' and 'ConfigurationEndpoint' type. - # For all other cases, an error message should be displayed when a value is provided. - if ($Type -ne 'ApplicationEndpoint' -and $Type -ne 'ConfigurationEndpoint' -and ([Math]::Abs($CallPriority) -ge 1)) - { - throw "CallPriority is only applicable when the 'Type' is 'ApplicationEndpoint' or 'ConfigurationEndpoint'. Please remove the CallPriority."; - } - - # Making sure the user provides the correct CallPriority value. The valid values are 1 to 5. - # Zero is also allowed which means the user wants to use the default CallPriority or doesn't want to use the CallPriority feature. - if (($Type -eq 'ApplicationEndpoint' -or $Type -eq 'ConfigurationEndpoint') -and ($CallPriority -lt 0 -or $CallPriority -gt 5)) - { - throw "Invalid CallPriority. The valid values are 1 to 5 (default is 3). Please provide the correct value."; - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantCallableEntity @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Put nested ApplicationInstance object as first layer object - -function New-CsAutoAttendantCallFlow { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter represents a unique friendly name for the call flow. - ${Name}, - - [Parameter(Mandatory=$false, position=1)] - [PSObject[]] - # If present, the prompts specified by the Greetings parameter (either TTS or Audio) are played before the call flow's menu is rendered. - ${Greetings}, - - [Parameter(Mandatory=$true, position=2)] - [PSObject] - # The Menu parameter identifies the menu to render when the call flow is executed. - ${Menu}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The ForceListenMenuEnabled parameter indicates whether the caller will be forced to listen to the menu. - ${ForceListenMenuEnabled}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - # The RingResourceAccountDelegates parameter indicates whether the call flow should ring resource account delegates. - ${RingResourceAccountDelegates}, - - [Parameter(Mandatory=$false, position=5)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - If ($ForceListenMenuEnabled -ne $null){ - $null = $PSBoundParameters.Remove("ForceListenMenuEnabled") - $PSBoundParameters.Add('ForceListenMenuEnabled', $ForceListenMenuEnabled) - } - - If ($RingResourceAccountDelegates -ne $null){ - $null = $PSBoundParameters.Remove("RingResourceAccountDelegates") - $PSBoundParameters.Add('RingResourceAccountDelegates', $RingResourceAccountDelegates) - } - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($Greetings -ne $null) { - $null = $PSBoundParameters.Remove('Greetings') - $inputGreetings = @() - foreach ($greeting in $Greetings) { - $inputGreetings += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($greeting) - } - $PSBoundParameters.Add('Greeting', $inputGreetings) - } - - if ($Menu -ne $null) { - $null = $PSBoundParameters.Remove('Menu') - if ($Menu.DialByNameEnabled) { - $PSBoundParameters.Add('MenuDialByNameEnabled', $true) - } - $PSBoundParameters.Add('MenuDirectorySearchMethod', $Menu.DirectorySearchMethod) - $PSBoundParameters.Add('MenuName', $Menu.Name) - $inputMenuOptions = @() - foreach ($menuOption in $Menu.MenuOptions) { - $inputMenuOptions += [Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption]::CreateAutoGeneratedFromObject($menuOption) - } - $PSBoundParameters.Add('MenuOption', $inputMenuOptions) - $inputMenuPrompts = @() - foreach ($menuPrompt in $Menu.Prompts) { - $inputMenuPrompts += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($menuPrompt) - } - $PSBoundParameters.Add('MenuPrompt', $inputMenuPrompts) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantCallFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print diagnostic message from service - -function New-CsAutoAttendantCallHandlingAssociation { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociationType] - # The Type parameter represents the type of the call handling association. - ${Type}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The ScheduleId parameter represents the schedule to be associated with the call flow. - ${ScheduleId}, - - [Parameter(Mandatory=$true, position=2)] - [System.String] - # The CallFlowId parameter represents the call flow to be associated with the schedule. - ${CallFlowId}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The Disable parameter, if set, establishes that the call handling association is created as disabled. - ${Disable}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - if ($Disable -eq $true) { - $null = $PSBoundParameters.Remove('Disable') - } else { - $PSBoundParameters.Add('Enable', $true) - } - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantCallHandlingAssociation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociation]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print diagnostic message from server respond - -function New-CsAutoAttendantDialScope { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [Switch] - # Indicates that a dial-scope based on groups (distribution lists, security groups) is to be created. - ${GroupScope}, - - [Parameter(Mandatory=$true, position=1)] - [System.String[]] - # Refers to the IDs of the groups that are to be included in the dial-scope. - ${GroupIds}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - if ($GroupScope -eq $true) { - $null = $PSBoundParameters.Remove('GroupScope') - } - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantDialScope @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format input of the cmdlet - -function New-CsAutoAttendantMenu { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter represents a friendly name for the menu. - ${Name}, - - [Parameter(Mandatory=$false, position=1)] - [PSObject[]] - # The Prompts parameter reflects the prompts to play when the menu is activated. - ${Prompts}, - - [Parameter(Mandatory=$false, position=2)] - [PSObject[]] - # The MenuOptions parameter is a list of menu options for this menu. - ${MenuOptions}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The EnableDialByName parameter lets users do a directory search by recipient name and get transferred to the party. - ${EnableDialByName}, - - [Parameter(Mandatory=$false, position=4)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod] - # The DirectorySearchMethod parameter lets you define the type of Directory Search Method for the Auto Attendant menu. - ${DirectorySearchMethod}, - - [Parameter(Mandatory=$false, position=5)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($Prompts -ne $null) { - $null = $PSBoundParameters.Remove('Prompts') - $inputPrompts = @() - foreach ($prompt in $Prompts) { - $inputPrompts += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($prompt) - } - $PSBoundParameters.Add('Prompt', $inputPrompts) - } - - if ($MenuOptions -ne $null) { - $null = $PSBoundParameters.Remove('MenuOptions') - $inputMenuOptions = @() - foreach ($menuOption in $MenuOptions) { - $inputMenuOptions += [Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption]::CreateAutoGeneratedFromObject($menuOption) - } - $PSBoundParameters.Add('MenuOption', $inputMenuOptions) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantMenu @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.Menu]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format input of the cmdlet - -function New-CsAutoAttendantMenuOption { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.ActionType] - # The Action parameter represents the action to be taken when the menu option is activated. - ${Action}, - - [Parameter(Mandatory=$true, position=1)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DtmfTone] - # The DtmfResponse parameter indicates the key on the telephone keypad to be pressed to activate the menu option. - ${DtmfResponse}, - - [Parameter(Mandatory=$false, position=2)] - [System.String[]] - # The VoiceResponses parameter represents the voice responses to select a menu option when Voice Responses are enabled for the auto attendant. - ${VoiceResponses}, - - [Parameter(Mandatory=$false, position=3)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - # The CallTarget parameter represents the target for call transfer after the menu option is selected. - ${CallTarget}, - - [Parameter(Mandatory=$false, position=4)] - [PSObject] - # The Prompt parameter represents the announcement prompt. - ${Prompt}, - - [Parameter(Mandatory=$false, position=5)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(Mandatory=$false, position=6)] - [System.String] - # Description of the menu option. - ${Description}, - - [Parameter(Mandatory=$false, position=7)] - [System.String] - # The mainline attendant target only when the action is MainlineAttendantFlow. - ${MainlineAttendantTarget}, - - [Parameter(Mandatory=$false, position=8)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.AgentTargetType] - # The mainline attendant target only when the action is MainlineAttendantFlow. - ${AgentTargetType}, - - [Parameter(Mandatory=$false, position=9)] - [System.String] - # The mainline attendant target only when the action is MainlineAttendantFlow. - ${AgentTarget}, - - [Parameter(Mandatory=$false, position=10)] - [System.String] - # The mainline attendant target only when the action is MainlineAttendantFlow. - ${AgentTargetTagTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($CallTarget -ne $null) { - $null = $PSBoundParameters.Remove('CallTarget') - $PSBoundParameters.Add('CallTargetId', $CallTarget.Id) - $PSBoundParameters.Add('CallTargetType', $CallTarget.Type) - if ($CallTarget.EnableTranscription) { - $PSBoundParameters.Add('CallTargetEnableTranscription', $True) - } - if ($CallTarget.EnableSharedVoicemailSystemPromptSuppression) { - $PSBoundParameters.Add('CallTargetEnableSharedVoicemailSystemPromptSuppression', $True) - } - if ($CallTarget.Type -eq 'ApplicationEndpoint' -or $CallTarget.Type -eq 'ConfigurationEndpoint') { - $PSBoundParameters.Add('CallTargetCallPriority', $CallTarget.CallPriority) - } - if ($CallTarget.SharedVoicemailHistoryTemplateId) { - $PSBoundParameters.Add('CallTargetSharedVoicemailHistoryTemplateId', $CallTarget.SharedVoicemailHistoryTemplateId) - } - } - - if ($Prompt -ne $null) { - $typeNames = $Prompt.PSObject.TypeNames - if ($typeNames -NotContains "Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt" -and $typeNames -NotContains "Deserialized.Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt") { - throw "PSObject must be type of Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt or Deserialized.Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt" - } - - $null = $PSBoundParameters.Remove('Prompt') - $PSBoundParameters.Add('PromptActiveType', $Prompt.ActiveType) - $PSBoundParameters.Add('PromptTextToSpeechPrompt', $Prompt.TextToSpeechPrompt) - if ($Prompt.AudioFilePrompt -ne $null -and $Prompt.AudioFilePrompt.Id -ne $null) { - $PSBoundParameters.Add('AudioFilePromptId', $Prompt.AudioFilePrompt.Id) - $PSBoundParameters.Add('AudioFilePromptFileName', $Prompt.AudioFilePrompt.FileName) - $PSBoundParameters.Add('AudioFilePromptDownloadUri', $Prompt.AudioFilePrompt.DownloadUri) - } - } - - if ($Action -eq [Microsoft.Rtc.Management.Hosted.OAA.Models.ActionType]::MainlineAttendantFlow -and [string]::IsNullOrWhiteSpace($MainlineAttendantTarget)) - { - throw "The value of `MainlineAttendantTarget` cannot be null when the `Action` is '$Action'" - } - - if ($Action -eq [Microsoft.Rtc.Management.Hosted.OAA.Models.ActionType]::AgentsAndQueues -and [string]::IsNullOrWhiteSpace($AgentTargetType)) - { - throw "The value of `AgentTargetType` cannot be null when the `Action` is '$Action'" - } - - if ($Action -eq [Microsoft.Rtc.Management.Hosted.OAA.Models.ActionType]::AgentsAndQueues -and [string]::IsNullOrWhiteSpace($AgentTarget)) - { - throw "The value of `AgentTarget` cannot be null when the `Action` is '$Action'" - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantMenuOption @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption]::new() - $output.ParseFrom($internalOutput) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Base64 encode the content for the audio file - -function New-CsAutoAttendantPrompt { - [CmdletBinding(PositionalBinding=$true, DefaultParameterSetName='TextToSpeechParamSet')] - param( - [Parameter(Mandatory=$true, position=0, ParameterSetName="DualParamSet")] - [System.String] - # The ActiveType parameter identifies the active type (modality) of the AA prompt. - ${ActiveType}, - - [Parameter(Mandatory=$true, position=0, ParameterSetName="AudioFileParamSet")] - [Parameter(Mandatory=$false, position=1, ParameterSetName="DualParamSet")] - [Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile] - # The AudioFilePrompt parameter represents the audio to play when the prompt is activated (rendered). - ${AudioFilePrompt}, - - [Parameter(Mandatory=$true, position=0, ParameterSetName="TextToSpeechParamSet")] - [Parameter(Mandatory=$false, position=2, ParameterSetName="DualParamSet")] - [System.String] - # The TextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt that is to be read when the prompt is activated. - ${TextToSpeechPrompt}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($ActiveType -eq "") { - $PSBoundParameters.Remove("ActiveType") | Out-Null - if ($TextToSpeechPrompt -ne "") { - $PSBoundParameters.Add("ActiveType", "TextToSpeech") - } elseif ($AudioFilePrompt -ne $null) { - $PSBoundParameters.Add("ActiveType", "AudioFile") - } else { - $PSBoundParameters.Add("ActiveType", "None") - } - } - - $ActiveType = "TextToSpeech" - - if ($AudioFilePrompt -ne $null) { - $PSBoundParameters.Add('AudioFilePromptId', $AudioFilePrompt.Id) - $PSBoundParameters.Add('AudioFilePromptFileName', $AudioFilePrompt.FileName) - $PSBoundParameters.Add('AudioFilePromptDownloadUri', $AudioFilePrompt.DownloadUri) - $PSBoundParameters.Remove('AudioFilePrompt') | Out-Null - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoAttendantPrompt @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::new() - $output.ParseFrom($internalOutput) - - return $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsAutoRecordingTemplate { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the auto recording template. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a description for the auto recording template. - ${Description}, - - [Parameter(Mandatory=$false, position=2)] - [System.Boolean] - # The TranscriptionEnabled parameter value indicating whether transcription is enabled. - ${TranscriptionEnabled}, - - [Parameter(Mandatory=$false, position=3)] - [System.Boolean] - # The RecordingEnabled parameter value indicating whether recording is enabled. - ${RecordingEnabled}, - - [Parameter(Mandatory=$false, position=4)] - [Microsoft.Rtc.Management.Hosted.Online.Models.AgentViewPermission] - # The AgentViewPermission parameter value indicating agent view permission. - ${AgentViewPermission}, - - [Parameter(Mandatory=$true, position=5)] - [System.String] - # The SharePointHostName parameter provides the SharePoint host name where recordings are stored. - ${SharePointHostName}, - - [Parameter(Mandatory=$true, position=6)] - [System.String] - # The SharePointSiteName parameter provides the SharePoint site name where recordings are stored. - ${SharePointSiteName}, - - [Parameter(Mandatory=$true, position=7)] - [System.String] - # The RecordingDocumentOwner parameter provides recording document owner. - ${RecordingDocumentOwner}, - - [Parameter(Mandatory=$false, position=8)] - [System.String] - # The AutoRecordingAnnouncementAudioFileId parameter provides the audio file ID for the auto-recording announcement. - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter(Mandatory=$false, position=9)] - [System.String] - # The AutoRecordingAnnouncementTextToSpeechPrompt parameter provides the text-to-speech prompt for the auto-recording announcement. - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Build the request body - $requestBody = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoRecordingTemplateDtoModel]::new() - $requestBody.Name = $Name - $requestBody.Description = $Description - $requestBody.SharePointHostName = $SharePointHostName - $requestBody.SharePointSiteName = $SharePointSiteName - $requestBody.RecordingDocumentOwner = $RecordingDocumentOwner - - if ($PSBoundParameters.ContainsKey('TranscriptionEnabled')) { - $requestBody.TranscriptionEnabled = $TranscriptionEnabled - } - - if ($PSBoundParameters.ContainsKey('RecordingEnabled')) { - $requestBody.RecordingEnabled = $RecordingEnabled - } - - if ($PSBoundParameters.ContainsKey('AgentViewPermission')) { - $requestBody.AgentViewPermission = [int]$AgentViewPermission - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementAudioFileId')) { - $requestBody.AutoRecordingAnnouncementAudioFileId = $AutoRecordingAnnouncementAudioFileId - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementTextToSpeechPrompt')) { - $requestBody.AutoRecordingAnnouncementTextToSpeechPrompt = $AutoRecordingAnnouncementTextToSpeechPrompt - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsAutoRecordingTemplate -Body $requestBody -ErrorAction Stop @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AutoRecording]::new() - $output.ParseFromCreateResponse($internalOutput) - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: parsing the return result to the CallQueue object type. - -function New-CsCallQueue { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name of the call queue to be created. - ${Name}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. - ${AgentAlertTime}, - - [Parameter(Mandatory=$false)] - [bool] - # The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - ${AllowOptOut}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. - ${DistributionLists}, - - [Parameter(Mandatory=$false)] - [bool] - # The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. - ${UseDefaultMusicOnHold}, - - [Parameter(Mandatory=$false)] - [System.String] - # The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. - ${WelcomeMusicAudioFileId}, - - [Parameter(Mandatory=$false)] - [System.String] - # The WelcomeTextToSpeechPrompt parameter represents the text to speech content to play when callers are connected with the Call Queue. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The MusicOnHoldAudioFileId parameter represents music to play when callers are placed on hold. - ${MusicOnHoldAudioFileId}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction] - # The OverflowAction parameter designates the action to take if the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowActionTarget parameter represents the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. - ${OverflowThreshold}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction] - # The TimeoutAction parameter defines the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutActionTarget represents the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. - ${TimeoutThreshold}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod] - # The RoutingMethod defines how agents will be called in a Call Queue. - ${RoutingMethod}, - - [Parameter(Mandatory=$false)] - [bool] - # The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. - ${PresenceBasedRouting} = $true, - - [Parameter(Mandatory=$false)] - [bool] - # The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for current call queue. - ${ConferenceMode} = $true, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The Users parameter lets you add agents to the Call Queue. - ${Users}, - - [Parameter(Mandatory=$false)] - [System.String] - # The LanguageId parameter indicates the language that is used to play shared voicemail prompts. - ${LanguageId}, - - [Parameter(Mandatory=$false)] - [System.String] - # This parameter is reserved for Microsoft internal use only. - ${LineUri}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. - ${OboResourceAccountIds}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableOverflowSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message on overflow. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableTimeoutSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message on timeout. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentAction] - # The NoAgentAction parameter defines the action to take if the NoAgents are LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentActionTarget represents the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail when NoAgents are Opted/LoggedIn to take calls. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail when NoAgents are Opted/LoggedIn to take calls. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller when NoAgents are LoggedIn/OptedIn to take calls. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableNoAgentSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message when NoAgents are LoggedIn/OptedIn to take calls. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentApplyTo] - # The NoAgentApplyTo parameter determines whether the NoAgent action applies to All Calls or only New calls. - ${NoAgentApplyTo}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id of the channel to connect a call queue to. - ${ChannelId}, - - [Parameter(Mandatory=$false)] - [System.Guid] - # Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - ${ChannelUserObjectId}, - - [Parameter(Mandatory=$false)] - [bool] - # The ShouldOverwriteCallableChannelProperty indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The list of authorized users. - ${AuthorizedUsers}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The list of hidden authorized users. - ${HideAuthorizedUsers}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the overflow action, only applies when the OverflowAction is an `Forward`. - ${OverflowActionCallPriority}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the timeout action, only applies when the TimeoutAction is an `Forward`. - ${TimeoutActionCallPriority}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the no agent opted in action, only applies when the NoAgentAction is an `Forward`. - ${NoAgentActionCallPriority}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Boolean]] - # The IsCallbackEnabled parameter for enabling and disabling the Courtesy Callback feature. - ${IsCallbackEnabled}, - - [parameter(Mandatory=$false)] - [System.String] - # The DTMF tone to press to start requesting callback, as part of the Courtesy Callback feature. - ${CallbackRequestDtmf}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The wait time before offering callback in seconds, as part of the Courtesy Callback feature. - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The number of calls in queue before offering callback, as part of the Courtesy Callback feature. - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The call to agent ratio threshold before offering callback, as part of the Courtesy Callback feature. - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [parameter(Mandatory=$false)] - [System.String] - # The identifier of the offer callback audio file to be played when offering callback to caller, as part of the Courtesy Callback feature. - ${CallbackOfferAudioFilePromptResourceId}, - - [parameter(Mandatory=$false)] - [System.String] - # The text-to-speech string to be converted to a speech and played when offering callback to caller, as part of the Courtesy Callback feature. - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The CallbackEmailNotificationTarget parameter for callback feature. - ${CallbackEmailNotificationTarget}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Service level threshold in seconds for the call queue. Used for monitor calls in the call queue is handled within this threshold or not. - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(Mandatory=$false)] - [System.String] - # Shifts Team identity to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Shifts Scheduling Group identity to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Text annnouncement thats played before CR bot joins the call. - ${TextAnnouncementForCR}, - - [Parameter(Mandatory=$false)] - [System.String] - # Custom Audio announcement that is played before CR bot joins the call. - ${CustomAudioFileAnnouncementForCR}, - - [Parameter(Mandatory=$false)] - [System.String] - # Text announcement that is played if CR bot is unable to join the call. - ${TextAnnouncementForCRFailure}, - - [Parameter(Mandatory=$false)] - [System.String] - # Custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCRFailure}, - - [Parameter(Mandatory=$false)] - [System.String[]] - # Ids for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id for Shared Call Queue History template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id for Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(Mandatory=$false)] - [Switch] - # Allow the cmdlet to run anyway - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - if ($PSBoundParameters.ContainsKey('LineUri')) { - # Stick with the current TRPS cmdlet policy of silently ignoring the LineUri. Later, we need to remove this param from - # TRPS and ConfigAPI based cmdlets. Public facing document must be updated as well. - $PSBoundParameters.Remove('LineUri') | Out-Null - } - - #Setting PresenceAwareRouting to $false when LongestIdle is enabled as RoutingMethod - #Since having both conditions enabled is not supported in backend service. - if($RoutingMethod -eq 'LongestIdle') { - $PresenceBasedRouting = $false - $PSBoundParameters.Add('PresenceAwareRouting', $PresenceBasedRouting) - $PSBoundParameters.Remove('PresenceBasedRouting') | Out-Null - } - elseif ( $PSBoundParameters.ContainsKey('PresenceBasedRouting')) { - $PSBoundParameters.Add('PresenceAwareRouting', $PresenceBasedRouting) - $PSBoundParameters.Remove('PresenceBasedRouting') | Out-Null - } - - if ($ChannelId -ne '') { - $PSBoundParameters.Add('ThreadId', $ChannelId) - $PSBoundParameters.Remove('ChannelId') | Out-Null - } - - # Making sure the user provides the correct CallPriority values for CQ exceptions (overflow, timeout, NoAgent etc.) handling. - # The valid values are 1 to 5. Zero is also allowed which means the user wants to use the default value (3). - # (elseif) The CallPriority does not apply when the Action is not `Forward`. - if ($OverflowAction -eq 'Forward' -and ($OverflowActionCallPriority -lt 0 -or $OverflowActionCallPriority -gt 5)) { - throw "Invalid `OverflowActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($OverflowAction -ne 'Forward' -and ([Math]::Abs($OverflowActionCallPriority) -ge 1)) { - throw "OverflowActionCallPriority is only applicable when the 'OverflowAction' is 'Forward'. Please remove the OverflowActionCallPriority." - } - - if ($TimeoutAction -eq 'Forward' -and ($TimeoutActionCallPriority -lt 0 -or $TimeoutActionCallPriority -gt 5)) { - throw "Invalid `TimeoutActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($TimeoutAction -ne 'Forward' -and ([Math]::Abs($TimeoutActionCallPriority) -ge 1)) { - throw "TimeoutActionCallPriority is only applicable when the 'TimeoutAction' is 'Forward'. Please remove the TimeoutActionCallPriority." - } - - if ($NoagentAction -eq 'Forward' -and ($NoAgentActionCallPriority -lt 0 -or $NoAgentActionCallPriority -gt 5)) { - throw "Invalid `NoAgentActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($NoAgentAction -ne 'Forward' -and ([Math]::Abs($NoAgentActionCallPriority) -ge 1)) { - throw "NoAgentActionCallPriority is only applicable when the 'NoAgentAction' is 'Forward'. Please remove the NoAgentActionCallPriority." - } - - if ($PSBoundParameters.ContainsKey('IsCallbackEnabled') -and $IsCallbackEnabled -eq $null) { - $null = $PSBoundParameters.Remove('IsCallbackEnabled') - } - - if ($PSBoundParameters.ContainsKey('CallbackRequestDtmf') -and [string]::IsNullOrWhiteSpace($CallbackRequestDtmf)) { - $null = $PSBoundParameters.Remove('CallbackRequestDtmf') - } - - if ($PSBoundParameters.ContainsKey('WaitTimeBeforeOfferingCallbackInSecond') -and $WaitTimeBeforeOfferingCallbackInSecond -eq $null) { - $null = $PSBoundParameters.Remove('WaitTimeBeforeOfferingCallbackInSecond') - } - - if ($PSBoundParameters.ContainsKey('NumberOfCallsInQueueBeforeOfferingCallback') -and $NumberOfCallsInQueueBeforeOfferingCallback -eq $null) { - $null = $PSBoundParameters.Remove('NumberOfCallsInQueueBeforeOfferingCallback') - } - - if ($PSBoundParameters.ContainsKey('CallToAgentRatioThresholdBeforeOfferingCallback') -and $CallToAgentRatioThresholdBeforeOfferingCallback -eq $null) { - $null = $PSBoundParameters.Remove('CallToAgentRatioThresholdBeforeOfferingCallback') - } - - if ($PSBoundParameters.ContainsKey('CallbackOfferAudioFilePromptResourceId') -and [string]::IsNullOrWhiteSpace($CallbackOfferAudioFilePromptResourceId)) { - $null = $PSBoundParameters.Remove('CallbackOfferAudioFilePromptResourceId') - } - - if ($PSBoundParameters.ContainsKey('CallbackOfferTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($CallbackOfferTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('CallbackOfferTextToSpeechPrompt') - } - - if ($PSBoundParameters.ContainsKey('CallbackEmailNotificationTarget') -and [string]::IsNullOrWhiteSpace($CallbackEmailNotificationTarget)) { - $null = $PSBoundParameters.Remove('CallbackEmailNotificationTarget') - } - - if ($PSBoundParameters.ContainsKey('ServiceLevelThresholdResponseTimeInSecond') -and $ServiceLevelThresholdResponseTimeInSecond -eq $null) { - $null = $PSBoundParameters.Remove('ServiceLevelThresholdResponseTimeInSecond') - } - - if ($PSBoundParameters.ContainsKey('ShiftsTeamId') -and [string]::IsNullOrWhiteSpace($ShiftsTeamId)) { - $null = $PSBoundParameters.Remove('ShiftsTeamId') - } - - if ($PSBoundParameters.ContainsKey('ShiftsSchedulingGroupId') -and [string]::IsNullOrWhiteSpace($ShiftsSchedulingGroupId)) { - $null = $PSBoundParameters.Remove('ShiftsSchedulingGroupId') - } - - if ($PSBoundParameters.ContainsKey('TextAnnouncementForCR') -and [string]::IsNullOrWhiteSpace($TextAnnouncementForCR)) { - $null = $PSBoundParameters.Remove('TextAnnouncementForCR') - } - - if ($PSBoundParameters.ContainsKey('CustomAudioFileAnnouncementForCR') -and [string]::IsNullOrWhiteSpace($CustomAudioFileAnnouncementForCR)) { - $null = $PSBoundParameters.Remove('CustomAudioFileAnnouncementForCR') - } - - if ($PSBoundParameters.ContainsKey('TextAnnouncementForCRFailure') -and [string]::IsNullOrWhiteSpace($TextAnnouncementForCRFailure)) { - $null = $PSBoundParameters.Remove('TextAnnouncementForCRFailure') - } - - if ($PSBoundParameters.ContainsKey('CustomAudioFileAnnouncementForCRFailure') -and [string]::IsNullOrWhiteSpace($CustomAudioFileAnnouncementForCRFailure)) { - $null = $PSBoundParameters.Remove('CustomAudioFileAnnouncementForCRFailure') - } - - if ($PSBoundParameters.ContainsKey('ComplianceRecordingForCallQueueTemplateId') -and $ComplianceRecordingForCallQueueTemplateId -eq $null) { - $null = $PSBoundParameters.Remove('ComplianceRecordingForCallQueueTemplateId') - } - - if ($PSBoundParameters.ContainsKey('SharedCallQueueHistoryTemplateId') -and $SharedCallQueueHistoryTemplateId -eq $null) { - $null = $PSBoundParameters.Remove('SharedCallQueueHistoryTemplateId') - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and $AutoRecordingTemplateId -eq $null) { - $null = $PSBoundParameters.Remove('AutoRecordingTemplateId') - } - - # Validate ConferenceMode requirement for AutoRecordingTemplateId - # ConferenceMode must be enabled before setting AutoRecordingTemplateId - $conferenceModeValue = $ConferenceMode - if (!$conferenceModeValue -and $PSBoundParameters.ContainsKey('ConferenceMode')) { - $conferenceModeValue = $PSBoundParameters['ConferenceMode'] - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and ![string]::IsNullOrWhiteSpace($AutoRecordingTemplateId)) { - if ($conferenceModeValue -ne $true) { - throw "AutoRecordingTemplateId can only be set when ConferenceMode is enabled. Please set ConferenceMode to `$true before setting AutoRecordingTemplateId." - } - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsCallQueue @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $output.ParseFrom($result.CallQueue) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsComplianceRecordingForCallQueueTemplate { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the CR4CQ template. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a description for the CR4CQ template. - ${Description}, - - [Parameter(Mandatory=$true, position=2)] - [System.String] - # The BotApplicationInstanceObjectId parameter represents the ID of the CR bot - ${BotApplicationInstanceObjectId}, - - [Parameter(Mandatory=$false, position=3)] - [Switch] - # The RequiredDuringCall parameter indicates if compliance recording bot is required during the call. - ${RequiredDuringCall}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - # The RequiredBeforeCall parameter indicates if compliance recording bot is required before the call. - ${RequiredBeforeCall}, - - [Parameter(Mandatory=$false, position=5)] - [System.Int32] - # The ConcurrentInvitationCount parameter specifies the number of concurrent invitations to the CR bot. - ${ConcurrentInvitationCount}, - - [Parameter(Mandatory=$false, position=6)] - [System.String] - # The PairedApplication parameter specifies the paired application for the call queue. - ${PairedApplicationInstanceObjectId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($RequiredDuringCall -eq $true){ - $null = $PSBoundParameters.Remove("RequiredDuringCall") - $PSBoundParameters.Add('RequiredDuringCall', $true) - } - - if ($RequiredBeforeCall -eq $true){ - $null = $PSBoundParameters.Remove("RequiredBeforeCall") - $PSBoundParameters.Add('RequiredBeforeCall', $true) - } - - if ($PairedApplication -ne $null){ - $null = $PSBoundParameters.Remove("PairedApplicationInstanceObjectId") - $PSBoundParameters.Add('PairedApplicationInstanceObjectId', $PairedApplication) - } - - if ($ConcurrentInvitationCount -eq 0){ - $null = $PSBoundParameters.Remove("ConcurrentInvitationCount") - $PSBoundParameters.Add('ConcurrentInvitationCount', 1) - } elseif ($ConcurrentInvitationCount -ne $null){ - # Validate the value of ConcurrentInvitationCount - if ($ConcurrentInvitationCount -lt 1 -or $ConcurrentInvitationCount -gt 2) { - Write-Error "The value of ConcurrentInvitationCount must be 1 or 2." - throw - } - $null = $PSBoundParameters.Remove("ConcurrentInvitationCount") - $PSBoundParameters.Add('ConcurrentInvitationCount', $ConcurrentInvitationCount) - } - - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsComplianceRecordingForCallQueueTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.ComplianceRecordingForCallQueue]::new() - $output.ParseFromCreateResponse($internalOutput) - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Base64 encode the content for the audio file - -function New-CsMainlineAttendantAppointmentBookingFlow { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Name of the mainline attendant appointment booking flow. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description of the flow. - ${Description}, - - [Parameter(Mandatory=$true, position=2)] - [Microsoft.Rtc.Management.Hosted.Online.Models.CallerAuthenticationMethod] - # One of the predefined method to authenticate a caller: “Sms”, “Email”, “VerificationLink”,“Voiceprint”,“UserDetails” - ${CallerAuthenticationMethod}, - - [Parameter(Mandatory=$true, position=3)] - [Microsoft.Rtc.Management.Hosted.Online.Models.ApiAuthenticationType] - # The authentication type of API and the possible values are: “Basic”, “ApiKey”, “BearerTokenStatic”, “BearerTokenDynamic” - ${ApiAuthenticationType}, - - [Parameter(Mandatory=$true, position=4)] - [System.String] - # The file path of API template JSON. - ${ApiDefinitions}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - try { - # Check if ApiDefinitions is a JSON file path - if (![string]::IsNullOrWhiteSpace($ApiDefinitions) -and $ApiDefinitions -match '\.json$') - { - # Read the JSON file into a PowerShell object - $ApiDefinitionsJsonObject = Get-Content -Path $ApiDefinitions | ConvertFrom-Json - - # Convert the PowerShell object back into a JSON string - $ApiDefinitionsJsonString = $ApiDefinitionsJsonObject | ConvertTo-Json -Depth 10 - - # The user input of `ApiDefinitions` parameter is the template file path, - # but we need to provide the content of the template to the downstream backend service. - $PSBoundParameters.Remove('ApiDefinitions') | Out-Null - $PSBoundParameters.Add("ApiDefinitions", $ApiDefinitionsJsonString) - } - else - { - throw "ApiDefinitions parameter must be a valid JSON file path." - } - } catch { - throw "Failed to read API Definitions file: $_" - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsMainlineAttendantAppointmentBookingFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - $output.ParseFromCreateResponse($internalOutput) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -function New-CsMainlineAttendantQuestionAnswerFlow { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # Name of the mainline attendant question and answer flow. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description of the flow. - ${Description}, - - [Parameter(Mandatory=$false, position=2)] - [Microsoft.Rtc.Management.Hosted.Online.Models.ApiAuthenticationType] - # The authentication type of API and the possible values are: “Basic”, “ApiKey”, “BearerTokenStatic”, “BearerTokenDynamic” - ${ApiAuthenticationType}, - - [Parameter(Mandatory=$true, position=3)] - [System.String] - # The file path of KnowledgeBase JSON. - ${KnowledgeBase}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - try - { - # Check if KnowledgeBase is a JSON file path - if (![string]::IsNullOrWhiteSpace($KnowledgeBase) -and $KnowledgeBase -match '\.json$') - { - # Read the JSON file into a PowerShell object - $KnowledgeBaseJsonObject = Get-Content -Path $KnowledgeBase | ConvertFrom-Json - - # Convert the PowerShell object back into a JSON string - $KnowledgeBaseJsonString = $KnowledgeBaseJsonObject | ConvertTo-Json -Depth 10 - - # Create an instance of MainlineAttendantQuestionAnswerFlow to get the local file content - $mainlineAttendantQuestionAnswerFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $KnowledgeBaseContent = $mainlineAttendantQuestionAnswerFlow.ReadKnowledgeBaseContent($KnowledgeBaseJsonString) - - # The user input of `KnowledgeBase` parameter is the knowledge-base file path, - # but we need to provide the content of the knowledge-base to the downstream backend service. - $PSBoundParameters.Remove('KnowledgeBase') | Out-Null - $PSBoundParameters.Add("KnowledgeBase", $KnowledgeBaseContent) - } - else - { - throw "KnowledgeBase parameter must be a valid JSON file path." - } - } catch { - throw "Failed to read KnowledgeBase file: $_" - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsMainlineAttendantQuestionAnswerFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $output.ParseFromCreateResponse($internalOutput) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function New-CsOnlineApplicationInstanceAssociation { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String[]] - # The Identities parameter is the identities of application instances to be associated with the provided configuration ID. - ${Identities}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The ConfigurationId parameter is the identity of the configuration that would be associatied with the provided application instances. - ${ConfigurationId}, - - [Parameter(Mandatory=$true, position=2)] - [System.String] - # The ConfigurationType parameter denotes the type of the configuration that would be associated with the provided application instances. - ${ConfigurationType}, - - [Parameter(Mandatory=$false, position=3)] - [System.Int16] - # The Call Priority of the MenuOption, only applies when the CallableEntityType (Type) is ApplicationEndpoint or ConfigurationEndpoint. - ${CallPriority}, - - [Parameter(Mandatory=$false, position=4)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Making sure the user provides the correct CallPriority value. The valid values are 1 to 5. - # Zero is also allowed which means the user wants to use the default CallPriority or doesn't want to use the CallPriority feature. - if ($CallPriority -lt 0 -or $CallPriority -gt 5) - { - throw "Invalid CallPriority. The valid values are 1 to 5. Please provide the correct value."; - } - - $internalOutputs = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineApplicationInstanceAssociation @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutputs -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutputs.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationOutput]::new() - $output.ParseFrom($internalOutputs) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the return result to the custom object - -function New-CsOnlineDateTimeRange { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Start parameter represents the start bound of the date-time range. - ${Start}, - - [Parameter(Mandatory=$false, position=1)] - [System.String] - # The End parameter represents the end bound of the date-time range. - ${End}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineDateTimeRange @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.DateTimeRange]::new() - $output.ParseFrom($result) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: assign parameters' values and customize output - -function New-CsOnlineSchedule { - [CmdletBinding(DefaultParameterSetName="UnresolvedParamSet", SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true)] - [System.String] - # The name of the schedule which is created. - ${Name}, - - [Parameter(Mandatory=$true, ParameterSetName = "FixedScheduleParamSet")] - [switch] - # The FixedSchedule parameter indicates that a fixed schedule is to be created. - ${FixedSchedule}, - - [Parameter(Mandatory=$false, ParameterSetName = "FixedScheduleParamSet")] - # List of date-time ranges for a fixed schedule. - ${DateTimeRanges}, - - [Parameter(Mandatory=$true, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - [switch] - # The WeeklyRecurrentSchedule parameter indicates that a weekly recurrent schedule is to be created. - ${WeeklyRecurrentSchedule}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Monday. - ${MondayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Tuesday. - ${TuesdayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Wednesday. - ${WednesdayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Thursday. - ${ThursdayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Friday. - ${FridayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Saturday. - ${SaturdayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - # List of time ranges for Sunday. - ${SundayHours}, - - [Parameter(Mandatory=$false, ParameterSetName = "WeeklyRecurrentScheduleParamSet")] - [switch] - # The flag for Complement enabled or not - ${Complement}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $dateTimeRangeStandardFormat = 'yyyy-MM-ddTHH:mm:ss'; - - # Get common parameters - $params = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - $null = $params.Remove("FixedSchedule") - $null = $params.Remove("DateTimeRanges") - $null = $params.Remove("WeeklyRecurrentSchedule") - $null = $params.Remove("MondayHours") - $null = $params.Remove("TuesdayHours") - $null = $params.Remove("WednesdayHours") - $null = $params.Remove("ThursdayHours") - $null = $params.Remove("FridayHours") - $null = $params.Remove("SaturdayHours") - $null = $params.Remove("SundayHours") - $null = $params.Remove("Complement") - - - if ($PsCmdlet.ParameterSetName -eq "UnresolvedParamSet") { - throw "A schedule type must be specified. Please use -WeeklyRecurrentSchedule or -FixedSchedule parameters to create the appropriate type of schedule." - } - - if ($PsCmdlet.ParameterSetName -eq "FixedScheduleParamSet") { - $fixedScheduleDateTimeRanges = @() - foreach ($dateTimeRange in $DateTimeRanges) { - $fixedScheduleDateTimeRanges += @{ - Start = $dateTimeRange.Start.ToString($dateTimeRangeStandardFormat, [System.Globalization.CultureInfo]::InvariantCulture) - End = $dateTimeRange.End.ToString($dateTimeRangeStandardFormat, [System.Globalization.CultureInfo]::InvariantCulture) - } - } - $params['FixedScheduleDateTimeRange'] = $fixedScheduleDateTimeRanges - } - - if ($PsCmdlet.ParameterSetName -eq "WeeklyRecurrentScheduleParamSet") { - if ($MondayHours -ne $null -and $MondayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleMondayHour'] = @() - foreach ($mondayHour in $MondayHours){ - $params['WeeklyRecurrentScheduleMondayHour'] += @{ - Start = $mondayHour.Start - End = $mondayHour.End - } - } - } - if ($TuesdayHours -ne $null -and $TuesdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleTuesdayHour'] = @() - foreach ($tuesdayHour in $TuesdayHours){ - $params['WeeklyRecurrentScheduleTuesdayHour'] += @{ - Start = $tuesdayHour.Start - End = $tuesdayHour.End - } - } - } - if ($WednesdayHours -ne $null -and $WednesdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleWednesdayHour'] = @() - foreach ($wednesdayHour in $WednesdayHours){ - $params['WeeklyRecurrentScheduleWednesdayHour'] += @{ - Start = $wednesdayHour.Start - End = $wednesdayHour.End - } - } - } - if ($ThursdayHours -ne $null -and $ThursdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleThursdayHour'] = @() - foreach ($thursdayHour in $ThursdayHours){ - $params['WeeklyRecurrentScheduleThursdayHour'] += @{ - Start = $thursdayHour.Start - End = $thursdayHour.End - } - } - } - if ($FridayHours -ne $null -and $FridayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleFridayHour'] = @() - foreach ($fridayHour in $FridayHours){ - $params['WeeklyRecurrentScheduleFridayHour'] += @{ - Start = $fridayHour.Start - End = $fridayHour.End - } - } - } - if ($SaturdayHours -ne $null -and $SaturdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleSaturdayHour'] = @() - foreach ($saturdayHour in $SaturdayHours){ - $params['WeeklyRecurrentScheduleSaturdayHour'] += @{ - Start = $saturdayHour.Start - End = $saturdayHour.End - } - } - } - if ($SundayHours -ne $null -and $SundayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleSundayHour'] = @() - foreach ($sundayHour in $SundayHours){ - $params['WeeklyRecurrentScheduleSundayHour'] += @{ - Start = $sundayHour.Start - End = $sundayHour.End - } - } - } - if ($Complement) { $params['WeeklyRecurrentScheduleIsComplemented'] = $true } - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineSchedule @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - $schedule = [Microsoft.Rtc.Management.Hosted.Online.Models.Schedule]::new() - $schedule.ParseFrom($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the return result to the custom object - -function New-CsOnlineTimeRange { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Start parameter represents the start bound of the time range. - ${Start}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The End parameter represents the end bound of the time range. - ${End}, - - [Parameter(Mandatory=$false, position=2)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsOnlineTimeRange @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.TimeRange]::new() - $output.ParseFrom($result) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsSharedCallHistoryTemplate { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the shared call history template. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a description for the shared call history template. - ${Description}, - - [Parameter(Mandatory=$false, position=2)] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingMissedCalls] - # The IncomingMissedCalls parameter determines whether the Shared Call history is to be delivered to supervisors, agents and supervisors or none. - ${IncomingMissedCalls}, - - [Parameter(Mandatory=$false, position=3)] - [Microsoft.Rtc.Management.Hosted.Online.Models.AnsweredAndOutboundCalls] - # The AnsweredAndOutboundCalls parameter determines whether the Shared Call history is to be delivered to supervisors, agents and supervisors or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(Mandatory=$false, position=4)] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingRedirectedCalls] - # The IncomingRedirectedCalls parameter determines whether the Shared Call history is to be delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsSharedCallHistoryTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.SharedCallHistoryTemplate]::new() - $output.ParseFromCreateResponse($result) - - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsSharedCallQueueHistoryTemplate { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the shared call queue history template. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a description for the shared call queue history template. - ${Description}, - - [Parameter(Mandatory=$false, position=2)] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingMissedCalls] - # The IncomingMissedCalls parameter determines whether the Shared Call Queue history is to be delivered to supervisors, agents and supervisors or none. - ${IncomingMissedCalls}, - - [Parameter(Mandatory=$false, position=3)] - [Microsoft.Rtc.Management.Hosted.Online.Models.AnsweredAndOutboundCalls] - # The AnsweredAndOutboundCalls parameter determines whether the Shared Call Queue history is to be delivered to supervisors, agents and supervisors or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(Mandatory=$false, position=4)] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingRedirectedCalls] - # The IncomingRedirectedCalls parameter determines whether the Shared Call history is to be delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - Write-Warning -Message "This cmdlet is deprecated and will be removed in future releases. Please use New-CsSharedCallHistoryTemplate instead." - - # Forward to the new cmdlet - New-CsSharedCallHistoryTemplate @PSBoundParameters - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsTag { - [CmdletBinding(PositionalBinding = $true)] - param( - [Parameter(Mandatory = $true, Position = 0)] - [System.String] - # The Name parameter is a name assigned to a given tag. - ${TagName}, - - [Parameter(Mandatory = $false, Position = 1)] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - # The CallTarget parameter represents the target for call transfer after the menu option is selected. - ${TagDetails} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (-not $PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - - if ($TagDetails -ne $null) { - $null = $PSBoundParameters.Remove('TagDetails') - $PSBoundParameters.Add('TagDetailId', $TagDetails.Id) - $PSBoundParameters.Add('TagDetailType', $TagDetails.Type) - if ($TagDetails.EnableTranscription) { - $PSBoundParameters.Add('TagDetailEnableTranscription', $true) - } - if ($TagDetails.EnableSharedVoicemailSystemPromptSuppression) { - $PSBoundParameters.Add('TagDetailEnableSharedVoicemailSystemPromptSuppression', $true) - } - if ($TagDetails.Type -eq 'ApplicationEndpoint' -or $TagDetails.Type -eq 'ConfigurationEndpoint') { - $PSBoundParameters.Add('TagDetailCallPriority', $TagDetails.CallPriority) - } - if ($TagDetails.SharedVoicemailHistoryTemplateId) { - $PSBoundParameters.Add('TagDetailSharedVoicemailHistoryTemplateId', $TagDetails.SharedVoicemailHistoryTemplateId) - } - } - - try { - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsTag @PSBoundParameters @httpPipelineArgs - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic $internalOutput.Diagnostic - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTag]::new() - $output.MapFromCreateResponse($internalOutput) - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function New-CsTagsTemplate { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Name parameter is a friendly name that is assigned to the IVR tags template. - ${Name}, - - [Parameter(Mandatory=$true, position=1)] - [System.String] - # The Description parameter provides a description for the IVR tags template. - ${Description}, - - [Parameter(Mandatory=$true, position=2)] - [PSObject[]] - # The Tags parameter specifies the tags for the IVR tags template. - ${Tags}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # The HttpPipelinePrepend parameter allows for custom HTTP pipeline steps to be prepended. - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($Tags -ne $null) { - $inputTags = @() - foreach ($tag in $Tags) { - $inputTags += [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTag]::CreateAutoGeneratedFromObject($tag) - } - $null = $PSBoundParameters.Remove('Tags') - $PSBoundParameters.Add('Tags', $inputTags) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\New-CsTagsTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTagsTemplate]::new() - $output.MapFromCreateResponseModel($internalOutput) - } - catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsAgent { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the AI Agent to be removed. - ${Id}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Map Id to Identity for internal cmdlet - if ($PSBoundParameters.ContainsKey("Id")) { - $PSBoundParameters.Add("Identity", $Id) - $PSBoundParameters.Remove("Id") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsAgent @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Display the diagnostic if any - -function Remove-CsAutoAttendant { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA to be removed. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsAutoAttendant @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsAutoRecordingTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the auto recording template to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsAutoRecordingTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostics - -function Remove-CsCallQueue { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the call queue to be removed. - ${Identity}, - - [Parameter(Mandatory=$false)] - [Switch] - # Allow the cmdlet to run anyway - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to Stop - if (!$PSBoundParameters.ContainsKey('ErrorAction')) { - $PSBoundParameters.Add('ErrorAction', 'Stop') - } - - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Get the CallQueue to be deleted by Identity. - $getParams = @{Identity = $Identity; FilterInvalidObos = $false} - $getResult = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsCallQueue @getParams -ErrorAction Stop @httpPipelineArgs - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsCallQueue @PSBoundParameters @httpPipelineArgs - Write-AdminServiceDiagnostic($result.Diagnostics) - - # Convert the fecthed CallQueue DTO to domain model and print. - $deletedCallQueue= [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $deletedCallQueue.ParseFrom($getResult.CallQueue) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsComplianceRecordingForCallQueueTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the CR4CQ template to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsComplianceRecordingForCallQueueTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsMainlineAttendantAppointmentBookingFlow { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the mainline attendant appointment booking flow to be removed. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsMainlineAttendantAppointmentBookingFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsMainlineAttendantQuestionAnswerFlow { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the mainline attendant question answer flow to be removed. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsMainlineAttendantQuestionAnswerFlow @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function Remove-CsOnlineApplicationInstanceAssociation { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String[]] - # The Identity parameter is the identity of application instances to be associated with the provided configuration ID. - ${Identities}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # We want to flight our cmdlet if Force param is passed, but AutoRest doesn't support Force param. - # Force param doesn't seem to do anything, so remove it if it's passed. - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Get the array of Identities, and remove parameter 'Identities', - # since api internal\Remove-CsOnlineApplicationInstanceAssociation takes only param 'Identity' as a string, - # so need send a request for each identity (endpointId) by looping through all Identities. - $endpointIdArr = @() - - if ($PSBoundParameters.ContainsKey('Identities')) { - $endpointIdArr = $PSBoundParameters['Identities'] - $PSBoundParameters.Remove('Identities') | Out-Null - } - - # Sends request for each identity (endpointId) - foreach ($endpointId in $endpointIdArr) { - # Encode the "endpointID" if it is a SIP URI (aka User Principle Name (UPN)) - $identity = EncodeSipUri($endpointId) - $PSBoundParameters.Add('Identity', $identity) - - $internalOutputs = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsOnlineApplicationInstanceAssociation @PSBoundParameters @httpPipelineArgs - $PSBoundParameters.Remove('Identity') | Out-Null - - # Stop execution if internal cmdlet is failing - if ($internalOutputs -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutputs.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationOutput]::new() - $output.ParseFrom($internalOutputs) - - $output - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Add default App ID for Remove-CsOnlineAudioFile - -function Remove-CsOnlineAudioFile { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The Identity parameter is the identifier for the audio file. - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("ApplicationId") - $PSBoundParameters.Add("ApplicationId", "TenantGlobal") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsOnlineAudioFile @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - $internalOutput - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsOnlineSchedule { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the schedule to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsOnlineSchedule @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsSharedCallHistoryTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the shared call history template to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsSharedCallHistoryTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Remove-CsSharedCallQueueHistoryTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the shared call queue history template to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - Write-Warning -Message "This cmdlet is deprecated and will be removed in future releases. Please use Remove-CsSharedCallHistoryTemplate instead." - - # Forward to the new cmdlet - Remove-CsSharedCallHistoryTemplate @PSBoundParameters - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: print out the diagnostic - -function Remove-CsTagsTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identifier of the tags template to be removed. - ${Id}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Remove-CsTagsTemplate @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsAgent { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to AI Agent to be modified. - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $params = @{ - Identity = ${Instance}.Id - Name = ${Instance}.Name - AgentId = ${Instance}.AIAgentId - AgentType = ${Instance}.AIAgentType - AgentTargetTagTemplateId = ${Instance}.AIAgentTargetTagTemplateId - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - $null = $params.Remove("Instance") - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsAgent @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AIAgentConfiguration]::new() - $output.ParseFromUpdateResponse($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of cmdlet - -function Set-CsAutoAttendant { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the AA to be modified. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $PSBoundCommonParameters += @{$p.Key = $p.Value} - } - $null = $PSBoundCommonParameters.Remove("Instance") - $null = $PSBoundCommonParameters.Remove("WhatIf") - $null = $PSBoundCommonParameters.Remove("Confirm") - - $null = $PSBoundParameters.Remove('Instance') - if ($Instance.Identity -ne $null) { - $PSBoundParameters.Add('Identity', $Instance.Identity) - } - if ($Instance.Id -ne $null) { - $PSBoundParameters.Add('Id', $Instance.Id) - } - if ($Instance.Name -ne $null) { - $PSBoundParameters.Add('Name', $Instance.Name) - } - if ($Instance.LanguageId -ne $null) { - $PSBoundParameters.Add('LanguageId', $Instance.LanguageId) - } - if ($Instance.TimeZoneId -ne $null) { - $PSBoundParameters.Add('TimeZoneId', $Instance.TimeZoneId) - } - if ($Instance.TenantId -ne $null) { - $PSBoundParameters.Add('TenantId', $Instance.TenantId.ToString()) - } - if ($Instance.VoiceId -ne $null) { - $PSBoundParameters.Add('VoiceId', $Instance.VoiceId) - } - if ($Instance.DialByNameResourceId -ne $null) { - $PSBoundParameters.Add('DialByNameResourceId', $Instance.DialByNameResourceId) - } - if ($Instance.ApplicationInstances -ne $null) { - $PSBoundParameters.Add('ApplicationInstance', $Instance.ApplicationInstances) - } - if ($Instance.VoiceResponseEnabled -eq $true) { - $PSBoundParameters.Add('VoiceResponseEnabled', $true) - } - if ($Instance.DefaultCallFlow -ne $null) { - $PSBoundParameters.Add('DefaultCallFlowId', $Instance.DefaultCallFlow.Id) - $PSBoundParameters.Add('DefaultCallFlowName', $Instance.DefaultCallFlow.Name) - $PSBoundParameters.Add('DefaultCallFlowForceListenMenuEnabled', $Instance.DefaultCallFlow.ForceListenMenuEnabled) - $PSBoundParameters.Add('DefaultCallFlowRingResourceAccountDelegate', $Instance.DefaultCallFlow.RingResourceAccountDelegates) - $defaultCallFlowGreetings = @() - if ($Instance.DefaultCallFlow.Greetings -ne $null) { - foreach ($defaultCallFlowGreeting in $Instance.DefaultCallFlow.Greetings) { - $defaultCallFlowGreetings += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($defaultCallFlowGreeting) - } - $PSBoundParameters.Add('DefaultCallFlowGreeting', $defaultCallFlowGreetings) - } - if ($Instance.DefaultCallFlow.Menu -ne $null) { - $PSBoundParameters.Add('MenuDialByNameEnabled', $Instance.DefaultCallFlow.Menu.DialByNameEnabled) - $PSBoundParameters.Add('MenuDirectorySearchMethod', $Instance.DefaultCallFlow.Menu.DirectorySearchMethod.ToString()) - $PSBoundParameters.Add('MenuName', $Instance.DefaultCallFlow.Menu.Name) - if ($Instance.DefaultCallFlow.Menu.MenuOptions -ne $null) { - $defaultCallFlowMenuOptions = @() - foreach($defaultCallFlowMenuOption in $Instance.DefaultCallFlow.Menu.MenuOptions) { - $defaultCallFlowMenuOptions += [Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption]::CreateAutoGeneratedFromObject($defaultCallFlowMenuOption) - } - $PSBoundParameters.Add('MenuOption', $defaultCallFlowMenuOptions) - } - if ($Instance.DefaultCallFlow.Menu.Prompts -ne $null) { - $defaultCallFlowMenuPrompts = @() - foreach($defaultCallFlowMenuPrompt in $Instance.DefaultCallFlow.Menu.Prompts) { - $defaultCallFlowMenuPrompts += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($defaultCallFlowMenuPrompt) - } - $PSBoundParameters.Add('MenuPrompt', $defaultCallFlowMenuPrompts) - } - } - } - if ($Instance.DirectoryLookupScope -ne $null) { - if ($Instance.DirectoryLookupScope.InclusionScope -ne $null) { - $PSBoundParameters.Add('InclusionScopeType', $Instance.DirectoryLookupScope.InclusionScope.Type.ToString()) - if ($Instance.DirectoryLookupScope.InclusionScope.GroupScope -ne $null) { - $PSBoundParameters.Add('InclusionScopeGroupDialScopeGroupId', $Instance.DirectoryLookupScope.InclusionScope.GroupScope.GroupIds) - } - } else { - $PSBoundParameters.Add('InclusionScopeType', "Default") - } - if ($Instance.DirectoryLookupScope.ExclusionScope -ne $null) { - $PSBoundParameters.Add('ExclusionScopeType', $Instance.DirectoryLookupScope.ExclusionScope.Type.ToString()) - if ($Instance.DirectoryLookupScope.ExclusionScope.GroupScope -ne $null) { - $PSBoundParameters.Add('ExclusionScopeGroupDialScopeGroupId', $Instance.DirectoryLookupScope.ExclusionScope.GroupScope.GroupIds) - } - } else { - $PSBoundParameters.Add('ExclusionScopeType', "Default") - } - } - if ($Instance.Operator -ne $null) { - if ($Instance.Operator.EnableTranscription -eq $true) { - $PSBoundParameters.Add('OperatorEnableTranscription', $true) - } - $PSBoundParameters.Add('OperatorId', $Instance.Operator.Id) - $PSBoundParameters.Add('OperatorType', $Instance.Operator.Type.ToString()) - } - if ($Instance.CallFlows -ne $null) { - $callFlows = @() - foreach ($callFlow in $Instance.CallFlows) { - $generatedCallFlow = [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow]::CreateAutoGeneratedFromObject($callFlow) - - if ($callFlow.Greetings -ne $null) { - $inputGreetings = @() - foreach ($greeting in $callFlow.Greetings) { - $inputGreetings += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($greeting) - } - $generatedCallFlow.Greeting = $inputGreetings - } - if ($callFlow.Menu.MenuOptions -ne $null) { - $menuOptions = @() - foreach ($menuOption in $callFlow.Menu.MenuOptions) { - $menuOptions += [Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption]::CreateAutoGeneratedFromObject($menuOption) - } - $generatedCallFlow.MenuOption = $menuOptions - } - if ($callFlow.Menu.Prompts -ne $null) { - $menuPrompts = @() - foreach ($menuPrompt in $callFlow.Menu.Prompts) { - $menuPrompts += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject($menuPrompt) - } - $generatedCallFlow.MenuPrompt = $menuPrompts - } - - $callFlows += $generatedCallFlow - } - $PSBoundParameters.Add('CallFlow', $callFlows) - } - if ($Instance.CallHandlingAssociations -ne $null) { - $callHandlingAssociations = @() - foreach($callHandlingAssociation in $Instance.CallHandlingAssociations) { - $callHandlingAssociations += [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociation]::CreateAutoGeneratedFromObject($callHandlingAssociation) - } - $PSBoundParameters.Add('CallHandlingAssociation', $callHandlingAssociations) - } - - $PSBoundParameters.Add('AuthorizedUser', $Instance.AuthorizedUsers) - $PSBoundParameters.Add('HideAuthorizedUser', $Instance.HideAuthorizedUsers) - - if ($Instance.UserNameExtension -ne $null) { - $PSBoundParameters.Add('UserNameExtension', $Instance.UserNameExtension) - } - - if ($Instance.Schedules -ne $null) { - $schedules = @() - foreach($schedule in $Instance.Schedules) { - $schedules += [Microsoft.Rtc.Management.Hosted.Online.Models.Schedule]::CreateAutoGeneratedFromObject($schedule) - } - $PSBoundParameters.Add('Schedule', $schedules) - } - - if ($Instance.AutoRecordingTemplateId -ne $null) { - $PSBoundParameters.Add('AutoRecordingTemplateId', $Instance.AutoRecordingTemplateId) - } - - # Validate MainlineAttendant requirement for AutoRecordingTemplateId - # MainlineAttendant must be enabled before setting AutoRecordingTemplateId - if (![string]::IsNullOrWhiteSpace($Instance.AutoRecordingTemplateId)) { - if ($Instance.MainlineAttendantEnabled -ne $true) { - throw "AutoRecordingTemplateId can only be set when MainlineAttendant is enabled. Please set MainlineAttendantEnabled to `$true before setting AutoRecordingTemplateId." - } - - # Validate that the template uses text announcement, not audio - $template = Get-CsAutoRecordingTemplate -Id $Instance.AutoRecordingTemplateId - if ($template -ne $null -and ![string]::IsNullOrWhiteSpace($template.AutoRecordingAnnouncementAudioFileId)) { - throw "AutoRecordingTemplate '$($Instance.AutoRecordingTemplateId)' uses an audio file announcement, which is not supported for Mainline Attendant. Please use a template with a text-to-speech announcement instead." - } - } - - if ($Instance.MainlineAttendantEnabled -eq $true) { - # Check whether the greetings is provided by the customer or should we use the default greeting. - if ($Instance.DefaultCallFlow.Greetings -eq $null) { - Write-Warning "Greetings is not set for the DefaultCallFlow. The system default greeting will be used for mainline attendant." - $defaultCallFlowGreetings = @() - $defaultCallFlowGreetings += [Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt]::CreateAutoGeneratedFromObject( - @{ - ActiveType = [Microsoft.Rtc.Management.Hosted.OAA.Models.PromptType]::TextToSpeech; - TextToSpeechPrompt = "Hello, and thank you for calling '{0}'. How can I assist you today? Please note that this call may be recorded for compliance purposes." -f $Instance.Name - } - ) - $PSBoundParameters.Add('DefaultCallFlowGreeting', $defaultCallFlowGreetings) - } - - # For mainline attendant, we only support specific voice ids. - $mainlineAttendantVoiceIds = [Microsoft.Rtc.Management.Hosted.OAA.Models.MainlineAttendantSupportedVoiceIds] - if ([string]::IsNullOrWhiteSpace($Instance.MainlineAttendantAgentVoiceId) -or - -not [System.Enum]::IsDefined($mainlineAttendantVoiceIds, $Instance.MainlineAttendantAgentVoiceId)) { - throw "The provided MainlineAttendantAgentVoiceId '{0}' is not supported for Mainline Attendant. Supported values are: $([string]::Join(', ', [System.Enum]::GetNames($mainlineAttendantVoiceIds)))." -f $Instance.MainlineAttendantAgentVoiceId - } - $mainlineAttendantVoiceId = $mainlineAttendantVoiceIds::$($Instance.MainlineAttendantAgentVoiceId) - $null = $PSBoundParameters.Remove('MainlineAttendantAgentVoiceId') - $PSBoundParameters.Add("MainlineAttendantAgentVoiceId", $mainlineAttendantVoiceId) - - # For Mainline Attendant, VoiceResponseEnabled should must be true. - if ($Instance.VoiceResponseEnabled -ne $true) { - Write-Warning "`$VoiceResponseEnabled` is not set. Defaulting to 'true' for mainline attendant." - $null = $PSBoundParameters.Remove('VoiceResponseEnabled') - $PSBoundParameters.Add('VoiceResponseEnabled', $true) - } - - # Finally, add MainlineAttendantEnabled is true to the powershell parameters list. - $null = $PSBoundParameters.Remove('MainlineAttendantEnabled') - $PSBoundParameters.Add('MainlineAttendantEnabled', $true) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsAutoAttendant @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant]::new() - $output.ParseFrom($internalOutput.AutoAttendant) - - $getCsAutoAttendantStatusParameters = @{Identity = $output.Identity} - foreach($p in $PSBoundCommonParameters.GetEnumerator()) - { - $getCsAutoAttendantStatusParameters += @{$p.Key = $p.Value} - } - - $internalStatus = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsAutoAttendantStatus @getCsAutoAttendantStatusParameters @httpPipelineArgs - $output.AmendStatus($internalStatus) - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsAutoRecordingTemplate { - [CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, ParameterSetName='Identity', position=0)] - [System.String] - # The Identity parameter is the unique identifier for the auto recording template. - ${Identity}, - - [Parameter(Mandatory=$true, ParameterSetName='Instance', ValueFromPipeline=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the auto recording template to be modified. - ${Instance}, - - [Parameter(Mandatory=$false)] - [System.String] - # The Name parameter is a friendly name that is assigned to the auto recording template. - ${Name}, - - [Parameter(Mandatory=$false)] - [System.String] - # The Description parameter provides a description for the auto recording template. - ${Description}, - - [Parameter(Mandatory=$false)] - [System.Boolean] - # The TranscriptionEnabled parameter value indicating whether transcription is enabled. - ${TranscriptionEnabled}, - - [Parameter(Mandatory=$false)] - [System.Boolean] - # The RecordingEnabled parameter value indicating whether recording is enabled. - ${RecordingEnabled}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.Online.Models.AgentViewPermission] - # The AgentViewPermission parameter value indicating agent view permission. - ${AgentViewPermission}, - - [Parameter(Mandatory=$false)] - [System.String] - # The SharePointHostName parameter provides the SharePoint host name where recordings are stored. - ${SharePointHostName}, - - [Parameter(Mandatory=$false)] - [System.String] - # The SharePointSiteName parameter provides the SharePoint site name where recordings are stored. - ${SharePointSiteName}, - - [Parameter(Mandatory=$false)] - [System.String] - # The RecordingDocumentOwner parameter provides recording document owner. - ${RecordingDocumentOwner}, - - [Parameter(Mandatory=$false)] - [System.String] - # The AutoRecordingAnnouncementAudioFileId parameter provides the audio file ID for the auto-recording announcement. - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter(Mandatory=$false)] - [System.String] - # The AutoRecordingAnnouncementTextToSpeechPrompt parameter provides the text-to-speech prompt for the auto-recording announcement. - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [Switch] - # The Force parameter indicates if we force the action to be performed. - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - # Determine the identity to use - $templateId = $null - if ($PSCmdlet.ParameterSetName -eq 'Instance') { - if ([string]::IsNullOrEmpty(${Instance}.Id)) { - throw "Instance must have a valid Id property" - } - $templateId = ${Instance}.Id - } - else { - $templateId = $Identity - } - - # Get the existing template using the custom Get cmdlet to use as base - $existingTemplate = Get-CsAutoRecordingTemplate -Id $templateId -ErrorAction Stop - - if ($existingTemplate -eq $null) { - throw "Auto Recording Template with Id '$templateId' not found" - } - - # Build the request body, using existing values as defaults - $requestBody = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AutoRecordingTemplateDtoModel]::new() - - # Use provided parameters or fall back to Instance or existing values - if ($PSCmdlet.ParameterSetName -eq 'Instance') { - $requestBody.Name = if ($PSBoundParameters.ContainsKey('Name')) { $Name } else { ${Instance}.Name } - $requestBody.Description = if ($PSBoundParameters.ContainsKey('Description')) { $Description } else { ${Instance}.Description } - $requestBody.TranscriptionEnabled = if ($PSBoundParameters.ContainsKey('TranscriptionEnabled')) { $TranscriptionEnabled } else { ${Instance}.TranscriptionEnabled } - $requestBody.RecordingEnabled = if ($PSBoundParameters.ContainsKey('RecordingEnabled')) { $RecordingEnabled } else { ${Instance}.RecordingEnabled } - $requestBody.SharePointHostName = if ($PSBoundParameters.ContainsKey('SharePointHostName')) { $SharePointHostName } else { ${Instance}.SharePointHostName } - $requestBody.SharePointSiteName = if ($PSBoundParameters.ContainsKey('SharePointSiteName')) { $SharePointSiteName } else { ${Instance}.SharePointSiteName } - $requestBody.RecordingDocumentOwner = if ($PSBoundParameters.ContainsKey('RecordingDocumentOwner')) { $RecordingDocumentOwner } else { ${Instance}.RecordingDocumentOwner } - - if ($PSBoundParameters.ContainsKey('AgentViewPermission')) { - $requestBody.AgentViewPermission = [int]$AgentViewPermission - } elseif (${Instance}.AgentViewPermission -ne $null) { - $requestBody.AgentViewPermission = [int]${Instance}.AgentViewPermission - } - - $requestBody.AutoRecordingAnnouncementAudioFileId = if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementAudioFileId')) { $AutoRecordingAnnouncementAudioFileId } else { ${Instance}.AutoRecordingAnnouncementAudioFileId } - $requestBody.AutoRecordingAnnouncementTextToSpeechPrompt = if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementTextToSpeechPrompt')) { $AutoRecordingAnnouncementTextToSpeechPrompt } else { ${Instance}.AutoRecordingAnnouncementTextToSpeechPrompt } - } - else { - # Identity parameter set - use provided parameters or existing values from the custom AutoRecording object - $requestBody.Name = if ($PSBoundParameters.ContainsKey('Name')) { $Name } else { $existingTemplate.Name } - $requestBody.Description = if ($PSBoundParameters.ContainsKey('Description')) { $Description } else { $existingTemplate.Description } - $requestBody.TranscriptionEnabled = if ($PSBoundParameters.ContainsKey('TranscriptionEnabled')) { $TranscriptionEnabled } else { $existingTemplate.TranscriptionEnabled } - $requestBody.RecordingEnabled = if ($PSBoundParameters.ContainsKey('RecordingEnabled')) { $RecordingEnabled } else { $existingTemplate.RecordingEnabled } - $requestBody.SharePointHostName = if ($PSBoundParameters.ContainsKey('SharePointHostName')) { $SharePointHostName } else { $existingTemplate.SharePointHostName } - $requestBody.SharePointSiteName = if ($PSBoundParameters.ContainsKey('SharePointSiteName')) { $SharePointSiteName } else { $existingTemplate.SharePointSiteName } - $requestBody.RecordingDocumentOwner = if ($PSBoundParameters.ContainsKey('RecordingDocumentOwner')) { $RecordingDocumentOwner } else { $existingTemplate.RecordingDocumentOwner } - - if ($PSBoundParameters.ContainsKey('AgentViewPermission')) { - $requestBody.AgentViewPermission = [int]$AgentViewPermission - } elseif ($existingTemplate.AgentViewPermission -ne $null) { - $requestBody.AgentViewPermission = [int]$existingTemplate.AgentViewPermission - } - - $requestBody.AutoRecordingAnnouncementAudioFileId = if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementAudioFileId')) { $AutoRecordingAnnouncementAudioFileId } else { $existingTemplate.AutoRecordingAnnouncementAudioFileId } - $requestBody.AutoRecordingAnnouncementTextToSpeechPrompt = if ($PSBoundParameters.ContainsKey('AutoRecordingAnnouncementTextToSpeechPrompt')) { $AutoRecordingAnnouncementTextToSpeechPrompt } else { $existingTemplate.AutoRecordingAnnouncementTextToSpeechPrompt } - } - - # ShouldProcess for confirmation - $target = "Auto Recording Template with Id: $templateId" - $action = "Update" - - if ($Force -or $PSCmdlet.ShouldProcess($target, $action)) { - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsAutoRecordingTemplate -Identity $templateId -Body $requestBody -ErrorAction Stop @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.AutoRecording]::new() - $output.ParseFromUpdateResponse($result) - } - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: replacing the parameters' names. - -function Set-CsCallQueue { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity of the call queue to be updated. - ${Identity}, - - [Parameter(Mandatory=$false)] - [System.String] - # The Name of the call queue to be updated. - ${Name}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. - ${AgentAlertTime}, - - [Parameter(Mandatory=$false)] - [bool] - # The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - ${AllowOptOut}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. - ${DistributionLists}, - - [Parameter(Mandatory=$false)] - [bool] - # The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. - ${UseDefaultMusicOnHold}, - - [Parameter(Mandatory=$false)] - [System.String] - # The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. - ${WelcomeMusicAudioFileId}, - - [Parameter(Mandatory=$false)] - [System.String] - # The WelcomeTextToSpeechPrompt parameter represents the text to speech content to play when callers are connected with the Call Queue. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The MusicOnHoldAudioFileId parameter represents music to play when callers are placed on hold. - ${MusicOnHoldAudioFileId}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction] - # The OverflowAction parameter designates the action to take if the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowActionTarget parameter represents the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. - ${OverflowThreshold}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction] - # The TimeoutAction parameter defines the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutActionTarget represents the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. - ${TimeoutThreshold}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod] - # The RoutingMethod defines how agents will be called in a Call Queue. - ${RoutingMethod}, - - [Parameter(Mandatory=$false)] - [bool] - # The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. - ${PresenceBasedRouting}, - - [Parameter(Mandatory=$false)] - [bool] - # The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for current call queue. - ${ConferenceMode}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The Users parameter lets you add agents to the Call Queue. - ${Users}, - - [Parameter(Mandatory=$false)] - [System.String] - # The LanguageId parameter indicates the language that is used to play shared voicemail prompts. - ${LanguageId}, - - [Parameter(Mandatory=$false)] - [System.String] - # This parameter is reserved for Microsoft internal use only. - ${LineUri}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. - ${OboResourceAccountIds}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableOverflowSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message on overflow. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableTimeoutSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message on timeout. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentAction] - # The NoAgentAction parameter defines the action to take if the NoAgents are LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentActionTarget represents the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail when NoAgents are Opted/LoggedIn to take calls. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail when NoAgents are Opted/LoggedIn to take calls. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller when NoAgents are LoggedIn/OptedIn to take calls. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(Mandatory=$false)] - [bool] - # The EnableNoAgentSharedVoicemailSystemPromptSuppression parameter is used to disable voicemail system message when NoAgents are LoggedIn/OptedIn to take calls. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(Mandatory=$false)] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentApplyTo] - # The NoAgentApplyTo parameter determines whether the NoAgent action applies to All Calls or only New calls. - ${NoAgentApplyTo}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is disconnected due to NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is disconnected due to NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoiceAppTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to VoiceApp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to PhoneNumber on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when call is redirected to Voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id of the channel to connect a call queue to. - ${ChannelId}, - - [Parameter(Mandatory=$false)] - [System.Guid] - # Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - ${ChannelUserObjectId}, - - [Parameter(Mandatory=$false)] - [bool] - # The ShouldOverwriteCallableChannelProperty indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The list of authorized users. - ${AuthorizedUsers}, - - [Parameter(Mandatory=$false)] - [System.Guid[]] - # The list of hidden authorized users. - ${HideAuthorizedUsers}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the overflow action, only applies when the OverflowAction is an `Forward`. - ${OverflowActionCallPriority}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the timeout action, only applies when the TimeoutAction is an `Forward`. - ${TimeoutActionCallPriority}, - - [Parameter(Mandatory=$false)] - [System.Int16] - # The Call Priority for the no agent opted in action, only applies when the NoAgentAction is an `Forward`. - ${NoAgentActionCallPriority}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Boolean]] - # The IsCallbackEnabled parameter for enabling and disabling the Courtesy Callback feature. - ${IsCallbackEnabled}, - - [parameter(Mandatory=$false)] - [System.String] - # The DTMF tone to press to start requesting callback, as part of the Courtesy Callback feature. - ${CallbackRequestDtmf}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The wait time before offering callback in seconds, as part of the Courtesy Callback feature. - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The number of calls in queue before offering callback, as part of the Courtesy Callback feature. - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # The call to agent ratio threshold before offering callback, as part of the Courtesy Callback feature. - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [parameter(Mandatory=$false)] - [System.String] - # The identifier of the offer callback audio file to be played when offering callback to caller, as part of the Courtesy Callback feature. - ${CallbackOfferAudioFilePromptResourceId}, - - [parameter(Mandatory=$false)] - [System.String] - # The text-to-speech string to be converted to a speech and played when offering callback to caller, as part of the Courtesy Callback feature. - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(Mandatory=$false)] - [System.String] - # The CallbackEmailNotificationTarget parameter for callback feature. - ${CallbackEmailNotificationTarget}, - - [Parameter(Mandatory=$false)] - [System.Nullable[System.Int32]] - # Service level threshold in seconds for the call queue. Used for monitor calls in the call queue is handled within this threshold or not. - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(Mandatory=$false)] - [System.String] - # Shifts Team identity to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Text announcement that is played before CR bot joins the call - ${TextAnnouncementForCR}, - - [Parameter(Mandatory=$false)] - [System.String] - # Custom audio file announcement for compliance recording - ${CustomAudioFileAnnouncementForCR}, - - [Parameter(Mandatory=$false)] - [System.String] - # Text announcement that is played if CR bot is unable to join the call. - ${TextAnnouncementForCRFailure}, - - [Parameter(Mandatory=$false)] - [System.String] - # Custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCRFailure}, - - [Parameter(Mandatory=$false)] - [System.String[]] - # Ids for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id for Shared Call Queue History template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Id for Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(Mandatory=$false)] - [System.String] - # Shifts Scheduling Group identity to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(Mandatory=$false)] - [Switch] - # Allow the cmdlet to run anyway - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to Stop - if (!$PSBoundParameters.ContainsKey('ErrorAction')) { - $PSBoundParameters.Add('ErrorAction', 'Stop') - } - - if ($PSBoundParameters.ContainsKey('Force')) { - $PSBoundParameters.Remove('Force') | Out-Null - } - - # Get the existing CallQueue by Identity. - $getParams = @{Identity = $Identity; FilterInvalidObos = $false} - $getResult = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsCallQueue @getParams -ErrorAction Stop @httpPipelineArgs - - # Convert the existing CallQueue DTO to domain model. - $existingCallQueue= [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $existingCallQueue.ParseFrom($getResult.CallQueue) | Out-Null - - # Take the delta from the existing CallQueue and apply it to the param hasthable to form - # an appropriate DTO model for the CallQueue PUT API. FYI, CallQueue PUT API is very much - # different from its AA counterpart which accepts params/properties to be updated only. - - # Param hashtable modification begins. - if ($PSBoundParameters.ContainsKey('LineUri')) { - # Stick with the current TRPS cmdlet policy of silently ignoring the LineUri. Later, we - # need to remove this param from TRPS and ConfigAPI based cmdlets. Public facing document - # must be updated as well. - $PSBoundParameters.Remove('LineUri') | Out-Null - } - - if (!$PSBoundParameters.ContainsKey('Name')) { - $PSBoundParameters.Add('Name', $existingCallQueue.Name) - } - - if (!$PSBoundParameters.ContainsKey('AgentAlertTime')) { - $PSBoundParameters.Add('AgentAlertTime', $existingCallQueue.AgentAlertTime) - } - - if ([string]::IsNullOrWhiteSpace($LanguageId) -and ![string]::IsNullOrWhiteSpace($existingCallQueue.LanguageId)) { - $PSBoundParameters.Add('LanguageId', $existingCallQueue.LanguageId) - } - - if (!$PSBoundParameters.ContainsKey('OverflowThreshold')) { - $PSBoundParameters.Add('OverflowThreshold', $existingCallQueue.OverflowThreshold) - } - - if (!$PSBoundParameters.ContainsKey('TimeoutThreshold')) { - $PSBoundParameters.Add('TimeoutThreshold', $existingCallQueue.TimeoutThreshold) - } - - if (!$PSBoundParameters.ContainsKey('RoutingMethod')) { - $PSBoundParameters.Add('RoutingMethod', $existingCallQueue.RoutingMethod) - } - - if (!$PSBoundParameters.ContainsKey('AllowOptOut') ) { - $PSBoundParameters.Add('AllowOptOut', $existingCallQueue.AllowOptOut) - } - - if (!$PSBoundParameters.ContainsKey('ConferenceMode')) { - $PSBoundParameters.Add('ConferenceMode', $existingCallQueue.ConferenceMode) - } - - if (!$PSBoundParameters.ContainsKey('PresenceBasedRouting')) { - $PSBoundParameters.Add('PresenceAwareRouting', $existingCallQueue.PresenceBasedRouting) - } - else { - $PSBoundParameters.Add('PresenceAwareRouting', $PresenceBasedRouting) - $PSBoundParameters.Remove('PresenceBasedRouting') | Out-Null - } - - if (!$PSBoundParameters.ContainsKey('ChannelId')) { - if (![string]::IsNullOrWhiteSpace($existingCallQueue.ChannelId)) { - $PSBoundParameters.Add('ThreadId', $existingCallQueue.ChannelId) - } - } - else { - $PSBoundParameters.Add('ThreadId', $ChannelId) - $PSBoundParameters.Remove('ChannelId') | Out-Null - } - - if (!$PSBoundParameters.ContainsKey('OboResourceAccountIds')) { - if ($null -ne $existingCallQueue.OboResourceAccountIds -and $existingCallQueue.OboResourceAccountIds.Length -gt 0) { - $PSBoundParameters.Add('OboResourceAccountIds', $existingCallQueue.OboResourceAccountIds) - } - } - - if (!$PSBoundParameters.ContainsKey('WelcomeMusicAudioFileId') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.WelcomeMusicResourceId)) { - $PSBoundParameters.Add('WelcomeMusicAudioFileId', $existingCallQueue.WelcomeMusicResourceId) - } - - if (!$PSBoundParameters.ContainsKey('MusicOnHoldAudioFileId') -and !$PSBoundParameters.ContainsKey('UseDefaultMusicOnHold')) { - # The already persiting values cannot be conflicting as those were validated by admin service. - if (![string]::IsNullOrWhiteSpace($existingCallQueue.MusicOnHoldResourceId)) { - $PSBoundParameters.Add('MusicOnHoldAudioFileId', $existingCallQueue.MusicOnHoldResourceId) - } - if ($null -ne $existingCallQueue.UseDefaultMusicOnHold) { - $PSBoundParameters.Add('UseDefaultMusicOnHold', $existingCallQueue.UseDefaultMusicOnHold) - } - } - elseif ($UseDefaultMusicOnHold -eq $false -and !$PSBoundParameters.ContainsKey('MusicOnHoldAudioFileId')) { - if (![string]::IsNullOrWhiteSpace($existingCallQueue.MusicOnHoldResourceId)) { - $PSBoundParameters.Add('MusicOnHoldAudioFileId', $existingCallQueue.MusicOnHoldResourceId) - } - } - - if (!$PSBoundParameters.ContainsKey('DistributionLists')) { - if ($null -ne $existingCallQueue.DistributionLists -and $existingCallQueue.DistributionLists.Length -gt 0) { - $PSBoundParameters.Add('DistributionLists', $existingCallQueue.DistributionLists) - } - } - - if (!$PSBoundParameters.ContainsKey('Users')) { - if ($null -ne $existingCallQueue.Users -and $existingCallQueue.Users.Length -gt 0) { - $PSBoundParameters.Add('Users', $existingCallQueue.Users) - } - } - - if (!$PSBoundParameters.ContainsKey('OverflowSharedVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowSharedVoicemailTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowSharedVoicemailTextToSpeechPrompt', $existingCallQueue.OverflowSharedVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowSharedVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowSharedVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowSharedVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowSharedVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowSharedVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowSharedVoicemailAudioFilePrompt', $existingCallQueue.OverflowSharedVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowSharedVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowSharedVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowSharedVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('EnableOverflowSharedVoicemailTranscription')) { - if ($existingCallQueue.EnableOverflowSharedVoicemailTranscription -ne $null) { - $PSBoundParameters.Add('EnableOverflowSharedVoicemailTranscription', $existingCallQueue.EnableOverflowSharedVoicemailTranscription) - } - } - - if (!$PSBoundParameters.ContainsKey('EnableOverflowSharedVoicemailSystemPromptSuppression') -and $null -ne $existingCallQueue.EnableOverflowSharedVoicemailSystemPromptSuppression) { - $PSBoundParameters.Add('EnableOverflowSharedVoicemailSystemPromptSuppression', $existingCallQueue.EnableOverflowSharedVoicemailSystemPromptSuppression) - } - - if (!$PSBoundParameters.ContainsKey('OverflowActionTarget') -and !($OverflowAction -eq 'Disconnect') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowActionTargetId)) { - $PSBoundParameters.Add('OverflowActionTarget', $existingCallQueue.OverflowActionTargetId) - } - - if (!$PSBoundParameters.ContainsKey('OverflowAction')) { - $PSBoundParameters.Add('OverflowAction', $existingCallQueue.OverflowAction) - } - - if (!$PSBoundParameters.ContainsKey('OverflowDisconnectAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowDisconnectAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowDisconnectAudioFilePrompt', $existingCallQueue.OverflowDisconnectAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowDisconnectAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowDisconnectAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowDisconnectAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowDisconnectTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowDisconnectTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowDisconnectTextToSpeechPrompt', $existingCallQueue.OverflowDisconnectTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowDisconnectTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowDisconnectTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowDisconnectTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectPersonAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectPersonAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowRedirectPersonAudioFilePrompt', $existingCallQueue.OverflowRedirectPersonAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectPersonAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectPersonAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectPersonAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectPersonTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectPersonTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowRedirectPersonTextToSpeechPrompt', $existingCallQueue.OverflowRedirectPersonTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectPersonTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectPersonTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectPersonTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectVoiceAppAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectVoiceAppAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowRedirectVoiceAppAudioFilePrompt', $existingCallQueue.OverflowRedirectVoiceAppAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectVoiceAppAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectVoiceAppAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectVoiceAppAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectVoiceAppTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectVoiceAppTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowRedirectVoiceAppTextToSpeechPrompt', $existingCallQueue.OverflowRedirectVoiceAppTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectVoiceAppTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectVoiceAppTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectVoiceAppTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectPhoneNumberAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectPhoneNumberAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowRedirectPhoneNumberAudioFilePrompt', $existingCallQueue.OverflowRedirectPhoneNumberAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectPhoneNumberAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectPhoneNumberAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectPhoneNumberAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectPhoneNumberTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectPhoneNumberTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowRedirectPhoneNumberTextToSpeechPrompt', $existingCallQueue.OverflowRedirectPhoneNumberTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectPhoneNumberTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectPhoneNumberTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectPhoneNumberTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('OverflowRedirectVoicemailAudioFilePrompt', $existingCallQueue.OverflowRedirectVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('OverflowRedirectVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowRedirectVoicemailTextToSpeechPrompt)) { - $PSBoundParameters.Add('OverflowRedirectVoicemailTextToSpeechPrompt', $existingCallQueue.OverflowRedirectVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('OverflowRedirectVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($OverflowRedirectVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('OverflowRedirectVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutSharedVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutSharedVoicemailTextToSpeechPrompt) ) { - $PSBoundParameters.Add('TimeoutSharedVoicemailTextToSpeechPrompt', $existingCallQueue.TimeoutSharedVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutSharedVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutSharedVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutSharedVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutSharedVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutSharedVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutSharedVoicemailAudioFilePrompt', $existingCallQueue.TimeoutSharedVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutSharedVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutSharedVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutSharedVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('EnableTimeoutSharedVoicemailTranscription')) { - if ($existingCallQueue.EnableTimeoutSharedVoicemailTranscription -ne $null) { - $PSBoundParameters.Add('EnableTimeoutSharedVoicemailTranscription', $existingCallQueue.EnableTimeoutSharedVoicemailTranscription) - } - } - - if (!$PSBoundParameters.ContainsKey('EnableTimeoutSharedVoicemailSystemPromptSuppression') -and $null -ne $existingCallQueue.EnableTimeoutSharedVoicemailSystemPromptSuppression) { - $PSBoundParameters.Add('EnableTimeoutSharedVoicemailSystemPromptSuppression', $existingCallQueue.EnableTimeoutSharedVoicemailSystemPromptSuppression) - } - - if (!$PSBoundParameters.ContainsKey('TimeoutActionTarget') -and !($TimeoutAction -eq 'Disconnect') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutActionTargetId)) { - $PSBoundParameters.Add('TimeoutActionTarget', $existingCallQueue.TimeoutActionTargetId) - } - - if (!$PSBoundParameters.ContainsKey('TimeoutAction')) { - $PSBoundParameters.Add('TimeoutAction', $existingCallQueue.TimeoutAction) - } - - if (!$PSBoundParameters.ContainsKey('TimeoutDisconnectAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutDisconnectAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutDisconnectAudioFilePrompt', $existingCallQueue.TimeoutDisconnectAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutDisconnectAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutDisconnectAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutDisconnectAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutDisconnectTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutDisconnectTextToSpeechPrompt)) { - $PSBoundParameters.Add('TimeoutDisconnectTextToSpeechPrompt', $existingCallQueue.TimeoutDisconnectTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutDisconnectTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutDisconnectTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutDisconnectTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectPersonAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectPersonAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutRedirectPersonAudioFilePrompt', $existingCallQueue.TimeoutRedirectPersonAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectPersonAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectPersonAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectPersonAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectPersonTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectPersonTextToSpeechPrompt)) { - $PSBoundParameters.Add('TimeoutRedirectPersonTextToSpeechPrompt', $existingCallQueue.TimeoutRedirectPersonTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectPersonTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectPersonTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectPersonTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectVoiceAppAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectVoiceAppAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutRedirectVoiceAppAudioFilePrompt', $existingCallQueue.TimeoutRedirectVoiceAppAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectVoiceAppAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectVoiceAppAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectVoiceAppAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectVoiceAppTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectVoiceAppTextToSpeechPrompt)) { - $PSBoundParameters.Add('TimeoutRedirectVoiceAppTextToSpeechPrompt', $existingCallQueue.TimeoutRedirectVoiceAppTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectVoiceAppTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectVoiceAppTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectVoiceAppTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectPhoneNumberAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectPhoneNumberAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutRedirectPhoneNumberAudioFilePrompt', $existingCallQueue.TimeoutRedirectPhoneNumberAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectPhoneNumberAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectPhoneNumberAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectPhoneNumberAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectPhoneNumberTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectPhoneNumberTextToSpeechPrompt)) { - $PSBoundParameters.Add('TimeoutRedirectPhoneNumberTextToSpeechPrompt', $existingCallQueue.TimeoutRedirectPhoneNumberTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectPhoneNumberTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectPhoneNumberTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectPhoneNumberTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('TimeoutRedirectVoicemailAudioFilePrompt', $existingCallQueue.TimeoutRedirectVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('TimeoutRedirectVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutRedirectVoicemailTextToSpeechPrompt)) { - $PSBoundParameters.Add('TimeoutRedirectVoicemailTextToSpeechPrompt', $existingCallQueue.TimeoutRedirectVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('TimeoutRedirectVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($TimeoutRedirectVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('TimeoutRedirectVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentActionTarget') -and !($NoAgentAction -eq 'Queue') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentActionTargetId)) { - $PSBoundParameters.Add('NoAgentActionTarget', $existingCallQueue.NoAgentActionTargetId) - } - - if (!$PSBoundParameters.ContainsKey('NoAgentAction')) { - $PSBoundParameters.Add('NoAgentAction', $existingCallQueue.NoAgentAction) - } - - if (!$PSBoundParameters.ContainsKey('NoAgentSharedVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentSharedVoicemailTextToSpeechPrompt) ) { - $PSBoundParameters.Add('NoAgentSharedVoicemailTextToSpeechPrompt', $existingCallQueue.NoAgentSharedVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentSharedVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentSharedVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentSharedVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentSharedVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentSharedVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentSharedVoicemailAudioFilePrompt', $existingCallQueue.NoAgentSharedVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentSharedVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentSharedVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentSharedVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('EnableNoAgentSharedVoicemailTranscription')) { - if ($existingCallQueue.EnableNoAgentSharedVoicemailTranscription -ne $null) { - $PSBoundParameters.Add('EnableNoAgentSharedVoicemailTranscription', $existingCallQueue.EnableNoAgentSharedVoicemailTranscription) - } - } - - if (!$PSBoundParameters.ContainsKey('EnableNoAgentSharedVoicemailSystemPromptSuppression') -and $null -ne $existingCallQueue.EnableNoAgentSharedVoicemailSystemPromptSuppression) { - $PSBoundParameters.Add('EnableNoAgentSharedVoicemailSystemPromptSuppression', $existingCallQueue.EnableNoAgentSharedVoicemailSystemPromptSuppression) - } - - if (!$PSBoundParameters.ContainsKey('NoAgentApplyTo')) { - if ($existingCallQueue.NoAgentApplyTo -ne $null) { - $PSBoundParameters.Add('NoAgentApplyTo', $existingCallQueue.NoAgentApplyTo) - } - } - - if (!$PSBoundParameters.ContainsKey('NoAgentDisconnectAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentDisconnectAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentDisconnectAudioFilePrompt', $existingCallQueue.NoAgentDisconnectAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentDisconnectAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentDisconnectAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentDisconnectAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentDisconnectTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentDisconnectTextToSpeechPrompt)) { - $PSBoundParameters.Add('NoAgentDisconnectTextToSpeechPrompt', $existingCallQueue.NoAgentDisconnectTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentDisconnectTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentDisconnectTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentDisconnectTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectPersonAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectPersonAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentRedirectPersonAudioFilePrompt', $existingCallQueue.NoAgentRedirectPersonAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectPersonAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectPersonAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectPersonAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectPersonTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectPersonTextToSpeechPrompt)) { - $PSBoundParameters.Add('NoAgentRedirectPersonTextToSpeechPrompt', $existingCallQueue.NoAgentRedirectPersonTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectPersonTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectPersonTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectPersonTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectVoiceAppAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectVoiceAppAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentRedirectVoiceAppAudioFilePrompt', $existingCallQueue.NoAgentRedirectVoiceAppAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectVoiceAppAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectVoiceAppAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectVoiceAppAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectVoiceAppTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectVoiceAppTextToSpeechPrompt)) { - $PSBoundParameters.Add('NoAgentRedirectVoiceAppTextToSpeechPrompt', $existingCallQueue.NoAgentRedirectVoiceAppTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectVoiceAppTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectVoiceAppTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectVoiceAppTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectPhoneNumberAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectPhoneNumberAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentRedirectPhoneNumberAudioFilePrompt', $existingCallQueue.NoAgentRedirectPhoneNumberAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectPhoneNumberAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectPhoneNumberAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectPhoneNumberAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectPhoneNumberTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectPhoneNumberTextToSpeechPrompt)) { - $PSBoundParameters.Add('NoAgentRedirectPhoneNumberTextToSpeechPrompt', $existingCallQueue.NoAgentRedirectPhoneNumberTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectPhoneNumberTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectPhoneNumberTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectPhoneNumberTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectVoicemailAudioFilePrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectVoicemailAudioFilePrompt)) { - $PSBoundParameters.Add('NoAgentRedirectVoicemailAudioFilePrompt', $existingCallQueue.NoAgentRedirectVoicemailAudioFilePrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectVoicemailAudioFilePrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectVoicemailAudioFilePrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectVoicemailAudioFilePrompt') - } - - if (!$PSBoundParameters.ContainsKey('NoAgentRedirectVoicemailTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentRedirectVoicemailTextToSpeechPrompt)) { - $PSBoundParameters.Add('NoAgentRedirectVoicemailTextToSpeechPrompt', $existingCallQueue.NoAgentRedirectVoicemailTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('NoAgentRedirectVoicemailTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($NoAgentRedirectVoicemailTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('NoAgentRedirectVoicemailTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('AuthorizedUsers')) { - $PSBoundParameters.Add('AuthorizedUsers', $existingCallQueue.AuthorizedUsers) - } - - if (!$PSBoundParameters.ContainsKey('HideAuthorizedUsers')) { - $PSBoundParameters.Add('HideAuthorizedUsers', $existingCallQueue.HideAuthorizedUsers) - } - - # Making sure the user provides the correct CallPriority values for CQ exceptions (overflow, timeout, NoAgent etc.) handling. - # The valid values are 1 to 5. Zero is also allowed which means the user wants to use the default value (3). - # (elseif) The CallPriority does not apply when the Action is not `Forward`. - # (elseif) If user doesn't provide CallPriority value but in the existing CallQueue there is a value then we have the following two scenarios: - # a) User provides a new Target and we should not take the existing priority instead it should be the default CallPriority (3). - # b) In case of existing CQ with ActionTarget, user might want to only update the CallPriority. - if ($PSBoundParameters["OverflowAction"] -eq 'Forward' -and ($OverflowActionCallPriority -lt 0 -or $OverflowActionCallPriority -gt 5)) { - throw "Invalid `OverflowActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($PSBoundParameters["OverflowAction"] -ne 'Forward' -and ([Math]::Abs($OverflowActionCallPriority) -ge 1)) { - throw "OverflowActionCallPriority is only applicable when the 'OverflowAction' is 'Forward'. Please remove the OverflowActionCallPriority." - } - elseif (!$PSBoundParameters.ContainsKey('OverflowActionCallPriority') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.OverflowActionCallPriority)) { - if ($PSBoundParameters["OverflowAction"] -eq 'Forward' -and $PSBoundParameters["OverflowActionTarget"] -eq $existingCallQueue.OverflowActionTarget.Id -and $existingCallQueue.OverflowActionCallPriority -ge 1) { - $PSBoundParameters.Add('OverflowActionCallPriority', $existingCallQueue.OverflowActionCallPriority) - } - } - - if ($PSBoundParameters["TimeoutAction"] -eq 'Forward' -and ($TimeoutActionCallPriority -lt 0 -or $TimeoutActionCallPriority -gt 5)) { - throw "Invalid `TimeoutActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($PSBoundParameters["TimeoutAction"] -ne 'Forward' -and ([Math]::Abs($TimeoutActionCallPriority) -ge 1)) { - throw "TimeoutActionCallPriority is only applicable when the 'TimeoutAction' is 'Forward'. Please remove the TimeoutActionCallPriority." - } - elseif (!$PSBoundParameters.ContainsKey('TimeoutActionCallPriority') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TimeoutActionCallPriority)) { - if ($PSBoundParameters["TimeoutAction"] -eq 'Forward' -and $PSBoundParameters["TimeoutActionTarget"] -eq $existingCallQueue.TimeoutActionTarget.Id -and $existingCallQueue.TimeoutActionCallPriority -ge 1) { - $PSBoundParameters.Add('TimeoutActionCallPriority', $existingCallQueue.TimeoutActionCallPriority) - } - } - - if ($PSBoundParameters["NoAgentAction"] -eq 'Forward' -and ($NoAgentActionCallPriority -lt 0 -or $NoAgentActionCallPriority -gt 5)) { - throw "Invalid `NoAgentActionCallPriority` value. The valid values are 1 to 5 (default is 3). Please provide the correct value." - } - elseif ($PSBoundParameters["NoAgentAction"] -ne 'Forward' -and ([Math]::Abs($NoAgentActionCallPriority) -ge 1)) { - throw "NoAgentActionCallPriority is only applicable when the 'NoAgentAction' is 'Forward'. Please remove the NoAgentActionCallPriority." - } - elseif (!$PSBoundParameters.ContainsKey('NoAgentActionCallPriority') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.NoAgentActionCallPriority)) { - if ($PSBoundParameters["NoAgentAction"] -eq 'Forward' -and $PSBoundParameters["NoAgentActionTarget"] -eq $existingCallQueue.NoAgentActionTarget.Id -and $existingCallQueue.NoAgentActionCallPriority -ge 1) { - $PSBoundParameters.Add('NoAgentActionCallPriority', $existingCallQueue.NoAgentActionCallPriority) - } - } - - if (!$PSBoundParameters.ContainsKey('IsCallbackEnabled') -and $null -ne $existingCallQueue.IsCallbackEnabled) { - $PSBoundParameters.Add('IsCallbackEnabled', $existingCallQueue.IsCallbackEnabled) - } - elseif ($PSBoundParameters.ContainsKey('IsCallbackEnabled') -and $IsCallbackEnabled -eq $null) { - $null = $PSBoundParameters.Remove('IsCallbackEnabled') - } - - if (!$PSBoundParameters.ContainsKey('CallbackRequestDtmf') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.CallbackRequestDtmf)) { - $PSBoundParameters.Add('CallbackRequestDtmf', $existingCallQueue.CallbackRequestDtmf) - } - elseif ($PSBoundParameters.ContainsKey('CallbackRequestDtmf') -and [string]::IsNullOrWhiteSpace($CallbackRequestDtmf)) { - $null = $PSBoundParameters.Remove('CallbackRequestDtmf') - } - - if (!$PSBoundParameters.ContainsKey('WaitTimeBeforeOfferingCallbackInSecond') -and $null -ne $existingCallQueue.WaitTimeBeforeOfferingCallbackInSecond) { - $PSBoundParameters.Add('WaitTimeBeforeOfferingCallbackInSecond', $existingCallQueue.WaitTimeBeforeOfferingCallbackInSecond) - } - elseif ($PSBoundParameters.ContainsKey('WaitTimeBeforeOfferingCallbackInSecond') -and $WaitTimeBeforeOfferingCallbackInSecond -eq $null) { - $null = $PSBoundParameters.Remove('WaitTimeBeforeOfferingCallbackInSecond') - } - - if (!$PSBoundParameters.ContainsKey('NumberOfCallsInQueueBeforeOfferingCallback') -and $null -ne $existingCallQueue.NumberOfCallsInQueueBeforeOfferingCallback) { - $PSBoundParameters.Add('NumberOfCallsInQueueBeforeOfferingCallback', $existingCallQueue.NumberOfCallsInQueueBeforeOfferingCallback) - } - elseif ($PSBoundParameters.ContainsKey('NumberOfCallsInQueueBeforeOfferingCallback') -and $NumberOfCallsInQueueBeforeOfferingCallback -eq $null) { - $null = $PSBoundParameters.Remove('NumberOfCallsInQueueBeforeOfferingCallback') - } - - if (!$PSBoundParameters.ContainsKey('CallToAgentRatioThresholdBeforeOfferingCallback') -and $null -ne $existingCallQueue.CallToAgentRatioThresholdBeforeOfferingCallback) { - $PSBoundParameters.Add('CallToAgentRatioThresholdBeforeOfferingCallback', $existingCallQueue.CallToAgentRatioThresholdBeforeOfferingCallback) - } - elseif ($PSBoundParameters.ContainsKey('CallToAgentRatioThresholdBeforeOfferingCallback') -and $CallToAgentRatioThresholdBeforeOfferingCallback -eq $null) { - $null = $PSBoundParameters.Remove('CallToAgentRatioThresholdBeforeOfferingCallback') - } - - if (!$PSBoundParameters.ContainsKey('CallbackOfferAudioFilePromptResourceId') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.CallbackOfferAudioFilePromptResourceId)) { - $PSBoundParameters.Add('CallbackOfferAudioFilePromptResourceId', $existingCallQueue.CallbackOfferAudioFilePromptResourceId) - } - elseif ($PSBoundParameters.ContainsKey('CallbackOfferAudioFilePromptResourceId') -and [string]::IsNullOrWhiteSpace($CallbackOfferAudioFilePromptResourceId)) { - $null = $PSBoundParameters.Remove('CallbackOfferAudioFilePromptResourceId') - } - - if (!$PSBoundParameters.ContainsKey('CallbackOfferTextToSpeechPrompt') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.CallbackOfferTextToSpeechPrompt)) { - $PSBoundParameters.Add('CallbackOfferTextToSpeechPrompt', $existingCallQueue.CallbackOfferTextToSpeechPrompt) - } - elseif ($PSBoundParameters.ContainsKey('CallbackOfferTextToSpeechPrompt') -and [string]::IsNullOrWhiteSpace($CallbackOfferTextToSpeechPrompt)) { - $null = $PSBoundParameters.Remove('CallbackOfferTextToSpeechPrompt') - } - - if (!$PSBoundParameters.ContainsKey('CallbackEmailNotificationTarget') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.CallbackEmailNotificationTargetId)) { - $PSBoundParameters.Add('CallbackEmailNotificationTarget', $existingCallQueue.CallbackEmailNotificationTargetId) - } - elseif ($PSBoundParameters.ContainsKey('CallbackEmailNotificationTarget') -and [string]::IsNullOrWhiteSpace($CallbackEmailNotificationTarget)) { - $null = $PSBoundParameters.Remove('CallbackEmailNotificationTarget') - } - - if ($PSBoundParameters.ContainsKey('ServiceLevelThresholdResponseTimeInSecond') -and $ServiceLevelThresholdResponseTimeInSecond -eq $null) { - $null = $PSBoundParameters.Remove('ServiceLevelThresholdResponseTimeInSecond') - } - - if (!$PSBoundParameters.ContainsKey('ShiftsTeamId') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.ShiftsTeamId)) { - $PSBoundParameters.Add('ShiftsTeamId', $existingCallQueue.ShiftsTeamId) - } - elseif ($PSBoundParameters.ContainsKey('ShiftsTeamId') -and [string]::IsNullOrWhiteSpace($ShiftsTeamId)) { - $null = $PSBoundParameters.Remove('ShiftsTeamId') - } - - if (!$PSBoundParameters.ContainsKey('ShiftsSchedulingGroupId') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.ShiftsSchedulingGroupId)) { - $PSBoundParameters.Add('ShiftsSchedulingGroupId', $existingCallQueue.ShiftsSchedulingGroupId) - } - elseif ($PSBoundParameters.ContainsKey('ShiftsSchedulingGroupId') -and [string]::IsNullOrWhiteSpace($ShiftsSchedulingGroupId)) { - $null = $PSBoundParameters.Remove('ShiftsSchedulingGroupId') - } - - if (!$PSBoundParameters.ContainsKey('TextAnnouncementForCR') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TextAnnouncementForCR)) { - $PSBoundParameters.Add('TextAnnouncementForCR', $existingCallQueue.TextAnnouncementForCR) - } - elseif ($PSBoundParameters.ContainsKey('TextAnnouncementForCR') -and [string]::IsNullOrWhiteSpace($TextAnnouncementForCR)) { - $null = $PSBoundParameters.Remove('TextAnnouncementForCR') - } - - if (!$PSBoundParameters.ContainsKey('AudioFileAnnouncementForCR') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.AudioFileAnnouncementForCR)) { - $PSBoundParameters.Add('AudioFileAnnouncementForCR', $existingCallQueue.AudioFileAnnouncementForCR) - } - elseif ($PSBoundParameters.ContainsKey('AudioFileAnnouncementForCR') -and [string]::IsNullOrWhiteSpace($AudioFileAnnouncementForCR)) { - $null = $PSBoundParameters.Remove('AudioFileAnnouncementForCR') - } - - if (!$PSBoundParameters.ContainsKey('TextAnnouncementForCRFailure') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.TextAnnouncementForCRFailure)) { - $PSBoundParameters.Add('TextAnnouncementForCRFailure', $existingCallQueue.TextAnnouncementForCRFailure) - } - elseif ($PSBoundParameters.ContainsKey('TextAnnouncementForCRFailure') -and [string]::IsNullOrWhiteSpace($TextAnnouncementForCRFailure)) { - $null = $PSBoundParameters.Remove('TextAnnouncementForCRFailure') - } - - if (!$PSBoundParameters.ContainsKey('AudioFileAnnouncementForCRFailure') -and ![string]::IsNullOrWhiteSpace($existingCallQueue.AudioFileAnnouncementForCRFailure)) { - $PSBoundParameters.Add('AudioFileAnnouncementForCRFailure', $existingCallQueue.AudioFileAnnouncementForCRFailure) - } - elseif ($PSBoundParameters.ContainsKey('AudioFileAnnouncementForCRFailure') -and [string]::IsNullOrWhiteSpace($AudioFileAnnouncementForCRFailure)) { - $null = $PSBoundParameters.Remove('AudioFileAnnouncementForCRFailure') - } - - if (!$PSBoundParameters.ContainsKey('ComplianceRecordingForCallQueueTemplateId') -and $null -ne $existingCallQueue.ComplianceRecordingForCallQueueTemplateId) { - $PSBoundParameters.Add('ComplianceRecordingForCallQueueTemplateId', $existingCallQueue.ComplianceRecordingForCallQueueTemplateId) - } - - if (!$PSBoundParameters.ContainsKey('SharedCallQueueHistoryTemplateId') -and $null -ne $existingCallQueue.SharedCallQueueHistoryTemplateId) { - $PSBoundParameters.Add('SharedCallQueueHistoryTemplateId', $existingCallQueue.SharedCallQueueHistoryTemplateId) - } - - if (!$PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and $null -ne $existingCallQueue.AutoRecordingTemplateId) { - $PSBoundParameters.Add('AutoRecordingTemplateId', $existingCallQueue.AutoRecordingTemplateId) - } - - # Validate ConferenceMode requirement for AutoRecordingTemplateId - # ConferenceMode must be enabled before setting AutoRecordingTemplateId - $conferenceModeValue = $ConferenceMode - if (!$conferenceModeValue -and $PSBoundParameters.ContainsKey('ConferenceMode')) { - $conferenceModeValue = $PSBoundParameters['ConferenceMode'] - } - elseif (!$conferenceModeValue) { - $conferenceModeValue = $existingCallQueue.ConferenceMode - } - - if ($PSBoundParameters.ContainsKey('AutoRecordingTemplateId') -and ![string]::IsNullOrWhiteSpace($AutoRecordingTemplateId)) { - if ($conferenceModeValue -ne $true) { - throw "AutoRecordingTemplateId can only be set when ConferenceMode is enabled. Please set ConferenceMode to `$true before setting AutoRecordingTemplateId." - } - } - - - # Update the CallQueue. - $updateResult = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsCallQueue @PSBoundParameters @httpPipelineArgs - # The response of the Update API is only the list of `Diagnostics` which can be directly used in - # the following method instead of accessing the `Diagnostic` like we do for other CMDLets. - Write-AdminServiceDiagnostic($updateResult) - - # Unfortunately, CallQueue PUT API does not return a CallQueue DTO model. We need to GET the CallQueue again - # to print the updated model. - $getResult = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Get-CsCallQueue @getParams @httpPipelineArgs - - $updatedCallQueue = [Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue]::new() - $updatedCallQueue.ParseFrom($getResult.CallQueue) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsComplianceRecordingForCallQueueTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the CR4CQ template to be modified. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $params = @{ - Name = ${Instance}.Name - Identity = ${Instance}.Id - Description = ${Instance}.Description - BotApplicationInstanceObjectId = ${Instance}.BotApplicationInstanceObjectId - RequiredDuringCall = ${Instance}.RequiredDuringCall - RequiredBeforeCall = ${Instance}.RequiredBeforeCall - ConcurrentInvitationCount = ${Instance}.ConcurrentInvitationCount - PairedApplicationInstanceObjectId = ${Instance}.PairedApplicationInstanceObjectId - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - $null = $params.Remove("Instance") - - if ($ConcurrentInvitationCount -eq 0){ - $null = $params.Remove("ConcurrentInvitationCount") - $params.Add('ConcurrentInvitationCount', 1) - } elseif ($ConcurrentInvitationCount -ne $null){ - # Validate the value of ConcurrentInvitationCount - if ($ConcurrentInvitationCount -lt 1 -or $ConcurrentInvitationCount -gt 2) { - Write-Error "The value of ConcurrentInvitationCount must be 1 or 2." - throw - } - $null = $params.Remove("ConcurrentInvitationCount") - $params.Add('ConcurrentInvitationCount', $ConcurrentInvitationCount) - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsComplianceRecordingForCallQueueTemplate @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.ComplianceRecordingForCallQueue]::new() - $output.ParseFromUpdateResponse($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsMainlineAttendantAppointmentBookingFlow { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the mainline attendant appointment booking flow to be modified. - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - try { - # Check if ApiDefinitions is a JSON file path - if (![string]::IsNullOrWhiteSpace($Instance.ApiDefinitions) -and $Instance.ApiDefinitions -match '\.json$') - { - # Read the JSON file into a PowerShell object - $ApiDefinitionsJsonObject = Get-Content -Path $Instance.ApiDefinitions | ConvertFrom-Json - - # Convert the PowerShell object back into a JSON string - $Instance.ApiDefinitions = $ApiDefinitionsJsonObject | ConvertTo-Json -Depth 10 - - $Instance.ApiDefinitions - } - } catch { - throw "Failed to read API Definitions file: $_" - } - - $params = @{ - Name = ${Instance}.Name - Identity = ${Instance}.Identity - Type = ${Instance}.Type - RelatedConfigurationIds = ${Instance}.RelatedConfigurationIds - Description = ${Instance}.Description - CallerAuthenticationMethod = ${Instance}.CallerAuthenticationMethod - ApiAuthenticationType = ${Instance}.ApiAuthenticationType - ApiDefinitions = ${Instance}.ApiDefinitions - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - $null = $params.Remove("Instance") - - # Ensure Identity is not null or empty - if ([string]::IsNullOrWhiteSpace($params['Identity'])) { - throw "Identity parameter cannot be null or empty." - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsMainlineAttendantAppointmentBookingFlow @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantAppointmentBookingFlow]::new() - $output.ParseFromUpdateResponse($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsMainlineAttendantQuestionAnswerFlow { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the mainline attendant question answer flow to be modified. - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - try - { - # Check if KnowledgeBase is a JSON file path - if (![string]::IsNullOrWhiteSpace($Instance.KnowledgeBase) -and $Instance.KnowledgeBase -match '\.json$') - { - # Read the JSON file into a PowerShell object - $KnowledgeBaseJsonObject = Get-Content -Path $Instance.KnowledgeBase | ConvertFrom-Json - - # Convert the PowerShell object back into a JSON string - $KnowledgeBaseJsonString = $KnowledgeBaseJsonObject | ConvertTo-Json -Depth 10 - - # Create an instance of MainlineAttendantQuestionAnswerFlow to get the local file content - $mainlineAttendantQuestionAnswerFlow = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $Instance.KnowledgeBase = $mainlineAttendantQuestionAnswerFlow.ReadKnowledgeBaseContent($KnowledgeBaseJsonString) - } - } catch { - throw "Failed to read KnowledgeBase file: $_" - } - - - $params = @{ - Name = ${Instance}.Name - Identity = ${Instance}.Identity - Type = ${Instance}.Type - RelatedConfigurationIds = ${Instance}.RelatedConfigurationIds - Description = ${Instance}.Description - ApiAuthenticationType = ${Instance}.ApiAuthenticationType - KnowledgeBase = ${Instance}.KnowledgeBase - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - # Remove Instance from params as it is not a valid parameter for the internal cmdlet - $null = $params.Remove("Instance") - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsMainlineAttendantQuestionAnswerFlow @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.MainlineAttendantQuestionAnswerFlow]::new() - $output.ParseFromUpdateResponse($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of Set-CsOdcServiceNumber - -function Set-CsOdcServiceNumber { - [CmdletBinding(PositionalBinding=$false)] - param( - [string] - ${Identity}, - - [string] - ${PrimaryLanguage}, - - [string[]] - ${SecondaryLanguages}, - - [switch] - ${RestoreDefaultLanguages}, - - [switch] - ${Force}, - - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - [Parameter(ValueFromPipeline)] - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - if ($Identity -ne ""){ - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcServiceNumber @PSBoundParameters @httpPipelineArgs - } - elseif ($Instance -ne $null) { - $Body = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ServiceNumberUpdateRequest]::new() - - if ($PrimaryLanguage -ne "" ){ - $Body.PrimaryLanguage = $PrimaryLanguage - } - else { - $Body.PrimaryLanguage = $Instance.PrimaryLanguage - } - - if ($SecondaryLanguages -ne "") { - $Body.SecondaryLanguage = $SecondaryLanguages - } - else { - $Body.SecondaryLanguage = $Instance.SecondaryLanguages - } - - if ($RestoreDefaultLanguages -eq $true) { - $Body.RestoreDefaultLanguage = $RestoreDefaultLanguages - } - - $output = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOdcServiceNumber -Identity $Instance.Number -Body $Body @httpPipelineArgs - } - - $output - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: assign parameters' values and customize output - -function Set-CsOnlineSchedule { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [Object] - # The instance of the schedule which is updated. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - $params = @{ - Identity = ${Instance}.Id - Name = ${Instance}.Name - Type = ${Instance}.Type - AssociatedConfigurationId = ${Instance}.AssociatedConfigurationId - } - # Get common parameters - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - $null = $params.Remove("Instance") - - if (${Instance}.Type -eq [Microsoft.Rtc.Management.Hosted.Online.Models.ScheduleType]::Fixed) { - $DateTimeRanges = ${Instance}.FixedSchedule.DateTimeRanges - $dateTimeRangeStandardFormat = 'yyyy-MM-ddTHH:mm:ss'; - $fixedScheduleDateTimeRanges = @() - foreach ($dateTimeRange in $DateTimeRanges) { - $fixedScheduleDateTimeRanges += @{ - Start = $dateTimeRange.Start.ToString($dateTimeRangeStandardFormat, [System.Globalization.CultureInfo]::InvariantCulture) - End = $dateTimeRange.End.ToString($dateTimeRangeStandardFormat, [System.Globalization.CultureInfo]::InvariantCulture) - } - } - $params['FixedScheduleDateTimeRange'] = $fixedScheduleDateTimeRanges - } - - if (${Instance}.Type -eq [Microsoft.Rtc.Management.Hosted.Online.Models.ScheduleType]::WeeklyRecurrence) { - $MondayHours = ${Instance}.WeeklyRecurrentSchedule.MondayHours - $TuesdayHours = ${Instance}.WeeklyRecurrentSchedule.TuesdayHours - $WednesdayHours = ${Instance}.WeeklyRecurrentSchedule.WednesdayHours - $ThursdayHours = ${Instance}.WeeklyRecurrentSchedule.ThursdayHours - $FridayHours = ${Instance}.WeeklyRecurrentSchedule.FridayHours - $SaturdayHours = ${Instance}.WeeklyRecurrentSchedule.SaturdayHours - $SundayHours = ${Instance}.WeeklyRecurrentSchedule.SundayHours - - if ($MondayHours -ne $null -and $MondayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleMondayHour'] = @() - foreach ($mondayHour in $MondayHours){ - $params['WeeklyRecurrentScheduleMondayHour'] += @{ - Start = $mondayHour.Start - End = $mondayHour.End - } - } - } - if ($TuesdayHours -ne $null -and $TuesdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleTuesdayHour'] = @() - foreach ($tuesdayHour in $TuesdayHours){ - $params['WeeklyRecurrentScheduleTuesdayHour'] += @{ - Start = $tuesdayHour.Start - End = $tuesdayHour.End - } - } - } - if ($WednesdayHours -ne $null -and $WednesdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleWednesdayHour'] = @() - foreach ($wednesdayHour in $WednesdayHours){ - $params['WeeklyRecurrentScheduleWednesdayHour'] += @{ - Start = $wednesdayHour.Start - End = $wednesdayHour.End - } - } - } - if ($ThursdayHours -ne $null -and $ThursdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleThursdayHour'] = @() - foreach ($thursdayHour in $ThursdayHours){ - $params['WeeklyRecurrentScheduleThursdayHour'] += @{ - Start = $thursdayHour.Start - End = $thursdayHour.End - } - } - } - if ($FridayHours -ne $null -and $FridayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleFridayHour'] = @() - foreach ($fridayHour in $FridayHours){ - $params['WeeklyRecurrentScheduleFridayHour'] += @{ - Start = $fridayHour.Start - End = $fridayHour.End - } - } - } - if ($SaturdayHours -ne $null -and $SaturdayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleSaturdayHour'] = @() - foreach ($saturdayHour in $SaturdayHours){ - $params['WeeklyRecurrentScheduleSaturdayHour'] += @{ - Start = $saturdayHour.Start - End = $saturdayHour.End - } - } - } - if ($SundayHours -ne $null -and $SundayHours.Length -gt 0) { - $params['WeeklyRecurrentScheduleSundayHour'] = @() - foreach ($sundayHour in $SundayHours){ - $params['WeeklyRecurrentScheduleSundayHour'] += @{ - Start = $sundayHour.Start - End = $sundayHour.End - } - } - } - - $params['WeeklyRecurrentScheduleIsComplemented'] = ${Instance}.WeeklyRecurrentSchedule.ComplementEnabled - - if (${Instance}.WeeklyRecurrentSchedule.RecurrenceRange -ne $null) { - if (${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.Start -ne $null) { $params['RecurrenceRangeStart'] = ${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.Start } - if (${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.End -ne $null) { $params['RecurrenceRangeEnd'] = ${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.End } - if (${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.Type -ne $null) { $params['RecurrenceRangeType'] = ${Instance}.WeeklyRecurrentSchedule.RecurrenceRange.Type } - } - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOnlineSchedule @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($result.Diagnostic) - - $schedule = [Microsoft.Rtc.Management.Hosted.Online.Models.Schedule]::new() - $schedule.ParseFrom($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Print error message in case of error - -function Set-CsOnlineVoicemailUserSettings { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Position=0, Mandatory)] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Rtc.Management.Hosted.Voicemail.Models.CallAnswerRules] - ${CallAnswerRule}, - - [Parameter()] - [System.String] - ${DefaultGreetingPromptOverwrite}, - - [Parameter()] - [System.String] - ${DefaultOofGreetingPromptOverwrite}, - - [Parameter()] - [System.Nullable[System.Boolean]] - ${OofGreetingEnabled}, - - [Parameter()] - [System.Nullable[System.Boolean]] - ${OofGreetingFollowAutomaticRepliesEnabled}, - - [Parameter()] - [System.String] - ${PromptLanguage}, - - [Parameter()] - [System.Nullable[System.Boolean]] - ${ShareData}, - - [Parameter()] - [System.String] - ${TransferTarget}, - - [Parameter()] - [System.Nullable[System.Boolean]] - ${VoicemailEnabled}, - - [Parameter(Mandatory=$false)] - [Switch] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsOnlineVMUserSetting @PSBoundParameters @httpPipelineArgs - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - # If none of the above parameters are set (except Identity and Force), - # We should display the Warning message to user. - if ($PSBoundParameters["CallAnswerRule"] -eq $null -and - $PSBoundParameters["DefaultGreetingPromptOverwrite"] -eq $null -and - $PSBoundParameters["DefaultOofGreetingPromptOverwrite"] -eq $null -and - $PSBoundParameters["OofGreetingEnabled"] -eq $null -and - $PSBoundParameters["OofGreetingFollowAutomaticRepliesEnabled"] -eq $null -and - $PSBoundParameters["PromptLanguage"] -eq $null -and - $PSBoundParameters["ShareData"] -eq $null -and - $PSBoundParameters["TransferTarget"] -eq $null -and - $PSBoundParameters["VoicemailEnabled"] -eq $null) { - Write-Warning("To set online voicemail user settings for user {0}, at least one optional parameter should be provided." -f $Identity) - } - - $result - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsSharedCallHistoryTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the shared call history template to be modified. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $params = @{ - Name = ${Instance}.Name - Identity = ${Instance}.Id - Description = ${Instance}.Description - IncomingMissedCalls = ${Instance}.IncomingMissedCalls - AnsweredAndOutboundCalls = ${Instance}.AnsweredAndOutboundCalls - IncomingRedirectedCalls = ${Instance}.IncomingRedirectedCalls - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - $null = $params.Remove("Instance") - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsSharedCallHistoryTemplate @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.Online.Models.SharedCallHistoryTemplate]::new() - $output.ParseFromUpdateResponse($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsSharedCallQueueHistoryTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the shared call queue history template to be modified. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - Write-Warning -Message "This cmdlet is deprecated and will be removed in future releases. Please use Set-CsSharedCallHistoryTemplate instead." - - # Forward to the new cmdlet - Set-CsSharedCallHistoryTemplate @PSBoundParameters - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: transforming the results to the custom objects - -function Set-CsTagsTemplate { - [CmdletBinding(PositionalBinding=$true, SupportsShouldProcess, ConfirmImpact='Medium')] - param( - [Parameter(Mandatory=$true, position=0)] - [PSObject] - # The Instance parameter is the object reference to the Tags template to be modified. - ${Instance}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process{ - try { - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - if ($PSBoundParameters.ContainsKey("Force")) { - $PSBoundParameters.Remove("Force") | Out-Null - } - - $params = @{ - Name = ${Instance}.Name - Identity = ${Instance}.Id - Description = ${Instance}.Description - Tag = ${Instance}.Tags.MapToAutoGeneratedModel() - } - - # Get common parameters - $PSBoundCommonParameters = @{} - foreach($p in $PSBoundParameters.GetEnumerator()) - { - $params += @{$p.Key = $p.Value} - } - - $null = $params.Remove("Instance") - - $result = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Set-CsTagsTemplate @params @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($result -eq $null) { - return $null - } - - $output = [Microsoft.Rtc.Management.Hosted.OAA.Models.IvrTagsTemplate]::new() - $output.MapFromUpdateResponseModel($result) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Format output of the cmdlet - -function Update-CsAutoAttendant { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$true, position=0)] - [System.String] - # The identity for the AA to be updated. - ${Identity}, - - [Parameter(Mandatory=$false, position=1)] - [Switch] - # The Force parameter indicates if we force the action to be performed. (Deprecated) - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} - ) - - begin { - $customCmdletUtils = [Microsoft.Teams.ConfigAPI.Cmdlets.Telemetry.CustomCmdletUtils]::new($MyInvocation) - } - - process { - try { - - $httpPipelineArgs = $customCmdletUtils.ProcessArgs() - - $null = $PSBoundParameters.Remove("Force") - - # Default ErrorAction to $ErrorActionPreference - if (!$PSBoundParameters.ContainsKey("ErrorAction")) { - $PSBoundParameters.Add("ErrorAction", $ErrorActionPreference) - } - - $internalOutput = Microsoft.Teams.ConfigAPI.Cmdlets.internal\Update-CsAutoAttendant @PSBoundParameters @httpPipelineArgs - - # Stop execution if internal cmdlet is failing - if ($internalOutput -eq $null) { - return $null - } - - Write-AdminServiceDiagnostic($internalOutput.Diagnostic) - - } catch { - $customCmdletUtils.SendTelemetry() - throw - } - } - - end { - $customCmdletUtils.SendTelemetry() - } -} -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -# Objective of this custom file: Provide common functions for voice app team cmdlets - -function Write-AdminServiceDiagnostic { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord[]] - # The diagnostic object - ${Diagnostics} - ) - process { - if ($Diagnostics -eq $null) - { - return - } - - foreach($diagnostic in $Diagnostics) - { - if ($diagnostic.Level -eq $null) - { - Write-Output $diagnostic.Message - } - else - { - switch($diagnostic.Level) - { - "Warning" { Write-Warning $diagnostic.Message } - "Info" { Write-Output $diagnostic.Message } - "Verbose" { Write-Verbose $diagnostic.Message } - default { Write-Output $diagnostic.Message } - } - } - } - } -} - -function Get-StatusRecordStatusString { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [Int] - # The int status from status record - ${StatusRecordStatus} - ) - process { - if ($StatusRecordStatus -eq $null) - { - return - } - - $status = '' - - switch ($StatusRecordStatus) - { - 0 {$status = 'Error'} - 1 {$status = 'Pending'} - 2 {$status = 'Unknown'} - 3 {$status = 'Success'} - } - - $status - } -} - -function Get-StatusRecordStatusCodeString { - [CmdletBinding(PositionalBinding=$true)] - param( - [Parameter(Mandatory=$false, position=0)] - [Int] - # The int status from status record - ${StatusRecordErrorCode} - ) - process { - if ($StatusRecordErrorCode -eq $null) - { - return - } - - $statusCode = '' - - switch ($StatusRecordErrorCode) - { - 'ApplicationInstanceAssociationProvider_AppEndpointNotFound' {$statusCode = 'AppEndpointNotFound'} - 'ApplicationInstanceAssociationStatusProvider_AppEndpointNotFound' {$statusCode = 'AppEndpointNotFound'} - 'ApplicationInstanceAssociationStatusProvider_AcsAssociationNotFound' {$statusCode = 'AcsAssociationNotFound'} - 'ApplicationInstanceAssociationStatusProvider_ApsAssociationNotFound' {$statusCode = 'ApsAppEndpointNotFound'} - 'AudioFile_FileNameNullOrWhitespace' {$statusCode = 'AudioFileNameNullOrWhitespace'} - 'AudioFile_FileNameTooShort' {$statusCode = 'AudioFileNameTooShort'} - 'AudioFile_FileNameTooLong' {$statusCode = 'AudioFileNameTooLong'} - 'AudioFile_InvalidAudioFileExtension' {$statusCode = 'InvalidAudioFileExtension'} - 'AudioFile_InvalidFileName' {$statusCode = 'InvalidAudioFileName'} - 'AudioFile_UnsupportedAudioFileExtension' {$statusCode = 'UnsupportedAudioFileExtension'} - 'CreateApplicationEndpoint_ApsAppEndpointInvalid' {$statusCode = 'ApsAppEndpointInvalid'} - 'CreateApplicationInstanceAssociation_AppEndpointAlreadyAssociated' {$statusCode = 'AcsAssociationAlreadyExists'} - 'CreateApplicationInstanceAssociation_AppEndpointNotFound' {$statusCode = 'AppEndpointNotFound'} - 'CreateApplicationInstanceAssociation_AppEndpointMissingProvisioning' {$statusCode = 'AppEndpointMissingProvisioning'} - 'DateTimeRange_InvalidDateTimeRangeBound' {$statusCode = 'InvalidDateTimeRangeFormat'} - 'DateTimeRange_InvalidDateTimeRangeKind' {$statusCode = 'InvalidDateTimeRangeKind'} - 'DateTimeRange_NonPositiveDateTimeRange' {$statusCode = 'InvalidDateTimeRange'} - 'DeserializeScheduleOperation_InvalidModelVersion' {$statusCode = 'InvalidSerializedModelVersion'} - 'EnvironmentContextMapper_ForestNameNullOrWhiteSpace' {$statusCode = 'ForestNameNullOrWhiteSpace'} - 'FixedSchedule_DuplicateDateTimeRangeStartBoundaries' {$statusCode = 'DuplicateDateTimeRangeStartBoundaries'} - 'FixedSchedule_InvalidDateTimeRangeBoundariesAlignment' {$statusCode = 'InvalidDateTimeRangeBoundariesAlignment'} - 'ModelId_InvalidScheduleId' {$statusCode = 'InvalidScheduleId'} - 'ModifyScheduleOperation_ScheduleConflictInExistingAutoAttendant' {$statusCode = 'ScheduleConflictInExistingAutoAttendant'} - 'RemoveApplicationInstanceAssociation_AppEndpointNotFound' {$statusCode = 'AppEndpointNotFound'} - 'RemoveApplicationInstanceAssociation_AssociationNotFound' {$statusCode = 'AcsAssociationNotFound'} - 'RemoveScheduleOperation_ScheduleInUse' {$statusCode = 'ScheduleInUse'} - 'Schedule_NameNullOrWhitespace' {$statusCode = 'ScheduleNameNullOrWhitespace'} - 'Schedule_NameTooLong' {$statusCode = 'ScheduleNameTooLong'} - 'Schedule_FixedScheduleNull' {$statusCode = 'ScheduleTypeMismatch'} - 'Schedule_FixedScheduleNonNull' {$statusCode = 'ScheduleTypeMismatch'} - 'Schedule_WeeklyRecurrentScheduleNull' {$statusCode = 'ScheduleTypeMismatch'} - 'Schedule_WeeklyRecurrentScheduleNonNull' {$statusCode = 'ScheduleTypeMismatch'} - 'ScheduleRecurrenceRange_InvalidType' {$statusCode = 'InvalidRecurrenceRangeType'} - 'ScheduleRecurrenceRange_UnsupportedType' {$statusCode = 'InvalidRecurrenceRangeType'} - 'ScheduleRecurrenceRange_NonPositiveRange' {$statusCode = 'InvalidRecurrenceRangeEndDateTime'} - 'ScheduleRecurrenceRange_EndDateTimeNull' {$statusCode = 'InvalidRecurrenceRangeEndDateTime'} - 'ScheduleRecurrenceRange_EndDateTimeNonNull' {$statusCode = 'InvalidRecurrenceRangeEndDateTime'} - 'ScheduleRecurrenceRange_NumberOfOccurrencesZero' {$statusCode = 'InvalidRecurrenceNumberOfOccurrences'} - 'ScheduleRecurrenceRange_NumberOfOccurrencesNull' {$statusCode = 'InvalidRecurrenceNumberOfOccurrences'} - 'ScheduleRecurrenceRange_NumberOfOccurrencesNonNull' {$statusCode = 'InvalidRecurrenceNumberOfOccurrences'} - 'TimeRange_InvalidTimeRange' {$statusCode = 'InvalidTimeRange'} - 'TimeRange_InvalidTimeRangeBound' {$statusCode = 'InvalidTimeRangeBound'} - 'WeeklyRecurrentSchedule_EmptySchedule' {$statusCode = 'EmptyWeeklyRecurrentSchedule'} - 'WeeklyRecurrentSchedule_InvalidTimeRangeBoundariesAlignment' {$statusCode = 'InvalidTimeRangeBoundariesAlignment'} - 'WeeklyRecurrentSchedule_OverlappingTimeRanges' {$statusCode = 'TimeRangesOverlapping'} - 'WeeklyRecurrentSchedule_TooManyTimeRangesPerDay' {$statusCode = 'TooManyTimeRangesForDay'} - 'WeeklyRecurrentSchedule_RecurrenceRangeNull' {$statusCode = 'ScheduleRecurrenceRangeNull'} - } - - $statusCode - } -} - -# Asp.Net 4.0+ considers these eight characters (<, >, *, %, &, :, \, and ?) as the default -# potential dangerous characters in the URL which may be used in XSS attacks. -# A SIP URI (sip:user@domain.com:port) usually startswith SIP prefix (sip:). This COLON (:) -# in prefix needs to be replaced with something that is not invalid. -# Also, as the last parameter in the URI is "identity", it can not have Dots (.) -# For these reasons we wrote this custom method. -function EncodeSipUri { - param( - $Identity - ) - - if ($Identity -eq $null) - { - return - } - - $Identity = $Identity.replace(':', "[COLON]") - $Identity = $Identity.replace('.', "[DOT]") - - return $Identity -} - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBto9LLG6mYViqU -# Dy7wNt8WwNy9XOVOtTfoU2vCWUUJz6CCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIIrmmeP6 -# 4aUOotdDexBwVy0W25D0QOGclBqdAaVXYpDOMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAT+pMAJJip39TXxjZteZQieBQXeLSqIa+C7ILVm12 -# 3WJZsJOQqhQVUIfrS4zSu1eeic7LoG5Y6zfJ0T2n4Gm4BHb/XieTkii0hGA6PboR -# qfG4huSUQrSFNAsE5mO+aVAlknhqo0SJj3Cf9r9ZLsH9V2AZU3mHnxKGE1uLhYMk -# fHAT6/pgC8Moyq8+0/lb3zFc3YC+D4HBm0EyLILhRO1kESmTZ5kJMgw0zkYf4I9u -# aTZiX2w0S8wQarQlM+ub8c1I3K1wcREcMedFRzJYYRN4bzbWu+sM6A0o398Xk5az -# IV/9bHbJyv9oyiArWM10MfRHhAQjd0NcIXCxNbjh8HyIZqGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDIaZ6OT/AQnWE9torN5ZfdMM3vTR3Q9KfeR2sC -# IIXlCAIGaefWqjDDGBMyMDI2MDUxNTEwMDYzNC40ODFaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046OTYwMC0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiY1tD5nQ5P2HwABAAAC -# JjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDJaFw0yNzA1MTcxOTQwMDJaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046OTYwMC0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC//w+ZZIL5RFFpVI8D3ZyuNu8I -# zcAEOD30OLYjh337rXjcrIlOSzpJc4ZeUxEyli6x6F6zm4NR8dbPb9diDp/hOUzH -# WGxiA1Z3RXKBb/4F/ojyvN43SEGWqSfVc3I3BlsYT35ecVAJ9kVf90YOv29tFjJB -# BZkYvrT/DwwyRLscOyP4p+9/lyJjD+ULs3YXBhVrfZ+MbQB+BYKLqRvBKbj/wR9a -# kNrMxQINoGaD5jZO/N/nSsmG2P1zv/cv4gSoMBnWeQIBkjd2I5w1DeXupp2vSiNm -# R5sA2ZkBK3yiQWaJvRxODlkfiyHk9Mkk/TrYTjmjPCbhe+uqhHNRy8UlbOvWsCq0 -# tRtUykHv39DgqAfJNrE8OSt835rBzDprrcAhwmgfhoVi4AKeqwikY0nUa48K0Qy8 -# 0XT4fiEA3ExEZNaRFo9Nq/GwbfgqKqGmc9xhKuRFcjtua4KHZvnAvpWgEFSOCkov -# Xs/BcLnkEHM9xZ8iUag5CyhNqXYYE/z0pcXdYaNIkQ68EWmuvLm7g9oofV2vOm5G -# VNoghnkWG6nGPo/JwEgmA9oSS0EfvFRMWPA/gpSvF3shArKHnaEpVSSi3DNbyiuY -# iEs9Ko0IkZc8xKFeQRaqGRxrB+2r/7B3X81Tps99KhFwg+wD87od22F2MUg1x7tw -# t3gaVnFk0IZIwUPCGwIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFF3hn9fYJN2Y/Z9L -# VbBPIxAzXHsQMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQA2Ux0tr9sYCjsq0FRy -# iVpx15OurNXv6Qk7iX+ArVPlz3w4tqjcTNm1dt3tTua2wJMpJhPH8n7UXhmT98d5 -# Du44Ll4adnse4SQfVg3QL6aRkXHnJUn8y9iftB/Py22n9xnwPFfj3QlDOSgLuHle -# u97U0iH2ZaluYabWXJihdiYpK8cPHFlqZOAiot0+GD8dP+RMuvpxt/F2LmYelpoZ -# wriiFOUmlxEUV7xJHyZZlDquskeyuq01DTv91N4qM8cfPPhl/2pc4HeMf/nd2Hou -# ifJbDQFNd4WPhLzn0Sy3u1Zh3+S3tjQdqN+dyw60RaV+RXCoOLgFZ3MAg/GoDl+f -# vb5hy/1a71ctX8wEad1Pf6def2pqfl3wFc++hkF8DXXTZofJN4YVaN3InwbAGQDD -# kNK4lqecCixxmSKwidPynGeE5OtvNoK1pkLsm/i8F1RjGczZ/kSF2VDkqG866iQ+ -# jVbGOQ6Du3eyyFcFKZoDJ4B5mEAS9aT2SKqllLeybOboH6r67siR5B/2Hnu7+KYu -# YZy0BEadtA6ngG4cnSR9JsrkhhsKmb11ujqwgJyNx92MsoGGwNgN1aI0QID8CsjC -# FwpfmMzlA44xHKYv3hmjxeqBS4uU5rQeiAnVgpJeaVGKm/lzPDtnppGV+7XhRp5b -# 1ZxT/Z7Xxc+I7H7/jCtQDZoaZTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjk2MDAtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQCi/fMxFtkqr7XMXdsRyWU0lSKHZ6CBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bFM8TAiGA8y -# MDI2MDUxNTA3NDI0MVoYDzIwMjYwNTE2MDc0MjQxWjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsUzxAgEAMAoCAQACAhzaAgH/MAcCAQACAhMiMAoCBQDtsp5xAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBABjj8iLTuIbIBvwspx1f9+5sBkVE -# d3GwVNT2Jo77BxcXU+IUgfQwhEDTfz3m633APCK/JWJE4d4N8dRswh6LAoM8yUH6 -# IYSZL2DABfU5marWeW3FqTeNZN/8Q14mLy50JSytZUtrV+Q3/TYiB3Mld/AzBlaR -# zxdVdmzEh8ebF/d3uluBoBRtEdLrI+cNihgy1OfH6zzHdnvhDjPR1uGVmDc8DOdf -# A5kbQ3a3PR4O2sv4HURSAL3lIqSW02nNGZ9UClx6eXC2naIWRBTS3RrZYEdP+fXE -# JMfSxS6ye9aeyprB1BrznmLwTbqJhPuQeBxx5u8IigxYlDRMyXy55+jtM9QxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiY1 -# tD5nQ5P2HwABAAACJjANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCD0nvjwaoVdabzcdcvh2JKQULDF -# A+0Tk9ugrB3RBC6VATCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIMwyXGFn -# TNsZRBrs6GN/BbV0okaNP3VBYqLFjUsFnbgqMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAImNbQ+Z0OT9h8AAQAAAiYwIgQgf0dUOcQ4 -# 5jo4UiqGecor1lzQfM5Epa4rLABclSHCTZ8wDQYJKoZIhvcNAQELBQAEggIAb38W -# zOD1OJsnww48nwHJDaXvws9LJR+D2aGD2vmD5CYww9qIYEXS1tyL41mKQOOYqyR6 -# IrNhu9vq2xEvOkZ5kV0L42UXobuJ6byMcNMLfFkj4oLP73LeR3SrzM/8ZGGfTkP1 -# OmDcUhsO7i1RPi94q8hWYWOPiQsxz8jirYNxRYPxAIoayu/hU1Crb+xaCzgqJt1W -# ZFKyx+finBKEhLo/mIbMU1/+G92botoFBQGwhlbjDQN6zXvDbOdqSVcdKsOcWQRj -# yycYy55xG+20uzFCJVUm8MFMUvLWfp40SVLyxj0SOECzaoOcCk/c6WP/Wzjn/mK1 -# ZrG66D35Sa61p6k4gY7FybuELO0OgH7ONemoV88R0zuQpoWSb0EIaBYVt2h2rTSF -# 2jN4YnS9SndP6azsIkNHkix+7jq0gdRNWixyp83gC43vvSMSz7lYz8fcWsjglpcm -# GvMKPau1WQJrgKWdj/8SUvHk+TzJJ2BqPG5cxn5g/l9JDplfzTM484HDoo84MhIq -# YYxvdJzXCil02Nu6urqh6W426tC+tAfOFoOxvjDAagnSXgeOSBj/DjX3IRQD7M6y -# x7hISidDbcCbdBiwYoo5mQfqAG4inWY/IT4Dolil3PTlqQ0qcwN9827V103L2uuj -# mQ3qrM4U2Y92JYtewPnMJqMzGFzxACNqVXvxhWo= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/custom/Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1 b/Modules/MicrosoftTeams/7.8.0/custom/Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1 deleted file mode 100644 index 98094a51f0c4e..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/custom/Microsoft.Teams.ConfigAPI.Cmdlets.custom.psm1 +++ /dev/null @@ -1,230 +0,0 @@ -# region Generated - # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Microsoft.Teams.ConfigAPI.Cmdlets.private.dll') - - # Load the internal module - $internalModulePath = Join-Path $PSScriptRoot '..\internal\Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1' - if(Test-Path $internalModulePath) { - $null = Import-Module -Name $internalModulePath - } - - # Export nothing to clear implicit exports - Export-ModuleMember - - # Export script cmdlets - Get-ChildItem -Path $PSScriptRoot -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } - Export-ModuleMember -Function (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot) -Alias (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot -AsAlias) -# endregion - -# SIG # Begin signature block -# MIInRgYJKoZIhvcNAQcCoIInNzCCJzMCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBOycrzQVq6CnNY -# rK5l5Eg2CcKYocwkesaom45CeipKo6CCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghniMIIZ3gIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIJjwtTQP -# VUIPxEfl/cH44G64tSZU5xH8iTxSrE/PWkOGMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAZnoBbNKTo8vHP87IwqKvk3BJ3BBFLlJriY1g9Gsk -# 1/EzUo/RxvbpviN+Rpbpn0V3BKKSGDmf5WWnuCnarBM7gmGR5FLGl55pxSF00o26 -# vGhVTZs0KyWeki+o01XNizYK9Ka5LxoG9cP8VTD3nZlkTpuehPLiRiYZ1MBMjNtS -# aGU+KNEqneiU7r1VmB7ljSRB80DXQeWw4Toek7JZQbeK1Eu/niuMFYfdeEByk2p5 -# /lcWvzbpfNQjFojb3lNW0f4yEdHrAPmgbdgZBfO43t/iAWzkry8aYl5GDyZLJ311 -# GCp3RZChcHfRAxl7dsH6Cp8hHaAJmCb5uQtuVHm2y4to8KGCF5QwgheQBgorBgEE -# AYI3AwMBMYIXgDCCF3wGCSqGSIb3DQEHAqCCF20wghdpAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCDWne3G33eC1IhljLcIxufkKBEi5T6ypv7pbV3h -# lvY13QIGagXdiTKpGBMyMDI2MDUxNTEwMDYzMy45MTRaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046N0YwMC0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHqMIIHIDCCBQigAwIBAgITMwAAAh6jrKRuOW98SQABAAAC -# HjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTM5NDlaFw0yNzA1MTcxOTM5NDlaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046N0YwMC0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCl0TjtbDwsR7Fe8ac6ol5s1zht -# Tqd2AWpchQhLp9G5mmSM23N5fyQGCQ1D06rOA3PgXKF+76vXvOCs2VsLv1owj4mH -# EyEqiq8GJ5yC+/QNYRpZPA8e7OgekzDO6S/4vy/jTMYbp3rhuFiKKCzTWOQtdFcF -# +D0k369I7pm/E07SyNMGkuNd5lj5SJ91UqFuZfjMB6cQ2wh77mtiRUVdj53yjdNq -# j+GQl+Yaz29Bjrzn7U1ln+JpLlnb0xdGmZoIPKZbwBVcWtyL4uyhML7SSTmiOfWX -# U+g+yNl0CdoLGL8LtWHEi8FsuTPeSdSqmeMrvLaEmibTVTS4vQQY8NPnb6uI5y6i -# NV9vBFcm8LU/lDTjGTqPa7UBT4gdf5Jm3wYrfCFZ4P/j5MoqT0JONca50jt4TGI9 -# 0SihXaDEYqk23S0IJZ3UkUpukDRTjK713BIykffxyBqMeQqfO0zvWfUx7BrmUpug -# Qcw99+DxLl2gf+uQEpRmnlbrVJ9dvW9ds4fqEPN2jG0QwF1PBSglNcV1SpqZKitQ -# gBGSwu/82AKztoCHwYRHRNwzwTVe/1KNTvmqAd4Uges4ywOH02haagT8wYY8OdWd -# jKn3k052w+kmc0UC0F+iVXTGZIMxvo9iBZQoXehzRtWJ/VOtKvCyS3csKzN7rStW -# JwjSWz6dtOf0l+ytLQIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFOYKFprqBB0JZmJc -# FC4cPPmeF4JkMB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQCkoZB5NnJVFb5wKejR -# onk518a2TBNYpKcBMtfL6BS0ARaABOMGYLlPNuhI1HwmelP9hX3oq3TaEm/cDkkz -# NQAzDedPgoRI2R7+8poNSWvHXEAs7SZODm9x7KqlBkNZM9ex4XY1yNmVOAmWDjRr -# 7jKjaiQbntf7EC4GNikxGGaVWOjfYt3Q9X0r/Ks8KBlbzDR9zjA/TCctR4co1WpU -# 1ZRLFrB9bl8dRxsbnyT2qQ41E7dT12R30eIGUziEs5GN+26V/ovXOi20dJiM13hY -# Wvy1NNJAhkKOlLB1ONund6ffhPdUcHWsu8V+lR0aakMV64HqDbLumZrCNwUofVx3 -# xMk8F4tCYJtQxLTywc30sZAD1S2sC1959x6KixA+p41FLUl8g64oHy3bfYnH5xd4 -# JOBgQoaqndGjcctxr+8EknjhKyrgAzrTcKLJbUezgoye8brCLJ+y6PAoEjpXRkSY -# AU8wfQ3YWRck6ALwoV7Uin8+rpGQSbXhF6c1dTFakXmChClud4IADY/t6JRkJ+06 -# FzL+jDd8KLV8Qj77JfiuTiPIG5G/xlnGoZFcX+yyBtDvzZE48d+Y+HYUd/cvhH1F -# Kl7AH+5AyotqJSFmvM/BuYRx2B20asVXilV2k2JbNO3LGCz3Q+dpElzwsfJrka1N -# /getma7fWpowsNvoIaEQvjad8TCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNNMIICNQIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjdGMDAtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQCD/QNkKDIW4VIF7j3oi2qbrR0a/6CBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bEErDAiGA8y -# MDI2MDUxNTAyMzQyMFoYDzIwMjYwNTE2MDIzNDIwWjB0MDoGCisGAQQBhFkKBAEx -# LDAqMAoCBQDtsQSsAgEAMAcCAQACAgzPMAcCAQACAhTvMAoCBQDtslYsAgEAMDYG -# CisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEA -# AgMBhqAwDQYJKoZIhvcNAQELBQADggEBAHqTvN5xvRMUHECyTPVVA+wbLCYPeXi5 -# VDU4hOPZnZJYMLc/NeQ3wf894lX/yPDbOopZhIZWU1gzGGoAoUMyFnQLPCg5ynqV -# XJcVv5Z4qfqT0vGxdgVNiMAfRp7nQBKmbxhDWzUsd2svHe6R8hAJNdUBmTixBJPx -# 0xESou7D+9/ELNc9+JWSj6T/63Ka9G1wcwL/z8/h6SFbmssUa8dyL4M2Dfb1RCJT -# ufSkIk5CmEFDGYLuMRF/1pU5/yAlrfbVRTR73sZ6goAwvh0rRv4mqd0wBXzZ1mSe -# CzX2GGRVixgESPvfpOTMwNjjg8VKOsyh23qqYyjPwD3LyC5NvMBOOZ4xggQNMIIE -# CQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYw -# JAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAh6jrKRu -# OW98SQABAAACHjANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqG -# SIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCA7t6w3JoQQ/PWB1yju6K7o9Qu43aFr -# eP3S20PIQl33ATCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIC+BXWrz9geM -# gM8Bvn8bqxHjhHXJ29EBizITIw0B9vOCMIGYMIGApH4wfDELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUt -# U3RhbXAgUENBIDIwMTACEzMAAAIeo6ykbjlvfEkAAQAAAh4wIgQg0ymaEeiaA7Fi -# cnxeyaXHTWNRLe/9ra+NQFJxCLwVdkYwDQYJKoZIhvcNAQELBQAEggIATByx1UNI -# L12jxsaRDUF04xoPpfKoKRZy8I2VCPYtRYP2ENWkUc4KFb99XNQPh/iEaZrFlval -# +0Ty2xB9FZr+CEI6oav63ZE0vu1Mig2p5PnnsPtZOexzx3qGIl9Mivvo+xarSha6 -# oDeQap41q07nG/jkYToNN92OvGDyuzm594LPOTTVdiJzPwVVQXT9QTYdGZYqardA -# Z7WrbGupS1IfJEv/hgCCr0Pvi2wMJEfXTSxkHzHJq59bviOdLsH0Wde99SGMJZ0w -# hDehVHuFMW3aFXqyzuhC9l9LOYzuIJksHUmaTeLQlvFJHNxJKzUdiQue8Gce2nuq -# J9l/XcP29ojLcq27xi/SHMLMZGZ+7eIfE4EDL9730+HKDpw7i+7HlfFtzQr27V8b -# qCJp0Bs8NyCMzufH4HyHQi2p3YHdLEv191zHbeyWBtHGgtn9UUuisVS4a7Zbgw5K -# WyyfrXd7h11qbwJM+Cu7vnCztrBTH4w5ETDugg90F6gjWT2RdkvgSpcWdEQmCS5q -# f9FjLxW2D2OZyWyqS3RatCBuRZEmoQxWvk40dOdp/xn/Ufsi9Dzt6R687uuweTyt -# +Dn4cfc0jthfkcYAJGDuRw8jROvUGeHKV43bUfZZcneHHTzQYOMAn1TmM44ALli/ -# sxpiuFKTjC8xg03VouK4FTIsYVxo2VF455Y= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml b/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml deleted file mode 100644 index c3fa1b92760b1..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml +++ /dev/null @@ -1,124247 +0,0 @@ - - - - - Get-CsAdditionalInternalDomain - Get - CsAdditionalInternalDomain - - Returns existing additional SIP domain names present in the topology. - - - - Returns existing additional SIP domain names present in the topology. - - - - Get-CsAdditionalInternalDomain - - Filter - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to limit the returned data. - - String - - String - - - None - - - LocalStore - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsAdditionalInternalDomain - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the additional SIP domain to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to limit the returned data. - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the additional SIP domain to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsAdditionalInternalDomain -LocalStore - - Gets additional SIP domain names from LocalStore - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csadditionalinternaldomain - - - - - - Get-CsAllowedDomain - Get - CsAllowedDomain - - Returns information about the domains included on the list of domains approved for federation. After a domain has been approved for federation (by being added to the allowed list), your users can exchange instant messages and presence information with people who have accounts in that domain. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications, and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider; and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your Access Edge servers to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To set up a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list (required if EnablePartnerDiscovery has been disabled) represents the organizations you have chosen to federate with. If a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - The Get-CsAllowedDomain cmdlet provides a way for you to return information about all the domains on the allowed domains list. - - - - Get-CsAllowedDomain - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return one or more domains from the list of allowed domains. - To return all of the domains that have an Identity that begins with the letter "r", use this syntax: `-Filter r*` - To return all of the domains that have an Identity that ends with ".net", use this syntax: `-Filter "*.net"` - To return all of the domains that have an Identity that begins with the letter "r" or with the letter "g", use this syntax: `-Filter [rg]*` - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsAllowedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Name of the domain to be returned. Domains are listed on the allowed list by their fully qualified domain name (FQDN); that means that the Identity for a given domain will be similar to fabrikam.com or contoso.net. Note that you cannot use wildcards when specifying a domain Identity. To use wildcards to return a given domain (or set of domains), use the Filter parameter instead. - If this parameter is not specified, then all of the domains on the allowed domain list will be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return one or more domains from the list of allowed domains. - To return all of the domains that have an Identity that begins with the letter "r", use this syntax: `-Filter r*` - To return all of the domains that have an Identity that ends with ".net", use this syntax: `-Filter "*.net"` - To return all of the domains that have an Identity that begins with the letter "r" or with the letter "g", use this syntax: `-Filter [rg]*` - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Name of the domain to be returned. Domains are listed on the allowed list by their fully qualified domain name (FQDN); that means that the Identity for a given domain will be similar to fabrikam.com or contoso.net. Note that you cannot use wildcards when specifying a domain Identity. To use wildcards to return a given domain (or set of domains), use the Filter parameter instead. - If this parameter is not specified, then all of the domains on the allowed domain list will be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAllowedDomain - - The command shown in Example 1 returns a collection of all the domains included in the list of domains approved for federation. Calling the Get-CsAllowedDomain cmdlet without any additional parameters always returns the complete collection of approved domains. - - - - -------------------------- Example 2 -------------------------- - Get-CsAllowedDomain -Identity fabrikam.com - - Example 2 returns information about the allowed domain with the Identity "fabrikam.com". Because identities must be unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsAllowedDomain -Filter *fabrikam* - - The command shown in Example 3 returns a collection of all the allowed domains that have the string value "fabrikam" anywhere in their Identity. To do this, the command uses the Filter parameter and the filter value "\ fabrikam\ ". This filter value tells the Get-CsAllowedDomain cmdlet to return only those domains where the Identity (the only property you can filter on) includes the string value "fabrikam". Domains such as fabrikam.com, fabrikam.net, and africa.fabrikam.org will all be returned by this command. - - - - -------------------------- Example 4 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.ProxyFqdn -eq $Null} - - In Example 4, the Get-CsAllowedDomain cmdlet and the Where-Object cmdlet are used to return a collection of all the domains where no value has been entered for the ProxyFqdn property. To carry out this task, the Get-CsAllowedDomain cmdlet is first called without any additional parameters in order to return a collection of all the allowed domains. This collection is then piped to the Where-Object cmdlet, which selects only those allowed domains where the ProxyFqdn property is equal to a null value; a null value means that no value has been entered for ProxyFqdn. To find all the domains that have a value of some kind configured for the ProxyFqdn property, use this syntax instead: `Where-Object {$_.ProxyFqdn -ne $Null}`. - - - - -------------------------- Example 5 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.MarkForMonitoring -eq $True} - - Example 5 returns all the allowed domains that have their health status checked by the Monitoring Server. To do this, the Get-CsAllowedDomain cmdlet is first used to return a collection of all the domains on the allowed domains list. That collection is then piped to the Where-Object cmdlet, which picks out only those domains where the MarkForMonitoring property is equal to True. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csalloweddomain - - - New-CsAllowedDomain - - - - Remove-CsAllowedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsAllowedDomain - - - - - - - Get-CsApplicationAccessPolicy - Get - CsApplicationAccessPolicy - - Retrieves information about the application access policy configured for use in the tenant. - - - - This cmdlet retrieves information about the application access policy configured for use in the tenant. - - - - Get-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - - - - - - - ----------- Retrieve all application access policies ----------- - PS C:\> Get-CsApplicationAccessPolicy - - The command shown above returns information of all application access policies that have been configured for use in the tenant. - - - - --------- Retrieve specific application access policy --------- - PS C:\> Get-CsApplicationAccessPolicy -Identity "ASimplePolicy" - - In the command shown above, information is returned for a single application access policy: the policy with the Identity ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csapplicationaccesspolicy - - - - - - Get-CsApplicationMeetingConfiguration - Get - CsApplicationMeetingConfiguration - - Retrieves information about the application meeting configuration settings configured for the tenant. - - - - This cmdlet retrieves information about the application meeting configuration settings configured for the tenant. - - - - Get-CsApplicationMeetingConfiguration - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Get-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Teams - Enables you to use wildcards when specifying the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - LocalStore - - > Applicable: Teams - Retrieves the application meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Teams - Enables you to use wildcards when specifying the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Get-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Teams - Retrieves the application meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.PlatformApplications.ApplicationMeetingConfiguration - - - - - - - - - - - - - - Retrieve application meeting configuration settings for the tenant. - PS C:\> Get-CsApplicationMeetingConfiguration - - The command shown above returns application meeting configuration settings that have been configured for the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-CsApplicationMeetingConfiguration - - - Set-CsApplicationMeetingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationmeetingconfiguration - - - - - - Get-CsAVEdgeConfiguration - Get - CsAVEdgeConfiguration - - Returns configuration information for computers running the A/V Edge service in your organization. The configuration settings on these computers, also known as A/V Edge servers, enable internal users to share audio and video data with external users (that is, users who are not logged on to your internal network), as well as exchange files and participate in desktop sharing sessions. This cmdlet was introduced in Lync Server 2010. - - - - An A/V Edge server provides a way for audio and video traffic to be exchanged across an organization's firewall. Among other things, this enables users to use Skype for Business Server across the Internet, and then exchange audio and video data with users who have logged onto the system from inside the firewall. Edge Server configuration settings can be assigned at the global scope, the site scope, and the service scope. The A/V Edge configuration settings enable administrators to do such things as manage the amount of time that user authentication is valid before it must be renewed, and to limit the amount of bandwidth that can be used by a single user or a single port. - The Get-CsAVEdgeConfiguration cmdlet provides a way for you to retrieve information about the A/V Edge configuration settings currently in use in your organization. - - - - Get-CsAVEdgeConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters when indicating the A/V Edge configuration settings to be returned. For example, to return all the settings configured at the site scope, use this syntax: -Filter site:*. To return a collection of all the settings configured at the service, use this syntax: -Filter "service:*". - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the A/V Edge configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsAVEdgeConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of A/V Edge configuration settings to be retrieved. To retrieve the global collection, use the following syntax: -Identity global. To retrieve a site collection use syntax similar to this: -Identity site:Redmond. Settings configured at the service scope should be referred to using syntax similar to this: - `-Identity service:EdgeServer:atl-cs-001.litwareinc.com` - Note that you cannot use wildcards when specifying a policy Identity. - If this parameter is not included, the Get-CsAVEdgeConfiguration cmdlet returns a collection of all the Edge configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the A/V Edge configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters when indicating the A/V Edge configuration settings to be returned. For example, to return all the settings configured at the site scope, use this syntax: -Filter site:*. To return a collection of all the settings configured at the service, use this syntax: -Filter "service:*". - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of A/V Edge configuration settings to be retrieved. To retrieve the global collection, use the following syntax: -Identity global. To retrieve a site collection use syntax similar to this: -Identity site:Redmond. Settings configured at the service scope should be referred to using syntax similar to this: - `-Identity service:EdgeServer:atl-cs-001.litwareinc.com` - Note that you cannot use wildcards when specifying a policy Identity. - If this parameter is not included, the Get-CsAVEdgeConfiguration cmdlet returns a collection of all the Edge configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the A/V Edge configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.MediaRelaySettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAVEdgeConfiguration - - The command shown in Example 1 returns a collection of all the A/V Edge configuration settings configured for use in the organization. Calling the Get-CsAVEdgeConfiguration cmdlet without any additional parameters always returns a complete collection of A/V Edge configuration settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsAVEdgeConfiguration -Identity site:Redmond - - In Example 2 a single collection of A/V Edge configuration settings is returned: the collection that has the Identity site:Redmond. - - - - -------------------------- Example 3 -------------------------- - Get-CsAVEdgeConfiguration -Filter "site:*" - - Example 3 returns a collection of all the A/V Edge configuration settings that have been configured at the site scope. To do this, the Get-CsAVEdgeConfiguration cmdlet is called along with the Filter parameter; the filter value "site:*" limits the returned data to settings that have an Identity that begins with the characters "site:". By definition, that limits the returned data to settings configured at the site scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsAVEdgeConfiguration | Where-Object {$_.MaxBandwidthPerUserKB -gt 10000} - - In Example 4, the only A/V Edge configuration settings that are returned are those where the MaxBandwidthPerUserKB property is greater than 10,000 kilobits per second. To perform this task, the command first calls the Get-CsAVEdgeConfiguration cmdlet without any parameters; that returns a collection of all the A/V Edge configuration settings currently in use. That collection is then piped to the Where-Object cmdlet, which picks out only the settings where the MaxBandwidthPerUserKB is greater than 10000 kilobits per second. - - - - -------------------------- Example 5 -------------------------- - Get-CsAVEdgeConfiguration | Where-Object {$_.MaxBandwidthPerUserKB -eq 10000} - - Example 5 is similar to the command shown in Example 4; in Example 5, however, the only A/V Edge settings returned are those where the MaxBandwidthPerUserKB property is exactly equal to 10000 kilobits per second. - - - - -------------------------- Example 6 -------------------------- - Get-CsAVEdgeConfiguration | Where-Object {$_.MaxTokenLifetime -lt "08:00:00"} - - The command shown in Example 6 returns only the A/V Edge configuration settings where the MaxTokenLifetime property is less than 8 hours (08 hours : 00 minutes : 00 seconds). The command first calls the Get-CsAVEdgeConfiguration cmdlet without any parameters in order to return a collection of all the A/V Edge configuration settings used in the organization. This collection is then piped to the Where-Object cmdlet, which picks out only the settings where the MaxTokenLifetime is less than 8 hours (08:00:00). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csavedgeconfiguration - - - New-CsAVEdgeConfiguration - - - - Remove-CsAVEdgeConfiguration - - - - Set-CsAVEdgeConfiguration - - - - - - - Get-CsBlockedDomain - Get - CsBlockedDomain - - Returns information about the domains that are included on the list of domains blocked for federation. By definition, your users are not allowed to use Skype for Business Server applications to communicate with people from the blocked domain; for example, users cannot use Skype for Business to exchange instant messages with anyone with a Session Initiation Protocol (SIP) account in a domain on the blocked list. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications, and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider; and, 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must configure the Lync Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To set up a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with; if a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - The Get-CsBlockedDomain cmdlet enables you to return information about the domains that appear on the blocked domain list. - - - - Get-CsBlockedDomain - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return one or more domains from the list of blocked domains. To return all the domains that have an Identity that begins with the letter "r" use this syntax: -Filter r*. To return all the domains that have an Identity that ends with ".net" use this syntax: -Filter "*.net". To return all the domains that have an Identity that begins with the letter "f" or with the letter "g" use this syntax: -Filter [fg]*. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the blocked domain data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsBlockedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Name of the domain to be returned. Domains are listed on the blocked list by their fully qualified domain name (FQDN); thus the Identity for a given domain will be similar to fabrikam.com or contoso.net. Note that you cannot use wildcards when specifying a domain Identity. To use wildcards to return a given domain (or set of domains), use the Filter parameter instead. - If this parameter is not specified, then all the domains on the blocked domain list will be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the blocked domain data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return one or more domains from the list of blocked domains. To return all the domains that have an Identity that begins with the letter "r" use this syntax: -Filter r*. To return all the domains that have an Identity that ends with ".net" use this syntax: -Filter "*.net". To return all the domains that have an Identity that begins with the letter "f" or with the letter "g" use this syntax: -Filter [fg]*. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Name of the domain to be returned. Domains are listed on the blocked list by their fully qualified domain name (FQDN); thus the Identity for a given domain will be similar to fabrikam.com or contoso.net. Note that you cannot use wildcards when specifying a domain Identity. To use wildcards to return a given domain (or set of domains), use the Filter parameter instead. - If this parameter is not specified, then all the domains on the blocked domain list will be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the blocked domain data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsBlockedDomain - - The command shown in Example 1 returns a collection of all the domains included on the blocked domain list. This is done by calling the Get-CsBlockedDomain cmdlet without any additional parameters. - - - - -------------------------- Example 2 -------------------------- - - - In Example 2, the only blocked domain returned is the one with the Identity "fabrikam.com". Because domains on the blocked list must have unique identities, this command will return, at most, a single item. - - - - -------------------------- Example 3 -------------------------- - Get-CsBlockedDomain -Filter *.net - - Example 3 uses the Filter parameter to return a collection of all the blocked domains that have an identity that ends in the string value ".net". This sample command returns such domains as northwindtraders.net, contoso.net, and fabrikam.net. - - - - -------------------------- Example 4 -------------------------- - Get-CsBlockedDomain | Where-Object {$_.Comment -eq $Null} - - Example 4 returns a collection of all the domains where the Comment property has no value. To do this, the command first uses the Get-CsBlockedDomain cmdlet to return a collection of all the domains on the blocked list. This collection is then piped to the Where-Object cmdlet, which selects only those domains where the Comment property is equal to a null value. - - - - -------------------------- Example 5 -------------------------- - Get-CsBlockedDomain | Where-Object {$_.Comment -match "Ken Myer"} - - In Example 5, all the blocked domains that include the string value "Ken Myer" somewhere in the Comment property are returned. To carry out this task, the Get-CsBlockedDomain cmdlet is first called in order to return a collection of all the domains on the blocked domains list. This collection is then piped to the Where-Object cmdlet, which picks out those domains where the Comment property contains the string value "Ken Myer". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csblockeddomain - - - New-CsBlockedDomain - - - - Remove-CsBlockedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsBlockedDomain - - - - - - - Get-CsBroadcastMeetingConfiguration - Get - CsBroadcastMeetingConfiguration - - Use the Get-CsBroadcastMeetingConfiguration cmdlet to retrieve the global (and only) broadcast meeting configuration for your organization. - - - - Use the Get-CsBroadcastMeetingConfiguration cmdlet to retrieve the global (and only) broadcast meeting configuration for your organization. - To return a list of all the Role-Based Access Control (RBAC) roles a cmdlet has been assigned to (including any custom RBAC roles you have created), run the following command: - `Get-CsAdminRole | Where-Object {$_.Cmdlets -Match "<DesiredCmdletName>"}` - - - - Get-CsBroadcastMeetingConfiguration - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - ExposeSDNConfigurationJsonBlob - - > Applicable: Skype for Business Online - When set to true, the cmdlet will only return broadcast meeting configuration settings that relate to the Software Defined Network configuration. - - Boolean - - Boolean - - - None - - - Filter - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - ExposeSDNConfigurationJsonBlob - - > Applicable: Skype for Business Online - When set to true, the cmdlet will only return broadcast meeting configuration settings that relate to the Software Defined Network configuration. - - Boolean - - Boolean - - - None - - - Filter - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.BroadcastMeetingConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsBroadcastMeetingConfiguration - - This example returns the tenant's global broadcast meeting configuration. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csbroadcastmeetingconfiguration - - - - - - Get-CsBroadcastMeetingPolicy - Get - CsBroadcastMeetingPolicy - - Use the Get-CsBroadcastMeetingPolicy cmdlet to retrieve the predefined broadcast meeting policies and their settings. - - - - Broadcast meeting functionality is managed by broadcast meeting configurations at the tenant level, and broadcast meeting policies at the user level. Broadcast meeting policies are predefined in Skype for Business. The defined settings for each policy can be displayed by using the Get-CsBroadcastMeetingPolicy cmdlet with no parameters as in Example 1. The output will be similar to the listing at the end of this section. New policies can't be created, and existing policies can't be modified. They can only be granted, or assigned to users. For more information, see Grant-CsBroadcastMeetingPolicy. - Identity : Global - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : True - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyDefault - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : True - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyDisabled - AllowBroadcastMeeting : False - AllowOpenBroadcastMeeting : False - AllowSocialStreamIntegration : False - AllowBroadcastMeetingRecording : False - AllowAnonymousBroadcastMeeting : False - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyAllEnabled - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : True - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyAnonymousDisabled - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : False - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyRecordingDisabled - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : False - AllowAnonymousBroadcastMeeting : True - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyAnonymousDisabledAndRecordingNotEnforced - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : False - BroadcastMeetingRecordingEnforced : False - Identity : Tag:BroadcastMeetingPolicyAnonymousDisabledAndRecordingEnforced - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : True - AllowAnonymousBroadcastMeeting : False - BroadcastMeetingRecordingEnforced : True - Identity : Tag:BroadcastMeetingPolicyAnonymousAndRecordingDisabled - AllowBroadcastMeeting : True - AllowOpenBroadcastMeeting : True - AllowSocialStreamIntegration : True - AllowBroadcastMeetingRecording : False - AllowAnonymousBroadcastMeeting : False - BroadcastMeetingRecordingEnforced : False - - - - Get-CsBroadcastMeetingPolicy - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsBroadcastMeetingPolicy - - This example lists all the pre-defined policy configurations for your organization. See detailed description for more information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csbroadcastmeetingpolicy - - - - - - Get-CsCallingLineIdentity - Get - CsCallingLineIdentity - - Use the `Get-CsCallingLineIdentity` cmdlet to display the Caller ID policies for your organization. - - - - Use the `Get-CsCallingLineIdentity` cmdlet to display the Caller ID policies for your organization. - - - - Get-CsCallingLineIdentity - - Filter - - > Applicable: Microsoft Teams - The Filter parameter lets you insert a string through which your search results are filtered. - - String - - String - - - None - - - - Get-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - The Filter parameter lets you insert a string through which your search results are filtered. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsCallingLineIdentity - - The example gets and displays the Caller ID policies for your organization. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsCallingLineIdentity -Filter "tag:Sales*" - - The example gets and displays the Caller ID policies with Identity starting with Sales. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - - - - Get-CsCloudMeetingPolicy - Get - CsCloudMeetingPolicy - - Gets the policy for Skype Meetings that has been granted for a user. - - - - The Get-CsCloudMeetingPolicy cmdlet gets the current policy for automatic scheduling of Skype Meeting features and coordination of data. There are two polices to consider: - - AutoScheduleDisabled: If true, automatic schedule is disabled for the user. - AutoScheduleEnabled: If true, automatic schedule is enabled for the user. - - - - Get-CsCloudMeetingPolicy - - Identity - - > Applicable: Skype for Business Online - Specifies the identity of the hybrid public switched telephone network (PSTN) site. For example: - `-Identity "SeattlePSTN"` - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Skype for Business Online - @{Text=} - - String - - String - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online, you do not have to include the Tenant parameter. The tenant ID will be determined by your connection and credentials. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Skype for Business Online - @{Text=} - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Online - Specifies the identity of the hybrid public switched telephone network (PSTN) site. For example: - `-Identity "SeattlePSTN"` - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Skype for Business Online - Retrieves the information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online, you do not have to include the Tenant parameter. The tenant ID will be determined by your connection and credentials. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - - - - - - - ------------ Example 1 (Skype for Business Online) ------------ - Get-CsOnlineUser -identity "JaneCl" | fl CloudMeetingPolicy - - This example shows which policies has been granted to the user by the Set-CsCloudMeetingPolicy and Grant-CsCloudMeetingPolicy cmdlets. If the policy AutoScheduleEnabled is shown, the user is enabled for the feature. If the policy is blank or AutoScheduleDisabled, the user is not enabled for the feature. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-cscloudmeetingpolicy - - - - - - Get-CsDialInConferencingConfiguration - Get - CsDialInConferencingConfiguration - - Retrieves information about how Skype for Business Server 2015 responds when users join or leave a dial-in conference. This cmdlet was introduced in Lync Server 2010. - - - - When users join (or leave) a dial-in conference, Skype for Business Server can respond in different ways. For example, participants might be asked to record their name before they can enter the conference itself. Likewise, administrators can decide whether they want to have Skype for Business Server announce that dial-in participants have either left or joined a conference. - These conference "join behaviors" are managed using dial-in conferencing configuration settings; these settings can be configured at the global scope or at the site scope. (Settings configured at the site scope take precedence over settings configured at the global scope.) The Get-CsDialInConferencingConfiguration cmdlet enables you to retrieve information about the dial-in conferencing configuration settings currently in use in your organization. - - - - Get-CsDialInConferencingConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for you to use wildcard characters when specifying dial-in conferencing configuration settings. For example, to return a collection of all the configuration settings that have been applied at the site scope use this syntax: -Filter "site:*". To return all the settings that have the term "EMEA" in their Identity use this syntax: -Filter " EMEA ". Note that the Filter parameter acts only on the Identity of the settings; you cannot filter on other dial-in conferencing configuration properties. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial-in conferencing data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsDialInConferencingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be retrieved. To refer to the global settings, use this syntax: -Identity global. To refer to site settings, use syntax similar to this: -Identity site:Redmond. You cannot use wildcards when specifying an Identity. To do that, use the Filter parameter instead. - If called without any parameters the Get-CsDialInConferencingConfiguration cmdlet returns information about all the dial-in conferencing configuration settings in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial-in conferencing data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for you to use wildcard characters when specifying dial-in conferencing configuration settings. For example, to return a collection of all the configuration settings that have been applied at the site scope use this syntax: -Filter "site:*". To return all the settings that have the term "EMEA" in their Identity use this syntax: -Filter " EMEA ". Note that the Filter parameter acts only on the Identity of the settings; you cannot filter on other dial-in conferencing configuration properties. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be retrieved. To refer to the global settings, use this syntax: -Identity global. To refer to site settings, use syntax similar to this: -Identity site:Redmond. You cannot use wildcards when specifying an Identity. To do that, use the Filter parameter instead. - If called without any parameters the Get-CsDialInConferencingConfiguration cmdlet returns information about all the dial-in conferencing configuration settings in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial-in conferencing data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsDialInConferencingConfiguration - - Example 1 returns a collection of all the dial-in conferencing configuration settings currently in use in the organization. Calling the Get-CsDialInConferencingConfiguration cmdlet without any additional parameters always returns the complete collection of dial-in conferencing settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialInConferencingConfiguration -Identity site:Redmond - - Example 2 returns the dial-in conferencing configuration settings with the Identity site:Redmond. - - - - -------------------------- Example 3 -------------------------- - Get-CsDialInConferencingConfiguration -Filter "site:*" - - In Example 3, the Filter parameter is used to return all the dial-in conferencing settings that have been configured at the site scope. The filter value "site:*" instructs the Get-CsDialInConferencingConfiguration cmdlet to return only those settings where the Identity begins with the string value "site:". By design, any dial-conferencing settings that have an Identity beginning with "site:" represent settings configured at the site scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsDialInConferencingConfiguration | Where-Object {$_.EnableNameRecording -eq $False} - - Example 4 uses the Get-CsDialInConferencingConfiguration cmdlet and the Where-Object cmdlet to return a collection of all the dial-in conferencing configuration settings where the EnableNameRecording property is set to False. To do this, the Get-CsDialInConferencingConfiguration cmdlet is called without any parameters in order to return a collection of all the dial-in conferencing settings. That collection is then piped to the Where-Object cmdlet, which picks out only those settings where the EnableNameRecording property is equal to False. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialinconferencingconfiguration - - - New-CsDialInConferencingConfiguration - - - - Remove-CsDialInConferencingConfiguration - - - - Set-CsDialInConferencingConfiguration - - - - - - - Get-CsDialInConferencingDtmfConfiguration - Get - CsDialInConferencingDtmfConfiguration - - Returns the dual-tone multifrequency (DTMF) signaling settings used for dial-in conferencing. DTMF enables users who dial in to a conference to control conference settings (such as muting and unmuting themselves or locking and unlocking the conference) by using the keypad on their telephone. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server enables users to join conferences by dialing in over the telephone. Dial-in users are not able to view video or exchange instant messages with other conference attendees, but they are able to fully participate in the audio portion of the meeting. - In addition to being able to join a conference, users are also able to manage selected portions of that conference by using their telephone keypad. (The specific conference settings users can and cannot manage depend on whether or not the user is a presenter.) For example, by default users can press the 6 key on their keypad to mute or unmute themselves. Participants can privately play the names of all the other people attending the meeting, while presenters can do such things as mute and unmute all the meeting participants and enable/disable the announcement that is played any time someone joins or leaves a conference. - The ability to make selections using a telephone keypad is known as dual-tone multifrequency (DTMF) signaling: if you have ever dialed a phone number and been instructed to do something along the order of "Press 1 for English or press 2 for Spanish," then you have used DTMF signaling. The Get-CsDialInConferencingDtmfConfiguration cmdlet enables you to retrieve a list of all the available DTMF commands as well as the keys used to carry out those commands. - - - - Get-CsDialInConferencingDtmfConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection (or collections) of DTMF configuration settings. To return a collection of all the settings configured at the site scope, use this syntax: -Filter site:*. To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter for), use this syntax: -Filter EMEA . - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the DTMF configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsDialInConferencingDtmfConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of DTMF settings you want to return. To refer to the global settings, use this syntax: -Identity global. To refer to a collection configured at the site scope, use syntax similar to this: -Identity site:Redmond. Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards, then use the Filter parameter instead. - If this parameter is not specified, then the Get-CsDialInConferencingDtmfConfiguration cmdlet returns a collection of all the DTMF configuration settings in use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the DTMF configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection (or collections) of DTMF configuration settings. To return a collection of all the settings configured at the site scope, use this syntax: -Filter site:*. To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter for), use this syntax: -Filter EMEA . - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of DTMF settings you want to return. To refer to the global settings, use this syntax: -Identity global. To refer to a collection configured at the site scope, use syntax similar to this: -Identity site:Redmond. Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards, then use the Filter parameter instead. - If this parameter is not specified, then the Get-CsDialInConferencingDtmfConfiguration cmdlet returns a collection of all the DTMF configuration settings in use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the DTMF configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsDialInConferencingDtmfConfiguration -Identity site:Redmond - - The command show in Example 1 returns the DTMF settings for the Redmond site. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialInConferencingDtmfConfiguration | Select-Object Identity, HelpCommand - - Example 2 returns a collection of all the DTMF settings, and then, for each item in the collection, displays the value of the key to be pressed in order to privately play a description of DTMF commands. To do this, the Get-CsDialInConferencingDtmfConfiguration cmdlet is called in order to return a collection of all the property values for all the DTMF settings currently in use in the organization. That collection is then piped to the Select-Object cmdlet, which picks two properties (Identity and HelpCommand) to be displayed on the screen. - - - - -------------------------- Example 3 -------------------------- - Get-CsDialInConferencingDtmfConfiguration -Filter "site:*" - - The command shown in Example 3 returns all the DTMF settings that have been configured at the site scope. This is done by including the Filter parameter and the filter value "site:*". That filter value limits the returned data to settings that have an Identity that begins with the characters "site:". By definition, those are settings configured at the site scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsDialInConferencingDtmfConfiguration | Where-Object {$_.AdmitAll -ne 8} - - Example 4 returns all the DTMF configuration settings where the AdmitAll property is not equal to 8 (the default value). To accomplish this task, the Get-CsDialInConferencingDtmfConfiguration cmdlet is first called without any parameters in order to return a collection of all the DTMF settings currently in use. This collection is then piped to the Where-Object cmdlet, which picks out only those settings where the AdmitAll property is not equal to 8. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialinconferencingdtmfconfiguration - - - New-CsDialInConferencingDtmfConfiguration - - - - Remove-CsDialInConferencingDtmfConfiguration - - - - Set-CsDialInConferencingDtmfConfiguration - - - - - - - Get-CsDialInConferencingLanguageList - Get - CsDialInConferencingLanguageList - - Returns a list of languages, including regional/minority languages, supported for use with Skype for Business Server 2015 dial-in conferences. These languages are used to relay audio messages and instructions to users participating in a conference by using a telephone. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server enables users to join conferences by using a telephone; these dial-in users cannot view video or exchange instant messages, but they can participate fully in the audio portion of the meeting. When users connect to a conference over the phone, they first hear a welcome message and then are given instructions on how to join the meeting. (For example, depending on how the conference has been configured, they might be asked to state their name and then press the pound (#) key.) At various times Skype for Business Server might need to issue additional messages or instructions; for example, if a user presses 1 on their telephone keypad the system will read a list of all the other keypad options available to them. - Administrators can configure the language, or languages, used in a dial-in conference to relay messages and instructions. The Get-CsDialInConferencingLanguageList cmdlet returns a list of the supported languages. The list itself is returned using 5-character language codes (for example, ca-ES to indicate Catalan). - The supported language list is read-only. There is no way for you to add new languages to the list; that's because there is no way for you to add a new, supported language to dial-in conferencing. Note, too that the list of available languages is configured at the global scope; you cannot assign different lists to different sites. (However, you can assign different languages to different dial-in conferencing access numbers.) - - - - Get-CsDialInConferencingLanguageList - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters when specifying a dial-conferencing language list. Because there is only one such object (global), you can return the language list without using either the Filter or the Identity parameter. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the languages list from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsDialInConferencingLanguageList - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the dial-in conferencing language list to be returned. At this point in time there is only one such object: global. Because of this, you do not need to include this parameter when calling the Get-CsDialInConferencingLanguageList cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the languages list from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters when specifying a dial-conferencing language list. Because there is only one such object (global), you can return the language list without using either the Filter or the Identity parameter. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the dial-in conferencing language list to be returned. At this point in time there is only one such object: global. Because of this, you do not need to include this parameter when calling the Get-CsDialInConferencingLanguageList cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the languages list from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingLanguageList - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - (Get-CsDialInConferencingLanguageList).Languages -contains "en-US" - - Example 1 demonstrates how you can query the Get-CsDialInConferencingLanguageList cmdlet to see if a particular language appears in the list of supported languages. In this example, the Get-CsDialInConferencingLanguageList cmdlet is called in order to return information about all the supported languages; the Windows PowerShell operator -contains is then used to see if the language code "en-US" is contained within that list of supported languages. If it is, the Get-CsDialInConferencingLanguageList cmdlet will report back the value "True". If "en-US" cannot be found in the list of supported languages, then the cmdlet will report back the value "False". - - - - -------------------------- Example 2 -------------------------- - (Get-CsDialInConferencingLanguageList).Languages - - The command shown in Example 2 returns the complete list of supported languages. The DialInConferencingLanguageList object stores this information in the Languages property. In order to display each language on the screen, this command first uses the Get-CsDialInConferencingLanguageList cmdlet to return a collection of all the language lists and their properties. This call to the Get-CsDialInConferencingLanguageList cmdlet is enclosed in parentheses to ensure that Windows PowerShell carries out this operation before doing anything else. After the information has been returned, standard "dot notation" (the object name followed by a period followed by a property name) is used to display all the values stored in the Languages property. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialinconferencinglanguagelist - - - New-CsDialInConferencingAccessNumber - - - - Set-CsDialInConferencingAccessNumber - - - - - - - Get-CsDialPlan - Get - CsDialPlan - - Returns information about the dial plans used in your organization. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet returns information about one or more dial plans (also known as a location profiles) in an organization. Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Dial plans are also used by the Conferencing Attendant application for dial-in conferencing. A dial plan determines such things as which normalization rules are applied and whether a prefix must be dialed for external calls. - Note: You can use the Get-CsDialPlan cmdlet to retrieve specific information about the normalization rules of a dial plan, but if that's the only dial plan information you need, you can also use the Get-CsVoiceNormalizationRule cmdlet. - - - - Get-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, and for per-user scope a name, to identify the dial plan you want to retrieve. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Performs a wildcard search that allows you to narrow down your results to only dial plans with identities that match the given wildcard string. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial plan information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Performs a wildcard search that allows you to narrow down your results to only dial plans with identities that match the given wildcard string. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, and for per-user scope a name, to identify the dial plan you want to retrieve. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial plan information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsDialPlan - - Example 1 returns a collection of all the dial plans configured for use in your organization; this is done by calling the Get-CsDialPlan cmdlet without any additional parameters. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialPlan -Identity RedmondDialPlan - - In Example 2, the Identity parameter is used to limit the retrieved data to dial plans that have a per-user dial plan with the Identity RedmondDialPlan. Because identities must be unique, this command will return only the specified dial plan. - - - - -------------------------- Example 3 -------------------------- - Get-CsDialPlan -Identity site:Redmond - - Example 3 is identical to Example 2 except that instead of retrieving a per-user dial plan, we're retrieving a dial plan assigned to a site. We do that by specifying the value site: followed by the site name (in this case Redmond) of the site we want to retrieve. - - - - -------------------------- Example 4 -------------------------- - Get-CsDialPlan -Filter tag:* - - This example uses the Filter parameter to return a collection of all the dial plans that have been configured at the per-user scope. (Settings configured at the per-user, or tag, scope can be directly assigned to users and groups.) The wildcard string tag:* instructs the cmdlet to return only those dial plans that have an identity beginning with the string value tag:, which identifies a dial plan as a per-user dial plan. - - - - -------------------------- Example 5 -------------------------- - Get-CsDialPlan | Select-Object -ExpandProperty NormalizationRules - - This example displays the normalization rules used by the dial plans configured for use in your organization. Because the NormalizationRules property consists of an array of objects, the complete set of normalization rules is typically not displayed on screen. To see all of these rules, this sample command first uses the Get-CsDialPlan cmdlet to retrieve a collection of all the dial plans. That collection is then piped to the Select-Object cmdlet; in turn, the ExpandProperty parameter of the Select-Object cmdlet is used to "expand" the values found in the NormalizationRules property. Expanding the values simply means that all the normalization rules will be listed out individually on the screen, the same output that would be seen if the Get-CsVoiceNormalizationRule cmdlet had been called. - - - - -------------------------- Example 6 -------------------------- - Get-CsDialPlan | Where-Object {$_.Description -match "Redmond"} - - In Example 6, the Get-CsDialPlan cmdlet and the Where-Object cmdlet are used to retrieve a collection of all the dial plans that include the word Redmond in their description. To do this, the command first uses the Get-CsDialPlan cmdlet to retrieve all the dial plans. That collection is then piped to the Where-Object cmdlet, which applies a filter that limits the returned data to profiles that have the word Redmond somewhere in their Description. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialplan - - - New-CsDialPlan - - - - Remove-CsDialPlan - - - - Set-CsDialPlan - - - - Grant-CsDialPlan - - - - Test-CsDialPlan - - - - Get-CsVoiceNormalizationRule - - - - - - - Get-CsExternalAccessPolicy - Get - CsExternalAccessPolicy - - Returns information about the external access policies that have been configured for use in your organization. - - - - External access policies determine whether or not your users can: 1) communicate with users who have Session Initiation Protocol (SIP) accounts with a federated organization; 2) communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop); 3) access Skype for Business Server over the Internet, without having to log on to your internal network; and, 4) communicate with users who have SIP accounts with a public instant messaging (IM)provider such as Skype. - This cmdlet was introduced in Lync Server 2010. - When you first configure Skype for Business Online your users are only allowed to exchange instant messages and presence information among themselves: by default, they can only communicate with other people who have SIP accounts in your Online organization or in your Active Directory Domain Services for on-premises deployments. - For on-premises deployments, users are not allowed to access Skype for Business Server over the Internet; instead, they must be logged on to your internal network before they will be able to log on to Skype for Business Server. - That might be sufficient to meet your communication needs. If it doesn't meet your needs, you can use external access policies to extend the ability of your users to communicate and collaborate. External access policies can grant (or revoke) the ability of your users to do any or all of the following: - 1. Communicate with people who have SIP accounts with a federated organization. Note that enabling federation alone will not provide users with this capability. Instead, you must enable federation and then assign users an external access policy that gives them the right to communicate with federated users. - 2. (Microsoft Teams only) Communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). This policy setting only applies if ACS federation has been enabled at the tenant level using the cmdlet [Set-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration). - 3. Access Skype for Business Server over the Internet, without having to first log on to your internal network. This enables your users to use Skype for Business and log on to Skype for Business Server from an Internet café or other remote location. - 4. Communicate with people who have SIP accounts with a public instant messaging service such as Skype. - The Get-CsExternalAccessPolicy cmdlet provides a way for you to return information about all of the external access policies that have been configured for use in your organization. - - - - Get-CsExternalAccessPolicy - - ApplicableTo - - > Applicable: Microsoft Teams - Returns a list of the external access policies that can be assigned to the specified user. For example, to return a collection of policies that can be assigned to the user kenmyer@litwareinc.com, use this command: - `Get-CsExternalAccessPolicy -ApplicableTo "kenmyer@litwareinc.com"` - The ApplicableTo parameter is useful because it's possible that only some of the available per-user external access policies can be assigned to a given user. This is due to the fact that different licensing agreements and different country/region restrictions might limit the policies that can be assigned to a user. For example, if Ken Myer works in China, country/region restrictions might limit his access to policies A, B, D, and E, Meanwhile, similar restrictions might limit Pilar Ackerman, who works in the United States, to policies A, B, C, and F. If you call Get-CsExternalAccessPolicy without using the ApplicableTo parameter you will get back a collection of all the available policies, including any policies that can't actually be assigned to a specific user. - The ApplicableTo parameter applies only to Skype for Business Online. This parameter is not intended for use with the on-premises version of Skype for Business Server 2015. - - UserIdParameter - - UserIdParameter - - - None - - - Filter - - Below Content Applies To: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015 - Enables you to do a wildcard search for external access policies. For example, to find all the policies configured at the site scope, use this Filter: - `site:*` - To find the per-user policies Seattle, Seville, and Saskatoon (all of which start with the letter "S") use this Filter: - `"S*".` - Note that the Filter parameter can only be applied to the policy Identity. Below Content Applies To: Skype for Business Online - Enables you to do a wildcard search for external access policies. For example, to find all the policies configured at the per-user scope, use this Filter: - `"tag:*"` - To find the per-user policies Seattle, Seville, and Saskatoon (all of which start with the letter "S") use this Filter: - `"tag:S*"` - Note that the Filter parameter can only be applied to the policy Identity. - - String - - String - - - None - - - Include - - > Applicable: Microsoft Teams - PARAMVALUE: Automatic | All | SubscriptionDefaults | TenantDefinedOnly - - PolicyFilter - - PolicyFilter - - - None - - - LocalStore - - Retrieves the external access policy data from the local replica of the Central Management store rather than from the Central Management store itself. - NOTE: This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - Get-CsExternalAccessPolicy - - Identity - - Unique Identity assigned to the policy when it was created. External access policies can be assigned at the global, site, or per-user scope. To refer to the global instance use this syntax: -Identity global. To refer to a policy at the site scope, use this syntax: -Identity site:Redmond. To refer to a policy at the per-user scope, use syntax similar to this: -Identity RedmondPolicy. - Note that wildcard characters such as the asterisk (*) cannot be used with the Identity parameter. To do a wildcard search for policies, use the Filter parameter instead. - If neither the Identity nor Filter parameters are specified, then the Get-CsExternalAccessPolicy cmdlet will bring back a collection of all the external access policies configured for use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - ApplicableTo - - > Applicable: Microsoft Teams - Returns a list of the external access policies that can be assigned to the specified user. For example, to return a collection of policies that can be assigned to the user kenmyer@litwareinc.com, use this command: - `Get-CsExternalAccessPolicy -ApplicableTo "kenmyer@litwareinc.com"` - The ApplicableTo parameter is useful because it's possible that only some of the available per-user external access policies can be assigned to a given user. This is due to the fact that different licensing agreements and different country/region restrictions might limit the policies that can be assigned to a user. For example, if Ken Myer works in China, country/region restrictions might limit his access to policies A, B, D, and E, Meanwhile, similar restrictions might limit Pilar Ackerman, who works in the United States, to policies A, B, C, and F. If you call Get-CsExternalAccessPolicy without using the ApplicableTo parameter you will get back a collection of all the available policies, including any policies that can't actually be assigned to a specific user. - The ApplicableTo parameter applies only to Skype for Business Online. This parameter is not intended for use with the on-premises version of Skype for Business Server 2015. - - UserIdParameter - - UserIdParameter - - - None - - - Include - - > Applicable: Microsoft Teams - PARAMVALUE: Automatic | All | SubscriptionDefaults | TenantDefinedOnly - - PolicyFilter - - PolicyFilter - - - None - - - LocalStore - - Retrieves the external access policy data from the local replica of the Central Management store rather than from the Central Management store itself. - NOTE: This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - ApplicableTo - - > Applicable: Microsoft Teams - Returns a list of the external access policies that can be assigned to the specified user. For example, to return a collection of policies that can be assigned to the user kenmyer@litwareinc.com, use this command: - `Get-CsExternalAccessPolicy -ApplicableTo "kenmyer@litwareinc.com"` - The ApplicableTo parameter is useful because it's possible that only some of the available per-user external access policies can be assigned to a given user. This is due to the fact that different licensing agreements and different country/region restrictions might limit the policies that can be assigned to a user. For example, if Ken Myer works in China, country/region restrictions might limit his access to policies A, B, D, and E, Meanwhile, similar restrictions might limit Pilar Ackerman, who works in the United States, to policies A, B, C, and F. If you call Get-CsExternalAccessPolicy without using the ApplicableTo parameter you will get back a collection of all the available policies, including any policies that can't actually be assigned to a specific user. - The ApplicableTo parameter applies only to Skype for Business Online. This parameter is not intended for use with the on-premises version of Skype for Business Server 2015. - - UserIdParameter - - UserIdParameter - - - None - - - Filter - - Below Content Applies To: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015 - Enables you to do a wildcard search for external access policies. For example, to find all the policies configured at the site scope, use this Filter: - `site:*` - To find the per-user policies Seattle, Seville, and Saskatoon (all of which start with the letter "S") use this Filter: - `"S*".` - Note that the Filter parameter can only be applied to the policy Identity. Below Content Applies To: Skype for Business Online - Enables you to do a wildcard search for external access policies. For example, to find all the policies configured at the per-user scope, use this Filter: - `"tag:*"` - To find the per-user policies Seattle, Seville, and Saskatoon (all of which start with the letter "S") use this Filter: - `"tag:S*"` - Note that the Filter parameter can only be applied to the policy Identity. - - String - - String - - - None - - - Identity - - Unique Identity assigned to the policy when it was created. External access policies can be assigned at the global, site, or per-user scope. To refer to the global instance use this syntax: -Identity global. To refer to a policy at the site scope, use this syntax: -Identity site:Redmond. To refer to a policy at the per-user scope, use syntax similar to this: -Identity RedmondPolicy. - Note that wildcard characters such as the asterisk (*) cannot be used with the Identity parameter. To do a wildcard search for policies, use the Filter parameter instead. - If neither the Identity nor Filter parameters are specified, then the Get-CsExternalAccessPolicy cmdlet will bring back a collection of all the external access policies configured for use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - Include - - > Applicable: Microsoft Teams - PARAMVALUE: Automatic | All | SubscriptionDefaults | TenantDefinedOnly - - PolicyFilter - - PolicyFilter - - - None - - - LocalStore - - Retrieves the external access policy data from the local replica of the Central Management store rather than from the Central Management store itself. - NOTE: This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Get-CsExternalAccessPolicy - - Example 1 returns a collection of all the external access policies configured for use in your organization. Calling the Get-CsExternalAccessPolicy cmdlet without any additional parameters always returns the complete collection of external access policies. - - - - ------------ EXAMPLE 2 (Skype for Business Online) ------------ - Get-CsExternalAccessPolicy -Identity "tag:RedmondExternalAccessPolicy" - - Example 2 uses the Identity parameter to return the external access policy that has the Identity tag:RedmondExternalAccessPolicy. Because access policy Identities must be unique, this command will never return more than one item. - - - - ---------- EXAMPLE 2 (Skype for Business Server 2015) ---------- - Get-CsExternalAccessPolicy -Identity site:Redmond - - Example 2 uses the Identity parameter to return the external access policy that has the Identity site:Redmond. Because access policy Identities must be unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsExternalAccessPolicy -Filter tag:* - - The command shown in Example 3 uses the Filter parameter to return all of the external access policies that have been configured at the per-user scope; the parameter value "tag:*" limits returned data to those policies that have an Identity that begins with the string value "tag:". By definition, any policy that has an Identity beginning with "tag:" is a policy that has been configured at the per-user scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsExternalAccessPolicy | Where-Object {$_.EnableFederationAccess -eq $True} - - In Example 4, the Get-CsExternalAccessPolicy cmdlet and the Where-Object cmdlet are used to return all the external access policies that grant users federation access. To do this, the Get-CsExternalAccessPolicy cmdlet is first used to return a collection of all the external access policies currently in use in the organization. This collection is then piped to the Where-Object cmdlet, which selects only those policies where the EnableFederationAccess property is equal to True. - - - - -------------------------- Example 5 -------------------------- - Get-CsExternalAccessPolicy | Where-Object {$_.EnableFederationAccess -eq $True -and $_.EnablePublicCloudAccess -eq $True} - - The command shown in Example 5 returns the external access policies that meet two criteria: both federation access and public cloud access are allowed. In order to perform this task, the command first uses the Get-CsExternalAccessPolicy cmdlet to return a collection of all the access policies in use in the organization. That collection is then piped to the Where-Object cmdlet, which picks out only those policies that meet two criteria: the EnableFederationAccess property must be equal to True and the EnablePublicCloudAccess property must also be equal to True. Only policies in which both EnableFederationAccess and EnablePublicCloudAccess are True will be returned and displayed on the screen. - - - - -------------------------- EXAMPLE 6 -------------------------- - Get-CsExternalAccessPolicy -ApplicableTo "kenmyer@litwareinc.com" - - In Example 6, the ApplicableTo parameter is used to return only the policies that can be assigned to the user "kenmyer@litwareinc.com". - NOTE: The ApplicableTo parameter can only be used with Skype for Business Online; that's because, with Skype for Business Online, there might be policies that cannot be assigned to certain users due to licensing and/or country/region restrictions. - NOTE: This command requires the Office 365 UsageLocation property to be configured for the user's Active Directory user account. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Remove-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - - - - Get-CsHostedVoicemailPolicy - Get - CsHostedVoicemailPolicy - - Retrieves a hosted voice mail policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet retrieves a policy that specifies how to route unanswered calls to a user to a hosted Exchange Unified Messaging (UM) service. - A user must be enabled for Exchange UM hosted voice mail for this policy to take effect. You can call the Get-CsUser cmdlet and check the HostedVoiceMail property to determine whether a user is enabled for hosted voice mail. (A value of True means the user is enabled.) - - - - Get-CsHostedVoicemailPolicy - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter allows you to do a wildcard search on the Identity of the hosted voice mail policy. This will retrieve all instances of a hosted voice mail policy where the Identity matches the wildcard pattern specified in the Filter value. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the hosted voice mail policy from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsHostedVoicemailPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier for the hosted voice mail policy you want to retrieve. The Identity includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the hosted voice mail policy from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter allows you to do a wildcard search on the Identity of the hosted voice mail policy. This will retrieve all instances of a hosted voice mail policy where the Identity matches the wildcard pattern specified in the Filter value. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier for the hosted voice mail policy you want to retrieve. The Identity includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the hosted voice mail policy from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsHostedVoicemailPolicy - - This command returns all defined hosted voice mail policies for the Skype for Business Server 2015 implementation. - - - - -------------------------- Example 2 -------------------------- - Get-CsHostedVoicemailPolicy -Identity ExRedmond - - This command returns the policy settings for the per-user hosted voice mail policy ExRedmond. - - - - -------------------------- Example 3 -------------------------- - Get-CsHostedVoicemailPolicy -Filter tag:* - - This command returns the policy settings for all per-user hosted voice mail policies (policies beginning with the tag scope). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-cshostedvoicemailpolicy - - - New-CsHostedVoicemailPolicy - - - - Remove-CsHostedVoicemailPolicy - - - - Set-CsHostedVoicemailPolicy - - - - Grant-CsHostedVoicemailPolicy - - - - - - - Get-CsInboundBlockedNumberPattern - Get - CsInboundBlockedNumberPattern - - Returns a list of all blocked number patterns added to the tenant list. - - - - This cmdlet returns a list of all blocked number patterns added to the tenant list including Name, Description, Enabled (True/False), and Pattern for each. - - - - Get-CsInboundBlockedNumberPattern - - Filter - - Enables you to limit the returned data by filtering on the Identity. - - String - - String - - - None - - - - Get-CsInboundBlockedNumberPattern - - Identity - - Indicates the Identity of the blocked number patterns to return. - - String - - String - - - None - - - - - - Filter - - Enables you to limit the returned data by filtering on the Identity. - - String - - String - - - None - - - Identity - - Indicates the Identity of the blocked number patterns to return. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Get-CsInboundBlockedNumberPattern - - In this example, the Get-CsInboundBlockedNumberPattern cmdlet is called without any parameters in order to return all the blocked number patterns. - - - - -------------------------- Example 2 -------------------------- - PS> Get-CsInboundBlockedNumberPattern -Filter Block* - - In this example, the Get-CsInboundBlockedNumberPattern cmdlet will return all the blocked number patterns which identity starts with Block. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - Get-CsInboundExemptNumberPattern - Get - CsInboundExemptNumberPattern - - Returns a specific or the full list of all number patterns exempt from call blocking. - - - - This cmdlet returns a specific or all exempt number patterns added to the tenant list for call blocking including Name, Description, Enabled (True/False), and Pattern for each. - - - - Get-CsInboundExemptNumberPattern - - Filter - - Enables you to limit the returned data by filtering on Identity. - - String - - String - - - None - - - - Get-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - - - - Filter - - Enables you to limit the returned data by filtering on Identity. - - String - - String - - - None - - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your call block and exempt phone number ranges. - - - - - -------------------------- Example 1 -------------------------- - PS>Get-CsInboundExemptNumberPattern - - This returns all exempt number patterns. - - - - -------------------------- Example 2 -------------------------- - PS>Get-CsInboundExemptNumberPattern -Identity "Exempt1" - - This returns the exempt number patterns with Identity Exempt1. - - - - -------------------------- Example 3 -------------------------- - PS>Get-CsInboundExemptNumberPattern -Filter "Exempt*" - - This example returns the exempt number patterns with Identity starting with Exempt. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Get-CsLocationPolicy - Get - CsLocationPolicy - - Returns information about how (or if) the Enhanced 9-1-1 (E9-1-1) Location Information service has been configured. The E9-1-1 service enables those who answer emergency calls to determine the caller's geographic location. This cmdlet was introduced in Lync Server 2010. - - - - The location policy is used to apply settings that relate to E9-1-1 functionality. The location policy determines whether a user is enabled for E9-1-1, and if so what the behavior is of an emergency call. For example, you can use the location policy to define what number constitutes an emergency call (911 in the United States), whether corporate security should be automatically notified, how the call should be routed, and so on. This cmdlet retrieves one or more location policies. - - - - Get-CsLocationPolicy - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string containing wildcard characters that will retrieve location policies based on matching the Identity value of the policy to the wildcard string. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the location policy information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose location policies are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - Get-CsLocationPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to retrieve. To retrieve the global location policy, use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the location policy information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose location policies are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string containing wildcard characters that will retrieve location policies based on matching the Identity value of the policy to the wildcard string. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to retrieve. To retrieve the global location policy, use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the location policy information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose location policies are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsLocationPolicy - - Example 1 returns a collection of all the location policies currently in use in your organization. This is done simply by calling the Get-CsLocationPolicy cmdlet without any parameters. - - - - -------------------------- Example 2 -------------------------- - Get-CsLocationPolicy -Identity Reno - - The command shown in Example 2 returns only those location policies that have an Identity equal to Reno. Because identities must be unique, this command will only return, at most, one location policy. - - - - -------------------------- Example 3 -------------------------- - Get-CsLocationPolicy -Filter tag:* - - Example 3 uses the Filter parameter to return all the location policies that have been configured at the per-use scope. (Policies configured at the per-user scope can be directly assigned to users and network sites.) The wildcard string tag:* tells the Get-CsLocationPolicy cmdlet that the returned data should be limited to those location policies that have an Identity that begins with the string value tag:. Even though you don't need to specify the tag: prefix when retrieving an individual policy, you can use that prefix to filter on all per-user policies. - - - - -------------------------- Example 4 -------------------------- - Get-CsLocationPolicy | Where-Object {$_.EnhancedEmergencyServicesEnabled -eq $False} - - Example 4 returns a collection of all the location policies where enhanced emergency services are disabled. To do this, the command first uses the Get-CsLocationPolicy cmdlet to return a collection of all the location policies currently in use in the organization. That collection is then piped to the Where-Object cmdlet; in turn, the Where-Object cmdlet applies a filter that limits the returned data to those policies where the EnhancedEmergencyServicesEnabled property is equal to (-eq) False ($False). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-cslocationpolicy - - - New-CsLocationPolicy - - - - Remove-CsLocationPolicy - - - - Set-CsLocationPolicy - - - - Grant-CsLocationPolicy - - - - Test-CsLocationPolicy - - - - - - - Get-CsMeetingConfiguration - Get - CsMeetingConfiguration - - The Get-CsMeetingConfiguration cmdlet enables you to return information about the meeting configuration settings currently in use in your organization. Meeting configuration settings help dictate the type of meetings (also called "conferences") that users can create, and determine such things as how (or even if) anonymous users and dial-in conferencing users can join these meetings. This cmdlet was introduced in Lync Server 2010. - - - - Meetings (also called "conferences") are an integral part of Skype for Business. The CsMeetingConfiguration cmdlets enable administrators to control the type of meetings that users can create, and determine how meetings handle anonymous users and dial-in conferencing users. For example, you can configure meetings so that anyone dialing in over the public switched telephone network (PSTN) is automatically admitted to the meeting. Alternatively, you can configure meetings so that dial-in users are not automatically admitted the meeting, but are instead routed to the meeting lobby. These dial-in users remain on hold in the lobby until a presenter admits them to the meeting. - When used in on-premises environments, the Get-CsMeetingConfiguration cmdlet enables you to return information about the meeting configuration setting collections currently in use in your organization. - - - - Get-CsMeetingConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection of meeting configuration settings. Because each tenant is limited to a single, global collection of meeting configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsMeetingConfiguration cmdlet: - `Get-CsMeetingConfiguration " -Filter "g*"` - This parameter can be used as follows when using Skype for Business Server (on-premises). - To return a collection of all the settings configured at the site scope, use this syntax: `-Filter site:*` To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter on) use this syntax: `-Filter EMEA ` - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose meeting configuration settings are to be retrieved. - For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - Get-CsMeetingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the collection of meeting configuration settings to be returned. Because each tenant is limited to a single, global collection of meeting configuration settings there is no need include this parameter when calling the Get-CsMeetingConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter for Online environments. For example: - `Get-CsMeetingConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - This parameter can be used as follows when using Skype for Business Server (on-premises). To refer to the global settings, use this syntax: `-Identity global` - To refer to a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond` - Settings configured at the service scope can be retrieved using syntax like this: `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is not specified, then the Get-CsMeetingConfiguration cmdlet will return a collection of all the meeting settings in use in the organization. - Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards, then include the Filter parameter instead. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose meeting configuration settings are to be retrieved. - For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection of meeting configuration settings. Because each tenant is limited to a single, global collection of meeting configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsMeetingConfiguration cmdlet: - `Get-CsMeetingConfiguration " -Filter "g*"` - This parameter can be used as follows when using Skype for Business Server (on-premises). - To return a collection of all the settings configured at the site scope, use this syntax: `-Filter site:*` To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter on) use this syntax: `-Filter EMEA ` - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the collection of meeting configuration settings to be returned. Because each tenant is limited to a single, global collection of meeting configuration settings there is no need include this parameter when calling the Get-CsMeetingConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter for Online environments. For example: - `Get-CsMeetingConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - This parameter can be used as follows when using Skype for Business Server (on-premises). To refer to the global settings, use this syntax: `-Identity global` - To refer to a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond` - Settings configured at the service scope can be retrieved using syntax like this: `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is not specified, then the Get-CsMeetingConfiguration cmdlet will return a collection of all the meeting settings in use in the organization. - Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards, then include the Filter parameter instead. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose meeting configuration settings are to be retrieved. - For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.MeetingConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMeetingConfiguration - - The command shown in Example 1 returns a collection of all the meeting configuration settings currently in use in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsMeetingConfiguration -Identity site:Redmond - - In Example 2, only one collection of meeting configuration settings is returned: the settings that have the Identity site:Redmond. - - - - -------------------------- Example 3 -------------------------- - Get-CsMeetingConfiguration -Filter "service:*" - - Example 3 returns all the meeting configuration settings that have been configured at the service scope. This is done by including the Filter parameter and the filter value "service:*", which limits returned data to settings where the Identity property begins with the characters "service:". - - - - -------------------------- Example 4 -------------------------- - Get-CsMeetingConfiguration | Where-Object {$_.AdmitAnonymousUsersByDefault -eq $True} - - In Example 4, information is returned for all the meeting configuration settings where anonymous users are admitted by default. To accomplish this task, the command first uses the Get-CsMeetingConfiguration cmdlet without any parameters to return a collection of all the meeting configuration settings currently in use. That collection is then piped to the Where-Object cmdlet, which selects only those settings where the AdmitAnonymousUsersByDefault property is equal to True. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csmeetingconfiguration - - - New-CsMeetingConfiguration - - - - Remove-CsMeetingConfiguration - - - - Set-CsMeetingConfiguration - - - - - - - Get-CsOnlineAudioConferencingRoutingPolicy - Get - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet retrieves all online audio conferencing routing policies for the tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineAudioConferencingRoutingPolicy - - Retrieves all Online Audio Conferencing Routing Policy instances - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Get-CsOnlineDialinConferencingPolicy - Get - CsOnlineDialinConferencingPolicy - - Retrieves the available Dial-in Conferencing policies in the tenant. - - - - Retrieves the available Dial-in Conferencing policies in the tenant. - - - - Get-CsOnlineDialinConferencingPolicy - - Identity - - > Applicable: Microsoft Teams - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Reserved for Microsoft Internal use. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Reserved for Microsoft Internal use. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialinConferencingPolicy - - This example retrieves all the available Dial in Conferencing policies in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingpolicy - - - - - - Get-CsOnlineDialinConferencingTenantConfiguration - Get - CsOnlineDialinConferencingTenantConfiguration - - Use the Get-CsOnlineDialinConferencingTenantConfiguration cmdlet to retrieve the tenant level configuration for dial-in conferencing. - - - - The dial-in conferencing configuration specifies only if dial-in conferencing is enabled for the tenant. By contrast, the dial-in conferencing tenant settings specify what functions are available during a conference call. For example, whether or not entries and exits from the call are announced. The settings also manage some of the administrative functions, such as when users get notification of administrative actions, like a PIN change. For more information on settings and their customization, see Set-CsOnlineDialInConferencingTenantSettings. - This cmdlet currently displays only the enabled or disabled status of your tenant configuration. There is one configuration per tenant. - - - - Get-CsOnlineDialinConferencingTenantConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the configuration from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the configuration from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.OnLineDialInConferencing.OnLineDialInConferencingTenantConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialinConferencingTenantConfiguration - - This example returns the configuration for the tenant administrator's organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantconfiguration - - - - - - Get-CsOnlineDialInConferencingTenantSettings - Get - CsOnlineDialInConferencingTenantSettings - - Use the Get-CsOnlineDialInConferencingTenantSettings cmdlet to retrieve tenant level settings for dial-in conferencing. - - - - - - - - Get-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the settings from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the settings from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.OnLineDialInConferencing.OnLineDialInConferencingTenantSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialInConferencingTenantSettings - - This example returns the global setting for the tenant administrator's organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantsettings - - - - - - Get-CsOnlineDialOutPolicy - Get - CsOnlineDialOutPolicy - - Use the `Get-CsOnlineDialOutPolicy` cmdlet to get all the available outbound calling restriction policies in your organization. - - - - In Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization. The policies apply to all the different PSTN connectivity options for Microsoft Teams; Calling Plan, Direct Routing, and Operator Connect. - To get all the available policies in your organization run `Get-CsOnlineDialOutPolicy`. To assign one of these policies to a user run `Grant-CsDialoutPolicy`. - - - - Get-CsOnlineDialOutPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - Get-CsOnlineDialOutPolicy - - Identity - - Unique identifier of the outbound calling restriction policy to be returned. To refer to the global policy, use this syntax: "-Identity Global". To refer to a per-user policy, use syntax similar to this: -Identity DialoutCPCandPSTNDisabled. - If this parameter is omitted, then all the outbound calling restriction policies configured for use in your tenant will be returned. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Unique identifier of the outbound calling restriction policy to be returned. To refer to the global policy, use this syntax: "-Identity Global". To refer to a per-user policy, use syntax similar to this: -Identity DialoutCPCandPSTNDisabled. - If this parameter is omitted, then all the outbound calling restriction policies configured for use in your tenant will be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialOutPolicy - - In Example 1, `Get-CsOnlineDialOutPolicy` is called without any additional parameters; this returns a collection of all the outbound calling restriction policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineDialOutPolicy -Identity DialoutCPCandPSTNDisabled - - In Example 2, `Get-CsOnlineDialOutPolicy` is used to return the per-user outbound calling restriction policy that has an Identity DialoutCPCandPSTNDisabled. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialoutpolicy - - - Grant-CsDialoutPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csdialoutpolicy - - - - - - Get-CsOnlinePstnUsage - Get - CsOnlinePstnUsage - - Returns information about online public switched telephone network (PSTN) usage records used in your tenant. - - - - Online PSTN usages are string values that are used for call authorization. An online PSTN usage links an online voice policy to a route. The `Get-CsOnlinePstnUsage` cmdlet retrieves the list of all online PSTN usages available within a tenant. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Get-CsOnlinePstnUsage - - Filter - - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - - Get-CsOnlinePstnUsage - - Identity - - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - Identity - - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CSOnlinePSTNUsage - - This command returns the list of global PSTN usages available within the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstnusage - - - Set-CsOnlinePstnUsage - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstnusage - - - - - - Get-CsOnlineVoicemailPolicy - Get - CsOnlineVoicemailPolicy - - Use the `Get-CsOnlineVoicemailPolicy` cmdlet to get a list of all pre-configured policy instances related to Cloud Voicemail service. - - - - This cmdlet retrieves information about one or more voicemail policies that have been configured for use in your organization. Voicemail policies are used by the organization to manage Voicemail-related features such as transcription. - - - - Get-CsOnlineVoicemailPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. If this parameter is omitted, all voicemail policies available for use are returned. - - String - - String - - - None - - - Filter - - This parameter accepts a wildcard string and returns all voicemail policies with identities matching that string. For example, a Filter value of Tag:* will return all preconfigured voicemail policy instances (excluding forest default "Global") available to use by the tenant admins. - - String - - String - - - None - - - - - - Filter - - This parameter accepts a wildcard string and returns all voicemail policies with identities matching that string. For example, a Filter value of Tag:* will return all preconfigured voicemail policy instances (excluding forest default "Global") available to use by the tenant admins. - - String - - String - - - None - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. If this parameter is omitted, all voicemail policies available for use are returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.OnlineVoicemail.OnlineVoicemailPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineVoicemailPolicy - - In Example 1, the Get-CsOnlineVoicemailPolicy cmdlet is called without any additional parameters; this returns a collection of all the voicemail policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineVoicemailPolicy -Identity TranscriptionDisabled - - In Example 2, the Get-CsOnlineVoicemailPolicy cmdlet is used to return the per-user voicemail policy that has an Identity TranscriptionDisabled. Because identities are unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineVoicemailPolicy -Filter "tag:*" - - Example 3 uses the Filter parameter to return all the voicemail policies that have been configured at the per-user scope. The filter value "tag:*" tells the Get-CsOnlineVoicemailPolicy cmdlet to return only those policies that have an Identity that begins with the string value "tag:". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - Set-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - New-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Remove-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - Grant-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - - - - Get-CsOnlineVoiceRoute - Get - CsOnlineVoiceRoute - - Returns information about the online voice routes configured for use in your tenant. - - - - Use this cmdlet to retrieve one or more existing online voice routes in your tenant. Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - This cmdlet can be used to retrieve voice route information such as which online PSTN gateways the route is associated with (if any), which online PSTN usages are associated with the route, the pattern (in the form of a regular expression) that identifies the phone numbers to which the route applies, and caller ID settings. The PSTN usage associates the voice route to an online voice policy. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Get-CsOnlineVoiceRoute - - Filter - - This parameter filters the results of the Get operation based on the wildcard value passed to this parameter. - - String - - String - - - None - - - - Get-CsOnlineVoiceRoute - - Identity - - A string that uniquely identifies the voice route. If no identity is provided, all voice routes for the organization are returned. - - String - - String - - - None - - - - - - Filter - - This parameter filters the results of the Get operation based on the wildcard value passed to this parameter. - - String - - String - - - None - - - Identity - - A string that uniquely identifies the voice route. If no identity is provided, all voice routes for the organization are returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute - - Retrieves the properties for all voice routes defined within the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute -Identity Route1 - - Retrieves the properties for the Route1 voice route. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute -Filter *test* - - This command displays voice route settings where the Identity contains the string "test" anywhere within the value. To find the string test only at the end of the Identity, use the value \ test. Similarly, to find the string test only if it occurs at the beginning of the Identity, specify the value test\ . - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute | Where-Object {$_.OnlinePstnGatewayList.Count -eq 0} - - This command retrieves all voice routes that have not had any PSTN gateways assigned. First all voice routes are retrieved using the Get-CsOnlineVoiceRoute cmdlet. These voice routes are then piped to the Where-Object cmdlet. The Where-Object cmdlet narrows down the results of the Get operation. In this case we look at each voice route (that's what the $_ represents) and check the Count property of the PstnGatewayList property. If the count of PSTN gateways is 0, the list is empty and no gateways have been defined for the route. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - Get-CsOnlineVoiceRoutingPolicy - Get - CsOnlineVoiceRoutingPolicy - - Returns information about the online voice routing policies configured for use in your tenant. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Get-CsOnlineVoiceRoutingPolicy - - Filter - - Enables you to use wildcards when retrieving one or more online voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - - Get-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier of the online voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then `Get-CsOnlineVoiceRoutingPolicy` returns all the voice routing policies configured for use in the tenant. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more online voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the online voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then `Get-CsOnlineVoiceRoutingPolicy` returns all the voice routing policies configured for use in the tenant. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy - - The command shown in Example 1 returns information for all the online voice routing policies configured for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" - - In Example 2, information is returned for a single online voice routing policy: the policy with the Identity RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Filter "tag:*" - - The command shown in Example 3 returns information about all the online voice routing policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "tag:". - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Long Distance"} - - In Example 4, information is returned only for those online voice routing policies that include the PSTN usage "Long Distance". To carry out this task, the command first calls `Get-CsVoiceRoutingPolicy` without any parameters; that returns a collection of all the voice routing policies configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the usage "Long Distance". - - - - -------------------------- Example 5 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -notcontains "Long Distance"} - - Example 5 is a variation on the command shown in Example 4; in this case, however, information is returned only for those online voice routing policies that do not include the PSTN usage "Long Distance". In order to do that, the Where-Object cmdlet uses the -notcontains operator, which limits returned data to policies that do not include the usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Get-CsPresenceProvider - Get - CsPresenceProvider - - Returns information about the presence providers configured for use in the organization. Presence providers represent the PresenceProviders property of a collection of user services configuration settings. This cmdlet was introduced in Lync Server 2013. - - - - The CsPresenceProvider cmdlets are used to manage the PresenceProviders property found in the User Services configuration settings. Among other things, these settings are used to maintain presence information, including a collection of authorized presence providers. That collection is stored in the PresenceProviders property. The Get-CsPresenceProvider cmdlet provides a way for you to return information about the presence providers that have been authorized for use in your organization. - The functions carried out by the Get-CsPresenceProvider cmdlet are not available in the Skype for Business Server Control Panel. - - - - Get-CsPresenceProvider - - Filter - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when specifying the Identity of the presence provider (or providers) to be returned. For example, to return all the presence providers configured at the service scope use this filter value: - `-Filter "service:*"` - You cannot use both the Filter parameter and the Identity parameter in the same command. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsPresenceProvider - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the presence provider. The Identity of a presence provider is composed of two parts: the scope (Parent) where the provider has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider's fully qualified domain name. For example, to retrieve a single presence provider use syntax similar to this: - `-Identity "global/fabrikam.com"` - To return all the presence providers for a specific parent, simply specify the scope. For example, this syntax returns all the presence providers configured for the global scope: - `-Identity "global"` - If neither the Identity nor the Filter parameters are included, then the Get-CsPresenceProvider cmdlet returns information about all your providers. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when specifying the Identity of the presence provider (or providers) to be returned. For example, to return all the presence providers configured at the service scope use this filter value: - `-Filter "service:*"` - You cannot use both the Filter parameter and the Identity parameter in the same command. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the presence provider. The Identity of a presence provider is composed of two parts: the scope (Parent) where the provider has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider's fully qualified domain name. For example, to retrieve a single presence provider use syntax similar to this: - `-Identity "global/fabrikam.com"` - To return all the presence providers for a specific parent, simply specify the scope. For example, this syntax returns all the presence providers configured for the global scope: - `-Identity "global"` - If neither the Identity nor the Filter parameters are included, then the Get-CsPresenceProvider cmdlet returns information about all your providers. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the allowed domains from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsPresenceProvider - - The command shown in Example 1 returns information about all the presence providers configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsPresenceProvider -Identity "global/fabrikam.com" - - Example 2 returns information about a single presence provider: the provider with the Identity global/fabrikam.com. - - - - -------------------------- Example 3 -------------------------- - Get-CsPresenceProvider -Filter "site:*" - - In Example 3, information is returned for all the presence providers configured at the site scope. To do this, the Filter parameter is used along with the filter value "site:*". That filter value limits returned data to presence providers that have an Identity that begins with the string value "site:". - - - - -------------------------- Example 4 -------------------------- - Get-CsPresenceProvider | Where-Object {$_.Fqdn -match "fabrikam.com"} - - Example 4 returns all the presence providers that have the string value "fabrikam.com" somewhere in their Fqdn property. To carry out this task, the command first uses the Get-CsPresenceProvider cmdlet to return a collection of all the presence providers configured for use in the organization. That collection is then piped to the Where-Object cmdlet, which picks out only those providers where the Fqdn property includes (-match) the string value "fabrikam.com". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-cspresenceprovider - - - Get-CsUserServicesConfiguration - - - - New-CsPresenceProvider - - - - Remove-CsPresenceProvider - - - - Set-CsPresenceProvider - - - - - - - Get-CsPrivacyConfiguration - Get - CsPrivacyConfiguration - - Returns information about the privacy configuration settings currently in use in your organization. Privacy configuration settings help determine how much information users make available to other users. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server gives users the opportunity to share a wealth of presence information with other people: they can publish a photograph of themselves; they can provide detailed location information; they can have presence information automatically made available to everyone in the organization (as opposed to having this information available only to people on their Contacts list). - Some users will welcome the opportunity to make this information available to their colleagues; other users might be more reluctant to share this data. (For example, many people might be hesitant about having their photo included in their presence data.) As a general rule, users have control over what information they will (or will not) share; for example, users can select or clear a check box in order to control whether or not their location information is shared with others. In addition, the privacy configuration cmdlets enable administrators to manage privacy settings for their users. In some cases, administrators can enable or disable settings; for example, if the property AutoInitiateContacts is set to True, then team members will automatically be added to each user's Contacts list; if set to False, team members will not be automatically be added to each user's Contacts list. - In other cases, administrators can configure the default values in Skype for Business Server while still giving users the right to change these values. For example, by default location data is published for users, although users do have the right to stop location publication. By setting the PublishLocationDataByDefault property to False, administrators can change this behavior: in that case, location data will not be published by default, although users will still have the right to publish this data if they choose. - Privacy configuration settings can be applied at the global scope, the site scope, and at the service scope (albeit only for the User Server service). The Get-CsPrivacyConfiguration cmdlet enables you to retrieve information about all the privacy configuration settings currently in use in your organization. - - - - Get-CsPrivacyConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the privacy configuration settings to be retrieved. To return the global settings, use this syntax: - `-Identity global` - To return settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is not specified then the Get-CsPrivacyConfiguration cmdlet returns all the privacy configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards to return one or more collections of privacy configuration settings. For example, to return all the settings configured at the site scope, you can use this syntax: - `-Filter "site:*"` - To return all the settings configured at the service scope, use this syntax: - `-Filter "service:*"` - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the privacy configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose privacy configuration settings are to be retrieved. - For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards to return one or more collections of privacy configuration settings. For example, to return all the settings configured at the site scope, you can use this syntax: - `-Filter "site:*"` - To return all the settings configured at the service scope, use this syntax: - `-Filter "service:*"` - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the privacy configuration settings to be retrieved. To return the global settings, use this syntax: - `-Identity global` - To return settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is not specified then the Get-CsPrivacyConfiguration cmdlet returns all the privacy configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the privacy configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose privacy configuration settings are to be retrieved. - For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PrivacyConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsPrivacyConfiguration - - The command shown in Example 1 returns all the privacy configuration settings currently in use in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsPrivacyConfiguration -Identity site:Redmond - - Example 2 returns a single collection of privacy configuration settings: the settings that have the Identity site:Redmond. - - - - -------------------------- Example 3 -------------------------- - Get-CsPrivacyConfiguration -Filter "site:*" - - In Example 3, information is returned for all the privacy configuration settings that have been assigned to the site scope. To do this, the Filter parameter is included, along with the filter value "site:*". That filter value ensures that only settings where the Identity (the only property you can filter on) begins with the characters "site:". - - - - -------------------------- Example 4 -------------------------- - Get-CsPrivacyConfiguration | Where-Object {$_.EnablePrivacyMode -eq $True} - - The command shown in Example 4 returns information about all the privacy configuration settings where privacy mode has been enabled. This is done by first calling the Get-CsPrivacyConfiguration cmdlet without any parameters in order to return a collection of all the privacy settings. This collection is then piped to the Where-Object cmdlet, which picks out only those settings where the EnablePrivacyMode property is equal to True. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csprivacyconfiguration - - - New-CsPrivacyConfiguration - - - - Remove-CsPrivacyConfiguration - - - - Set-CsPrivacyConfiguration - - - - - - - Get-CsPstnUsage - Get - CsPstnUsage - - Returns information about public switched telephone network (PSTN) usage records used in your organization. This cmdlet was introduced in Lync Server 2010. - - - - PSTN usages are string values that are used for call authorization. A PSTN usage links a voice policy to a route. The Get-CsPstnUsage cmdlet retrieves the list of all PSTN usages available within an organization. - Who can run this cmdlet: By default, members of the following groups are authorized to run the Get-CsPstnUsage cmdlet locally: RTCUniversalUserAdmins, RTCUniversalServerAdmins. To return a list of all the role-based access control (RBAC) roles this cmdlet has been assigned to (including any custom RBAC roles you have created yourself), run the following command from the Windows PowerShell prompt: - Get-CsAdminRole | Where-Object {$_.Cmdlets -match "Get-CsPstnUsage"} - - - - Get-CsPstnUsage - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the PSTN usage information from the local data store rather than the main Central Management store. - - - SwitchParameter - - - False - - - - Get-CsPstnUsage - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the PSTN usage information from the local data store rather than the main Central Management store. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the PSTN usage information from the local data store rather than the main Central Management store. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.PSTNUsages - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsPstnUsage - - This command returns the list of global PSTN usages available within the organization. - - - - -------------------------- Example 2 -------------------------- - (Get-CsPstnUsage).Usage - - The command in this example returns a list of all defined PSTN usages, with one usage listed on each line of output. Calling the Get-CsPstnUsage cmdlet by itself returns the Identity and the Usage list. If the Usage list contains more than three or four entries, the list will be abbreviated in the output, similar to this: - Usage : {Internal, Local, Long Distance, International...} - Use the command in this example to display only a list of usages. The output will be similar to this: - Internal - Local - Long Distance - International - Restricted - - - - -------------------------- Example 3 -------------------------- - (Get-CsPstnUsage).Usage | ForEach-Object {if ($_ -like "*tern*") {$_}} - - This command returns all the PSTN usage names that have the string "tern" somewhere within the name. For example, this command will return "Internal" and "International" but not "Local" or "Long Distance". - The first part of this command is the Get-CsPstnUsage cmdlet within parentheses, which means the first thing that happens is for all the PSTN usages to be retrieved. The .Usage property returns only the usage information for the PSTN usages, not the Identity. This list of usages is then piped to the ForEach-Object cmdlet, which looks at the usage strings one at a time. The If statement compares the current usage string to the string " tern " (the * are wildcards) and displays any occurrence that matches that pattern. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-cspstnusage - - - Set-CsPstnUsage - - - - Get-CsVoicePolicy - - - - Get-CsVoiceRoute - - - - - - - Get-CsTeamsAcsFederationConfiguration - Get - CsTeamsAcsFederationConfiguration - - This cmdlet is used to retrieve the federation configuration between Teams and Azure Communication Services. - - - - Federation between Teams and Azure Communication Services (ACS) allows users of custom solutions built with ACS to connect and communicate with Teams users over voice, video, Teams users over voice, video and screen sharing, and more. For more information, see Teams interoperability (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). - This cmdlet is used retrieve the Teams and ACS federation configuration for a Teams tenant. - You must be a Teams service admin or a Teams communication admin for your organization to run the cmdlet. - - - - Get-CsTeamsAcsFederationConfiguration - - Filter - - Enables you to use wildcards when specifying the Teams and ACS federation configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - - Get-CsTeamsAcsFederationConfiguration - - Identity - - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcards when specifying the Teams and ACS federation configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - Identity - - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsAcsFederationConfiguration - -Identity : Global -AllowedAcsResources : {'faced04c-2ced-433d-90db-063e424b87b1'} -EnableAcsUsers : True - - In this example, federation has been enabled for just one ACS resource. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsAcsFederationConfiguration - -Identity : Global -AllowedAcsResources : {} -EnableAcsUsers : False - - In this example, federation is disabled for all ACS resources. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsacsfederationconfiguration - - - Set-CsTeamsAcsFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - - - - Get-CsTeamsAIPolicy - Get - CsTeamsAIPolicy - - This cmdlet retrieves all Teams AI policies for the tenant. - - - - The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs. - This cmdlet retrieves all Teams AI policies for the tenant. - - - - Get-CsTeamsAIPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsAIPolicy - - Retrieves Teams AI policies and shows "EnrollFace", "EnrollVoice" and "SpeakerAttributionBYOD" values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsAIPolicy - - - New-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaipolicy - - - Remove-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaipolicy - - - Set-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaipolicy - - - Grant-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaipolicy - - - - - - Get-CsTeamsAppPermissionPolicy - Get - CsTeamsAppPermissionPolicy - - As an admin, you can use app permission policies to allow or block apps for your users. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Setup Policies: <https://learn.microsoft.com/microsoftteams/teams-app-permission-policies>. This is only applicable for tenants who have not been migrated to ACM or UAM. - - - - Get-CsTeamsAppPermissionPolicy - - Filter - - Do not use - - String - - String - - - None - - - LocalStore - - Do not use. - - - SwitchParameter - - - False - - - Tenant - - {{Fill Tenant Description}} - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsAppPermissionPolicy - - Identity - - Name of the app setup permission policy. If empty, all identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use. - - - SwitchParameter - - - False - - - Tenant - - {{Fill Tenant Description}} - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Do not use - - String - - String - - - None - - - Identity - - Name of the app setup permission policy. If empty, all identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - {{Fill Tenant Description}} - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsAppPermissionPolicy -Identity Global - -Identity : Global -DefaultCatalogApps : {Id=26bc2873-6023-480c-a11b-76b66605ce8c, Id=0d820ecd-def2-4297-adad-78056cde7c78, Id=com.microsoft.teamspace.tab.planner} -GlobalCatalogApps : {} -PrivateCatalogApps : {} -Description : -DefaultCatalogAppsType : AllowedAppList -GlobalCatalogAppsType : AllowedAppList -PrivateCatalogAppsType : AllowedAppList - - Get the global Teams app permission policy. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsAppPermissionPolicy - -Identity : Global -DefaultCatalogApps : {Id=26bc2873-6023-480c-a11b-76b66605ce8c, Id=0d820ecd-def2-4297-adad-78056cde7c78, Id=com.microsoft.teamspace.tab.planner} -GlobalCatalogApps : {} -PrivateCatalogApps : {} -Description : -DefaultCatalogAppsType : AllowedAppList -GlobalCatalogAppsType : AllowedAppList -PrivateCatalogAppsType : AllowedAppList - -Identity : Tag:test -DefaultCatalogApps : {Id=26bc2873-6023-480c-a11b-76b66605ce8c, Id=0d820ecd-def2-4297-adad-78056cde7c78, Id=com.microsoft.teamspace.tab.planner} -GlobalCatalogApps : {} -PrivateCatalogApps : {} -Description : -DefaultCatalogAppsType : AllowedAppList -GlobalCatalogAppsType : AllowedAppList -PrivateCatalogAppsType : AllowedAppList - - Get all the Teams app permission policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsapppermissionpolicy - - - - - - Get-CsTeamsAppSetupPolicy - Get - CsTeamsAppSetupPolicy - - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. App setup policies let you showcase apps that users in your organization need, including ones built by third parties or by developers in your organization. You can also use app setup policies to manage how built-in features appear. - Apps are pinned to the app bar. This is the bar on the side of the Teams desktop client and at the bottom of the Teams mobile clients (iOS and Android). Learn more about the App Setup Policies: <https://learn.microsoft.com/MicrosoftTeams/teams-app-setup-policies>. - - - - Get-CsTeamsAppSetupPolicy - - Filter - - Do not use. - - String - - String - - - None - - - LocalStore - - Do not use. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsAppSetupPolicy - - Identity - - Name of App setup policy. If empty, all Identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Do not use. - - String - - String - - - None - - - Identity - - Name of App setup policy. If empty, all Identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsAppSetupPolicy -Identity Global - -Identity : Global -AppPresetList : {Id=d2c6f111-ffad-42a0-b65e-ee00425598aa} -PinnedAppBarApps : {Id=14d6962d-6eeb-4f48-8890-de55454bb136;Order=1, Id=86fcd49b-61a2-4701-b771-54728cd291fb;Order=2, Id=2a84919f-59d8-4441-a975-2a8c2643b741;Order=3, Id=ef56c0de-36fc-4ef8-b417-3d82ba9d073c;Order=4...} -PinnedMessageBarApps : {} -AppPresetMeetingList : {} -Description : -AllowSideLoading : True -AllowUserPinning : True - - Get all the Teams App Setup Policies. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsAppSetupPolicy - -Identity : Global -AppPresetList : {Id=d2c6f111-ffad-42a0-b65e-ee00425598aa} -PinnedAppBarApps : {Id=14d6962d-6eeb-4f48-8890-de55454bb136;Order=1, Id=86fcd49b-61a2-4701-b771-54728cd291fb;Order=2, Id=2a84919f-59d8-4441-a975-2a8c2643b741;Order=3, Id=ef56c0de-36fc-4ef8-b417-3d82ba9d073c;Order=4...} -PinnedMessageBarApps : {} -AppPresetMeetingList : {} -Description : -AllowSideLoading : True -AllowUserPinning : True - -Identity : Tag:Set-test -AppPresetList : {Id=d2c6f111-ffad-42a0-b65e-ee00425598aa} -PinnedAppBarApps : {Id=14d6962d-6eeb-4f48-8890-de55454bb136;Order=1, Id=86fcd49b-61a2-4701-b771-54728cd291fb;Order=2, Id=2a84919f-59d8-4441-a975-2a8c2643b741;Order=3, Id=ef56c0de-36fc-4ef8-b417-3d82ba9d073c;Order=4...} -PinnedMessageBarApps : {} -AppPresetMeetingList : {} -Description : -AllowSideLoading : True -AllowUserPinning : True - - Get all the Teams App Setup Policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsappsetuppolicy - - - - - - Get-CsTeamsAudioConferencingPolicy - Get - CsTeamsAudioConferencingPolicy - - Audio conferencing policies can be used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - The Get-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. The Get-CsTeamsAudioConferencingPolicy cmdlet enables you to return information about all the audio-conferencing policies that have been configured for use in your organization. - - - - Get-CsTeamsAudioConferencingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - Get-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users". If this parameter is not included, the Get-CsTeamsAudioConferencingPolicy cmdlet will return a collection of all the teams audio conferencing policies configured for use in your organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users". If this parameter is not included, the Get-CsTeamsAudioConferencingPolicy cmdlet will return a collection of all the teams audio conferencing policies configured for use in your organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsAudioConferencingPolicy - - The command shown in Example 1, Get-CsTeamsAudioConferencingPolicy is called without any additional parameters; this returns a collection of all the teams audio conferencing policies configured for use in your organization. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" - - The command shown in Example 2, Get-CsTeamsAudioConferencingPolicy is used to return the per-user audio conferencing policy that has an Identity "EMEA Users". Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - New-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Get-CsTeamsCallHoldPolicy - Get - CsTeamsCallHoldPolicy - - Returns information about the policies configured to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a Teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - Get-CsTeamsCallHoldPolicy - - Filter - - Enables you to use wildcards when retrieving one or more Teams call hold policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - - Get-CsTeamsCallHoldPolicy - - Identity - - Unique identifier of the Teams call hold policy to be retrieved. - To return the global policy, use this syntax: - `-Identity "Global"` - To return a policy configured at the per-user scope, use syntax like this: - `-Identity "ContosoPartnerCallHoldPolicy"` - You cannot use wildcard characters when specifying the Identity. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more Teams call hold policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the Teams call hold policy to be retrieved. - To return the global policy, use this syntax: - `-Identity "Global"` - To return a policy configured at the per-user scope, use syntax like this: - `-Identity "ContosoPartnerCallHoldPolicy"` - You cannot use wildcard characters when specifying the Identity. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsCallHoldPolicy - - The command shown in Example 1 returns information for all the Teams call hold policies configured for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsCallHoldPolicy -Identity 'ContosoPartnerCallHoldPolicy' - - In Example 2, information is returned for a single Teams call hold policy: the policy with the Identity ContosoPartnerCallHoldPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsCallHoldPolicy -Filter 'Tag:*' - - The command shown in Example 3 returns information about all the Teams call hold policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "Tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - New-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Set-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Grant-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - Remove-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - - - - Get-CsTeamsCallingPolicy - Get - CsTeamsCallingPolicy - - Returns information about the teams calling policies configured for use in your organization. Teams calling policies help determine which users are able to use calling functionality within Microsoft Teams. - - - - Returns information about the teams calling policies configured for use in your organization. Teams calling policies help determine which users are able to use calling functionality within Microsoft Teams and interoperability with Skype for Business. - - - - Get-CsTeamsCallingPolicy - - Identity - - Specify the TeamsCallingPolicy that you would like to retrieve. - - String - - String - - - None - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Specify the TeamsCallingPolicy that you would like to retrieve. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsCallingPolicy -Identity SalesCallingPolicy - - Retrieves the calling policy with the Identity "SalesCallingPolicy". - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsCallingPolicy -Filter "tag:Sales*" - - Retrieves the calling policies with Identity starting with Sales. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallingpolicy - - - Set-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallingpolicy - - - Remove-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallingpolicy - - - Grant-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallingpolicy - - - New-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallingpolicy - - - - - - Get-CsTeamsCallParkPolicy - Get - CsTeamsCallParkPolicy - - The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization. - NOTE: the call park feature is currently only available in the desktop and web clients. Call Park functionality is currently completely disabled in mobile clients. - - - - Get-CsTeamsCallParkPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsCallParkPolicy - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsCallParkPolicy - - Retrieve all policies that are available in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallparkpolicy - - - - - - Get-CsTeamsChannelsPolicy - Get - CsTeamsChannelsPolicy - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. The Get-CsTeamsChannelsPolicy returns policies that are available for use within your organization. - - - - Get-CsTeamsChannelsPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsChannelsPolicy - - Identity - - Specify the unique name of a policy you would like to retrieve. Use one of the following values: - - `Global` - - The name of a custom policy you've created. If the value contains spaces, enclose the value in quotation marks ("). Note that the Identity value shows as `Tag:<Name>`, but the `<Name>` value also works. - - `Default`: This is a template that's used to populate the default property values when you create a new policy or to reset the property values in the global policy in case you delete it. Note that the Identity value shows as `Tag:Default`, but the `Default` value also works. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - Identity - - Specify the unique name of a policy you would like to retrieve. Use one of the following values: - - `Global` - - The name of a custom policy you've created. If the value contains spaces, enclose the value in quotation marks ("). Note that the Identity value shows as `Tag:<Name>`, but the `<Name>` value also works. - - `Default`: This is a template that's used to populate the default property values when you create a new policy or to reset the property values in the global policy in case you delete it. Note that the Identity value shows as `Tag:Default`, but the `Default` value also works. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsChannelsPolicy - - Retrieves all policies related to Teams & Channels that are available in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamschannelspolicy - - - - - - Get-CsTeamsClientConfiguration - Get - CsTeamsClientConfiguration - - This cmdlet allows IT admins to retrieve the effective configuration for their organization. - - - - The TeamsClientConfiguration allows IT admins to control the settings that can be accessed via Teams clients across their organization. This configuration includes settings like which third party cloud storage your organization allows, whether or not guest users can access the teams client, and how Surface Hub devices can interact with Skype for Business meetings. This cmdlet allows IT admins to retrieve the effective configuration for their organization. - Use in conjunction with Set-CsTeamsClientConfiguration to update the settings in your organization. - - - - Get-CsTeamsClientConfiguration - - Filter - - Microsoft internal use only. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsClientConfiguration - - Identity - - The only valid input is Global, as you can have only one effective configuration in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Microsoft internal use only. - - String - - String - - - None - - - Identity - - The only valid input is Global, as you can have only one effective configuration in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsClientConfiguration - - Retrieves the effective client configuration in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsclientconfiguration - - - - - - Get-CsTeamsComplianceRecordingApplication - Get - CsTeamsComplianceRecordingApplication - - Returns information about the application instances of policy-based recording applications that have been configured for administering automatic policy-based recording in your tenant. - - - - Policy-based recording applications are used in automatic policy-based recording scenarios. Automatic policy-based recording is only applicable to Microsoft Teams users. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy. - Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingApplication returns all application instances of policy-based recording applications that are associated with a Teams recording policy. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. Please also refer to the documentation of CsTeamsComplianceRecordingPolicy cmdlets for further information. - - - - Get-CsTeamsComplianceRecordingApplication - - Filter - - Enables you to use wildcards when retrieving one or more application instances of policy-based recording applications. For example, to return all the application instances associated with Teams recording policies at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsComplianceRecordingApplication - - Identity - - Unique identifier of the application instance of a policy-based recording application to be retrieved. - You cannot use wildcard characters when specifying the Identity. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more application instances of policy-based recording applications. For example, to return all the application instances associated with Teams recording policies at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the application instance of a policy-based recording application to be retrieved. - You cannot use wildcard characters when specifying the Identity. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication - - The command shown in Example 1 returns information for all the application instances of policy-based recording applications associated with Teams recording policies. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144' - - In Example 2, information is returned for a single application instance of a policy-based recording application with the Identity Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication -Filter 'Tag:*' - - The command shown in Example 3 returns all the application instances associated with Teams recording policies at the per-user scope. To do this, the command uses the Filter parameter and the filter value "Tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:". - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication -Filter 'Tag:ContosoPartnerComplianceRecordingPolicy*' - - The command shown in Example 4 returns all the application instances associated with Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. To do this, the command uses the Filter parameter and the filter value "Tag:ContosoPartnerComplianceRecordingPolicy*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:ContosoPartnerComplianceRecordingPolicy". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Get-CsTeamsComplianceRecordingPolicy - Get - CsTeamsComplianceRecordingPolicy - - Returns information about the policies configured for governing automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that if neither the Identity nor the Filter parameters are specified, then Get-CsTeamsComplianceRecordingPolicy returns all the Teams recording policies configured for use in the tenant. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - Get-CsTeamsComplianceRecordingPolicy - - Filter - - Enables you to use wildcards when retrieving one or more Teams recording policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsComplianceRecordingPolicy - - Identity - - Unique identifier of the Teams recording policy to be retrieved. To return the global policy, use this syntax: - -Identity "Global" - To return a policy configured at the per-user scope, use syntax like this: - -Identity "ContosoPartnerComplianceRecordingPolicy" - You cannot use wildcard characters when specifying the Identity. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more Teams recording policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "Tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the Teams recording policy to be retrieved. To return the global policy, use this syntax: - -Identity "Global" - To return a policy configured at the per-user scope, use syntax like this: - -Identity "ContosoPartnerComplianceRecordingPolicy" - You cannot use wildcard characters when specifying the Identity. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingPolicy - - The command shown in Example 1 returns information for all the Teams recording policies configured for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' - - In Example 2, information is returned for a single Teams recording policy: the policy with the Identity ContosoPartnerComplianceRecordingPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingPolicy -Filter 'Tag:*' - - The command shown in Example 3 returns information about all the Teams recording policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "Tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "Tag:". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Get-CsTeamsCortanaPolicy - Get - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, if a user can use Cortana voice assistant in Microsoft Teams and determines Cortana invocation behavior via CortanaVoiceInvocationMode parameter - - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - - - Get-CsTeamsCortanaPolicy - - Filter - - Enables you to use wildcards when specifying the policy (or policies) to be retrieved. For example, this syntax returns all the policies that have been configured at the site scope: -Filter "site:". This syntax returns all the policies that have been configured at the per-user scope: -Filter "tag:". You cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsCortanaPolicy - - Identity - - Unique identifier for the policy to be returned. To return the global policy, use this syntax: -Identity global. To return a policy configured at the site scope, use syntax similar to this: -Identity "site:Redmond". To return a policy configured at the service scope, use syntax similar to this: -Identity "Registrar:atl-cs-001.litwareinc.com". - Policies can also be configured at the per-user scope. To return one of these policies, use syntax similar to this: -Identity "SalesDepartmentPolicy". If this parameter is not included then all of Cortana voice assistant policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcards when specifying the policy (or policies) to be retrieved. For example, this syntax returns all the policies that have been configured at the site scope: -Filter "site:". This syntax returns all the policies that have been configured at the per-user scope: -Filter "tag:". You cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be returned. To return the global policy, use this syntax: -Identity global. To return a policy configured at the site scope, use syntax similar to this: -Identity "site:Redmond". To return a policy configured at the service scope, use syntax similar to this: -Identity "Registrar:atl-cs-001.litwareinc.com". - Policies can also be configured at the per-user scope. To return one of these policies, use syntax similar to this: -Identity "SalesDepartmentPolicy". If this parameter is not included then all of Cortana voice assistant policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsCortanaPolicy - - In the first example, the Get-CsTeamsCortanaPolicy cmdlet is called without specifying any additional parameters. This causes the Get-CsTeamsCortanaPolicy cmdlet to return a collection of all the Cortana voice assistant policies configured for use in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Get-CsTeamsCustomBannerText - Get - CsTeamsCustomBannerText - - Enables administrators to configure a custom text on the banner displayed when compliance recording bots start recording the call. - - - - Returns all or a single instance of custom banner text. - - - - Get-CsTeamsCustomBannerText - - Identity - - > Applicable: Microsoft Teams - Policy instance name (optional). - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - Policy instance name (optional). - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsCustomBannerText - - This example gets the properties of all instances of the TeamsCustomBannerText. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsCustomBannerText -Identity CustomText - - This example gets the properties of the CustomText instance of TeamsCustomBannerText. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscustombannertext - - - Set-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscustombannertext - - - New-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscustombannertext - - - Remove-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscustombannertext - - - - - - Get-CsTeamsEducationAssignmentsAppPolicy - Get - CsTeamsEducationAssignmentsAppPolicy - - This cmdlet allows you to retrieve the current values of your Education Assignments App Policy. - - - - This policy is controlled by Global and Teams Service Administrators, and is used to turn on/off certain features only related to the Assignments Service, which runs for tenants with EDU licenses. At this time, you can only modify your global policy - this policy type does not support user-level custom policies. - - - - Get-CsTeamsEducationAssignmentsAppPolicy - - Filter - - Not applicable - you cannot create custom policies, so will always be retrieving the global policy for your organization. - - String - - String - - - None - - - LocalStore - - Internal use only. - - - SwitchParameter - - - False - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsEducationAssignmentsAppPolicy - - Identity - - The only value supported is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal use only. - - - SwitchParameter - - - False - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Not applicable - you cannot create custom policies, so will always be retrieving the global policy for your organization. - - String - - String - - - None - - - Identity - - The only value supported is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsEducationAssignmentsAppPolicy - - Retrieves the policy in your organization - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamseducationassignmentsapppolicy - - - - - - Get-CsTeamsEducationConfiguration - Get - CsTeamsEducationConfiguration - - This cmdlet is used to retrieve the organization-wide education configuration for Teams. - - - - This cmdlet is used to retrieve the organization-wide education configuration for Teams which contains settings that are applicable to education organizations. - You must be a Teams Service Administrator for your organization to run the cmdlet. - - - - Get-CsTeamsEducationConfiguration - - Filter - - Enables you to use wildcard characters in order to return a collection of team education configuration settings. - - String - - String - - - None - - - - Get-CsTeamsEducationConfiguration - - Identity - - The unique identifier of the configuration. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters in order to return a collection of team education configuration settings. - - String - - String - - - None - - - Identity - - The unique identifier of the configuration. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsEducationConfiguration - -Identity : Global -ParentGuardianPreferredContactMethod : Email -UpdateParentInformation : Enabled - - In this example, the organization has set the defaults as follows: - - Email is set as the preferred contact method for the parent communication invites. - - Capability to edit parent contact information by educators is enabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamseducationconfiguration - - - Set-CsTeamsEducationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamseducationconfiguration - - - - - - Get-CsTeamsEmergencyCallingPolicy - Get - CsTeamsEmergencyCallingPolicy - - - - - - This cmdlet returns one or more emergency calling policies. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. - - - - Get-CsTeamsEmergencyCallingPolicy - - Filter - - The Filter parameter allows you to limit the number of results based on filters on Identity you specify. - - String - - String - - - None - - - - Get-CsTeamsEmergencyCallingPolicy - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters on Identity you specify. - - String - - String - - - None - - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsEmergencyCallingPolicy - - Retrieves all emergency calling policies that are available in your scope. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsEmergencyCallingPolicy -Identity TestECP - - Retrieves an emergency calling policy with the identity TestECP - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsEmergencyCallingPolicy -Filter Test* - - Retrieves all emergency calling policies with Identity starting with Test. - - - - -------------------------- Example 4 -------------------------- - (Get-CsTeamsEmergencyCallingPolicy -Identity TestECP).ExtendedNotifications - -EmergencyDialString : 112 -NotificationGroup : alert2@contoso.com -NotificationDialOutNumber : -NotificationMode : ConferenceUnMuted - -EmergencyDialString : 911 -NotificationGroup : alert3@contoso.com -NotificationDialOutNumber : +14255551234 -NotificationMode : NotificationOnly - - This example displays extended notifications set on emergency calling policy with the identity TestECP. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Grant-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - Remove-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - - - - Get-CsTeamsEmergencyCallRoutingPolicy - Get - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet returns one or more Emergency Call Routing policies. - - - - This cmdlet returns one or more Emergency Call Routing policies. This policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - Get-CsTeamsEmergencyCallRoutingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - - Get-CsTeamsEmergencyCallRoutingPolicy - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy - - Retrieves all emergency call routing policies that are available in your scope. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy -Identity TestECRP - - Retrieves one emergency call routing policy specifying the identity. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy -Filter 'Test*' - - Retrieves all emergency call routing policies with identity starting with Test. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - - - - Get-CsTeamsEnhancedEncryptionPolicy - Get - CsTeamsEnhancedEncryptionPolicy - - Returns information about the teams enhanced encryption policies configured for use in your organization. - - - - Returns information about the Teams enhanced encryption policies configured for use in your organization. The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Get-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy - - The command shown in Example 1 returns information for all the teams enhanced encryption policies configured for use in the tenant. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy -Identity 'ContosoPartnerEnhancedEncryptionPolicy' - - In Example 2, information is returned for a single teams enhanced encryption policy: the policy with the Identity ContosoPartnerEnhancedEncryptionPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Get-CsTeamsEventsPolicy - Get - CsTeamsEventsPolicy - - Returns information about the Teams Events policy. Note that this policy is currently still in preview. - - - - Returns information about the Teams Events policy. TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - Get-CsTeamsEventsPolicy - - Filter - - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - - Get-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - - - - Filter - - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsEventsPolicy - - Returns information for all Teams Events policies available for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsEventsPolicy -Identity Global - - Returns information for Teams Events policy with identity "Global". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamseventspolicy - - - - - - Get-CsTeamsExternalAccessConfiguration - Get - CsTeamsExternalAccessConfiguration - - This cmdlet returns the current settings of your organization. - - - - Retrieves the current Teams External Access Configuration in the organization. - - - - Get-CsTeamsExternalAccessConfiguration - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - - - - None - - - - - - - - - - TeamsExternalAccessConfiguration.Cmdlets.TeamsExternalAccessConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsExternalAccessConfiguration - - In this example, we retrieve the Teams External Access Configuration in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsexternalaccessconfiguration - - - - - - Get-CsTeamsFeedbackPolicy - Get - CsTeamsFeedbackPolicy - - Use this cmdlet to retrieve the current Teams Feedback policies (the ability to send feedback about Teams to Microsoft and whether they receive the survey) in the organization. - - - - Retrieves the current Teams Feedback policies (the ability to send feedback about Teams to Microsoft and whether they receive the survey) in the organization. - - - - Get-CsTeamsFeedbackPolicy - - Filter - - Internal Microsoft use - - String - - String - - - None - - - - Get-CsTeamsFeedbackPolicy - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsFeedbackPolicy - - In this example, we retrieve all the existing Teams feedback policies in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfeedbackpolicy - - - - - - Get-CsTeamsFilesPolicy - Get - CsTeamsFilesPolicy - - Get a list of all pre-configured policy instances related to teams files. - - - - This cmdlet retrieves information about one or more teams files policies that have been configured for use in your organization. teams files policies are used by the organization to manage files-related features such as third party storage provider for files from teams. - - - - Get-CsTeamsFilesPolicy - - Filter - - This parameter accepts a wildcard string and returns all teams files policies with identities matching that string. For example, a Filter value of Tag:* will return all preconfigured teams files policy instances (excluding forest default "Global") available to use by the tenant admins. - - String - - String - - - None - - - - Get-CsTeamsFilesPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. If this parameter is omitted, all teams files policies available for use are returned. - - String - - String - - - None - - - - - - Filter - - This parameter accepts a wildcard string and returns all teams files policies with identities matching that string. For example, a Filter value of Tag:* will return all preconfigured teams files policy instances (excluding forest default "Global") available to use by the tenant admins. - - String - - String - - - None - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. If this parameter is omitted, all teams files policies available for use are returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsFilesPolicy - - In Example 1, the Get-CsTeamsFilesPolicy cmdlet is called without any additional parameters; this returns a collection of all the teams files policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsFilesPolicy -Identity TranscriptionDisabled - - In Example 2, the Get-CsTeamsFilesPolicy cmdlet is used to return the per-user teams files policy that has an Identity TranscriptionDisabled. Because identities are unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsFilesPolicy -Filter "tag:*" - - Example 3 uses the Filter parameter to return all the teams files policies that have been configured at the per-user scope. The filter value "tag:*" tells the Get-CsTeamsFilesPolicy cmdlet to return only those policies that have an Identity that begins with the string value "tag:". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfilespolicy - - - - - - Get-CsTeamsFirstPartyMeetingTemplateConfiguration - Get - CsTeamsFirstPartyMeetingTemplateConfiguration - - This cmdlet fetches the first-party meeting templates stored on the tenant. - - - - Fetches the list of first-party templates on the tenant. Each template object contains its list of meeting options, the name of the template, and its ID. - This is a read-only configuration. - - - - Get-CsTeamsFirstPartyMeetingTemplateConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the configuration. - Note: This configuration is read only and will only have the Global instance. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the configuration. - Note: This configuration is read only and will only have the Global instance. - - String - - String - - - None - - - - - - - - - - - - Example 1 - Fetching all first party meeting templates on the tenant - PS C:\> Get-CsTeamsFirstPartyMeetingTemplateConfiguration - -Identity : Global -TeamsMeetingTemplates : {default, firstparty_30d773c0-1b4e-4bf6-970b-73f544c054bb, - firstparty_399f69a3-c482-41bf-9cf7-fcdefe269ce6, - firstparty_64c92390-c8a2-471e-96d9-4ee8f6080155...} -Description : The `TeamsMeetingTemplates` property contains the meeting template details: - -TeamsMeetingOptions : {SelectedSensitivityLabel, AutoAdmittedUsers, AllowPstnUsersToBypassLobby, - EntryExitAnnouncementsEnabled...} -Description : Townhall -Name : firstparty_21f91ef7-6265-4064-b78b-41ab66889d90 -Category : - -TeamsMeetingOptions : {AutoRecordingEnabled, AllowMeetingChat, PresenterOption} -Description : Virtual appointment -Name : firstparty_e514e598-fba6-4e1f-b8b3-138dd3bca748 -Category : - - Fetches all the first-party templates on the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsFirstPartyMeetingTemplateConfiguration - - - Get-CsTeamsMeetingTemplateConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplateconfiguration - - - - - - Get-CsTeamsGuestCallingConfiguration - Get - CsTeamsGuestCallingConfiguration - - Returns information about the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. - - - - Returns information about the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. To set the configuration in your organization, use Set-CsTeamsGuestCallingConfiguration - - - - Get-CsTeamsGuestCallingConfiguration - - Identity - - Internal Microsoft use - customers can have only one TeamsGuestCallingConfiguration - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - LocalStore - - Internal Microsoft use - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - Identity - - Internal Microsoft use - customers can have only one TeamsGuestCallingConfiguration - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestCallingConfiguration - - Returns the results - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestcallingconfiguration - - - - - - Get-CsTeamsGuestMeetingConfiguration - Get - CsTeamsGuestMeetingConfiguration - - Designates what meeting features guests using Microsoft Teams will have available. - - - - The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Get-CsTeamsGuestMeetingConfiguration cmdlet to return what values are set for your organization. - - - - Get-CsTeamsGuestMeetingConfiguration - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestMeetingConfiguration - - Returns the TeamsGuestMeetingConfiguration set in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestmeetingconfiguration - - - - - - Get-CsTeamsGuestMessagingConfiguration - Get - CsTeamsGuestMessagingConfiguration - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. This cmdlet returns your organization's current settings. - - - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. - - - - Get-CsTeamsGuestMessagingConfiguration - - Identity - - Specifies the collection of tenant guest messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of guest messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant guest messaging configuration settings. Because each tenant is limited to a single, global collection of guest messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - LocalStore - - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant guest messaging configuration settings. Because each tenant is limited to a single, global collection of guest messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - Identity - - Specifies the collection of tenant guest messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of guest messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestMessagingConfiguration - - The command shown in Example 1 returns teams guest messaging configuration information for the current tenant - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestmessagingconfiguration - - - - - - Get-CsTeamsIPPhonePolicy - Get - CsTeamsIPPhonePolicy - - Get-CsTeamsIPPhonePolicy allows IT Admins to view policies for IP Phone experiences in Microsoft Teams. - - - - Returns information about the Teams IP Phone Policies configured for use in your organization. Teams IP phone policies enable you to configure the different sign-in experiences based upon the function the device is performing; example: common area phone. - - - - Get-CsTeamsIPPhonePolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTeamsIPPhonePolicy - - Identity - - Specify the unique name of the TeamsIPPhonePolicy that you would like to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Specify the unique name of the TeamsIPPhonePolicy that you would like to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsIPPhonePolicy -identity CommonAreaPhone - - Retrieves the IP Phone Policy with name "CommonAreaPhone". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsipphonepolicy - - - - - - Get-CsTeamsMediaConnectivityPolicy - Get - CsTeamsMediaConnectivityPolicy - - This cmdlet retrieves all Teams media connectivity policies for the current tenant. - - - - This cmdlet retrieves all Teams media connectivity policies for the current tenant. - - - - Get-CsTeamsMediaConnectivityPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - - Get-CsTeamsMediaConnectivityPolicy - - Identity - - The identity of the Teams Media Connectivity Policy. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - The identity of the Teams Media Connectivity Policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMediaConnectivityPolicy - -Identity DirectConnection --------- ---------------- -Tag:Test Enabled - - This example retrieves the Teams media connectivity policies and shows the result as identity tag and "DirectConnection" value. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsMediaConnectivityPolicy - - - New-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmediaconnectivitypolicy - - - Remove-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmediaconnectivitypolicy - - - Set-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmediaconnectivitypolicy - - - Grant-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmediaconnectivitypolicy - - - - - - Get-CsTeamsMediaLoggingPolicy - Get - CsTeamsMediaLoggingPolicy - - Returns information about the Teams Media Logging policy. - - - - Returns information about the Teams Media Logging policy. TeamsMediaLoggingPolicy allows administrators to enable media logging for users. When assigned, it will enable media logging for the user overriding other settings. After removing the policy, media logging setting will revert to the previous value. - NOTES: TeamsMediaLoggingPolicy has only one instance that is built into the system, so there is no corresponding New cmdlet. - - - - Get-CsTeamsMediaLoggingPolicy - - Filter - - > Applicable: Microsoft Teams - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - - Get-CsTeamsMediaLoggingPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier assigned to the Teams Media Logging policy. Note that Teams Media Logging policy has only one instance that has Identity "Enabled". - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Unique identifier assigned to the Teams Media Logging policy. Note that Teams Media Logging policy has only one instance that has Identity "Enabled". - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - String - - String - - - None - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsMediaLoggingPolicy - - Return information for all Teams Media Logging policies available for use in the tenant. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsMediaLoggingPolicy -Identity Global - - Return Teams Media Logging policy that is set for the entire tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmedialoggingpolicy - - - Grant-CsTeamsMediaLoggingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmedialoggingpolicy - - - - - - Get-CsTeamsMeetingBrandingPolicy - Get - CsTeamsMeetingBrandingPolicy - - The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - The `Get-CsTeamsMeetingBrandingPolicy` cmdlet enables you to return information about all the meeting branding policies that have been configured for use in your organization. - - - - Get-CsTeamsMeetingBrandingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - - Get-CsTeamsMeetingBrandingPolicy - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: `-Identity global`. If this parameter is omitted, then all the meeting branding policies configured for use in your organization will be returned. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: `-Identity global`. If this parameter is omitted, then all the meeting branding policies configured for use in your organization will be returned. - - String - - String - - - None - - - - - - - TeamsMeetingBrandingPolicy.Cmdlets.TeamsMeetingBrandingPolicy - - - - - - - - - Available in Teams PowerShell Module 4.9.3 and later. - - - - - ----------------- Return all branding policies ----------------- - PS C:\> Get-CsTeamsMeetingBrandingPolicy - - In this example, the command returns a collection of all the teams meeting branding policies configured for use in your organization. - - - - ------------------- Return specified policy ------------------- - PS C:\> CsTeamsMeetingBrandingPolicy -Identity "policy test2" - - In this example, the command returns the meeting branding policy that has an Identity `policy test 2`. Because identities are unique, this command will never return more than one item. - - - - - - Get-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbrandingpolicy - - - Grant-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - New-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Remove-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Set-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - - - - Get-CsTeamsMeetingBroadcastConfiguration - Get - CsTeamsMeetingBroadcastConfiguration - - Gets Tenant level configuration for broadcast events in Teams. - - - - Tenant level configuration for broadcast events in Teams - - - - Get-CsTeamsMeetingBroadcastConfiguration - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - ExposeSDNConfigurationJsonBlob - - Extract SDN properties as a Json Blob in get. - - Boolean - - Boolean - - - None - - - Filter - - Not applicable to online service - you can only have one configuration. - - String - - String - - - None - - - LocalStore - - Not applicable to online service. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service - - Guid - - Guid - - - None - - - - - - ExposeSDNConfigurationJsonBlob - - Extract SDN properties as a Json Blob in get. - - Boolean - - Boolean - - - None - - - Filter - - Not applicable to online service - you can only have one configuration. - - String - - String - - - None - - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Not applicable to online service. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbroadcastconfiguration - - - - - - Get-CsTeamsMeetingBroadcastPolicy - Get - CsTeamsMeetingBroadcastPolicy - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. Use this cmdlet to retrieve one or more policies. - - - - Get-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be retrieved. Policies can be configured at the global scope or at the per-user scope. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity SalesPolicy. - If this parameter is not included, the cmdlet will return a collection of all the policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a policy. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - Not applicable to the online service. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be retrieved. Policies can be configured at the global scope or at the per-user scope. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity SalesPolicy. - If this parameter is not included, the cmdlet will return a collection of all the policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a policy. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Not applicable to the online service. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsMeetingBroadcastPolicy - - Returns all the Teams Meeting Broadcast policies. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsMeetingBroadcastPolicy -Filter "Education_Teacher" - - In this example, the -Filter parameter is used to return all the policies that match "Education_Teacher". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbroadcastpolicy - - - - - - Get-CsTeamsMeetingConfiguration - Get - CsTeamsMeetingConfiguration - - The CsTeamsMeetingConfiguration cmdlets enable administrators to control the meetings configurations in their tenants. - - - - The CsTeamsMeetingConfiguration cmdlets enable administrators to control the meetings configurations in their tenants. Use this cmdlet to retrieve the configuration set in your organization. - - - - Get-CsTeamsMeetingConfiguration - - Identity - - The only valid input is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - LocalStore - - Internal Microsoft use - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - Identity - - The only valid input is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMeetingConfiguration - - Returns the configuration set in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingconfiguration - - - - - - Get-CsTeamsMeetingPolicy - Get - CsTeamsMeetingPolicy - - The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users. - - - - The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users - Teams Meeting policies can be configured at the global and per-user scopes. The Get-CsTeamsMeetingPolicy cmdlet enables you to return information about all the meeting policies that have been configured for use in your organization. - - - - Get-CsTeamsMeetingPolicy - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-user policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the meeting policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - {{ Fill LocalStore Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-user policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the meeting policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - {{ Fill LocalStore Description }} - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsMeetingPolicy - - In Example 1, Get-CsTeamsMeetingPolicy is called without any additional parameters; this returns a collection of all the teams meeting policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsMeetingPolicy -Identity SalesPolicy - - In Example 2, Get-CsTeamsMeetingPolicy is used to return the per-user meeting policy that has an Identity SalesPolicy. Because identities are unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsMeetingPolicy | Where-Object {$_.AllowMeetNow -eq $True} - - The preceding command returns a collection of all the meeting policies where the AllowMeetNow property is True. To do this, Get-CsTeamsMeetingPolicy is first called without any parameters in order to return a collection of all the policies configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which selects only those policies where the AllowMeetNow property is equal to True. - - - - -------------------------- Example 4 -------------------------- - Get-CsTeamsMeetingPolicy -Identity Global | fl NewMeetingRecordingExpirationDays - -NewMeetingRecordingExpirationDays : 60 - - The above command returns expiration date setting currently applied on TMR. For more details, see: Auto-expiration of Teams meeting recordings (https://learn.microsoft.com/microsoftteams/cloud-recording#auto-expiration-of-teams-meeting-recordings). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingpolicy - - - - - - Get-CsTeamsMeetingTemplateConfiguration - Get - CsTeamsMeetingTemplateConfiguration - - This cmdlet fetches the custom meeting templates stored on the tenant. - - - - Fetches the list of custom templates on the tenant. Each template object contains its list of meeting options, the name of the template, and its ID. - - - - Get-CsTeamsMeetingTemplateConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the configuration. - Note: This configuration is read only and will only have the Global instance. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the configuration. - Note: This configuration is read only and will only have the Global instance. - - String - - String - - - None - - - - - - - - - - - - Example 1 - Fetching all custom meeting templates on the tenant - PS C:\> Get-CsTeamsMeetingTemplateConfiguration - -Identity : Global -TeamsMeetingTemplates : {default, customtemplate_1cb7073a-8b19-4b5d-a3a6-14737d006969, - customtemplate_21ecf22c-eb1a-4f05-93e0-555b994ebeb5, - customtemplate_0b9c1f57-01ec-4b8a-b4c2-08bd1c01e6ba...} -Description : The `TeamsMeetingTemplates` property contains the meeting template details: - -TeamsMeetingOptions : {SelectedSensitivityLabel, AutoAdmittedUsers, AllowPstnUsersToBypassLobby, - EntryExitAnnouncementsEnabled...} -Description : Custom Template 1 -Name : customtemplate_1cb7073a-8b19-4b5d-a3a6-14737d006969 -Category : - -TeamsMeetingOptions : {AutoRecordingEnabled, AllowMeetingChat, PresenterOption} -Description : Custom Template 2 -Name : customtemplate_21ecf22c-eb1a-4f05-93e0-555b994ebeb5 -Category : - - Fetches all the custom templates on the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsMeetingTemplateConfiguration - - - Get-CsTeamsFirstPartyMeetingTemplateConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfirstpartymeetingtemplateconfiguration - - - - - - Get-CsTeamsMeetingTemplatePermissionPolicy - Get - CsTeamsMeetingTemplatePermissionPolicy - - Fetches the TeamsMeetingTemplatePermissionPolicy. This policy can be used to hide meeting templates from users and groups. - - - - Fetches the instances of the policy. Each policy object contains a property called `HiddenMeetingTemplates`.This array contains the list of meeting template IDs that will be hidden by that instance of the policy. - - - - Get-CsTeamsMeetingTemplatePermissionPolicy - - Filter - - > Applicable: Microsoft Teams - This parameter can be used to fetch policy instances based on partial matches on the `Identity` field. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter can be used to fetch policy instances based on partial matches on the `Identity` field. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - - - - - - - -------------- Example 1 - Fetching all policies -------------- - PS C:\> Get-CsTeamsMeetingTemplatePermissionPolicy - -Identity : Global -HiddenMeetingTemplates : {} -Description : - -Identity : Tag:Foobar -HiddenMeetingTemplates : {customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056} -Description : - -Identity : Tag:dashbrd test -HiddenMeetingTemplates : {customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056} -Description : test - -Identity : Tag:Default -HiddenMeetingTemplates : {} -Description : - - Fetches all the policy instances currently available. - - - - -- Example 2 - Fetching a specific policy using its identity -- - PS C:\> Get-CsTeamsMeetingTemplatePermissionPolicy -Identity Foobar - -Identity : Tag:Foobar -HiddenMeetingTemplates : {customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056} -Description : - - Fetches an instance of a policy with known identity. - - - - ---------- Example 3 - Fetching policies using regex ---------- - PS C:\> Get-CsTeamsMeetingTemplatePermissionPolicy -Filter *Foo* - -Identity : Tag:Foobar -HiddenMeetingTemplates : {customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056} -Description : - - The `Filter` parameter can be used to fetch policy instances based on partial matches on Identity. - Note: The "Tag:" prefix can be ignored when specifying the identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsMeetingTemplatePermissionPolicy - - - Set-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingtemplatepermissionpolicy - - - New-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingtemplatepermissionpolicy - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingtemplatepermissionpolicy - - - - - - Get-CsTeamsMessagingConfiguration - Get - CsTeamsMessagingConfiguration - - TeamsMessagingConfiguration determines the messaging settings for users. This cmdlet returns your organization's current settings. - - - - TeamsMessagingConfiguration determines the messaging settings for users. - - - - Get-CsTeamsMessagingConfiguration - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant messaging configuration settings. Because each tenant is limited to a single, global collection of the messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - - Get-CsTeamsMessagingConfiguration - - Identity - - Specifies the collection of tenant messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant messaging configuration settings. Because each tenant is limited to a single, global collection of the messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - Identity - - Specifies the collection of tenant messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMessagingConfiguration - - The command shown in Example 1 returns teams messaging configuration information for the current tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsMessagingConfiguration - - - Set-CsTeamsMessagingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmessagingconfiguration - - - - - - Get-CsTeamsMessagingPolicy - Get - CsTeamsMessagingPolicy - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. - - - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. These also help determine the type of messages users can create and modify. This cmdlet lets you retrieve messaging policies that are available for use within your organization. - - - - Get-CsTeamsMessagingPolicy - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity StudentMessagingPolicy. - If this parameter is not included, the Get-CsTeamsMessagingPolicy cmdlet will return a collection of all the teams messaging policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a messaging policy. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - {{ Fill LocalStore Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity StudentMessagingPolicy. - If this parameter is not included, the Get-CsTeamsMessagingPolicy cmdlet will return a collection of all the teams messaging policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a messaging policy. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - {{ Fill LocalStore Description }} - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - powershell -PS C:\> Get-CsTeamsMessagingPolicy - - In this example all teams messaging policies that have been configured in the organization will be returned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy - - - - - - Get-CsTeamsMobilityPolicy - Get - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Get-CsTeamsMobilityPolicy cmdlet allows administrators to get all teams mobility policies. - NOTE: Please note that this cmdlet was deprecated and then removed from this PowerShell module. This reference will continue to be listed here for legacy purposes. - - - - Get-CsTeamsMobilityPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - - Get-CsTeamsMobilityPolicy - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMobilityPolicy - - Retrieve all teams mobility policies that are available in your organization - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmobilitypolicy - - - - - - Get-CsTeamsMultiTenantOrganizationConfiguration - Get - CsTeamsMultiTenantOrganizationConfiguration - - This cmdlet retrieves all tenant settings for Multi-tenant Organizations - - - - The Get-CsTeamsMultiTenantOrganizationConfiguration cmdlet enables Teams meeting administrators to retrieve the Multi-Tenant Organization settings for their tenant. This includes the CopilotFromHomeTenant field, which specifies whether users in a Multi-Tenant Organization are allowed to utilize their Copilot license from their home tenant during cross-tenant meetings. - - - - Get-CsTeamsMultiTenantOrganizationConfiguration - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMultiTenantOrganizationConfiguration - - Retrieves tenant's Multi-tenant Organization Configuration, including CopilotFromHomeTenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmultitenantorganizationconfiguration - - - Set-CsTeamsMultiTenantOrganizationConfiguration - - - - - - - Get-CsTeamsNetworkRoamingPolicy - Get - CsTeamsNetworkRoamingPolicy - - Get-CsTeamsNetworkRoamingPolicy allows IT Admins to view policies for the Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Returns information about the Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - Get-CsTeamsNetworkRoamingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTeamsNetworkRoamingPolicy - - Identity - - Unique identifier of the policy to be returned. If this parameter is omitted, then all the Teams Network Roaming Policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. If this parameter is omitted, then all the Teams Network Roaming Policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsNetworkRoamingPolicy - - In Example 1, Get-CsTeamsNetworkRoamingPolicy is called without any additional parameters; this returns a collection of all the teams network roaming policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsNetworkRoamingPolicy -Identity OfficePolicy - - In Example 2, Get-CsTeamsNetworkRoamingPolicy is used to return the network roaming policy that has an Identity OfficePolicy. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsnetworkroamingpolicy - - - - - - Get-CsTeamsNotificationAndFeedsPolicy - Get - CsTeamsNotificationAndFeedsPolicy - - Retrieves information about the Teams Notification and Feeds policy configured for use in the tenant. - - - - The Microsoft Teams notifications and feeds policy allows administrators to manage how notifications and activity feeds are handled within Teams. This policy includes settings that control the types of notifications users receive, how they are delivered, and which activities are highlighted in their feeds. - - - - Get-CsTeamsNotificationAndFeedsPolicy - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsNotificationAndFeedsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsNotificationAndFeedsPolicy - - The command shown above returns information of all Teams NotificationAndFeedsPolicy that have been configured for use in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsnotificationandfeedspolicy - - - - - - Get-CsTeamsPersonalAttendantPolicy - Get - CsTeamsPersonalAttendantPolicy - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - Returns information about the Teams personal attendant policies configured for use in your organization. Teams personal attendant policies help determine which users are able to use personal attendant and its functionalities within Microsoft Teams. - - - - Returns information about the Teams personal attendant policies configured for use in your organization. Teams personal attendant policies help determine which users are able to use personal attendant and its functionalities within Microsoft Teams. - - - - Get-CsTeamsPersonalAttendantPolicy - - Identity - - Specify the TeamsPersonalAttendantPolicy that you would like to retrieve. - - String - - String - - - None - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - - - Identity - - Specify the TeamsPersonalAttendantPolicy that you would like to retrieve. - - String - - String - - - None - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.2.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy - - Retrieves the personal attendant policy with the Identity "SalesPersonalAttendantPolicy". - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsPersonalAttendantPolicy -Filter "tag:Sales*" - - Retrieves the personal attendant policies with Identity starting with Sales. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamspersonalattendantpolicy - - - New-CsTeamsPersonalAttendantPolicy - - - - Set-CsTeamsPersonalAttendantPolicy - - - - Grant-CsTeamsPersonalAttendantPolicy - - - - Remove-CsTeamsPersonalAttendantPolicy - - - - - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - Get - CsTeamsRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - Return information about the instance of TeamsRecordingAndTranscriptionCustomMessage that have been configured for recording and transcription customized message. - - - - The strings defined in TeamsRecordingAndTranscriptionCustomMessage is used for display after recording or transcription is started in a meeting. Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below. These strings will not take effect immediately after being created; they need to be associated with other configurations and policies. - This command will return existing TeamsRecordingAndTranscriptionCustomMessage by your input condition that have been configured before with New-CsTeamsRecordingAndTranscriptionCustomMessage. - - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsRecordingAndTranscriptionCustomMessage - - The command shown in Example 1 returns information for all the instances of TeamsRecordingAndTranscriptionCustomMessage that have been created. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsRecordingAndTranscriptionCustomMessage -Id '39dc3ede-c80e-4f19-9153-417a65a1f144' - - In Example 2, information is returned for a single instance of a TeamsRecordingAndTranscriptionCustomMessage with the Id 39dc3ede-c80e-4f19-9153-417a65a1f144. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - - - - - Get-CsTeamsRemoteLogCollectionConfiguration - Get - CsTeamsRemoteLogCollectionConfiguration - - Returns list of devices for which remote log collection has been initiated for. - - - - Remote log collection is a feature in Microsoft Teams that allows IT administrators to remotely trigger the collection of diagnostic logs from user devices through the Teams Admin Center (TAC). Instead of relying on manual user intervention, admins can initiate log collection for troubleshooting directly from the TAC portal. - TeamsRemoteLogCollectionConfiguration is updated with a list of devices when an administrator wants to initiate a request for remote log collection for a user's device. Each device has a unique GUID identity, userId, deviceId and expiry date. - - - - Get-CsTeamsRemoteLogCollectionConfiguration - - Identity - - {{Fill Identity Description}} - - XdsIdentity - - XdsIdentity - - - None - - - - - - Identity - - {{Fill Identity Description}} - - XdsIdentity - - XdsIdentity - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsRemoteLogCollectionConfiguration - - The above cmdlet lists the devices of TeamsRemoteLogCollectionConfiguration. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csTeamsRemoteLogCollectionConfiguration - - - Get-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionDevice - - - Set-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/set-csTeamsRemoteLogCollectionDevice - - - New-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/new-csTeamsRemoteLogCollectionDevice - - - Remove-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csTeamsRemoteLogCollectionDevice - - - - - - Get-CsTeamsRemoteLogCollectionDevice - Get - CsTeamsRemoteLogCollectionDevice - - Returns a list of devices for which remote log collection has been initiated for. - - - - Remote log collection is a feature in Microsoft Teams that allows IT administrators to remotely trigger the collection of diagnostic logs from user devices through the Teams Admin Center (TAC). Instead of relying on manual user intervention, admins can initiate log collection for troubleshooting directly from the TAC portal. - TeamsRemoteLogCollectionConfiguration is updated with a list of devices when an administrator wants to initiate a request for remote log collection for a user's device. Each device has a unique GUID identity, userId, deviceId and expiry date. - - - - Get-CsTeamsRemoteLogCollectionDevice - - Identity - - The Identity parameter identifies the remote log collection configuration. - - Guid - - Guid - - - None - - - - - - Identity - - The Identity parameter identifies the remote log collection configuration. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsRemoteLogCollectionDevice - - The above cmdlet lists all the devices of TeamsRemoteLogCollectionDevice. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionDevice - - - Get-CsTeamsRemoteLogCollectionConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionConfiguration - - - Set-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/set-csTeamsRemoteLogCollectionDevice - - - New-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/new-csTeamsRemoteLogCollectionDevice - - - Remove-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csTeamsRemoteLogCollectionDevice - - - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - Get - CsTeamsRoomVideoTeleConferencingPolicy - - Use this cmdlet to retrieve the current Teams Room Video TeleConferencing policies. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - The name the tenant admin gave to the Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - The name the tenant admin gave to the Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsroomvideoteleconferencingpolicy - - - - - - Get-CsTeamsSharedCallingRoutingPolicy - Get - CsTeamsSharedCallingRoutingPolicy - - Use the Get-CsTeamsSharedCallingRoutingPolicy cmdlet to get Teams shared calling routing policy information. Teams shared calling routing policy is used to configure shared calling. - - - - TeamsSharedCallingRoutingPolicy is used to configure shared calling. - - - - Get-CsTeamsSharedCallingRoutingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - Get-CsTeamsSharedCallingRoutingPolicy - - Identity - - Unique identifier of the Teams shared calling routing policy to be retrieved. - You cannot use wildcard characters when specifying the Identity. If neither the Identity nor the Filter parameters are specified, then Get-CsTeamsSharedCallingRoutingPolicy returns all the Teams shared calling routing policies configured for use in the organization. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Unique identifier of the Teams shared calling routing policy to be retrieved. - You cannot use wildcard characters when specifying the Identity. If neither the Identity nor the Filter parameters are specified, then Get-CsTeamsSharedCallingRoutingPolicy returns all the Teams shared calling routing policies configured for use in the organization. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsSharedCallingRoutingPolicy - - The command shown in Example 1 returns information for all the Teams shared calling routing policies configured for use in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsSharedCallingRoutingPolicy -Identity "Seattle" - - In Example 2, information is returned for a single Teams shared calling routing policy; the policy with Identity Seattle. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsSharedCallingRoutingPolicy -Filter "tag:*" - - The command shown in Example 3 returns information about all the Teams shared calling routing policies configured at the per-user scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsTeamsSharedCallingRoutingPolicy -Identity Global - - The command shown in Example 4 returns information about the Global policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssharedcallingroutingpolicy - - - Set-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssharedcallingroutingpolicy - - - Grant-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssharedcallingroutingpolicy - - - Remove-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssharedcallingroutingpolicy - - - New-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssharedcallingroutingpolicy - - - - - - Get-CsTeamsShiftsAppPolicy - Get - CsTeamsShiftsAppPolicy - - Returns information about the Teams Shifts App policies that have been configured for use in your organization. - - - - The Teams Shifts app is designed to help frontline workers and their managers manage schedules and communicate effectively. - - - - Get-CsTeamsShiftsAppPolicy - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - Get-CsTeamsShiftsAppPolicy - - Identity - - Unique Identity assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - Identity - - Unique Identity assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsAppPolicy - - Lists any available Teams Shifts Apps Policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsapppolicy - - - - - - Get-CsTeamsShiftsPolicy - Get - CsTeamsShiftsPolicy - - This cmdlet allows you to get properties of a TeamsShiftPolicy instance, including user's Teams off shift warning message-specific settings. - - - - This cmdlet allows you to get properties of a TeamsShiftPolicy instance. Use this to get the policy name and Teams off shift warning message-specific settings (ShiftNoticeMessageType, ShiftNoticeMessageCustom, ShiftNoticeFrequency, AccessGracePeriodMinutes). - - - - Get-CsTeamsShiftsPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - Get-CsTeamsShiftsPolicy - - Identity - - > Applicable: Microsoft Teams - Policy instance name. Optional. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. Optional. - - XdsIdentity - - XdsIdentity - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsPolicy - - Gets the properties of all instances of the TeamsShiftPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsShiftsPolicy -Identity OffShiftAccessMessage1Always - - Gets the properties of the OffShiftAccessMessage1Always instance of the TeamsShiftPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamsshiftspolicy - - - Set-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftspolicy - - - New-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftspolicy - - - Remove-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftspolicy - - - Grant-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsshiftspolicy - - - - - - Get-CsTeamsSipDevicesConfiguration - Get - CsTeamsSipDevicesConfiguration - - This cmdlet is used to retrieve the organization-wide Teams SIP devices configuration. - - - - This cmdlet is used to retrieve the organization-wide Teams SIP devices configuration which contains settings that are applicable to SIP devices connected to Teams using Teams Sip Gateway. - To execute the cmdlet, you need to hold a role within your organization such as Global Reader, Teams Administrator, or Teams Communication Administrator. - - - - Get-CsTeamsSipDevicesConfiguration - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsSipDevicesConfiguration - -Identity : Global -BulkSignIn : Enabled - - In this example, the organization has Bulk SignIn enabled for their SIP devices. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssipdevicesconfiguration - - - Set-CsTeamsSipDevicesConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssipdevicesconfiguration - - - - - - Get-CsTeamsSurvivableBranchAppliance - Get - CsTeamsSurvivableBranchAppliance - - Gets the Survivable Branch Appliance (SBA) configured in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Get-CsTeamsSurvivableBranchAppliance - - Filter - - This parameter can be used to fetch instances based on partial matches on the Identity field. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssurvivablebranchappliance - - - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - Get - CsTeamsSurvivableBranchAppliancePolicy - - Get the Survivable Branch Appliance (SBA) Policy defined in the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssurvivablebranchappliancepolicy - - - - - - Get-CsTeamsTargetingPolicy - Get - CsTeamsTargetingPolicy - - The Get-CsTeamsTargetingPolicy cmdlet enables you to return information about all the Tenant tag setting policies that have been configured for use in your organization. - - - - The CsTeamsTargetingPolicy cmdlets enable administrators to control the type of tags that users can create or the features that they can access in Teams. It also helps determine how tags deal with Teams members or guest users. - - - - Get-CsTeamsTargetingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - Get-CsTeamsTargetingPolicy - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-tenant policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the tenant tag setting policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-tenant policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the tenant tag setting policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsTargetingPolicy -Identity SalesPolicy - - In this example Get-CsTeamsTargetingPolicy is used to return the per-tenant tag policy that has an Identity SalesPolicy. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Set-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - Remove-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - - - - Get-CsTeamsTemplatePermissionPolicy - Get - CsTeamsTemplatePermissionPolicy - - Fetches the TeamsTemplatePermissionPolicy. This policy can be used to hide Teams templates from users and groups. - - - - Fetches the instances of the policy. Each policy object contains a property called `HiddenTemplates`.This array contains the list of Teams template IDs that will be hidden by that instance of the policy. - - - - Get-CsTeamsTemplatePermissionPolicy - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the `Identity` field. - - String - - String - - - None - - - - Get-CsTeamsTemplatePermissionPolicy - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the `Identity` field. - - String - - String - - - None - - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - TeamsTemplatePermissionPolicy.Cmdlets.TeamsTemplatePermissionPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS >Get-CsTeamsTemplatePermissionPolicy - -Identity HiddenTemplates Description --------- --------------- ----------- -Global {com.microsoft.teams.template.CoordinateIncidentResponse} -Tag:Foobar {com.microsoft.teams.template.ManageAProject, com.microsoft.teams.template.ManageAnEvent} - - Fetches all the policy instances currently available. - - - - -------------------------- Example 2 -------------------------- - PS >Get-CsTeamsTemplatePermissionPolicy -Identity Foobar - -Identity HiddenTemplates Description --------- --------------- ----------- -Tag:Foobar {com.microsoft.teams.template.ManageAProject, com.microsoft.teams.template.ManageAnEvent} - - Fetches an instance of a policy with known identity. - - - - -------------------------- Example 3 -------------------------- - PS >Get-CsTeamsTemplatePermissionPolicy -Filter *Foo* - -Identity HiddenTemplates Description --------- --------------- ----------- -Tag:Foobar {com.microsoft.teams.template.ManageAProject, com.microsoft.teams.template.ManageAnEvent} - - The `Filter` parameter can be used to fetch policy instances based on partial matches on Identity. - Note: The "Tag:" prefix can be ignored when specifying the identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstemplatepermissionpolicy - - - New-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy - - - Remove-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstemplatepermissionpolicy - - - Set-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstemplatepermissionpolicy - - - - - - Get-CsTeamsUnassignedNumberTreatment - Get - CsTeamsUnassignedNumberTreatment - - Displays a specific or all treatments for how calls to an unassigned number range should be routed. - - - - This cmdlet displays a specific or all treatments for how calls to an unassigned number range should be routed. - - - - Get-CsTeamsUnassignedNumberTreatment - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on the Identity attribute. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - Get-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment to show. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on the Identity attribute. - - System.String - - System.String - - - None - - - Identity - - The Id of the specific treatment to show. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsUnassignedNumberTreatment -Identity MainAA - - This example displays the treatment MainAA. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsUnassignedNumberTreatment - - This example displays all configured treatments. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsUnassignedNumberTreatment -Filter Ann* - - This example displays all configured treatments with an Identity starting with Ann. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - - - - Get-CsTeamsUpdateManagementPolicy - Get - CsTeamsUpdateManagementPolicy - - Use this cmdlet to retrieve the current Teams Update Management policies in the organization. - - - - The Teams Update Management Policy allows admins to specify if a given user is enabled to preview features in Teams. - - - - Get-CsTeamsUpdateManagementPolicy - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - - Get-CsTeamsUpdateManagementPolicy - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - - - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - TeamsUpdateManagementPolicy.Cmdlets.TeamsUpdateManagementPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsUpdateManagementPolicy - - In this example, we retrieve all the existing Teams Update Management policies in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupdatemanagementpolicy - - - - - - Get-CsTeamsUpgradeConfiguration - Get - CsTeamsUpgradeConfiguration - - Returns information related to managing the upgrade to Teams from Skype for Business. - - - - TeamsUpgradeConfiguration is used in conjunction with TeamsUpgradePolicy. The settings in TeamsUpgradeConfiguration allow administrators to configure whether users subject to upgrade and who are running on Windows clients should automatically download the Teams app. It also allows administrators to determine which application Office 365 users should use to join Skype for Business meetings. - Separate instances of TeamsUpgradeConfiguration exist in Office 365 and Skype for Business Server. - TeamsUpgradeConfiguration in Office 365 applies to any user who does not have an on-premises Skype for Business account. - TeamsUpgradeConfiguration in Skype for Business Server can used to manage on-premises users in a hybrid environment. In on-premises, only the DownloadTeams property is available. - The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download the Teams app in the background. This setting is only honored for users on Windows clients, and only if TeamsUpgradePolicy for the user meets either of these conditions: - NotifySfbUser=true, or - Mode=TeamsOnly Otherwise, this setting is ignored. - The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: SkypeMeetingsApp and NativeLimitedClient. "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers. This property is only available when configuring TeamsUpgradeConfiguration in Office 365. It is not honored for users homed on-premises in Skype for Business Server. - - - - Get-CsTeamsUpgradeConfiguration - - Identity - - {{Fill Identity Description}} - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use - - - SwitchParameter - - - False - - - Tenant - - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Identity - - {{Fill Identity Description}} - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Do not use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - These settings are only honored by newer versions of Skype for Business clients. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsUpgradeConfiguration - - The above cmdlet lists the properties of TeamsUpgradeConfiguration. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csteamsupgradeconfiguration - - - Set-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Get-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradepolicy - - - Grant-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - - - - Get-CsTeamsUpgradePolicy - Get - CsTeamsUpgradePolicy - - This cmdlet returns the set of instances of this policy. - - - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. As an organization with Skype for Business starts to adopt Teams, administrators can manage the user experience in their organization using the concept of coexistence "mode". Mode defines in which client incoming chats and calls land as well as in what service (Teams or Skype for Business) new meetings are scheduled in. Mode also governs whether chat, calling, and meeting scheduling functionality are available in the Teams client. Finally, prior to upgrading to TeamsOnly mode administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade. - > [!IMPORTANT] > It can take up to 24 hours for a change to TeamsUpgradePolicy to take effect. Before then, user presence status may not be correct (may show as Unknown ). - - NOTES: - Except for on-premise versions of Skype for Business Server, all relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet. - If you are using Skype for Business Server, there are no built-in instances and you'll need to create one. Also, only the NotifySfBUsers property is available. Mode is not present. - Using TeamsUpgradePolicy in an on-premises environmention requires Skype for Business Server 2015 with CU8 or later. - You can also find more guidance here: Migration and interoperability guidance for organizations using Teams together with Skype for Business (https://learn.microsoft.com/microsoftteams/migration-interop-guidance-for-teams-with-skype). - - - - Get-CsTeamsUpgradePolicy - - Identity - - > Applicable: Microsoft Teams - If identity parameter is passed, this will return a specific instance. If no identity parameter is specified, the cmdlet returns all instances. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - {{Fill Filter Description}} - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - {{Fill Filter Description}} - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - If identity parameter is passed, this will return a specific instance. If no identity parameter is specified, the cmdlet returns all instances. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - Example 1: List all instances of TeamsUpgradePolicy (Skype for Business Online) - PS C:\> Get-CsTeamsUpgradePolicy - -Identity : Global -Description : Users can use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False - -Identity : Tag:UpgradeToTeams -Description : Use Teams Only -Mode : TeamsOnly -NotifySfbUsers : False - -Identity : Tag:Islands -Description : Use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False -Action : None - -Identity : Tag:IslandsWithNotify -Description : Use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : True - -Identity : Tag:SfBOnly -Description : Use only Skype for Business -Mode : SfBOnly -NotifySfbUsers : False - -Identity : Tag:SfBOnlyWithNotify -Description : Use only Skype for Business -Mode : SfBOnly -NotifySfbUsers : True - -Identity : Tag:SfBWithTeamsCollab -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollab -NotifySfbUsers : False - -Identity : Tag:SfBWithTeamsCollabWithNotify -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollab -NotifySfbUsers : True - -Identity : Tag:SfBWithTeamsCollabAndMeetings -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollabAndMeetings -NotifySfbUsers : False - -Identity : Tag:SfBWithTeamsCollabAndMeetingsWithNotify -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollabAndMeetings -NotifySfbUsers : True - - List all instances of TeamsUpgradePolicy - - - - Example 2: List the global instance of TeamsUpgradePolicy (which applies to all users in a tenant unless they are explicitly assigned an instance of this policy) - PS C:\> Get-CsTeamsUpgradePolicy -Identity Global - -Identity : Global -Description : Users can use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False - - List the global instance of TeamsUpgradePolicy - - - - Example 3: List all instances of TeamsUpgradePolicy in an on-premises environment - PS C:\> Get-CsTeamsUpgradePolicy -Identity Global - -Identity : Global -Description : Notifications are disabled -NotifySfbUsers : False - - List all on-premises instances (if any) of TeamsUpgradePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csteamsupgradepolicy - - - Get-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradeconfiguration - - - Set-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Grant-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - - - - Get-CsTeamsVdiPolicy - Get - CsTeamsVdiPolicy - - The Get-CsTeamsVdiPolicy cmdlet enables you to return infomration about all the Vdi policies that have been configured for use in your organization. - - - - The CsTeamsVdiPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting specifically on an unoptimized VDI environment. It also controls whether a user can be in VDI 2.0 optimization mode. - Teams Vdi policies can be configured at the global and per-user scopes. - - - - Get-CsTeamsVdiPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - - Get-CsTeamsVdiPolicy - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-user policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the meeting policies configured for use in your organization will be returned. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-user policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the meeting policies configured for use in your organization will be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - TeamsVdiPolicy.Cmdlets.TeamsVdiPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsVdiPolicy - - In Example 1, Get-CsTeamsVdiPolicy is called without any additional parameters; this returns a collection of all the teams meeting policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsVdiPolicy -Identity SalesPolicy - - In Example 2, Get-CsTeamsVdiPolicy is used to return the per-user meeting policy that has an Identity SalesPolicy. Because identites are unique, this command will never return more than one item. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsVdiPolicy | where-Object {$_.VDI2Optimization -eq "Enabled"} - - The preceding command returns a collection of all the meeting policies where the VDI2Optimization property is Enabled. To do this, Get-CsTeamsVdiPolicy is first called without any parameters in order to return a collection of all the policies configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which selects only those policies where the VDI2Optimization property is equal to Enabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvdipolicy - - - - - - Get-CsTeamsVideoInteropServicePolicy - Get - CsTeamsVideoInteropServicePolicy - - The Get-CsTeamsVideoInteropServicePolicy cmdlet allows you to identify the pre-constructed policies that you can use in your organization. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization. Microsoft provides pre-constructed policies for each of our supported partners that allow you to designate which partner(s) to use for cloud video interop. You can assign this policy to one or more of your users leveraging the Grant-CsTeamsVideoInteropServicePolicy cmdlet. - - - - Get-CsTeamsVideoInteropServicePolicy - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsVideoInteropServicePolicy - - Identity - - Specify the known name of a policy that has been pre-constructed for you to use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - Identity - - Specify the known name of a policy that has been pre-constructed for you to use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsVideoInteropServicePolicy -Filter "*enabled*" - - This example returns all of the policies that have been pre-constructed for you to use when turning on Cloud Video Interop with one of our supported partners. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvideointeropservicepolicy - - - - - - Get-CsTeamsVirtualAppointmentsPolicy - Get - CsTeamsVirtualAppointmentsPolicy - - This cmdlet is used to fetch policy instances of TeamsVirtualAppointmentsPolicy. - - - - Fetches instances of TeamsVirtualAppointmentsPolicy. Each policy object contains a property called `EnableSmsNotifications`. This property specifies whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using a virtual appointment meeting template. - - - - Get-CsTeamsVirtualAppointmentsPolicy - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - - Get-CsTeamsVirtualAppointmentsPolicy - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - TeamsVirtualAppointmentsPolicy.Cmdlets.TeamsVirtualAppointmentsPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsVirtualAppointmentsPolicy - -Identity EnableSmsNotifications --------- ---------------------- -Global True -Tag:sms-enabled True -Tag:sms-disabled False - - Fetches all the policy instances currently available. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsVirtualAppointmentsPolicy -Identity sms-enabled - -Identity EnableSmsNotifications --------- ---------------------- -Tag:sms-enabled True - - Fetches an instance of a policy with a known identity. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsVirtualAppointmentsPolicy -Filter *sms* - -Identity EnableSmsNotifications --------- ---------------------- -Tag:sms-enabled True -Tag:sms-disabled False - - The `Filter` parameter can be used to fetch policy instances based on partial matches on Identity. - Note: The "Tag:" prefix can be ignored when specifying the identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvirtualappointmentspolicy - - - New-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvirtualappointmentspolicy - - - Remove-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvirtualappointmentspolicy - - - Set-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvirtualappointmentspolicy - - - Grant-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvirtualappointmentspolicy - - - - - - Get-CsTeamsVoiceApplicationsPolicy - Get - CsTeamsVoiceApplicationsPolicy - - Use the Get-CsTeamsVoiceApplicationsPolicy cmdlet to get Teams voice applications policy information. TeamsVoiceApplications policy governs what permissions the supervisors/users have over auto attendants and call queues. - - - - TeamsVoiceApplicationsPolicy is used for Supervisor Delegated Administration which allows tenant admins to permit certain users to make changes to auto attendant and call queue configurations. - - - - Get-CsTeamsVoiceApplicationsPolicy - - Filter - - Enables you to use wildcards when retrieving one or more Teams voice applications policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - - Get-CsTeamsVoiceApplicationsPolicy - - Identity - - Unique identifier of the Teams voice applications policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "SDA-Allow-All" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then Get-CsTeamsVoiceApplicationsPolicy returns all the Teams voice applications policies configured for use in the tenant. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more Teams voice applications policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the Teams voice applications policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "SDA-Allow-All" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then Get-CsTeamsVoiceApplicationsPolicy returns all the Teams voice applications policies configured for use in the tenant. - - String - - String - - - None - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Get-CsTeamsVoiceApplicationsPolicy - - The command shown in Example 1 returns information for all the Teams voice applications policies configured for use in the tenant. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsTeamsVoiceApplicationsPolicy -Identity "SDA-Allow-All" - - In Example 2, information is returned for a single Teams voice applications policy; the policy with the Identity SDA-Allow-All. - - - - -------------------------- EXAMPLE 3 -------------------------- - Get-CsTeamsVoiceApplicationsPolicy -Filter "tag:*" - - The command shown in Example 3 returns information about all the Teams voice applications policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "tag:". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Set-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - Grant-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Remove-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - New-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - - - - Get-CsTeamsWorkLoadPolicy - Get - CsTeamsWorkLoadPolicy - - This cmdlet applies an instance of the Teams Workload policy to users or groups in a tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Get-CsTeamsWorkLoadPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - Get-CsTeamsWorkLoadPolicy - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsWorkLoadPolicy - - Retrieves the Teams Workload Policy instances and shows assigned values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Get-CsTeamsWorkLocationDetectionPolicy - Get - CsTeamsWorkLocationDetectionPolicy - - This cmdlet is used to fetch policy instances of TeamsWorkLocationDetectionPolicy. - - - - Fetches instances of TeamsWorkLocationDetectionPolicy. Each policy object contains the following properties: - - `EnableWorkLocationDetection`: specifies whether Microsoft Teams determines a user's work location based on interaction with organization‑managed networks and devices. When enabled, Teams updates the user's current work location using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users' personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839). - - `UserSettingsDefault`: Specifies the default user consent behavior when automatic update of work location is enabled and only applies to WiFi, and has no impact on device-based detection. - `Disabled` (default): Users must explicitly opt in (Ask mode). - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - Learn more about the admin configuration modes (https://learn.microsoft.com/en-us/microsoft-365/places/configure-auto-detect-work-location). - The combination of these settings determines whether automatic update runs, which signals are active, and how users are informed. Behavior matrix | EnableWorkLocationDetection | UserSettingsDefault | Automatic detection behavior | |----------------------------|---------------------|------------------------------| | False | (ignored) | Peripheral and Wi-Fi check-in are disabled. UserSettingsDefault is ignored. | | True | Disabled | Peripheral and Wi-Fi check‑in are enabled. Wi‑Fi check‑in runs in Ask mode , meaning users will be asked to opt in before update activates. | | True | Enabled | Peripheral and Wi‑Fi check‑in are enabled. Wi-Fi check-in runs in Inform mode , meaning Wi-Fi based update is on by default and users can opt out. | | False | Enabled | Peripheral check‑in is disabled. Wi‑Fi check‑in is disabled. UserSettingsDefault is ignored when EnableWorkLocationDetection is set to False. | Notes on behavior - When EnableWorkLocationDetection is set to False , automatic update is fully disabled regardless of user defaults. - When EnableWorkLocationDetection is set to True , UserSettingsDefault determines whether users experience Ask (opt‑in) or Inform (opt‑out) behavior. - Peripheral and Wi‑Fi signals follow the same consent model and are not independently configured. - - Automatic update of work location applies only to actual location for the current working day and is cleared at the end of a user's working hours. - - - - Get-CsTeamsWorkLocationDetectionPolicy - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - - Get-CsTeamsWorkLocationDetectionPolicy - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - TeamsWorkLocationDetectionPolicy.Cmdlets.TeamsWorkLocationDetectionPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsWorkLocationDetectionPolicy - -Identity EnableWorkLocationDetection UserSettingsDefault --------- --------------------------- ------------------- -Global False Disabled -Tag:wld-policy1 True Enabled -Tag:wld-policy2 False Disabled - - Fetches all the policy instances currently available. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy1 - -Identity EnableWorkLocationDetection UserSettingsDefault --------- --------------------------- ------------------- -Tag:wld-policy1 True Enabled - - Fetches an instance of a policy with a known identity. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsWorkLocationDetectionPolicy -Filter *wld* - -Identity EnableWorkLocationDetection UserSettingsDefault --------- --------------------------- ------------------- -Tag:wld-policy1 True Enabled -Tag:wld-policy2 False Disabled - - The `Filter` parameter can be used to fetch policy instances based on partial matches on Identity. - Note: The "Tag:" prefix can be ignored when specifying the identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworklocationdetectionpolicy - - - New-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworklocationdetectionpolicy - - - Remove-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworklocationdetectionpolicy - - - Set-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworklocationdetectionpolicy - - - Grant-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworklocationdetectionpolicy - - - - - - Get-CsTenantBlockedCallingNumbers - Get - CsTenantBlockedCallingNumbers - - Use the Get-CsTenantBlockedCallingNumbers cmdlet to retrieve tenant blocked calling numbers setting. - - - - Microsoft Direct Routing, Operator Connect and Calling Plans supports blocking of inbound calls from the public switched telephone network (PSTN). This feature allows a tenant-global list of number patterns to be defined so that the caller ID of every incoming PSTN call to the tenant can be checked against the list for a match. If a match is made, an incoming call is rejected. - The tenant blocked calling numbers includes a list of inbound blocked number patterns. Number patterns are managed through the CsInboundBlockedNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - You can also configure a list of number patterns to be exempt from call blocking. Exempt number patterns are managed through the CsInboundExemptNumberPattern commands New, Get, Set, and Remove. - You can test your call blocking by using the command Test-CsInboundBlockedNumberPattern. - The scope of tenant blocked calling numbers is global across the given tenant. - - - - Get-CsTenantBlockedCallingNumbers - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTenantBlockedCallingNumbers - - Identity - - The Identity parameter is a unique identifier that designates the scope, and for per-user scope a name, which identifies the TenantBlockedCallingNumbers to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope, and for per-user scope a name, which identifies the TenantBlockedCallingNumbers to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantBlockedCallingNumbers - - This example returns the tenant global settings for blocked calling numbers. It includes a list of inbound blocked number patterns and exempt number patterns. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - Set-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantblockedcallingnumbers - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - - - - Get-CsTenantDialPlan - Get - CsTenantDialPlan - - Use the Get-CsTenantDialPlan cmdlet to retrieve a tenant dial plan. - - - - The Get-CsTenantDialPlan cmdlet returns information about one or more tenant dial plans (also known as a location profiles) in an organization. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - You can use the Get-CsTenantDialPlan cmdlet to retrieve specific information about the normalization rules of a tenant dial plan. - - - - Get-CsTenantDialPlan - - Filter - - > Applicable: Microsoft Teams - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to retrieve. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to retrieve. - - String - - String - - - None - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantDialPlan - - This example retrieves all existing tenant dial plans. - - - - -------------------------- Example 2 -------------------------- - Get-CsTenantDialPlan -Identity Vt1TenantDialPlan2 - - This example retrieves the tenant dial plan that has an identity of Vt1TenantDialplan2. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - Get-CsTenantFederationConfiguration - Get - CsTenantFederationConfiguration - - Returns information about the federation configuration settings for your Skype for Business Online tenants. Federation configuration settings are used to determine which domains (if any) your users are allowed to communicate with. - - - - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and, if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, AOL, and Yahoo. - The Get-CsTenantFederationConfiguration cmdlet provides a way for administrators to return federation information for their Skype for Business Online tenants. This cmdlet can also be used to review the allowed and blocked lists, lists which are used to specify domains that users can and cannot communicate with. However, administrators must use the Get-CsTenantPublicProvider cmdlet in order to see which public IM and presence providers users are allowed to communicate with. - - - - Get-CsTenantFederationConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be returned. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Get-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant federation configuration settings. Because each tenant is limited to a single, global collection of federation configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsTenantFederationConfiguration cmdlet: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Filter "g*"` - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant federation configuration settings. Because each tenant is limited to a single, global collection of federation configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsTenantFederationConfiguration cmdlet: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Filter "g*"` - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be returned. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Get-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantFederationConfiguration - - The command shown in Exercise 1 returns federation configuration information for the current tenant: - - - - -------------------------- Example 2 -------------------------- - Get-CsTenantFederationConfiguration | Select-Object -ExpandProperty AllowedDomains - - In Example 2, information is returned for all the allowed domains found on the federation configuration for the current tenant (This list represents all the domains that the tenant is allowed to federate with). To do this, the command first calls the Get-CsTenantFederationConfiguration cmdlet to return federation information for the specified tenant. That information is then piped to the Select-Object cmdlet, which uses the ExpandProperty to "expand" the property AllowedDomains. Expanding a property simply means displaying all the information stored in that property onscreen, and in an easy-to-read format. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantfederationconfiguration - - - Set-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - - - - Get-CsTenantLicensingConfiguration - Get - CsTenantLicensingConfiguration - - Indicates whether licensing information for the specified tenant is available in the Teams admin center. - - - - The Get-CsTenantLicensingConfiguration cmdlet indicates whether licensing information for the specified tenant is available in the Teams admin center. The cmdlet returns information similar to this: - Identity : GlobalStatus : Enabled - If the Status is equal to Enabled then licensing information is available in the admin center. If not, then licensing information is not available in the admin center. - - - - Get-CsTenantLicensingConfiguration - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant licensing configuration settings. Because each tenant is limited to a single, global collection of licensing configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTenantLicensingConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant licensing configuration settings to be returned. Because each tenant is limited to a single, global collection of licensing settings there is no need include this parameter when calling the Get-CsTenantLicensingConfiguration cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant licensing configuration settings. Because each tenant is limited to a single, global collection of licensing configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant licensing configuration settings to be returned. Because each tenant is limited to a single, global collection of licensing settings there is no need include this parameter when calling the Get-CsTenantLicensingConfiguration cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantLicensingConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantLicensingConfiguration - - The command shown in Example 1 returns licensing configuration information for the current tenant: - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantlicensingconfiguration - - - Get-CsTenant - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenant - - - - - - Get-CsTenantMigrationConfiguration - Get - CsTenantMigrationConfiguration - - Use the Get-CsTenantMigrationConfiguration cmdlet to check if Meeting Migration Service (MMS) is enabled in your organization. - - - - Meeting Migration Service (MMS) is a Skype for Business service that runs in the background and automatically updates Skype for Business and Microsoft Teams meetings for users. MMS is designed to eliminate the need for users to run the Meeting Migration Tool to update their Skype for Business and Microsoft Teams meetings. This tool does not migrate Skype for Business meetings into Microsoft Teams meetings. - The Get-CsTenantMigrationConfiguration cmdlet retrieves the Meeting Migration Service configuration in your organization. - - - - Get-CsTenantMigrationConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantMigrationConfiguration - - This example shows the MMS configuration in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantmigrationconfiguration - - - Set-CsTenantMigrationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantmigrationconfiguration - - - - - - Get-CsTenantNetworkConfiguration - Get - CsTenantNetworkConfiguration - - Returns information about the network regions, sites and subnets in the tenant network configuration. Tenant network configuration is used for Location Based Routing. - - - - Tenant Network Configuration contains the list of network sites, subnets and regions configured. - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Each network site must be associated with a network region. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. - Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - A network region interconnects various parts of a network across multiple geographic areas. - A network region contains a collection of network sites. For example, if your organization has many sites located in India, then you may choose to designate "India" as a network region. - Location-Based Routing is a feature that allows PSTN toll bypass to be restricted for users based on policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in Microsoft 365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkConfiguration - - Filter - - Enables you to use wildcard characters when indicating the network configuration (or network configurations) to be returned. - - String - - String - - - None - - - - Get-CsTenantNetworkConfiguration - - Identity - - The Identity parameter is a unique identifier for the network configuration. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the network configuration (or network configurations) to be returned. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier for the network configuration. - - String - - String - - - None - - - - - - None - - - - - - - - - - Identity - - - The Identity of the network configuration. - - - - - NetworkRegions - - - The list of network regions of the network configuration. - - - - - NetworkSites - - - The list of network sites of the network configuration. - - - - - Subnets - - - The list of network subnets of the network configuration. - - - - - PostalCodes - - - This parameter is reserved for internal Microsoft use. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration - - The command shown in Example 1 returns the list of network configuration for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration -Identity Global - - The command shown in Example 2 returns the network configuration within the scope of Global. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration -Filter "global" - - The command shown in Example 3 returns the network site that matches the specified filter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkconfiguration - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - - - - Get-CsTenantNetworkRegion - Get - CsTenantNetworkRegion - - Returns information about the network region setting in the tenant. Tenant network region is used for Location Based Routing. - - - - A network region interconnects various parts of a network across multiple geographic areas. - A network region contains a collection of network sites. For example, if your organization has many sites located in India, then you may choose to designate "India" as a network region. - Location-Based Routing is a feature that allows PSTN toll bypass to be restricted for users based on policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in Microsoft 365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkRegion - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantNetworkRegion - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkRegion - - The command shown in Example 1 returns the list of network regions for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkRegion -Identity RedmondRegion - - The command shown in Example 2 returns the network region within the scope of RedmondRegion. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - Get-CsTenantNetworkSite - Get - CsTenantNetworkSite - - Returns information about the network site setting in the tenant. Tenant network site is used for Location Based Routing. - - - - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. - A best practice for Location Bsed Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Each network site must be associated with a network region. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. - Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkSite - - Filter - - Enables you to use wildcard characters when indicating the site (or sites) to be returned. - - String - - String - - - None - - - - Get-CsTenantNetworkSite - - Identity - - The Identity parameter is a unique identifier for the site. - - String - - String - - - None - - - - Get-CsTenantNetworkSite - - IncludePhoneNumbers - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the site (or sites) to be returned. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier for the site. - - String - - String - - - None - - - IncludePhoneNumbers - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - - - - None - - - - - - - - - - Identity - - - The Identity of the site. - - - - - Description - - - The description of the site. - - - - - NetworkRegionID - - - The network region ID of the site. - - - - - LocationPolicyID - - - The ID of the location policy assigned to the site. - - - - - SiteAddress - - - This parameter is reserved for internal Microsoft use. - - - - - NetworkSiteID - - - The ID of the network site. - - - - - OnlineVoiceRoutingPolicyTagID - - - The ID of the online voice routing policy assigned to the site. - - - - - EnableLocationBasedRouting - - - Boolean stating whether Location-Based Routing is enabled on the site. - - - - - EmergencyCallRoutingPolicyTagID - - - The ID of the Teams emergency call routing policy assigned to the site. - - - - - EmergencyCallingPolicyTagID - - - The ID of the Teams emergency calling policy assigned to the site. - - - - - NetworkRoamingPolicyTagID - - - The ID of the Teams network roaming policy assigned to the site. - - - - - EmergencyCallRoutingPolicyName - - - The name of the Teams emergency call routing policy assigned to the site. - - - - - EmergencyCallingPolicyName - - - The name of the Teams emergency calling policy assigned to the site. - - - - - NetworkRoamingPolicyName - - - The name of the Teams network roaming policy assigned to the site. - - - - - PhoneNumbers - - - This parameter is reserved for internal Microsoft use. - - - - - - The parameter IncludePhoneNumbers was introduced in Teams PowerShell Module 5.5.0. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkSite - - The command shown in Example 1 returns the list of network sites for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkSite -Identity siteA - - The command shown in Example 2 returns the network site within the scope of siteA. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTenantNetworkSite -Filter "Los Angeles" - - The command shown in Example 3 returns the network site that matches the specified filter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - New-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Remove-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - Set-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - - - - Get-CsTenantNetworkSubnet - Get - CsTenantNetworkSubnet - - Returns information about the network subnet setting in the tenant. Tenant network subnet is used for Location Based Routing. - - - - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. - Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkSubnet - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantNetworkSubnet - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network subnets to be returned. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network subnets to be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkSubnet - - The command shown in Example 1 returns the list of network subnets for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkSubnet -Identity '2001:4898:e8:25:844e:926f:85ad:dd70' - - The command shown in Example 2 returns the IPv6 format network subnet within the scope of '2001:4898:e8:25:844e:926f:85ad:dd70'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - Get-CsTenantTrustedIPAddress - Get - CsTenantTrustedIPAddress - - Returns information about the external trusted IPs in the tenant. Trusted IP address from user's endpoint will be checked to determine which internal subnet the user's endpoint is located. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. Trusted IP addresses in both IPv4 and IPv6 formats are accepted. - If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantTrustedIPAddress - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - Get-CsTenantTrustedIPAddress - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of trusted IP address to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of trusted IP address to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantTrustedIPAddress - - The command shown in Example 1 returns the list of trusted IP addresses for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantTrustedIPAddress -Identity '2001:4898:e8:25:8440::' - - The command shown in Example 2 returns the IPv6 format trusted IP address detail of '2001:4898:e8:25:8440::'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenanttrustedipaddress - - - - - - Get-CsUCPhoneConfiguration - Get - CsUCPhoneConfiguration - - Below Content Applies To: Lync Server 2010 - Returns information regarding management options for Microsoft Lync 2010 Phone Edition. This includes such things as the required security mode and whether or not the phone should automatically be locked after a specified period of inactivity. Below Content Applies To: Lync Server 2013 - Returns information regarding management options for Lync Phone Edition. This includes such things as the required security mode and whether or not the phone should automatically be locked after a specified period of inactivity. This cmdlet was introduced in Lync Server 2010. Below Content Applies To: Skype for Business Online - Get-CsUCPhoneConfiguration [[-Identity] <XdsIdentity>] [-Tenant <guid>] [-LocalStore] [<CommonParameters>] - Get-CsUCPhoneConfiguration [-Tenant <guid>] [-Filter <string>] [-LocalStore] [<CommonParameters>] Below Content Applies To: Skype for Business Server 2015 - Returns information regarding management options for UC phones. This includes such things as the required security mode and whether or not the phone should automatically be locked after a specified period of inactivity. This cmdlet was introduced in Lync Server 2010. - - - - UC phones represent the merging of the telephone and Skype for Business Server. Lync Phone Edition uses special hardware (that is, a Skype for Business-compatible telephone) that can function as a Voice over Internet Protocol (VoIP) telephone. In addition, this hardware can also act as a Skype for Business-like endpoint: you can set your current status; check the status of your Skype for Business contacts; search for new contacts; and carry out many of the other activities you are used to doing with Skype for Business. - The CsUCPhoneConfiguration cmdlets enable you to manage your UC phones; for example, you can control such things as the minimum length of the personal identification number (PIN) used to log on to the phone, and whether or not that phone will automatically lock itself after a specified period of inactivity. - Phone configuration settings can be applied at either the global scope or at the site scope. (Settings applied at the site scope take precedence over settings applied at the global scope.) The Get-CsUCPhoneConfiguration cmdlet enables you to retrieve information about the phone configuration settings current employed throughout your organization. - - - - Get-CsUCPhoneConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of unified communications (UC) phone configuration settings you want to return. To refer to the global settings use this syntax: - -Identity global - To refer to a collection configured at the site scope, use syntax similar to this: - -Identity "site:Redmond" - Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards then include the Filter parameter instead. - If this parameter is not specified then the Get-CsUCPhoneConfiguration cmdlet returns a collection of all the UC phone configuration settings in use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection (or collections) of UC phone configuration settings. To return a collection of all the settings configured at the site scope, use this syntax: - -Filter site:* - To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter for), use this syntax: - -Filter EMEA - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the UC phone configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcard characters in order to return a collection (or collections) of UC phone configuration settings. To return a collection of all the settings configured at the site scope, use this syntax: - -Filter site:* - To return a collection of all the settings that have the string value "EMEA" somewhere in their Identity (the only property you can filter for), use this syntax: - -Filter EMEA - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of unified communications (UC) phone configuration settings you want to return. To refer to the global settings use this syntax: - -Identity global - To refer to a collection configured at the site scope, use syntax similar to this: - -Identity "site:Redmond" - Note that you cannot use wildcards when specifying an Identity. If you need to use wildcards then include the Filter parameter instead. - If this parameter is not specified then the Get-CsUCPhoneConfiguration cmdlet returns a collection of all the UC phone configuration settings in use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the UC phone configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - The Get-CsUCPhoneConfiguration cmdlet does not accept pipelined input. - - - - - - - System.Object - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.UcPhoneSettings - - - The Get-CsUCPhoneConfiguration cmdlet returns instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.UcPhoneSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsUCPhoneConfiguration - - The command shown in Example 1 returns all of the UC phone configuration settings currently in use in the organization. Calling the Get-CsUCPhoneConfiguration cmdlet without any parameters always returns a complete collection of phone configuration settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsUCPhoneConfiguration -Identity site:Redmond - - In Example 2, only the UC phone configuration settings that have the Identity site:Redmond are returned. Because Identities must be unique, this command will never return more than one collection of phone configuration settings. - - - - -------------------------- Example 3 -------------------------- - Get-CsUCPhoneConfiguration -Filter site:* - - In Example 3, all the UC phone settings that have been configured at the site scope are returned. To do this, the Get-CsUCPhoneConfiguration cmdlet is called, along with the Filter parameter; the filter value "site:*" limits the returned data to settings where the Identity property (the only property you can filter on) begins with the string value "site:". By definition, any settings that have an Identity that begins with the string value "site:" are settings that have been configured at the site scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsUCPhoneConfiguration | Where-Object {$_.SIPSecurityMode -eq "Medium"} - - Example 4 returns the UC phone configuration settings where the SIP security mode is set to Medium. (SIP security can be set to Low, Medium, or High.) To carry out this task, the command first uses the Get-CsUCPhoneConfiguration cmdlet without any additional parameters in order to return a collection of all the UC phone settings configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which picks out only those settings where the SIPSecurityMode property is equal to Medium. - - - - -------------------------- Example 5 -------------------------- - Get-CsUCPhoneConfiguration | Where-Object {$_.EnforcePhoneLock -eq $False -or $_.MinPhonePinLength -lt 6} - - In Example 5, UC phone settings are returned that meet one or both of the following criteria: 1) phone locking is not enforced; and/or, 2) the minimum PIN length is less than 6 digits. To do this, the command first calls the Get-CsUCPhoneConfiguration cmdlet to return a collection of all the UC phone settings currently in use in the organization. This collection is then piped to the Where-Object cmdlet, which selects those items that meet one (or both) of the following criteria: 1) the EnforcePhoneLock property is equal to False; and/or, 2) the MinPhonePinLength property is less than 6. - The -or operator tells the Where-Object cmdlet to pick settings that meet either (or both) of the criteria. To pick settings that meet both the criteria (in this case, meaning that phone locking is not enforced and the PIN length is less than 6) use the -and operator: - Where-Object {$ .EnforcePhoneLock -eq $False -and $ .MinPhonePinLength -lt 6} - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csucphoneconfiguration - - - New-CsUCPhoneConfiguration - - - - Remove-CsUCPhoneConfiguration - - - - Set-CsUCPhoneConfiguration - - - - - - - Get-CsUserServicesConfiguration - Get - CsUserServicesConfiguration - - Returns information about the User Services configuration settings in use in your organization. The User Services service helps maintain presence information and manage conferencing. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server relies on the User Services service to help maintain presence information for users and to manage meetings and conferences. In turn, the CsUserServicesConfiguration cmdlets are used to administer User Services settings at the global, site, and service scope. (Note that the only service that can host User Services configuration settings is the User Services itself.) These settings help determine such things as the number of contacts a user can have, the number of meetings a user can have scheduled at any one time, and the length of time that a given meeting can remain active. - The Get-CsUserServicesConfiguration cmdlet provides a way for administrators to retrieve information about any (or all) of the User Services configuration settings currently in use. - - - - Get-CsUserServicesConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when retrieving one or more collections of User Services configuration settings. For example, to return all the settings configured at the site scope, use this syntax: - `-Filter "site:*"` - To return all the settings configured at the service scope, use this syntax: - `-Filter "service:*"` - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the User Services configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsUserServicesConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the User Services configuration settings to be returned. To return the global settings, use this syntax:. - `-Identity global` - To return settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To return settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is omitted then the Get-CsUserServicesConfiguration cmdlet returns all the User Services configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the User Services configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when retrieving one or more collections of User Services configuration settings. For example, to return all the settings configured at the site scope, use this syntax: - `-Filter "site:*"` - To return all the settings configured at the service scope, use this syntax: - `-Filter "service:*"` - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the User Services configuration settings to be returned. To return the global settings, use this syntax:. - `-Identity global` - To return settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To return settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - If this parameter is omitted then the Get-CsUserServicesConfiguration cmdlet returns all the User Services configuration settings currently in use in your organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the User Services configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The Get-CsUserServicesConfiguration cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserServicesSettings - - - The Get-CsUserServicesConfiguration cmdlet returns instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserServicesSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsUserServicesConfiguration - - The command shown in Example 1 returns a collection of all the User Services configuration settings currently in use in the organization. This is achieved by calling the Get-CsUserServicesConfiguration cmdlet without any additional parameters. - - - - -------------------------- Example 2 -------------------------- - Get-CsUserServicesConfiguration -Identity site:Redmond - - In Example 2, only one collection of User Services configuration settings is returned: the collection with the Identity site:Redmond. Because identities must be unique, this command can never return more than one item. - - - - -------------------------- Example 3 -------------------------- - Get-CsUserServicesConfiguration -Filter "service:*" - - Example 3 returns a collection of all the User Services configuration settings that have been applied at the service scope. This is done by calling the Get-CsUserServicesConfiguration cmdlet along with the -Filter parameter; the filter value "service:*" limits the returned data to settings where the Identity begins with the characters "service:". By definition, those are settings configured at the service scope. - - - - -------------------------- Example 4 -------------------------- - Get-CsUserServicesConfiguration | Where-Object {$_.MaxContacts -gt 250} - - Example 4 returns all the User Services configuration settings that allow users to have more than 250 contacts. To do this, the command first calls the Get-CsUserServicesConfiguration cmdlet without any additional parameters in order to return a collection of all the User Services configuration settings currently in use. That collection is then piped to the Where-Object cmdlet, which picks out only those settings where the MaxContacts property is greater than 250. - - - - -------------------------- Example 5 -------------------------- - Get-CsUserServicesConfiguration | Where-Object {$_.AnonymousUserGracePeriod -gt "00:10:00"} - - In Example 5, information is reported for those User Services configuration settings where the anonymous user grace period is longer than 10 minutes. To carry out this task, the command first calls the Get-CsUserServicesConfiguration cmdlet without any additional parameters; this returns a collection of all the User Services configuration settings being used in the organization. The returned collection is then piped to the Where-Object cmdlet, which selects only the settings where the AnonymousUserGracePeriod property is greater than 10 minutes (00 hours: 10 minutes: 00 seconds). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csuserservicesconfiguration - - - New-CsUserServicesConfiguration - - - - Remove-CsUserServicesConfiguration - - - - Set-CsUserServicesConfiguration - - - - - - - Get-CsVideoInteropServiceProvider - Get - CsVideoInteropServiceProvider - - Get information about the Cloud Video Interop for Teams. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - - - - Get-CsVideoInteropServiceProvider - - Filter - - A regex string filter on the providers that have been set up for use within the organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsVideoInteropServiceProvider - - Identity - - Retrieve the specific provider information by name if is known - returns only those providers that have already been set within the tenant. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - A regex string filter on the providers that have been set up for use within the organization. - - String - - String - - - None - - - Identity - - Retrieve the specific provider information by name if is known - returns only those providers that have already been set within the tenant. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsVideoInteropServiceProvider - - Get all of the providers that have been configured for use within the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csvideointeropserviceprovider - - - - - - Get-CsVoiceConfiguration - Get - CsVoiceConfiguration - - Retrieves the voice configuration object, which contains a full list of all voice test configurations defined for the Skype for Business Server deployment. This cmdlet was introduced in Lync Server 2010. - - - - Voice test configurations are used to test a phone number against a specific voice policy, route, and dial plan. This cmdlet is used to retrieve the global instance that holds a list of all voice test configurations defined within the Skype for Business Server 2015 deployment. To retrieve individual voice test configurations or to retrieve them as individual objects rather than as a list, use the Get-CsVoiceTestConfiguration cmdlet. - - - - Get-CsVoiceConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - There can only be one instance of this object, so this parameter does nothing. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsVoiceConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope of the voice configuration to retrieve. The only possible value is Global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - There can only be one instance of this object, so this parameter does nothing. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope of the voice configuration to retrieve. The only possible value is Global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration - - - This cmdlet returns an instance of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsVoiceConfiguration - - This example retrieves the voice configuration. To retrieve the voice test configurations, use the Get-CsVoiceTestConfiguration cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csvoiceconfiguration - - - Remove-CsVoiceConfiguration - - - - Set-CsVoiceConfiguration - - - - Get-CsVoiceTestConfiguration - - - - - - - Get-CsVoicePolicy - Get - CsVoicePolicy - - Returns information about one or more voice policies configured for your organization. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet retrieves voice policy information. Voice policies are used to manage such Enterprise Voice-related features as simultaneous ringing (the ability to have a second phone ring each time someone calls your office phone) and call forwarding. Use this cmdlet to retrieve the settings that enable and disable many of these features. - - - - Get-CsVoicePolicy - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter accepts a wildcard string and returns all voice policies with identities matching that string. For example, a Filter value of tag:* will return all voice policies defined at the per-user level. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose voice policy is to be retrieved. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - Get-CsVoicePolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all voice policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose voice policy is to be retrieved. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter accepts a wildcard string and returns all voice policies with identities matching that string. For example, a Filter value of tag:* will return all voice policies defined at the per-user level. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all voice policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose voice policy is to be retrieved. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy - - - This cmdlet returns instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsVoicePolicy - - This example displays all the voice policies that have been defined for an organization along with the settings for each. - - - - -------------------------- Example 2 -------------------------- - Get-CsVoicePolicy -Identity UserPolicy1 - - This example uses the Identity parameter to retrieve the voice policy settings for the per-user policy named UserPolicy1. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoicePolicy -Filter tag* - - This example uses the Filter parameter to retrieve all the voice policy settings that can be assigned to users. All per-user voice policies have an Identity in the format tag:<UserVoicePolicy>, so we filter on tag to retrieve all user voice policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csvoicepolicy - - - New-CsVoicePolicy - - - - Remove-CsVoicePolicy - - - - Set-CsVoicePolicy - - - - Grant-CsVoicePolicy - - - - Test-CsVoicePolicy - - - - - - - Get-CsVoiceRoutingPolicy - Get - CsVoiceRoutingPolicy - - Returns information about the voice routing policies configured for use in your organization. Voice routing policies manage PSTN usages for users of hybrid voice. Hybrid voice enables users homed on Skype for Business Online to take advantage of the Enterprise Voice capabilities available in an on-premises installation of Skype for Business Server. This cmdlet was introduced in Lync Server 2013. - - - - Voice routing policies are used in "hybrid" scenarios: when some of your users are homed on the on-premises version of Skype for Business Server and other users are homed on Skype for Business Online. Assigning your Skype for Business Online users a voice routing policy enables those users to receive and to place phones calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user a voice routing policy will not enable them to make PSTN calls via Skype for Business Online. Among other things, you will also need to enable those users for Enterprise Voice and will need to assign them an appropriate voice policy and dial plan. - The functions carried out by the Get-CsVoiceRoutingPolicy cmdlet are not available in the Skype for Business Server Control Panel. - - - - Get-CsVoiceRoutingPolicy - - Filter - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when retrieving one or more voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsVoiceRoutingPolicy - - Identity - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier of the voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then Get-CsVoiceRoutingPolicy returns all the voice routing policies configured for use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to use wildcards when retrieving one or more voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier of the voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then Get-CsVoiceRoutingPolicy returns all the voice routing policies configured for use in the organization. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The Get-CsVoiceRoutingPolicy cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy - - - The Get-CsVoiceRoutingPolicy cmdlet returns instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsVoiceRoutingPolicy - - The command shown in Example 1 returns information for all the voice routing policies configured for use in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" - - In Example 2, information is returned for a single voice routing policy: the policy with the Identity RedmondVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoiceRoutingPolicy -Filter "tag:*" - - The command shown in Example 3 returns information about all the voice routing policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "tag:". - - - - -------------------------- Example 4 -------------------------- - Get-CsVoiceRoutingPolicy | Where-Object {$_.PstnUsages -contains "Long Distance"} - - In Example 4, information is returned only for those voice routing policies that include the PSTN usage "Long Distance". To carry out this task, the command first calls Get-CsVoiceRoutingPolicy without any parameters; that returns a collection of all the voice routing policies configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which picks out only those policies where the PstnUsages property includes (-contains) the usage "Long Distance". - - - - -------------------------- Example 5 -------------------------- - Get-CsVoiceRoutingPolicy | Where-Object {$_.PstnUsages -notcontains "Long Distance"} - - Example 5 is a variation on the command shown in Example 4; in this case, however, information is returned only for those voice routing policies that do not include the PSTN usage "Long Distance". In order to do that, the Where-Object cmdlet uses the -notcontains operator, which limits returned data to policies that do not include the usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csvoiceroutingpolicy - - - Grant-CsVoiceRoutingPolicy - - - - New-CsVoiceRoutingPolicy - - - - Remove-CsVoiceRoutingPolicy - - - - Set-CsVoiceRoutingPolicy - - - - - - - Get-CsVoiceTestConfiguration - Get - CsVoiceTestConfiguration - - Retrieves a test scenario you can use to test phone numbers against specified routes and rules. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet retrieves the voice route, usage, dial plan, and voice policy against which to test a specified phone number. Before implementing voice routes and voice policies, it's a good idea to test them out on various phone numbers to ensure the results are what you're expecting. You can do this testing by retrieving a test configuration with this cmdlet, and then running that scenario with the Test-CsVoiceConfiguration cmdlet. - - - - Get-CsVoiceTestConfiguration - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter provides a way to do a wildcard search of the defined voice test configurations. (For details, see the examples in this topic.) - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice test configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - Get-CsVoiceTestConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test configuration you want to retrieve. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice test configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter provides a way to do a wildcard search of the defined voice test configurations. (For details, see the examples in this topic.) - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test configuration you want to retrieve. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the voice test configuration from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - Returns one of more objects of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsVoiceTestConfiguration - - Retrieves all the voice test configuration settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsVoiceTestConfiguration | Select-Object Identity, DialedNumber, ExpectedTranslatedNumber - - This example retrieves all the voice test configuration settings, displaying only the Identity, DialedNumber, and ExpectedTranslatedNumber parameter of each. The settings returned by the Get-CsVoiceTestConfiguration cmdlet are piped to the Select-Object cmdlet, where the output is narrowed down to the Identity, DialedNumber, and ExpectedTranslatedNumber properties. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoiceTestConfiguration -Filter *test* - - This example uses the Filter parameter to retrieve all the voice test configuration settings with Identities that contain the string "test". The wildcard characters (*) at the beginning and end of the filter value indicate that the string "test" can be located anywhere within the Identity, with any characters before or after that string. For example, this command would return voice test configurations with names such as TestConfig, VoiceNumberTest, and VoiceTest1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csvoicetestconfiguration - - - New-CsVoiceTestConfiguration - - - - Remove-CsVoiceTestConfiguration - - - - Set-CsVoiceTestConfiguration - - - - Test-CsVoiceTestConfiguration - - - - - - - Get-DirectToGroupAssignmentsMigrationStatus - Get - DirectToGroupAssignmentsMigrationStatus - - As an admin, you can get the status of any direct assignments to group policy assignments migration. - - - - As an admin, you can get the status of all the direct assignments to group policy assignments migrations completed or in progress in the tenant. Or you can provide an specific migration id to know the status of one in particular. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Get-DirectToGroupAssignmentsMigrationStatus - - MigrationEventId - - Migration event id from which want to know the status. - - String - - String - - - None - - - - - - MigrationEventId - - Migration event id from which want to know the status. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-DirectToGroupAssignmentsMigrationStatus - - In this example, the Get-DirectToGroupAssignmentsMigrationStatus cmdlet is used to get the status of all the direct assignments to group policy assignments migrations completed or in progress in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-DirectToGroupAssignmentsMigrationStatus -MigrationEventId 42ed6fb9-65c7-42de-abda-7492bfe2d616 - - In this example, the Get-DirectToGroupAssignmentsMigrationStatus cmdlet is used to get the status of the direct assignments to group policy assignments migration with the event id 42ed6fb9-65c7-42de-abda-7492bfe2d616. - - - - - - - - Get-GroupAssignmentRecommendationsPerPolicyName - Get - GroupAssignmentRecommendationsPerPolicyName - - As an admin, you can get group policy assignments recommendations based on the existing direct assignments for a policy document. - - - - As an admin, you can get a list of possible group policy assignments that can be created based on the existing direct assignments for a policy document provided, grouping by policy instance name. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Get-GroupAssignmentRecommendationsPerPolicyName - - EntityType - - Entity type from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - GroupThreshold - - Group threshold used to define the minimum number of users per group that will be recommended. - - String - - String - - - None - - - PolicyType - - Policy type of the instance from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - - - - EntityType - - Entity type from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - GroupThreshold - - Group threshold used to define the minimum number of users per group that will be recommended. - - String - - String - - - None - - - PolicyType - - Policy type of the instance from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-GroupAssignmentRecommendationsPerPolicyName -EntityType User -PolicyType TeamsCallingPolicy - - In this example, the Get-GroupAssignmentRecommendationsPerPolicyName cmdlet is used to get all the possible group policy assignments that can be created for the policy type TeamsCallingPolicy and entity type User. In this case the group threshold is not provided so the default will be 500, which means that all the recommendations will have at least 500 users. This threshold can change based on admin preferences. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-GroupAssignmentRecommendationsPerPolicyName -EntityType User -GroupThreshold 1 -PolicyType TeamsCallingPolicy - - In this example, the Get-GroupAssignmentRecommendationsPerPolicyName cmdlet is used to get all the possible group policy assignments that can be created for the policy type TeamsCallingPolicy, entity type User and providing a group threshold of 1, which means that all the recommendations will have at least 1 user. This threshold can change based on admin preferences. - - - - - - - - Get-GroupAssignmentRecommendationsPerPolicyType - Get - GroupAssignmentRecommendationsPerPolicyType - - As an admin, you can get group policy assignments recommendations based on the existing direct assignments for a policy type. - - - - As an admin, you can get a list of possible group policy assignments that can be created based on the existing direct assignments for a policy document provided, grouping by policy instance type. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Get-GroupAssignmentRecommendationsPerPolicyType - - EntityType - - Entity type from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - GroupThreshold - - Group threshold used to define the minimum number of users per group that will be recommended. - - String - - String - - - None - - - - - - EntityType - - Entity type from which the cmdlet will provide the recommendations. - - String - - String - - - None - - - GroupThreshold - - Group threshold used to define the minimum number of users per group that will be recommended. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-GroupAssignmentRecommendationsPerPolicyType -EntityType User - - In this example, the Get-GroupAssignmentRecommendationsPerPolicyType cmdlet is used to get all the possible group policy assignments that can be created for the entity type User. In this case the group threshold is not provided so the default will be 500, which means that all the recommendations will have at least 500 users. This threshold can change based on admin preferences. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-GroupAssignmentRecommendationsPerPolicyType -EntityType User -GroupThreshold 1 - - In this example, the Get-GroupAssignmentRecommendationsPerPolicyType cmdlet is used to get all the possible group policy assignments that can be created for the entity type User and providing a group threshold of 1, which means that all the recommendations will have at least 1 user. This threshold can change based on admin preferences. - - - - - - - - Get-GroupPolicyAssignmentConflict - Get - GroupPolicyAssignmentConflict - - As an admin, you can get the existing conflicts for a particular group policy assignments which causes it not to be effective for some users. - - - - As an admin, you can get the existing conflicts for a particular group policy assignments which causes it not to be effective for some users, providing the group id and policy type of the assignment. This will return a list of users in where the group policy assignment is not effective due a direct assignment or other group policy assignment that is taking effect on it. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Get-GroupPolicyAssignmentConflict - - GroupId - - Group id of the group policy assignment from which the cmdlet will look for conflicts. - - String - - String - - - None - - - PolicyType - - Policy type of the group policy assignment from which the cmdlet will look for conflicts. - - String - - String - - - None - - - - - - GroupId - - Group id of the group policy assignment from which the cmdlet will look for conflicts. - - String - - String - - - None - - - PolicyType - - Policy type of the group policy assignment from which the cmdlet will look for conflicts. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-GroupPolicyAssignmentConflict -GroupId cde9a331-5bf8-415c-990c-19838b0d898a -PolicyType TeamsCallingPolicy - - In this example, the Get-GroupPolicyAssignmentConflict cmdlet is used to get all the possible conflicts that the group policy assignment in TeamsCallingPolicy applied for group cde9a331-5bf8-415c-990c-19838b0d898a could have with others assignments. - - - - - - - - Grant-CsApplicationAccessPolicy - Grant - CsApplicationAccessPolicy - - Assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user. - - - - This cmdlet assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user. Note: You can assign only 1 application access policy at a time to a particular user. Assigning a new application access policy to a user will override the existing application access policy if any. - - - - Grant-CsApplicationAccessPolicy - - Identity - - Indicates the user (object) ID of the user account to be assigned the per-user application access policy. - - UserIdParameter - - UserIdParameter - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. For example, if the user already have application access policy "A" assigned, and tenant admin assigns "B" globally, then application access policy "A" will take effect for the user. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. Be aware that this parameter is tied to the cmdlet itself instead of to a property of the input object. - - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy. - - PSListModifier - - PSListModifier - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. For example, if the user already have application access policy "A" assigned, and tenant admin assigns "B" globally, then application access policy "A" will take effect for the user. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the user (object) ID of the user account to be assigned the per-user application access policy. - - UserIdParameter - - UserIdParameter - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. Be aware that this parameter is tied to the cmdlet itself instead of to a property of the input object. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy. - - PSListModifier - - PSListModifier - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------- Assign an application access policy to a user -------- - PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName "ASimplePolicy" - - The command shown above assigns the per-user application access policy "ASimplePolicy" to the user with object ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624". - - - - ------ Unassign an application access policy from a user ------ - PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName $Null - - In the command shown above, any per-user application access policy previously assigned to the user with user (object) ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624" is unassigned from that user; as a result, applications configured in the policy can no longer access online meetings on behalf of that user. To unassign a per-user policy, set the PolicyName to a null value ($Null). - - - - Assign an application access policy to all users in the tenant - PS C:\> Get-CsOnlineUser | Grant-CsApplicationAccessPolicy -PolicyName "ASimplePolicy" - - The command shown above assigns the per-user application access policy ASimplePolicy to all the users in the tenant. To do this, the command first calls the `Get-CsOnlineUser` cmdlet to get all user accounts enabled for Microsoft Teams or Skype for Business Online. Those user accounts are then piped to the `Grant-CsApplicationAccessPolicy` cmdlet, which assigns each user the application access policy "ASimplePolicy". - - - - Assign an application access policy to users who have not been assigned one - PS C:\> Grant-CsApplicationAccessPolicy -PolicyName "ASimplePolicy" -Global - - The command shown above assigns the per-user application access policy "ASimplePolicy" to all the users in the tenant, except any that have an explicit policy assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Grant-CsCallingLineIdentity - Grant - CsCallingLineIdentity - - Use the `Grant-CsCallingLineIdentity` cmdlet to apply a Caller ID policy to a user account, to a group of users, or to set the tenant Global instance. - - - - You can either assign a Caller ID policy to a specific user, to a group of users, or you can set the Global policy instance. - - - - Grant-CsCallingLineIdentity - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - Grant-CsCallingLineIdentity - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - Grant-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity of the user to whom the policy is being assigned. User Identities can be specified using the user's SIP address, the user's user principal name (UPN), or the user's ObjectId/Identity. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity of the user to whom the policy is being assigned. User Identities can be specified using the user's SIP address, the user's user principal name (UPN), or the user's ObjectId/Identity. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsCallingLineIdentity -Identity Ken.Myer@contoso.com -PolicyName CallerIDRedmond - - This example assigns the Caller ID policy with the Identity CallerIDRedmond to the user Ken.Myer@contoso.com - - - - -------------------------- Example 2 -------------------------- - Grant-CsCallingLineIdentity -PolicyName CallerIDSeattle -Global - - This example copies the Caller ID policy CallerIDSeattle to the Global policy instance. - - - - -------------------------- Example 3 -------------------------- - Grant-CsCallingLineIdentity -Group sales@contoso.com -PolicyName CallerIDSeattle -Rank 10 - - This example assigns the Caller ID policy with the Identity CallerIDSeattle to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - - - - Grant-CsConferencingPolicy - Grant - CsConferencingPolicy - - Assigns a conferencing policy at the per-user scope. Conferencing policies determine the features and capabilities that can be used in a conference. This includes everything from whether or not the meeting can include IP audio and video to the maximum number of people who can attend a meeting. This cmdlet was introduced in Lync Server 2010. - - - - Conferencing is an important part of Skype for Business Server : conferencing enables groups of users to come together online to view slides and video, share applications, exchange files, and otherwise communicate and collaborate. - It's important for administrators to maintain control over conferences and conference settings. In some cases, there might be security concerns: by default, anyone, including unauthenticated users, can participate in meetings and save any of the slides or handouts distributed during those meetings. In other cases, there might be bandwidth concerns: having a multitude of simultaneous meetings, each involving hundreds of participants and each featuring video feeds and file sharing, has the potential to cause problems with your network. In addition, there might be occasional legal concerns. For example, by default meeting participants are allowed to make annotations on shared content; however, these annotations are not saved when the meeting is archived. If your organization is required to keep a record of all electronic communication, you might need to disable annotations. - Of course, needing to manage conferencing settings is one thing; actually managing these settings is another. In Skype for Business Server conferences are managed by using conferencing policies. (In previous versions of the software, these were known as meeting policies.) As noted, conferencing policies determine the features and capabilities that can be used in a conference, including everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. Conferencing policies can be configured at the global scope, at the site scope, or at the per-user scope. This provides administrators with enormous flexibility when it comes to deciding which capabilities will be made available to which users. - When you create a site policy that policy is automatically assigned to the appropriate site at the time of creation. This is not the case with per-user policies: per-user policies are not assigned to anyone at the time they are created. Instead, you must use the Grant-CsConferencingPolicy cmdlet to explicitly assign per-user conferencing policies to a user or set of users. - - - - Grant-CsConferencingPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - Note that you can use the asterisk (*) wildcard character when specifying the user Identity. For example, the Identity "* Smith" returns all the users with a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified then the Grant-CsConferencingPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsConferencingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified then the Grant-CsConferencingPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - Note that you can use the asterisk (*) wildcard character when specifying the user Identity. For example, the Identity "* Smith" returns all the users with a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsConferencingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - Grant-CsConferencingPolicy accepts pipelined input of string values representing the Identity of a user account. - - - - - Microsoft.Rtc.Management.ADConnect.Schema.ADUser - - - The cmdlet also accepts pipelined input of user objects. - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSUserOrAppContact - - - By default, Grant-CsConferencingPolicy returns no objects or values. However, if you include the PassThru parameter, the cmdlet will return instances of the Microsoft.Rtc.Management.ADConnect.Schema.OCSUserOrAppContact object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsConferencingPolicy -identity "Ken Myer" -PolicyName SalesConferencingPolicy - - In Example 1, the Grant-CsConferencingPolicy cmdlet is used to assign the policy SalesConferencingPolicy to the user with the Identity "Ken Myer". - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -OU "ou=Finance,dc=litwareinc,dc=com" | Grant-CsConferencingPolicy -PolicyName FinanceConferencingPolicy - - In Example 2, the conferencing policy FinanceConferencingPolicy is assigned to all the users who have accounts in the Finance organizational unit. To assign the same policy to all the users in a given organizational unit (OU), the Get-CsUser cmdlet is used to retrieve all the accounts in that OU. After the user accounts have been retrieved, that information is then piped to the Grant-CsConferencingPolicy cmdlet, which assigns the FinanceConferencingPolicy policy to each user in the collection. - - - - -------------------------- EXAMPLE 3 -------------------------- - Get-CsUser -OU "ou=Finance,dc=litwareinc,dc=com" | Grant-CsConferencingPolicy -PolicyName $Null - - Example 3 represents a variation of Example 2: in this case, however, any per-user conferencing policies previously assigned to the users in the Finance OU are unassigned from these users. To do this, the command calls the Grant-CsConferencingPolicy cmdlet and specifies a null value ($Null) as the parameter value for the parameter PolicyName. - - - - -------------------------- EXAMPLE 4 -------------------------- - Get-CsUser -LdapFilter "Department=Human Resources" | Grant-CsConferencingPolicy -PolicyName HRConferencingPolicy - - In Example 4, the policy HRConferencingPolicy is assigned to all the users who work in the Human Resource Departments. This is done by calling the Get-CsUser cmdlet and the LdapFilter parameter to retrieve the appropriate set of users; the parameter value "Department=Human Resources" limits the returned items to user accounts where the Department attribute has been set to "Human Resources". After the user accounts have been retrieved, that collection is piped to the Grant-CsConferencingPolicy cmdlet, which, assigns the policy HRConferencingPolicy to each user in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-csconferencingpolicy - - - Get-CsConferencingPolicy - - - - New-CsConferencingPolicy - - - - Remove-CsConferencingPolicy - - - - Set-CsConferencingPolicy - - - - - - - Grant-CsDialPlan - Grant - CsDialPlan - - Assigns a dial plan to one or more users or groups. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet assigns an existing user-specific dial plan to a user. Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Users who do not have a valid dial plan will not be enabled to make calls by using Enterprise Voice. A dial plan determines such things as how normalization rules are applied and whether a prefix must be dialed for external calls. - You can check whether a user has been granted a per-user dial plan by calling a command in this format: `Get-CsUser "<user name>" | Select-Object DialPlan` - For example: - `Get-CsUser "Ken Myer" | Select-Object DialPlan` - - - - Grant-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the dial plan is being assigned. - User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full data type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity value of the dial plan to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user dial plan identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the dial plan is being assigned. - User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full data type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity value of the dial plan to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user dial plan identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - Accepts a pipelined string value representing the Identity of a user account to which the dial plan is being granted. - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact - - - When used with the PassThru parameter, returns an object of type Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact. - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsDialPlan -Identity "Ken Myer" -PolicyName RedmondDialPlan - - In the example, the Grant-CsDialPlan cmdlet is used to assign the dial plan RedmondDialPlan to the user with the Identity (in this case the display name) Ken Myer. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -LDAPFilter "l=Redmond" | Grant-CsDialPlan -PolicyName RedmondDialPlan - - In Example 2, the RedmondDialPlan dial plan is assigned to all the users who have offices in the city of Redmond. To do this, the Get-CsUser cmdlet is invoked in order to retrieve a collection of all the users who have an office in the city of Redmond; this is done by using the LdapFilter parameter and the LDAP query l=Redmond. (In the LDAP query language used by Active Directory Domain Services, the l indicates a user's locality, or city.) This collection is then piped to the Grant-CsDialPlan cmdlet, which assigns the Redmond dial plan to each user in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-csdialplan - - - New-CsDialPlan - - - - Remove-CsDialPlan - - - - Set-CsDialPlan - - - - Get-CsDialPlan - - - - Test-CsDialPlan - - - - Get-CsUser - - - - - - - Grant-CsExternalAccessPolicy - Grant - CsExternalAccessPolicy - - Enables you to assign an external access policy to a user or a group of users. - - - - This cmdlet was introduced in Lync Server 2010. - When you install Microsoft Teams or Skype for Business Server, your users are only allowed to exchange instant messages and presence information among themselves: by default, they can only communicate with other people who have SIP accounts in your Active Directory Domain Services. In addition, users are not allowed to access Skype for Business Server over the Internet; instead, they must be logged on to your internal network before they will be able to log on to Skype for Business Server. - That might be sufficient to meet your communication needs. If it doesn't meet your needs you can use external access policies to extend the ability of your users to communicate and collaborate. External access policies can grant (or revoke) the ability of your users to do any or all of the following: - 1. Communicate with people who have SIP accounts with a federated organization. Note that enabling federation will not automatically provide users with this capability. Instead, you must enable federation, and then assign users an external access policy that gives them the right to communicate with federated users. - 2. (Microsoft Teams only) Communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). This policy setting only applies if ACS federation has been enabled at the tenant level using the cmdlet [Set-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration). - 3. Communicate with people who have SIP accounts with a public instant messaging service such as Skype. - 4. Access Skype for Business Server over the Internet, without having to first log on to your internal network. This enables your users to use Skype for Business and log on to Skype for Business Server from an Internet café or other remote location. - When you install Skype for Business Server, a global external access policy is automatically created for you. In addition to this global policy, you can use the New-CsExternalAccessPolicy cmdlet to create additional external access policies configured at either the site or the per-user scope. - When a policy is created at the site scope, it is automatically assigned to the site in question; for example, an external access policy with the Identity site:Redmond will automatically be assigned to the Redmond site. By contrast, policies created at the per-user scope are not automatically assigned to anyone. Instead, these policies must be explicitly assigned to a user or a group of users. Assigning per-user policies is the job of the Grant-CsExternalAccessPolicy cmdlet. - Note that per-user policies always take precedent over site policies and the global policy. For example, suppose you create a per-user policy that allows communication with federated users, and you assign that policy to Ken Myer. As long as that policy is in force, Ken will be allowed to communicate with federated users even if this type of communication is not allowed by Ken's site policy or by the global policy. That's because the settings in the per-user policy take precedence. - - - - Grant-CsExternalAccessPolicy - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondAccessPolicy has a PolicyName equal to RedmondAccessPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified, then the Grant-CsExternalAccessPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsExternalAccessPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - Grant-CsExternalAccessPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondAccessPolicy has a PolicyName equal to RedmondAccessPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified, then the Grant-CsExternalAccessPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsExternalAccessPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - Grant-CsExternalAccessPolicy - - Identity - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Identity of the user account the policy should be assigned to. User Identities can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - In addition, you can use the asterisk (*) wildcard character when specifying the user Identity. For example, the Identity "* Smith" returns all the users with a display name that ends with the string value " Smith." - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondAccessPolicy has a PolicyName equal to RedmondAccessPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified, then the Grant-CsExternalAccessPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsExternalAccessPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify the fully qualified domain name (FQDN) of a domain controller to be contacted when assigning the new policy. If this parameter is not specified, then the Grant-CsExternalAccessPolicy cmdlet will contact the first available domain controller. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Identity of the user account the policy should be assigned to. User Identities can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - In addition, you can use the asterisk (*) wildcard character when specifying the user Identity. For example, the Identity "* Smith" returns all the users with a display name that ends with the string value " Smith." - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsExternalAccessPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondAccessPolicy has a PolicyName equal to RedmondAccessPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName parameter to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - String value or Microsoft.Rtc.Management.ADConnect.Schema.ADUser object. - Grant-CsExternalAccessPolicy accepts pipelined input of string values representing the Identity of a user account. The cmdlet also accepts pipelined input of user objects. - - - - - - - Output types - - - By default, Grant-CsExternalAccessPolicy does not return a value or object. - However, if you include the PassThru parameter, the cmdlet will return instances of the Microsoft.Rtc.Management.ADConnect.Schema.OCSUserOrAppContact object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsExternalAccessPolicy -Identity "Ken Myer" -PolicyName RedmondAccessPolicy - - Example 1 assigns the external access policy RedmondAccessPolicy to the user with the Active Directory display name Ken Myer. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -LdapFilter "l=Redmond" | Grant-CsExternalAccessPolicy -PolicyName RedmondAccessPolicy - - The command shown in Example 2 assigns the external access policy RedmondAccessPolicy to all the users who work in the city of Redmond. To do this, the command first uses the Get-CsUser cmdlet and the LdapFilter parameter to return a collection of all the users who work in Redmond; the filter value "l=Redmond" limits returned data to those users who work in the city of Redmond (the l in the filter, a lowercase L, represents the locality). That collection is then piped to the Grant-CsExternalAccessPolicy cmdlet, which assigns the policy RedmondAccessPolicy to each user in the collection. - - - - -------------------------- EXAMPLE 3 -------------------------- - Get-CsUser -LdapFilter "Title=Sales Representative" | Grant-CsExternalAccessPolicy -PolicyName SalesAccessPolicy - - In Example 3, all the users who have the job title "Sales Representative" are assigned the external access policy SalesAccessPolicy. To perform this task, the command first uses the Get-CsUser cmdlet and the LdapFilter parameter to return a collection of all the Sales Representatives; the filter value "Title=Sales Representative" restricts the returned collection to users who have the job title "Sales Representative". This filtered collection is then piped to the Grant-CsExternalAccessPolicy cmdlet, which assigns the policy SalesAccessPolicy to each user in the collection. - - - - -------------------------- EXAMPLE 4 -------------------------- - Get-CsUser -Filter {ExternalAccessPolicy -eq $Null} | Grant-CsExternalAccessPolicy -PolicyName BasicAccessPolicy - - The command shown in Example 4 assigns the external access policy BasicAccessPolicy to all the users who have not been explicitly assigned a per-user policy. (That is, users currently being governed by a site policy or by the global policy.) To do this, the Get-CsUser cmdlet and the Filter parameter are used to return the appropriate set of users; the filter value {ExternalAccessPolicy -eq $Null} limits the returned data to user accounts where the ExternalAccessPolicy property is equal to (-eq) a null value ($Null). By definition, ExternalAccessPolicy will be null only if users have not been assigned a per-user policy. - - - - -------------------------- EXAMPLE 5 -------------------------- - Get-CsUser -OU "ou=US,dc=litwareinc,dc=com" | Grant-CsExternalAccessPolicy -PolicyName USAccessPolicy - - Example 5 assigns the external access policy USAccessPolicy to all the users who have accounts in the US organizational unit (OU). The command starts off by calling the Get-CsUser cmdlet and the OU parameter; the parameter value "ou=US,dc=litwareinc,dc=com" limits the returned data to user accounts found in the US OU. The returned collection is then piped to the Grant-CsExternalAccessPolicy cmdlet, which assigns the policy USAccessPolicy to each user in the collection. - - - - -------------------------- EXAMPLE 6 -------------------------- - Get-CsUser | Grant-CsExternalAccessPolicy -PolicyName $Null - - Example 6 unassigns any per-user external access policy previously assigned to any of the users enabled for Skype for Business Server. To do this, the command calls the Get-CsUser cmdlet (without any additional parameters) in order to return a collection of all the users enabled for Skype for Business Server. That collection is then piped to the Grant-CsExternalAccessPolicy cmdlet, which uses the syntax "`-PolicyName $Null`" to remove any per-user external access policy previously assigned to these users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - Get-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexternalaccesspolicy - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Remove-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - - - - Grant-CsHostedVoicemailPolicy - Grant - CsHostedVoicemailPolicy - - Assigns a hosted voice mail policy at the per-user scope. (The per-user scope enables you to assign policies to individual users or groups.) This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet assigns an existing user-specific hosted voice mail policy to a user. A hosted voice mail policy specifies how to route unanswered calls to a user to a hosted Exchange Unified Messaging (UM) service. - You can check whether a user has been granted a per-user hosted voice mail policy by calling a command in this format: `Get-CsUser "<user name>" | Select-Object HostedVoicemailPolicy.` For example: - `Get-CsUser "Ken Myer" | Select-Object HostedVoicemailPolicy` - If you assign to a user a hosted voice mail policy that does not include a destination, you cannot enable that user for hosted voice mail. - - - - Grant-CsHostedVoicemailPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the hosted voice mail policy is being assigned. - User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full data type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name (Identity) of the hosted voice mail policy to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user hosted voice mail policy identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the hosted voice mail policy is being assigned. - User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full data type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name (Identity) of the hosted voice mail policy to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user hosted voice mail policy identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - Accepts a pipelined string value representing the Identity of a user account to which the hosted voice mail policy is being granted. - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact - - - When used with the PassThru parameter, returns an object of type Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact. - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsHostedVoicemailPolicy -Identity "Ken Myer" -PolicyName ExRedmond - - This example assigns the hosted voice mail policy with the Identity ExRedmond to the user with the display name Ken Myer. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -OU "ou=Finance,ou=North America,dc=litwareinc,dc=com" | Grant-CsHostedVoicemailPolicy -PolicyName ExRedmond - - This example assigns the hosted voice mail policy with the Identity ExRedmond to all users in the Finance organizational unit (OU): OU=Finance,OU=NorthAmerica,DC=litwareinc,DC=com. The first part of the command calls the Get-CsUser cmdlet to retrieve all users who are enabled for Skype for Business Server from the specified OU. This collection of users is then piped to the Grant-CsHostedVoicemailPolicy cmdlet, which assigns the policy ExRedmond to each of these users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-cshostedvoicemailpolicy - - - New-CsHostedVoicemailPolicy - - - - Remove-CsHostedVoicemailPolicy - - - - Set-CsHostedVoicemailPolicy - - - - Get-CsHostedVoicemailPolicy - - - - Get-CsUser - - - - - - - Grant-CsLocationPolicy - Grant - CsLocationPolicy - - Assigns an Enhanced 9-1-1 (E9-1-1) location policy to individual users or groups. The E9-1-1 service enables those who answer 911 calls to determine the caller's geographic location. This cmdlet was introduced in Lync Server 2010. - - - - The location policy is used to apply settings that relate to E9-1-1 functionality. The location policy determines whether a user is enabled for E9-1-1, and if so, what the behavior is of an emergency call. For example, you can use the location policy to define what number constitutes an emergency call (911 in the United States), whether corporate security should be automatically notified, and how the call should be routed. This cmdlet grants a location policy to a specific user or group. - IMPORTANT: The location policy behaves differently from other policies in Skype for Business Server in terms of order of scope. For all other policies, if a policy is defined at the per-user scope, the policy is applied to any user granted that policy. If the user has not been granted a per-user policy, the site policy is applied. If there is no site policy, the global policy is applied. Location policies are applied in the same way, with one exception: a per-user location policy can also be assigned to a network site. (A network site consists of a group of subnets.) If the user is making the emergency call from a location that is mapped to a network site within the organization, the user-level policy assigned to that network site is used. This functionality will override a per-user policy that has been granted to that user. If the user calls from a location that is unknown or unmapped in the organization, the standard policy scoping will be applied. - - - - Grant-CsLocationPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). Note that the SAMAccountName cannot be used as an identity. - In addition, you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would grant the policy to all the users with the last name Smith. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the location policy to apply to the user. - - String - - String - - - None - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) The user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). Note that the SAMAccountName cannot be used as an identity. - In addition, you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would grant the policy to all the users with the last name Smith. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the location policy to apply to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - Accepts a pipelined string value representing the Identity of a user account to which the location policy is being granted. - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact - - - When used with the PassThru parameter, returns an object of type Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsLocationPolicy -Identity "Ken Myer" -PolicyName Reno - - In Example 1, the Grant-CsLocationPolicy cmdlet is used to assign the Reno location policy to user Ken Myer. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -LDAPFilter "Department=Accounting" | Grant-CsLocationPolicy -PolicyName AccountingArea - - In Example 2, the AccountingArea policy is assigned to all the users who are in the Accounting department. To return a collection of all the users in the Accounting department, the Get-CsUser cmdlet is used along with the LDAPFilter parameter. The query value passed to LDAPFilter--"Department=Accounting"--returns all the users who have an Active Directory Department setting of Accounting. This collection is then passed to the Grant-CsLocationPolicy cmdlet, which proceeds to assign the AccountingArea policy to each user in the collection. - - - - -------------------------- EXAMPLE 3 -------------------------- - Grant-CsLocationPolicy -Identity "Ken Myer" -PolicyName Reno -PassThru | Select-Object DisplayName, LocationPolicy - - This example grants the location policy Reno to the user with the Identity (in this case, the display name) Ken Myer. In addition, the example includes the parameter PassThru, which will cause the user information for user Ken Myer to be displayed after the location policy has been granted. However, rather than immediately displaying the user information to the console, that information is piped to the Select-Object cmdlet, which will display only the DisplayName and LocationPolicy properties of the user. - One thing to notice with this example is that the newly granted location policy will appear in the output under LocationPolicy, but it will appear as an Anchor value rather than as a policy name. (An Anchor value is a numeric value automatically assigned to a policy at the time it is created.) To see that the policy name has been applied, run the command `Get-CsUser -Identity "Ken Myer" | Select-Object DisplayName, LocationPolicy.` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-cslocationpolicy - - - New-CsLocationPolicy - - - - Remove-CsLocationPolicy - - - - Set-CsLocationPolicy - - - - Get-CsLocationPolicy - - - - Test-CsLocationPolicy - - - - Get-CsUser - - - - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - Grant - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet applies an instance of the Online Audio Conferencing Routing policy to users or groups in a tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - This can be used to apply the policy to the entire tenant. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This can be used to apply the policy to the entire tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Applies the policy "test" to the user "<testuser@test.onmicrosoft.com>". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -PolicyName Test -Identity Global - - Applies the policy "test" to the entire tenant. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Applies the policy "test" to the specified group. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Grant-CsOnlineVoicemailPolicy - Grant - CsOnlineVoicemailPolicy - - Assigns an online voicemail policy to a user account, to a group of users, or set the tenant Global instance. Online voicemail policies manage usages for Voicemail service. - - - - This cmdlet assigns an existing user-specific online voicemail policy to a user, a group of users, or the Global policy instance. - - - - Grant-CsOnlineVoicemailPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - A unique identifier(name) of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - String - - String - - - None - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP address or an Object ID. - - System.String - - System.String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsOnlineVoicemailPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - String - - String - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP address or an Object ID. - - System.String - - System.String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsOnlineVoicemailPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - A unique identifier(name) of the policy. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsOnlineVoicemailPolicy -Identity "user@contoso.com" -PolicyName TranscriptionDisabled - - The command shown in Example 1 assigns the per-user online voicemail policy TranscriptionDisabled to a single user user@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsOnlineVoicemailPolicy -Group sales@contoso.com -Rank 10 -PolicyName TranscriptionDisabled - - The command shown in Example 2 assigns the online voicemail policy TranscriptionDisabled to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - Get-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - Set-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - New-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Remove-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - - - - Grant-CsOnlineVoiceRoutingPolicy - Grant - CsOnlineVoiceRoutingPolicy - - Assigns a per-user online voice routing policy to one user, a group of users, or sets the Global policy instance. Online voice routing policies manage online PSTN usages for Phone System users. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Grant-CsOnlineVoiceRoutingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - Grant-CsOnlineVoiceRoutingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsOnlineVoiceRoutingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Identity Ken.Myer@contoso.com -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - The command shown in Example 1 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy to the user ken.myer@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Identity Ken.Myer@contoso.com -PolicyName $Null - - In Example 2, any per-user online voice routing policy previously assigned to the user Ken Myer is unassigned from that user; as a result, Ken Myer will be managed by the global online voice routing policy. To unassign a per-user policy, set the PolicyName to a null value ($null). - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineUser | Grant-CsOnlineVoiceRoutingPolicy -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - Example 3 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy to all the users in the tenant. To do this, the command first calls the `Get-CsOnlineUser` cmdlet to get all user accounts enabled for Microsoft Teams or Skype for Business Online. Those user accounts are then piped to the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet, which assigns each user the online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 4 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -PolicyName "RedmondOnlineVoiceRoutingPolicy" -Global - - Example 4 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy as the global online voice routing policy. This affects all the users in the tenant, except any that have an explicit policy assignment. - - - - -------------------------- Example 5 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Group sales@contoso.com -Rank 10 -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - Example 5 assigns the online voice routing policy RedmondOnlineVoiceRoutingPolicy to all members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Grant-CsTeamsAIPolicy - Grant - CsTeamsAIPolicy - - This cmdlet applies an instance of the Teams AI policy to users or groups in a tenant. - - - - The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs. - This cmdlet applies an instance of the Teams AI policy to users or groups in a tenant. - Passes in the `Identity` of the policy instance in the `PolicyName` parameter and the user identifier in the `Identity` parameter or the group name in the `Group` parameter. One of either `Identity` or `Group` needs to be passed. - - - - Grant-CsTeamsAIPolicy - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAIPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsAIPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsAIPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsAIPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsAIPolicy -Global -PolicyName Test - - Assigns a given policy to the tenant. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Grant-CsTeamsAIPolicy -Global -PolicyName Test - - Note: Using $null in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Grant-CsTeamsAIPolicy - - - New-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaipolicy - - - Remove-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaipolicy - - - Get-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaipolicy - - - Set-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaipolicy - - - - - - Grant-CsTeamsAppPermissionPolicy - Grant - CsTeamsAppPermissionPolicy - - As an admin, you can use app permission policies to allow or block apps for your users. - - - - NOTE : You can use this cmdlet to assign a specific custom policy to a user. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: <https://learn.microsoft.com/microsoftteams/teams-app-permission-policies>. - This is only applicable for tenants who have not been migrated to ACM or UAM. - - - - Grant-CsTeamsAppPermissionPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - Global - - Resets the values in the global policy to match those in the provided (PolicyName) policy. Note that this means all users with no explicit policy assigned will have these new policy settings. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAppPermissionPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAppPermissionPolicy - - Identity - - The user to whom the policy should be assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - Global - - Resets the values in the global policy to match those in the provided (PolicyName) policy. Note that this means all users with no explicit policy assigned will have these new policy settings. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user to whom the policy should be assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsAppPermissionPolicy -Identity "Ken Myer" -PolicyName StudentAppPermissionPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentAppPermissionPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsapppermissionpolicy - - - - - - Grant-CsTeamsAppSetupPolicy - Grant - CsTeamsAppSetupPolicy - - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. - - - - NOTE : You can use this cmdlet to assign a specific custom policy to a user. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. App setup policies let you showcase apps that users in your organization need, including ones built by third parties or by developers in your organization. You can also use app setup policies to manage how built-in features appear. - Apps are pinned to the app bar. This is the bar on the side of the Teams desktop client and at the bottom of the Teams mobile clients (iOS and Android). Learn more about the App Setup Policies: <https://learn.microsoft.com/MicrosoftTeams/teams-app-setup-policies>. - - - - Grant-CsTeamsAppSetupPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - Global - - Resets the values in the global policy to match those in the provided (PolicyName) policy. Note that this means all users with no explicit policy assigned will have these new policy settings. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAppSetupPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAppSetupPolicy - - Identity - - The user to whom the policy should be assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Do not use. - - Fqdn - - Fqdn - - - None - - - Global - - Resets the values in the global policy to match those in the provided (PolicyName) policy. Note that this means all users with no explicit policy assigned will have these new policy settings. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user to whom the policy should be assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsAppSetupPolicy -identity "Ken Myer" -PolicyName StudentAppSetupPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentAppSetupPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsappsetuppolicy - - - - - - Grant-CsTeamsAudioConferencingPolicy - Grant - CsTeamsAudioConferencingPolicy - - Assigns a Teams audio-conferencing policy at the per-user scope. Audio conferencing policies are used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Granular control over which audio conferencing features your users can or cannot use is an important feature for many organizations. This cmdlet lets you assign a teams audio conferencing policy at the per-user scope. Audio conferencing policies determine the audio-conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Grant-CsTeamsAudioConferencingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAudioConferencingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAudioConferencingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: 1) the user's SIP address; 2) the user's user principal name (UPN); or, 3) the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: 1) the user's SIP address; 2) the user's user principal name (UPN); or, 3) the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - String - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsAudioCOnferencingPolicy -identity "Ken Myer" -PolicyName "Emea Users" - - In this example, a user with identity "Ken Myer" is being assigned the "Emea Users" policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Remove-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaudioconferencingpolicy - - - - - - Grant-CsTeamsCallHoldPolicy - Grant - CsTeamsCallHoldPolicy - - Assigns a per-user Teams call hold policy to one or more users. The Teams call hold policy is used to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - Grant-CsTeamsCallHoldPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallHoldPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallHoldPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams call hold policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams call hold policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'KenMyer@contoso.com' -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 1 assigns the per-user Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the user with the user principal name (UPN) "KenMyer@contoso.com". - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'Ken Myer' -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 2 assigns the per-user Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the user with the display name "Ken Myer". - - - - -------------------------- Example 3 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 3, any per-user Teams call hold policy previously assigned to the user "Ken Myer" is revoked. As a result, the user will be managed by the global Teams call hold policy. - - - - -------------------------- Example 4 -------------------------- - Grant-CsTeamsCallHoldPolicy -Global -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 4 sets the Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, as the Global policy which will apply to all users in your tenant. - - - - -------------------------- Example 5 -------------------------- - Grant-CsTeamsCallHoldPolicy -Group sales@contoso.com -Rank 10 -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 5 sets the Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - New-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Get-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - Set-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Remove-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - - - - Grant-CsTeamsCallingPolicy - Grant - CsTeamsCallingPolicy - - Assigns a specific Teams Calling Policy to a user, a group of users, or sets the Global policy instance. - - - - The Teams Calling Policies designate how users are able to use calling functionality within Microsoft Teams. This cmdlet allows admins to grant user level policies to individual users, to members of a group, or to set the Global policy instance. - - - - Grant-CsTeamsCallingPolicy - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsCallingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsCallingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsCallingPolicy - - Identity - - The user object to whom the policy is being assigned. - - String - - String - - - None - - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsCallingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user object to whom the policy is being assigned. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsCallingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsCallingPolicy -identity user1@contoso.com -PolicyName SalesCallingPolicy - - Assigns the TeamsCallingPolicy called "SalesCallingPolicy" to user1@contoso.com - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsCallingPolicy -Global -PolicyName SalesCallingPolicy - - Assigns the TeamsCallingPolicy called "SalesCallingPolicy" to the Global policy instance. This sets the parameters in the Global policy instance to the values found in the SalesCallingPolicy instance. - - - - -------------------------- Example 3 -------------------------- - Grant-CsTeamsCallingPolicy -Group sales@contoso.com -Rank 10 -PolicyName SalesCallingPolicy - - Assigns the TeamsCallingPolicy called "SalesCallingPolicy" to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallingpolicy - - - Set-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallingpolicy - - - Remove-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallingpolicy - - - Get-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallingpolicy - - - New-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallingpolicy - - - - - - Grant-CsTeamsCallParkPolicy - Grant - CsTeamsCallParkPolicy - - The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: the call park feature currently only available in desktop, web clients and mobile clients. Call Park functionality is currently on the roadmap for Teams IP Phones. Supported with TeamsOnly mode for users with the Phone System license - - - - Grant-CsTeamsCallParkPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallParkPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallParkPolicy - - Identity - - The User ID of the user to whom the policy is being assigned. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The User ID of the user to whom the policy is being assigned. - - String - - String - - - None - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsCallParkPolicy -PolicyName SalesPolicy -Identity Ken.Myer@contoso.com - - Assigns a custom policy "Sales Policy" to the user Ken Myer. - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsCallParkPolicy -Group sales@contoso.com -Rank 10 -PolicyName SalesPolicy - - Assigns a custom policy "Sales Policy" to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallparkpolicy - - - Set-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallparkpolicy - - - Get-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallparkpolicy - - - New-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallparkpolicy - - - Remove-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallparkpolicy - - - - - - Grant-CsTeamsChannelsPolicy - Grant - CsTeamsChannelsPolicy - - The Grant-CsTeamsChannelsPolicy allows you to assign specific policies to users that have been created in your tenant. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - - - - Grant-CsTeamsChannelsPolicy - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Global - - Use the -Global flag to convert the values of the Global policy to the values of the specified policy. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsChannelsPolicy - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsChannelsPolicy - - Identity - - Specify the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Global - - Use the -Global flag to convert the values of the Global policy to the values of the specified policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Specify the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsChannelsPolicy -Identity studentaccount@company.com -PolicyName StudentPolicy - - Assigns a custom policy to a specific user in an organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamschannelspolicy - - - - - - Grant-CsTeamsComplianceRecordingPolicy - Grant - CsTeamsComplianceRecordingPolicy - - Assigns a per-user Teams recording policy to one or more users. This policy is used to govern automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - Grant-CsTeamsComplianceRecordingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsComplianceRecordingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsComplianceRecordingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams recording policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams recording policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName 'ContosoPartnerComplianceRecordingPolicy' - - The command shown in Example 1 assigns the per-user Teams recording policy ContosoPartnerComplianceRecordingPolicy to the user with the display name "Ken Myer". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 2, any per-user Teams recording policy previously assigned to the user "Ken Myer" is revoked. As a result, the user will be managed by the global Teams recording policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Grant-CsTeamsCortanaPolicy - Grant - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - This cmdlet lets you assign a Teams Cortana policy at the per-user scope. - - - - Grant-CsTeamsCortanaPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCortanaPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCortanaPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsCortanaPolicy -identity "Ken Myer" -PolicyName MyCortanaPolicy - - In this example, a user with identity "Ken Myer" is being assigned the MyCortanaPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Grant-CsTeamsEmergencyCallingPolicy - Grant - CsTeamsEmergencyCallingPolicy - - This cmdlet assigns a Teams Emergency Calling policy. - - - - This cmdlet assigns a Teams Emergency Calling policy to a user, a group of users, or to the Global policy instance. Emergency Calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. - - - - Grant-CsTeamsEmergencyCallingPolicy - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module version 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsEmergencyCallingPolicy -Identity user1 -PolicyName TestTECP - - This example assigns the Teams Emergency Calling policy TestTECP to a user - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsEmergencyCallingPolicy -Global -PolicyName SalesTECP - - Assigns the Teams Emergency Calling policy called "SalesTECP" to the Global policy instance. This sets the parameters in the Global policy instance to the values found in the SalesTECP instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Get-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - Remove-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - Grant - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet assigns a Teams Emergency Call Routing policy. - - - - This cmdlet assigns a Teams Emergency Call Routing policy to a user, a group of users, or to the Global policy instance. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module version 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsEmergencyCallRoutingPolicy -Identity user1 -PolicyName Test - - This example assigns a Teams Emergency Call Routing policy (Test) to a user (user1). - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsEmergencyCallRoutingPolicy -Group sales@contoso.com -Rank 10 -PolicyName Test - - This example assigns the Teams Emergency Call Routing policy (Test) to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - - - - Grant-CsTeamsEnhancedEncryptionPolicy - Grant - CsTeamsEnhancedEncryptionPolicy - - Cmdlet to assign a specific Teams enhanced encryption Policy to a user. - - - - Cmdlet to assign a specific Teams enhanced encryption Policy to a user. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsEnhancedEncryptionPolicy -Identity 'KenMyer@contoso.com' -PolicyName 'ContosoPartnerTeamsEnhancedEncryptionPolicy' - - The command shown in Example 1 assigns the per-user Teams enhanced encryption policy, ContosoPartnerTeamsEnhancedEncryptionPolicy, to the user with the user principal name (UPN) "KenMyer@contoso.com". - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Grant-CsTeamsEnhancedEncryptionPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 2, any per-user Teams enhanced encryption policy previously assigned to the user "Ken Myer" is revoked. - As a result, the user will be managed by the global Teams enhanced encryption policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - - - - Grant-CsTeamsEventsPolicy - Grant - CsTeamsEventsPolicy - - Assigns Teams Events policy to a user, group of users, or the entire tenant. Note that this policy is currently still in preview. - - - - Assigns Teams Events policy to a user, group of users, or the entire tenant. - TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - Grant-CsTeamsEventsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEventsPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEventsPolicy - - Identity - - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Identity "user1@contoso.com" -Policy DisablePublicWebinars - - The command shown in Example 1 assigns the per-user Teams Events policy, DisablePublicWebinars, to the user with the user principal name (UPN) "user1@contoso.com". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Identity "user1@contoso.com" -Policy $null - - The command shown in Example 2 revokes the per-user Teams Events policy for the user with the user principal name (UPN) "user1@contoso.com". As a result, the user will be managed by the global Teams Events policy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Group "sales@contoso.com" -Rank 10 -Policy DisablePublicWebinars - - The command shown in Example 3 assigns the Teams Events policy, DisablePublicWebinars, to the members of the group "sales@contoso.com". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamseventspolicy - - - - - - Grant-CsTeamsFeedbackPolicy - Grant - CsTeamsFeedbackPolicy - - Use this cmdlet to grant a specific Teams Feedback policy to a user (the ability to send feedback about Teams to Microsoft and whether they receive the survey). - - - - Grants a specific Teams Feedback policy to a user (the ability to send feedback about Teams to Microsoft and whether they receive the survey) or to set a specific Teams feedback policy the new effective global policy. - - - - Grant-CsTeamsFeedbackPolicy - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsFeedbackPolicy - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsFeedbackPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsFeedbackPolicy -PolicyName "New Hire Feedback Policy" -Identity kenmyer@litwareinc.com - - In this example, the policy "New Hire Feedback Policy" is granted to the user kenmyer@litwareinc.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfeedbackpolicy - - - - - - Grant-CsTeamsFilesPolicy - Grant - CsTeamsFilesPolicy - - This cmdlet applies an instance of the Teams AI policy to users or groups in a tenant. - - - - The Teams Files Policy is used to modify files related settings in Microsoft teams. - - - - Grant-CsTeamsFilesPolicy - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsFilesPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsFilesPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsFilesPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsFilesPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsFilesPolicy -Global -PolicyName Test - - Assigns a given policy to the tenant. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Grant-CsTeamsFilesPolicy -Global -PolicyName Test - - Note: Using $null in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfilespolicy - - - Grant-CsTeamsFilesPolicy - - - - Remove-CsTeamsFilesPolicy - - - - Get-CsTeamsFilesPolicy - - - - Set-CsTeamsFilesPolicy - - - - New-CsTeamsFilesPolicy - - - - - - - Grant-CsTeamsIPPhonePolicy - Grant - CsTeamsIPPhonePolicy - - Use the Grant-CsTeamsIPPhonePolicy cmdlet to assign a set of Teams phone policies to a user account or group of user accounts. Teams phone policies determine the features that are available to users of Teams phones. For example, you might enable the hot desking feature for some users while disabling it for others. - - - - Use the Grant-CsTeamsIPPhonePolicy cmdlet to assign a set of Teams phone policies to a phone signed in with an account that may be used by end users, common area phones, or meeting room accounts. - Note: Assigning a per user policy will override any global policy taking effect against the respective user account. - - - - Grant-CsTeamsIPPhonePolicy - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsIPPhonePolicy - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsIPPhonePolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsIPPhonePolicy -Identity Foyer1@contoso.com -PolicyName CommonAreaPhone - - This example shows assignment of the CommonAreaPhone policy to user account Foyer1@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsipphonepolicy - - - - - - Grant-CsTeamsMediaConnectivityPolicy - Grant - CsTeamsMediaConnectivityPolicy - - This cmdlet applies an instance of the Teams media connectivity policy to users or groups in a tenant. - - - - This cmdlet applies an instance of the Teams media connectivity policy to users or groups in a tenant. - Passes in the `Identity` of the policy instance in the `PolicyName` parameter and the user identifier in the `Identity` parameter or the group name in the `Group` parameter. One of either `Identity` or `Group` needs to be passed. - - - - Grant-CsTeamsMediaConnectivityPolicy - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMediaConnectivityPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsMediaConnectivityPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMediaConnectivityPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsMediaConnectivityPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsMediaConnectivityPolicy -Global -PolicyName Test - - Assigns a given policy to the tenant. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Grant-CsTeamsMediaConnectivityPolicy -Global -PolicyName Test - - Note: Using $null in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Grant-CsTeamsMediaConnectivityPolicy - - - New-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmediaconnectivitypolicy - - - Remove-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmediaconnectivitypolicy - - - Get-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmediaconnectivitypolicy - - - Set-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmediaconnectivitypolicy - - - - - - Grant-CsTeamsMediaLoggingPolicy - Grant - CsTeamsMediaLoggingPolicy - - Assigns Teams Media Logging policy to a user or entire tenant. - - - - Assigns Teams Media Logging policy to a user or entire tenant. TeamsMediaLoggingPolicy allows administrators to enable media logging for users. When assigned, it will enable media logging for the user overriding other settings. After unassigning the policy, media logging setting will revert to the previous value. - - - - Grant-CsTeamsMediaLoggingPolicy - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - When this cmdlet is used with `-Global` identity, the policy applies to all users in the tenant, except any that have an explicit policy assignment. For example, if the user already has Media Logging policy set to "Enabled", and tenant admin assigns "$null" globally, the user will still have Media Logging policy "Enabled". - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMediaLoggingPolicy - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMediaLoggingPolicy - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - When this cmdlet is used with `-Global` identity, the policy applies to all users in the tenant, except any that have an explicit policy assignment. For example, if the user already has Media Logging policy set to "Enabled", and tenant admin assigns "$null" globally, the user will still have Media Logging policy "Enabled". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Identity 'KenMyer@contoso.com' -PolicyName Enabled - - Assign Teams Media Logging policy to a single user with the user principal name (UPN) "KenMyer@contoso.com". This will enable media logging for the user. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Identity 'KenMyer@contoso.com' -PolicyName $null - - Unassign Teams Media Logging policy from a single user with the user principal name (UPN) "KenMyer@contoso.com". This will revert media logging setting to the previous value. - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Global -PolicyName Enabled - - Assign Teams Media Logging policy to the entire tenant. Note that this will enable logging for every single user in the tenant without a possibility to disable it for individual users. - - - - -------------------------- EXAMPLE 4 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Global -PolicyName $null - - Unassign Teams Media Logging policy from the entire tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmedialoggingpolicy - - - Get-CsTeamsMediaLoggingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmedialoggingpolicy - - - - - - Grant-CsTeamsMeetingBrandingPolicy - Grant - CsTeamsMeetingBrandingPolicy - - Assigns a teams meeting branding policy at the per-user scope. The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - Assigns a teams meeting branding policy at the per-user scope. The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - Grant-CsTeamsMeetingBrandingPolicy - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign it to `$Null`. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMeetingBrandingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign it to `$Null`. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsMeetingBrandingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign it to `$Null`. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Identity - - The user you want to grant policy to. This can be specified as an SIP address, UserPrincipalName, or ObjectId. - - String - - String - - - None - - - - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user you want to grant policy to. This can be specified as an SIP address, UserPrincipalName, or ObjectId. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign it to `$Null`. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - Available in Teams PowerShell Module 4.9.3 and later. - - - - - --------- Assign TeamsMeetingBrandingPolicy to a user --------- - PS C:\> Grant-CsTeamsMeetingBrandingPolicy -identity "alice@contoso.com" -PolicyName "Policy Test" - - In this example, the command assigns TeamsMeetingBrandingPolicy with the name `Policy Test` to user `alice@contoso.com`. - - - - --------- Assign TeamsMeetingBrandingPolicy to a group --------- - PS C:\> Grant-CsTeamsMeetingBrandingPolicy -Group group@contoso.com -PolicyName "Policy Test" -Rank 1 - - In this example, the command will assign TeamsMeetingBrandingPolicy with the name `Policy Test` to group `group@contoso.com`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - Get-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbrandingpolicy - - - Grant-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - New-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Remove-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Set-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - - - - Grant-CsTeamsMeetingBroadcastPolicy - Grant - CsTeamsMeetingBroadcastPolicy - - Use this cmdlet to assign a policy to a user. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - Grant-CsTeamsMeetingBroadcastPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMeetingBroadcastPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMeetingBroadcastPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbroadcastpolicy - - - - - - Grant-CsTeamsMeetingPolicy - Grant - CsTeamsMeetingPolicy - - Assigns a teams meeting policy at the per-user scope. The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users - - - - Assigns a teams meeting policy at the per-user scope. The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users - - - - Grant-CsTeamsMeetingPolicy - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - Grant-CsTeamsMeetingPolicy - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMeetingPolicy -identity "Ken Myer" -PolicyName StudentMeetingPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentMeetingPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingpolicy - - - - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - Grant - CsTeamsMeetingTemplatePermissionPolicy - - This cmdlet applies an instance of the TeamsMeetingTemplatePermissionPolicy to users or groups in a tenant. - - - - This cmdlet applies an instance of the TeamsMeetingTemplatePermissionPolicy to users or groups in a tenant. - Pass in the `Identity` of the policy instance in the `PolicyName` parameter and the user identifier in the `Identity` parameter or the group name in the `Group` parameter. One of either `Identity` or `Group` needs to be passed. - - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - - Force - - > Applicable: Microsoft Teams - Forces the policy assignment. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This is the identifier of the user that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the Identity of the policy to assign to the user or group. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - Force - - > Applicable: Microsoft Teams - Forces the policy assignment. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This is the identifier of the user that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the Identity of the policy to assign to the user or group. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - - - - - - ------------ Example 1 - Assign a policy to a user ------------ - PS> Grant-CsTeamsMeetingTemplatePermissionPolicy -PolicyName Foobar -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Grant-CsTeamsMeetingTemplatePermissionPolicy - - - Get-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplatepermissionpolicy - - - New-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy - - - Set-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingtemplatepermissionpolicy - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingtemplatepermissionpolicy - - - - - - Grant-CsTeamsMessagingPolicy - Grant - CsTeamsMessagingPolicy - - Assigns a teams messaging policy at the per-user scope. Teams messaging policies determine the features and capabilities that can be used in messaging within the teams client. - - - - Granular control over which messaging features your users can or cannot use is an important feature for many organizations. This cmdlet lets you assign a teams messaging policy at the per-user scope. Teams messaging policies determine the features and capabilities that can be used in messaging within the teams client. - - - - Grant-CsTeamsMessagingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMessagingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMessagingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMessagingPolicy -identity "Ken Myer" -PolicyName StudentMessagingPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentMessagingPolicy - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineUser -Filter {Department -eq 'Executive Management'} | Grant-CsTeamsMessagingPolicy -PolicyName "ExecutivesPolicy" - - In this example, the ExecutivesPolicy is being assigned to a whole department by piping the result of Get-CsOnlineUser cmdlet - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmessagingpolicy - - - - - - Grant-CsTeamsMobilityPolicy - Grant - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - Assigns a teams mobility policy at the per-user scope. - The Grant-CsTeamsMobilityPolicy cmdlet lets an Admin assign a custom teams mobility policy to a user. - - - - Grant-CsTeamsMobilityPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMobilityPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMobilityPolicy - - Identity - - The User Id of the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The User Id of the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMobilityPolicy -PolicyName SalesPolicy -Identity "Ken Myer" - - Assigns a custom policy "Sales Policy" to the user "Ken Myer" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmobilitypolicy - - - - - - Grant-CsTeamsPersonalAttendantPolicy - Grant - CsTeamsPersonalAttendantPolicy - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - Assigns a specific Teams Personal Attendant Policy to a user, a group of users, or sets the Global policy instance. - - - - The Teams Personal Attendant Policies designate how users are able to use personal attendant and its functionalities within Microsoft Teams. This cmdlet allows admins to grant user level policies to individual users, to members of a group, or to set the Global policy instance. - - - - Grant-CsTeamsPersonalAttendantPolicy - - Identity - - The user object to whom the policy is being assigned. - - String - - String - - - None - - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsPersonalAttendantPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - Grant-CsTeamsPersonalAttendantPolicy - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsPersonalAttendantPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - - Grant-CsTeamsPersonalAttendantPolicy - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsPersonalAttendantPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - Identity - - The user object to whom the policy is being assigned. - - String - - String - - - None - - - PolicyName - - The name of the policy being assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsPersonalAttendantPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.2.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsPersonalAttendantPolicy -identity user1@contoso.com -PolicyName SalesPersonalAttendantPolicy - - Assigns the TeamsPersonalAttendantPolicy called "SalesPersonalAttendantPolicy" to user1@contoso.com - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsPersonalAttendantPolicy -Global -PolicyName SalesPersonalAttendantPolicy - - Assigns the TeamsPersonalAttendantPolicy called "SalesPersonalAttendantPolicy" to the Global policy instance. This sets the parameters in the Global policy instance to the values found in the SalesPersonalAttendantPolicy instance. - - - - -------------------------- Example 3 -------------------------- - Grant-CsTeamsPersonalAttendantPolicy -Group sales@contoso.com -Rank 10 -PolicyName SalesPersonalAttendantPolicy - - Assigns the TeamsPersonalAttendantPolicy called "SalesPersonalAttendantPolicy" to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamspersonalattendantpolicy - - - New-CsTeamsPersonalAttendantPolicy - - - - Set-CsTeamsPersonalAttendantPolicy - - - - Get-CsTeamsPersonalAttendantPolicy - - - - Remove-CsTeamsPersonalAttendantPolicy - - - - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - Grant - CsTeamsRoomVideoTeleConferencingPolicy - - Assigns a TeamsRoomVideoTeleConferencingPolicy to a Teams Room Alias on a per-room or per-Group basis. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a identity, the policy applies to all rooms in your tenant, except any that have an explicit policy assignment. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - The alias of the Teams room that the IT admin is granting this PolicyName to. - - String - - String - - - None - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a identity, the policy applies to all rooms in your tenant, except any that have an explicit policy assignment. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The alias of the Teams room that the IT admin is granting this PolicyName to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsroomvideoteleconferencingpolicy - - - - - - Grant-CsTeamsSharedCallingRoutingPolicy - Grant - CsTeamsSharedCallingRoutingPolicy - - Assigns a specific Teams shared calling routing policy to a user, a group of users, or sets the Global policy instance. - - - - The `Grant-CsTeamsSharedCallingRoutingPolicy` cmdlet assigns a Teams shared calling routing policy to a user, a group of users, or sets the Global policy instance. This cmdlet is used to manage how calls are routed in Microsoft Teams, allowing administrators to control call handling and routing behavior for users within their organization. - - - - Grant-CsTeamsSharedCallingRoutingPolicy - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your organization, except any that have an explicit policy assignment. To prevent a warning when you carry out this operation, specify this parameter. - - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Seattle has a PolicyName equal to Seattle. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - - Grant-CsTeamsSharedCallingRoutingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Seattle has a PolicyName equal to Seattle. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsSharedCallingRoutingPolicy - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams shared calling routing policy. User identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's ObjectId or Identity. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Seattle has a PolicyName equal to Seattle. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your organization, except any that have an explicit policy assignment. To prevent a warning when you carry out this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams shared calling routing policy. User identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's ObjectId or Identity. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Seattle has a PolicyName equal to Seattle. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - This cmdlet was introduced in Teams PowerShell Module 5.5.0. - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsTeamsSharedCallingRoutingPolicy -Identity "user@contoso.com" -PolicyName "Seattle" - - The command shown in Example 1 assigns the per-user Teams shared calling routing policy instance Seattle to the user user@contoso.com. - - - - -------------------------- EXAMPLE 2 -------------------------- - Grant-CsTeamsSharedCallingRoutingPolicy -PolicyName "Seattle" -Global - - Example 2 assigns the per-user Teams shared calling routing policy instance Seattle to all the users in the organization, except any that have an explicit Teams shared calling routing policy assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssharedcallingroutingpolicy - - - Get-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssharedcallingroutingpolicy - - - Set-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssharedcallingroutingpolicy - - - Remove-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssharedcallingroutingpolicy - - - New-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssharedcallingroutingpolicy - - - - - - Grant-CsTeamsShiftsPolicy - Grant - CsTeamsShiftsPolicy - - This cmdlet supports applying the TeamsShiftsPolicy to users in a tenant. - - - - This cmdlet enables admins to grant Shifts specific policy settings to users in their tenant. - - - - Grant-CsTeamsShiftsPolicy - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The name of the TeamsShiftsPolicy instance that is being applied to the user. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsShiftsPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the TeamsShiftsPolicy instance that is being applied to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsShiftsPolicy - - Identity - - > Applicable: Microsoft Teams - UserId to whom the policy is granted. Email id is acceptable. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the TeamsShiftsPolicy instance that is being applied to the user. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - UserId to whom the policy is granted. Email id is acceptable. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the TeamsShiftsPolicy instance that is being applied to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsShiftsPolicy -Identity IsaiahL@mwtdemo.onmicrosoft.com -PolicyName OffShiftAccessMessage1Always - - Applies the OffShiftAccessMessage1Always instance of TeamsShiftsPolicy to one user in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-teamsshiftspolicy - - - Get-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftspolicy - - - New-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftspolicy - - - Set-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftspolicy - - - Remove-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftspolicy - - - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - Grant - CsTeamsSurvivableBranchAppliancePolicy - - Grants a Survivable Branch Appliance (SBA) Policy to users in the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The identity of the user. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The identity of the user. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssurvivablebranchappliancepolicy - - - - - - Grant-CsTeamsUpdateManagementPolicy - Grant - CsTeamsUpdateManagementPolicy - - Use this cmdlet to grant a specific Teams Update Management policy to a user. - - - - Grants a specific Teams Update Management policy to a user or sets a specific Teams Update Management policy as the new effective global policy. - - - - Grant-CsTeamsUpdateManagementPolicy - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsUpdateManagementPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsUpdateManagementPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsUpdateManagementPolicy -PolicyName "Campaign Policy" -Identity kenmyer@litwareinc.com - - In this example, the policy "Campaign Policy" is granted to the user kenmyer@litwareinc.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupdatemanagementpolicy - - - - - - Grant-CsTeamsUpgradePolicy - Grant - CsTeamsUpgradePolicy - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. - - - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. As an organization with Skype for Business starts to adopt Teams, administrators can manage the user experience in their organization using the concept of coexistence "mode". Mode defines in which client incoming chats and calls land as well as in what service (Teams or Skype for Business) new meetings are scheduled in. Mode also governs what functionality is available in the Teams client. Finally, prior to upgrading to TeamsOnly mode administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade. - This cmdlet enables admins to apply TeamsUpgradePolicy to either individual users or to set the default for the entire organization. - > [!NOTE] > Earlier versions of this cmdlet used to support -MigrateMeetingsToTeams option. This option is removed in later versions of the module. Tenants must run Start-CsExMeetingMigration. See Start-CsExMeetingMigrationService (https://learn.microsoft.com/powershell/module/microsoftteams/start-csexmeetingmigration). - Microsoft Teams provides all relevant instances of TeamsUpgradePolicy via built-in, read-only policies. The built-in instances are as follows: - |Identity|Mode|NotifySfbUsers|Comments| |---|---|---|---| |Islands|Islands|False|Default configuration. Allows a single user to evaluate both clients side by side. Chats and calls can land in either client, so users must always run both clients.| |IslandsWithNotify|Islands|True|Same as Islands and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBOnly|SfBOnly|False|Calling, chat functionality and meeting scheduling in the Teams app are disabled.| |SfBOnlyWithNotify|SfBOnly|True|Same as SfBOnly and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBWithTeamsCollab|SfBWithTeamsCollab|False|Calling, chat functionality and meeting scheduling in the Teams app are disabled.| |SfBWithTeamsCollabWithNotify|SfBWithTeamsCollab|True|Same as SfBWithTeamsCollab and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBWithTeamsCollabAndMeetings|SfBWithTeamsCollabAndMeetings|False|Calling and chat functionality in the Teams app are disabled.| |SfBWithTeamsCollabAndMeetingsWithNotify|SfBWithTeamsCollabAndMeetings|True|Same as SfBWithTeamsCollabAndMeetings and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |UpgradeToTeams|TeamsOnly|False|Use this mode to upgrade users to Teams and to prevent chat, calling, and meeting scheduling in Skype for Business.| |Global|Islands|False|| - > [!IMPORTANT] > TeamsUpgradePolicy can be assigned to any Teams user, whether that user have an on-premises account in Skype for Business Server or not. However, TeamsOnly mode can only be assigned to a user who is already homed in Skype for Business Online . This is because interop with Skype for Business users and federation as well as Microsoft 365 Phone System functionality are only possible if the user is homed in Skype for Business Online. In addition, you cannot assign TeamsOnly mode as the tenant-wide default if you have any Skype for Business on-premises deployment (which is detected by presence of a lyncdiscover DNS record that points to a location other than Office 365. To make these users TeamsOnly you must first move these users individually to the cloud using `Move-CsUser`. Once all users have been moved to the cloud, you can disable hybrid to complete migration to the cloud (https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation-disabling-hybrid)and then apply TeamsOnly mode at the tenant level to ensure future users are TeamsOnly by default. - > [!NOTE] > > - TeamsUpgradePolicy is available in both Office 365 and in on-premises versions of Skype for Business Server, but there are differences: > - In Office 365, admins can specify both coexistence mode and whether to trigger notifications of pending upgrade. > - In on-premises with Skype for Business Server, the only available option is to trigger notifications. Skype for Business Server 2015 with CU8 or Skype for Business Server 2019 are required. > - TeamsUpgradePolicy in Office 365 can be granted to users homed on-premises in hybrid deployments of Skype for Business as follows: > - Coexistence mode is honored by users homed on-premises, however on-premises users cannot be granted the UpgradeToTeams instance (mode=TeamsOnly) of TeamsUpgradePolicy. To be upgraded to TeamsOnly mode, users must be either homed in Skype for Business Online or have no Skype account anywhere. > - The NotifySfBUsers setting of Office 365 TeamsUpgradePolicy is not honored by users homed on-premises. Instead, the on-premises version of TeamsUpgradePolicy must be used. > - In Office 365, all relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet available. In contrast, Skype for Business Server does not contain built-in instances, so the New cmdlet is available on-premises. Only NotifySfBUsers property is available in on-premises. > - When granting a user a policy with mode=TeamsOnly or mode=SfBWithTeamsCollabAndMeetings, by default, meetings organized by that user will be migrated to Teams. For details, see Using the Meeting Migration Service (MMS) (https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms). - When users are in any of the Skype for Business modes (SfBOnly, SfBWithTeamsCollab, SfBWithTeamsCollabAndMeetings), calling and chat functionality in the Teams app are disabled (but chat in the context of a Teams meeting is still allowed). Similarly, when users are in the SfBOnly or SfBWithTeamsCollab modes, meeting scheduling is disabled. For more details, see Migration and interoperability guidance for organizations using Teams together with Skype for Business (https://learn.microsoft.com/microsoftteams/migration-interop-guidance-for-teams-with-skype). - The `Grant-CsTeamsUpgradePolicy` cmdlet checks the configuration of the corresponding settings in TeamsMessagingPolicy, TeamsCallingPolicy, and TeamsMeetingPolicy to determine if those settings would be superceded by TeamsUpgradePolicy and if so, an informational message is provided in PowerShell. It is not necessary to set these other policy settings. This is for informational purposes only. Below is an example of what the PowerShell warning looks like: - `Grant-CsTeamsUpgradePolicy -Identity user1@contoso.com -PolicyName SfBWithTeamsCollab` WARNING : The user `user1@contoso.com` currently has enabled values for: AllowUserChat, AllowPrivateCalling, AllowPrivateMeetingScheduling, AllowChannelMeetingScheduling, however these values will be ignored. This is because you are granting this user TeamsUpgradePolicy with mode=SfBWithTeamsCollab, which causes the Teams client to behave as if they are disabled. - > [!NOTE] > These warning messages are not affected by the -WarningAction parameter. - - - - Grant-CsTeamsUpgradePolicy - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - Grant-CsTeamsUpgradePolicy - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - Grant-CsTeamsUpgradePolicy - - Identity - - The user you want to grant policy to. This can be specified as SIP address, UserPrincipalName, or ObjectId. - - UserIdParameter - - UserIdParameter - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user you want to grant policy to. This can be specified as SIP address, UserPrincipalName, or ObjectId. - - UserIdParameter - - UserIdParameter - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------- Example 1: Grant Policy to an individual user -------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName UpgradeToTeams -Identity mike@contoso.com - - The above cmdlet assigns the "UpgradeToTeams" policy to user Mike@contoso.com. This effectively upgrades the user to Teams only mode. This command will only succeed if the user does not have an on-premises Skype for Business account. - - - - ------- Example 2: Remove Policy for an individual user ------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName $null -Identity mike@contoso.com - - The above cmdlet removes any policy changes made to user Mike@contoso.com and effectively Inherits the global tenant setting for teams Upgrade. - - - - --------- Example 3: Grant Policy to the entire tenant --------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName SfBOnly -Global - - To grant a policy to all users in the org (except any that have an explicit policy assigned), omit the identity parameter. If you do not specify the -Global parameter, you will be prompted to confirm the operation. - - - - Example 4 Get a report on existing TeamsUpgradePolicy users (Screen Report) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* - - You can get the output on the screen, on CSV or Html format. For Screen Report. - - - - Example 5 Get a report on existing TeamsUpgradePolicy users (CSV Report) - $objUsers = Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* -$objusers | ConvertTo-Csv -NoTypeInformation | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.csv" - - This will create a CSV file on the Desktop of the current user with the name "TeamsUpgrade.csv" - - - - Example 6 Get a report on existing TeamsUpgradePolicy users (HTML Report) - $objUsers = Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* -$objusers | ConvertTo-Html | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.html" - - After running these lines will create an HTML file on the Desktop of the current user with the name "TeamUpgrade.html" - - - - Example 7 Get a report on existing TeamsUpgradePolicy users (CSV Report - Oneliner version) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* | ConvertTo-Csv -NoTypeInformation | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.csv" - - This will create a CSV file on the Desktop of the current user with the name "TeamsUpgrade.csv" - - - - Example 8 Get a report on existing TeamsUpgradePolicy users (HTML Report - Oneliner Version) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* | ConvertTo-Html | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.html" - - After running these lines will create an HTML file on the Desktop of the current user with the name "TeamUpgrade.html" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - Using the Meeting Migration Service (MMS) - https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms - - - Coexistence with Skype for Business - https://learn.microsoft.com/microsoftteams/coexistence-chat-calls-presence - - - Get-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradeconfiguration - - - Set-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Get-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradepolicy - - - - - - Grant-CsTeamsVdiPolicy - Grant - CsTeamsVdiPolicy - - Assigns a teams Vdi policy at the per-user scope. The CsTeamsVdiPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting specifically on an unoptimized VDI environment. It also controls whether a user can be in VDI 2.0 optimization mode. - - - - Assigns a teams Vdi policy at the per-user scope. The CsTeamsVdiPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting specifically on an unoptimized VDI environment. It also controls whether a user can be in VDI 2.0 optimization mode. - - - - Grant-CsTeamsVdiPolicy - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVdiPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsVdiPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - String - - String - - - None - - - - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsVdiPolicy -identity "Ken Myer" -PolicyName RestrictedUserPolicy - - In this example, a user with identity "Ken Myer" is being assigned the RestrictedUserPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvdipolicy - - - - - - Grant-CsTeamsVideoInteropServicePolicy - Grant - CsTeamsVideoInteropServicePolicy - - The Grant-CsTeamsVideoInteropServicePolicy cmdlet allows you to assign a pre-constructed policy across your whole organization or only to specific users. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization. Microsoft provides pre-constructed policies for each of our supported partners that allow you to designate which of the partners to use for cloud video interop. - User needs to be assigned one policy from admin to create a CVI meeting. There could be multiple provides in a tenant, but user can only be assigned only one policy(provide). FAQ : - Q: After running `Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy>` to assign a policy to the whole tenant, the result of `Get-CsOnlineUser -Identity {User Identity} | Format-List TeamsVideoInteropServicePolicy` that checks if the User Policy is empty. - A: Global/Tenant level Policy Assignment can be checked by running `Get-CsTeamsVideoInteropServicePolicy Global`. - Q: I assigned CVI policy to a user, but I can't create a VTC meeting with that policy or I made changes to policy assignment, but it didn't reflect on new meetings I created. - A: The policy is cached for 6 hours. Changes to the policy are updated after the cache expires. Check for your changes after 6 hours. Frequently used commands that can help identify the policy assignment : - - Command to get full list of user along with their CVI policy: `Get-CsOnlineUser | Format-List UserPrincipalName,TeamsVideoInteropServicePolicy` - - Command to get the policy assigned to the whole tenant: `Get-CsTeamsVideoInteropServicePolicy Global` - - - - Grant-CsTeamsVideoInteropServicePolicy - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Global - - Use this flag to override the warning when assigning the global policy for your tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVideoInteropServicePolicy - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVideoInteropServicePolicy - - Identity - - {{Fill Identity Description}} - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Global - - Use this flag to override the warning when assigning the global policy for your tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - {{Fill Identity Description}} - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - ------ Example 1: The whole tenant has the same provider ------ - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | $null> -Global - - Specify the provider for the whole tenant or use the value $null to remove the tenant-level provider and let the whole tenant fall back to the Global policy. - - - - Example 2: The tenant has two (or three) interop service providers - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | $null> -Identity <UserId> - - Specify each user with the Identity parameter, and use Provider-1 or Provider-2 for the value of the PolicyName parameter. Use the value $null to remove the provider and let the user's provider fallback to Global policy. - - - - Example 3: The tenant has a default interop service provider, but specific users (say IT folks) want to pilot another interop provider. - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | ServiceProviderDisabled> [-Identity <UserId>] - - - To assign Provider-1 as the default interop service provider, don't use the Identity parameter and use the value Provider-1 for the PolicyName parameter. - - For specific users to try Provider-2, specify each user with the Identity parameter, and use the value Provider-2 for the PolicyName parameter. - - For specific users who need to disable CVI, specify each user with the Identity parameter and use the value ServiceProviderDisabled for the PolicyName parameter. - - - - Example 4: Cloud Video Interop has been disabled for the entire tenant, except for those users that have an explicit policy assigned to them. - Grant-CsTeamsVideoInteropServicePolicy -PolicyName ServiceProviderDisabled - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvideointeropservicepolicy - - - - - - Grant-CsTeamsVirtualAppointmentsPolicy - Grant - CsTeamsVirtualAppointmentsPolicy - - This cmdlet applies an instance of the TeamsVirtualAppointmentsPolicy to users or groups in a tenant. - - - - This cmdlet applies an instance of the TeamsVirtualAppointmentsPolicy to users or groups in a tenant. - Passes in the `Identity` of the policy instance in the `PolicyName` parameter and the user identifier in the `Identity` parameter or the group name in the `Group` parameter. One of either `Identity` or `Group` needs to be passed. - - - - Grant-CsTeamsVirtualAppointmentsPolicy - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVirtualAppointmentsPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsVirtualAppointmentsPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsVirtualAppointmentsPolicy -PolicyName sms-enabled -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsVirtualAppointmentsPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName sms-enabled - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsVirtualAppointmentsPolicy -Global -PolicyName sms-enabled - - Assigns a given policy to the tenant. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsVirtualAppointmentsPolicy -Global -PolicyName sms-enabled - - Note: Using $null in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvirtualappointmentspolicy - - - Get-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvirtualappointmentspolicy - - - New-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvirtualappointmentspolicy - - - Set-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvirtualappointmentspolicy - - - Remove-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvirtualappointmentspolicy - - - - - - Grant-CsTeamsVoiceApplicationsPolicy - Grant - CsTeamsVoiceApplicationsPolicy - - Assigns a per-user Teams voice applications policy to one or more users. TeamsVoiceApplications policy governs what permissions the supervisors/users have over auto attendants and call queues. - - - - TeamsVoiceApplicationsPolicy is used for Supervisor Delegated Administration which allows tenant admins to permit certain users to make changes to auto attendant and call queue configurations. - - - - Grant-CsTeamsVoiceApplicationsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVoiceApplicationsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVoiceApplicationsPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams voice applications policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams voice applications policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsTeamsVoiceApplicationsPolicy -Identity "Ken Myer" -PolicyName "SDA-Allow-All" - - The command shown in Example 1 assigns the per-user Teams voice applications policy SDA-Allow-All to the user with the display name "Ken Myer". - - - - -------------------------- EXAMPLE 2 -------------------------- - Grant-CsTeamsVoiceApplicationsPolicy -PolicyName "SDA-Allow-All" -Global - - Example 2 assigns the per-user online voice routing policy "SDA-Allow-All to all the users in the tenant, except any that have an explicit policy assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Get-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Set-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - Remove-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - New-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - - - - Grant-CsTeamsWorkLoadPolicy - Grant - CsTeamsWorkLoadPolicy - - This cmdlet applies an instance of the Teams Workload policy to users or groups in a tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Grant-CsTeamsWorkLoadPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsWorkLoadPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsWorkLoadPolicy - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Global -PolicyName Test - - Assigns a given policy to the tenant. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Global -PolicyName Test - - > [!NOTE] > Using `$null` in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - - - - Grant-CsTeamsWorkLocationDetectionPolicy - Grant - CsTeamsWorkLocationDetectionPolicy - - This cmdlet applies an instance of the TeamsWorkLocationDetectionPolicy to users or groups in a tenant. - - - - This cmdlet applies an instance of the TeamsWorkLocationDetectionPolicy to users or groups in a tenant. - Passes in the `Identity` of the policy instance in the `PolicyName` parameter and the user identifier in the `Identity` parameter or the group name in the `Group` parameter. One of either `Identity` or `Group` needs to be passed. - - - - Grant-CsTeamsWorkLocationDetectionPolicy - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - - Grant-CsTeamsWorkLocationDetectionPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsWorkLocationDetectionPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: testuser@test.onmicrosoft.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsWorkLocationDetectionPolicy -PolicyName sms-policy -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsWorkLocationDetectionPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName wld-policy - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsWorkLocationDetectionPolicy -Global -PolicyName wld-policy - - Assigns a given policy to the tenant. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsWorkLocationDetectionPolicy -Global -PolicyName wld-policy - - Note: Using $null in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworklocationdetectionpolicy - - - Get-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworklocationdetectionpolicy - - - New-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworklocationdetectionpolicy - - - Set-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworklocationdetectionpolicy - - - Remove-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworklocationdetectionpolicy - - - - - - Grant-CsTenantDialPlan - Grant - CsTenantDialPlan - - Use the Grant-CsTenantDialPlan cmdlet to assign an existing tenant dial plan to a user, to a group of users, or to set the Global policy instance. - - - - The Grant-CsTenantDialPlan cmdlet assigns an existing tenant dial plan to a user, a group of users, or sets the Global policy instance. Tenant dial plans provide information that is required for Enterprise Voice users to make telephone calls. Users who do not have a valid tenant dial plan cannot make calls by using Enterprise Voice. A tenant dial plan determines such things as how normalization rules are applied. - You can check whether a user has been granted a per-user tenant dial plan by calling a command in this format: `Get-CsUserPolicyAssignment -Identity "<user name>" -PolicyType TenantDialPlan.` - - - - Grant-CsTenantDialPlan - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - - Grant-CsTenantDialPlan - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the user to whom the policy should be assigned. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the user to whom the policy should be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTenantDialPlan -PolicyName Vt1tenantDialPlan9 -Identity Ken.Myer@contoso.com - - This example grants the Vt1tenantDialPlan9 dial plan to Ken.Meyer@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsTenantDialPlan -Identity Ken.Myer@contoso.com -PolicyName $Null - - In Example 2, any dial plan previously assigned to the user Ken Myer is unassigned from that user; as a result, Ken Myer will be managed by the global dial plan. To unassign a custom tenant dial plan, set the PolicyName to a null value ($Null). - - - - -------------------------- Example 3 -------------------------- - Grant-CsTenantDialPlan -Group sales@contoso.com -Rank 10 -PolicyName Vt1tenantDialPlan9 - - This example grants the Vt1tenantDialPlan9 dial plan to members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - - - - Grant-CsVoicePolicy - Grant - CsVoicePolicy - - Assigns a voice policy to one or more users or groups. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet assigns an existing per-user voice policy to a user. Voice policies are used to manage such Enterprise Voice-related features as simultaneous ringing (the ability to have a second phone ring each time someone calls your office phone) and call forwarding. Use this cmdlet to assign the settings that enable and disable these features for a specific user. - You can check whether a user has been granted a per-user voice policy by calling a command in this format: `Get-CsUser "<user name>" | Select-Object VoicePolicy.` For example: - `Get-CsUser "Ken Myer" | Select-Object VoicePolicy` - NOTE - For accounts hosted in Skype for Business Online, it is not possible to grant a voice policy via PowerShell. In this scenario, the voice policy is automatically granted based on user licensing. - - - - Grant-CsVoicePolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the policy is being assigned. - User identities can be specified by using one of four formats: 1) The user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full Data Type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name (Identity) of the voice policy to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user policy identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to specify a domain controller. If no domain controller is specified, the first available will be used. - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity (unique identifier) of the user to whom the policy is being assigned. - User identities can be specified by using one of four formats: 1) The user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - Note that you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" would return all the users with the last name Smith. - Full Data Type: Microsoft.Rtc.Management.AD.UserIdParameter - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Returns the results of the command. By default, this cmdlet does not generate any output. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name (Identity) of the voice policy to be assigned to the user. (Note that this includes only the name portion of the Identity. Per-user policy identities include a prefix of tag: that should not be included with the PolicyName.) - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - Accepts a pipelined string value representing the Identity of a user account to which the voice policy is being granted. - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact - - - When used with the PassThru parameter, returns an object of type Microsoft.Rtc.Management.ADConnect.Schema.OCSADUserOrAppContact. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsVoicePolicy -Identity "Ken Myer" -PolicyName VoicePolicyRedmond - - This example assigns the voice policy with the Identity VoicePolicyRedmond to the user with the display name Ken Myer. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsUser -OU "ou=Finance,ou=North America,dc=litwareinc,dc=com" | Grant-CsVoicePolicy -PolicyName VoicePolicyRedmond - - This example assigns the voice policy with the Identity VoicePolicyRedmond to all users in the Finance OU: OU=Finance,OU=NorthAmerica,DC=litwareinc,DC=com. The first part of the command calls the Get-CsUser cmdlet to retrieve all users enabled for Skype for Business Server from the specified OU. This collection of users is then piped to the Grant-CsVoicePolicy cmdlet, which assigns the policy VoicePolicyRedmond to each of these users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-csvoicepolicy - - - New-CsVoicePolicy - - - - Remove-CsVoicePolicy - - - - Set-CsVoicePolicy - - - - Get-CsVoicePolicy - - - - Test-CsVoicePolicy - - - - Get-CsUser - - - - - - - Grant-CsVoiceRoutingPolicy - Grant - CsVoiceRoutingPolicy - - Assigns a per-user voice routing policy to one or more users. Voice routing policies manage PSTN usages for users of hybrid voice. Hybrid voice enables users homed on Microsoft Teams or Skype for Business Online to take advantage of the Enterprise Voice capabilities available in an on-premises installation of Skype for Business Server. This cmdlet was introduced in Lync Server 2013. - - - - Voice routing policies are used in "hybrid" scenarios: when some of your users are homed on the on-premises version of Skype for Business Server and other users are homed on Skype for Business Online. Assigning your Skype for Business Online users a voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user a voice routing policy will not enable them to make PSTN calls via Skype for Business Online. Among other things, you will also need to enable those users for Enterprise Voice and will need to assign them an appropriate voice policy and dial plan. - Skype for Business Server Control Panel: The functions carried out by the Grant-CsVoiceRoutingPolicy cmdlet are not available in the Skype for Business Server Control Panel. - - - - Grant-CsVoiceRoutingPolicy - - Identity - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account to be assigned the per-user voice routing policy. User Identities are typically specified using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - User Identities can also be specified by using the user's Active Directory distinguished name. - In addition, you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" returns all the users who have a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondVoiceRoutingPolicy has a PolicyName equal to RedmondVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to connect to the specified domain controller in order to retrieve user information. To connect to a particular domain controller, include the DomainController parameter followed by the computer name (for example, atl-dc-001) or its fully qualified domain name (FQDN) (for example, atl-dc-001.litwareinc.com). - - Fqdn - - Fqdn - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user account being assigned the voice routing policy. By default, the Grant-CsVoiceRoutingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to connect to the specified domain controller in order to retrieve user information. To connect to a particular domain controller, include the DomainController parameter followed by the computer name (for example, atl-dc-001) or its fully qualified domain name (FQDN) (for example, atl-dc-001.litwareinc.com). - - Fqdn - - Fqdn - - - None - - - Identity - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account to be assigned the per-user voice routing policy. User Identities are typically specified using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). - User Identities can also be specified by using the user's Active Directory distinguished name. - In addition, you can use the asterisk (*) wildcard character when using the Display Name as the user Identity. For example, the Identity "* Smith" returns all the users who have a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user account being assigned the voice routing policy. By default, the Grant-CsVoiceRoutingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondVoiceRoutingPolicy has a PolicyName equal to RedmondVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - The Grant-CsVoiceRoutingPolicy cmdlet accepts pipelined input of string values representing the Identity of a user account. - - - - - Microsoft.Rtc.Management.ADConnect.Schema.ADUser - - - The cmdlet also accepts pipelined input of user objects. - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.OCSUserOrAppContact - - - By default, the Grant-CsVoiceRoutingPolicy cmdlet does not return a value or object. However, if you include the PassThru parameter, the cmdlet will return instances of the Microsoft.Rtc.Management.ADConnect.Schema.OCSUserOrAppContact. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Grant-CsVoiceRoutingPolicy -Identity "Ken Myer" -PolicyName "RedmondVoiceRoutingPolicy" - - The command shown in Example 1 assigns the per-user voice routing policy RedmondVoiceRoutingPolicy to the user with the Active Directory display name "Ken Myer". - - - - -------------------------- Example 2 -------------------------- - Grant-CsVoiceRoutingPolicy -Identity "Ken Myer" -PolicyName $Null - - In Example 2, any per-user voice routing policy previously assigned to the user Ken Myer is unassigned from that user; as a result, Ken Myer will be managed by the global voice routing policy. To unassign a per-user policy, set the PolicyName to a null value ($Null). - - - - -------------------------- Example 3 -------------------------- - Get-CsUser -OU "OU=Redmond,dc=litwareinc,dc=com" | Grant-CsVoiceRoutingPolicy -PolicyName "RedmondVoiceRoutingPolicy" - - Example 3 assigns the per-user voice routing policy RedmondVoiceRoutingPolicy to all the users in the Redmond OU in Active Directory. To do this, the command first calls the Get-CsUser cmdlet long with the OU parameter; the parameter value "OU=Redmond,dc=litwareinc,dc=com" limits the returned data to user accounts in the Redmond OU. Those user accounts are then piped to the Grant-CsVoiceRoutingPolicy cmdlet, which assigns each user the voice routing policy RedmondVoiceRoutingPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/grant-csvoiceroutingpolicy - - - Get-CsVoiceRoutingPolicy - - - - New-CsVoiceRoutingPolicy - - - - Remove-CsVoiceRoutingPolicy - - - - Set-CsVoiceRoutingPolicy - - - - - - - Invoke-ClearDirectToGroupAssignmentMigration - Invoke - ClearDirectToGroupAssignmentMigration - - As an admin, you can trigger a new direct assignments to group policy assignments cleanup. - - - - As an admin, you can trigger a new direct assignments to group policy assignments cleanup for a specific authority, instance document and group id. The cleanup will be automatic and will clean all direct assignments with the provided parameters. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Invoke-ClearDirectToGroupAssignmentMigration - - Authority - - The authority (issuer) of the policy. - - String - - String - - - None - - - GroupId - - The target group ID. - - Guid - - Guid - - - None - - - PolicyName - - The name of the policy. - - String - - String - - - None - - - PolicyType - - The type of the policy. - - String - - String - - - None - - - - - - Authority - - The authority (issuer) of the policy. - - String - - String - - - None - - - GroupId - - The target group ID. - - Guid - - Guid - - - None - - - PolicyName - - The name of the policy. - - String - - String - - - None - - - PolicyType - - The type of the policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Invoke-clearDirectToGroupAssignmentMigration -Authority Tenant -PolicyType TeamsCallingPolicy -PolicyName Test-Gpa-Adoption-Policy-2 -GroupId cde9a331-5bf8-415c-990c-19838b0d898c - - In this example, the Invoke-clearDirectToGroupAssignmentMigration cmdlet is used to trigger the direct assignment to group policy assignment cleanup for the instance document with policy type TeamsCallingPolicy and name Test-Gpa-Adoption-Policy-2 which will clean all direct assignments with the provided parameters. - - - - - - - - Invoke-StartDirectToGroupAssignmentMigration - Invoke - StartDirectToGroupAssignmentMigration - - As an admin, you can trigger a new direct assignments to group policy assignments migration. - - - - As an admin, you can trigger a new direct assignments to group policy assignments migration for a specific authority, instance document and group id. The migration will be automatic and will move all the users that have the direct assignment with the provided parameters to the group provided and will apply the correct group policy assignment, removing after all the exiting direct assignments to avoid any conflict. At the end the behavior will be the same one but the admin will have now to manage only a group instead of a bunch of direct assignments. This is only applicable for tenants who have activated the new features related to group policy assignment adoption. - - - - Invoke-StartDirectToGroupAssignmentMigration - - AllowNonEmptyGroup - - Flag to know if the process should continue or not when the group provided already have an active group policy assignment. - - Boolean - - Boolean - - - None - - - Authority - - The authority (issuer) of the policy. - - String - - String - - - None - - - GroupId - - The target group ID. - - Guid - - Guid - - - None - - - PolicyName - - The name of the policy. - - String - - String - - - None - - - PolicyType - - The type of the policy. - - String - - String - - - None - - - - - - AllowNonEmptyGroup - - Flag to know if the process should continue or not when the group provided already have an active group policy assignment. - - Boolean - - Boolean - - - None - - - Authority - - The authority (issuer) of the policy. - - String - - String - - - None - - - GroupId - - The target group ID. - - Guid - - Guid - - - None - - - PolicyName - - The name of the policy. - - String - - String - - - None - - - PolicyType - - The type of the policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Invoke-startDirectToGroupAssignmentMigration -Authority Tenant -PolicyType TeamsCallingPolicy -PolicyName Test-Gpa-Adoption-Policy-2 -GroupId cde9a331-5bf8-415c-990c-19838b0d898c - - In this example, the Invoke-startDirectToGroupAssignmentMigration cmdlet is used to trigger the direct assignment to group policy assignment migration for the instance document with policy type TeamsCallingPolicy and name Test-Gpa-Adoption-Policy-2 to the group cde9a331-5bf8-415c-990c-19838b0d898c. In this case the flag allowNonEmptyGroup is not provided and the default will be false which means if the group provided already have an active group policy assignment the operation wont be trigger. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Invoke-startDirectToGroupAssignmentMigration -Authority Tenant -PolicyType TeamsCallingPolicy -PolicyName Test-Gpa-Adoption-Policy-2 -GroupId cde9a331-5bf8-415c-990c-19838b0d898c -allowNonEmptyGroup $True - - In this example, the Invoke-startDirectToGroupAssignmentMigration cmdlet is used to trigger the direct assignment to group policy assignment migration for the instance document with policy type TeamsCallingPolicy and name Test-Gpa-Adoption-Policy-2 to the group cde9a331-5bf8-415c-990c-19838b0d898c. In this case the flag allowNonEmptyGroup is provided which means even thought the group provided already have an active group policy assignment the operation will be trigger. - - - - - - - - New-CsAdditionalInternalDomain - New - CsAdditionalInternalDomain - - Creates a new additional internal domain for use in your organization. This cmdlet was introduced in Skype for Business Server 2015 Cumulative Update 6 - December 2017. - - - - This cmdlet creates a new additional internal domain for use in your organization. - Additional internal domains are not used locally by internal user or services URIs but must be treated as internal by hybrid (split-domain) traffic analysis to support purely hosted and cloud appliance domains. - - - - New-CsAdditionalInternalDomain - - Domain - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - String - - String - - - None - - - Force - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsAdditionalInternalDomain - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Force - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Domain - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - String - - String - - - None - - - Force - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsAdditionalInternalDomain -Identity fabrikam.com - - The cmdlet shown in Example 1 creates a new additional internal domain, one that has the Identity fabrikam.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csadditionalinternaldomain - - - Remove-CsAdditionalInternalDomain - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csadditionalinternaldomain?view=skype-ps - - - Get-CsAdditionalInternalDomain - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csadditionalinternaldomain?view=skype-ps - - - - - - New-CsAllowedDomain - New - CsAllowedDomain - - Adds a domain to the list of domains approved for federation. After a domain has been approved for federation (by being added to the allowed list), your users can exchange instant messages and presence information with people who have accounts in the federated domain. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications, and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider; and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your servers running the Skype for Business Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To establish a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with; if a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - If you want to create a new federation relationship, you can use the New-CsAllowedDomain cmdlet to add a domain to the list of allowed domains. - - - - New-CsAllowedDomain - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being added to the allowed list. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Domain - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, fabrikam.com) of the domain to be added to the allowed list. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value assigned to Domain. - Note that Domains must be unique: if the specified domain already exists on either the blocked or the allowed list, your command will fail. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property will be ignored if you have not deployed Monitoring Server. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsAllowedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be added to the allowed list; for example, fabrikam.com. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value assigned to Domain. - Note that Identities must be unique: if the specified domain already exists on either the blocked or the allowed list, your command will fail. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being added to the allowed list. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property will be ignored if you have not deployed Monitoring Server. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being added to the allowed list. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Domain - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, fabrikam.com) of the domain to be added to the allowed list. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value assigned to Domain. - Note that Domains must be unique: if the specified domain already exists on either the blocked or the allowed list, your command will fail. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be added to the allowed list; for example, fabrikam.com. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value assigned to Domain. - Note that Identities must be unique: if the specified domain already exists on either the blocked or the allowed list, your command will fail. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property will be ignored if you have not deployed Monitoring Server. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsAllowedDomain cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - Creates instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsAllowedDomain -Identity "fabrikam.com" - - In Example 1, the domain fabrikam.com is added to the list of allowed domains. To do this, the New-CsAllowedDomain cmdlet is called, along with the Identity parameter; this parameter is assigned the name of the domain to be added to the allowed list. Note that this command will fail if fabrikam.com is already on the allowed list or on the blocked list. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CsAllowedDomain -Identity "fabrikam.com" -ProxyFqdn "proxyserver.fabrikam.com" -MarkForMonitoring $True -Comment "Contact: Ken Myer (kenmyer@fabrikam.com)" - - Example 2 is a variation of the command shown in Example 1. In this case, however, two additional parameters are included along with Identity: ProxyFqdn is used to specify the FQDN of the proxy server for fabrikam.com, and MarkForMonitoring is used to add this federation connection to the list of items monitored by Monitoring Server. - - - - -------------------------- EXAMPLE 3 -------------------------- - $x = New-CsAllowedDomain -Identity "fabrikam.com" -InMemory - -$x.ProxyFqdn = "proxyserver.fabrikam.com" - -$x.MarkForMonitoring = $True - -$x.Comment = "Contact: Ken Myer (kenmyer@fabrikam.com)" - -Set-CsAllowedDomain -Instance $x - - Example 3 demonstrates how you can use the InMemory parameter to create a new allowed domain that initially exists only in memory. After you modify the property values of this in-memory-only domain, you can then call the Set-CsAllowedDomain cmdlet to add the domain to the allowed list. - In order to do this, the first command in the example uses the New-CsAllowedDomain cmdlet and the InMemory parameter to create an allowed domain that has the Identity fabrikam.com. After that, the virtual domain is stored in the variable $x. - Lines 2, 3, and 4 are used to modify the values of the ProxyFqdn, MarkForMonitoring, and Comment properties, respectively. After all of the property values have been modified, the final command uses the Set-CsAllowedDomain cmdlet to add the virtual domain to the allowed domain list. Keep in mind that, until the Set-CsAllowedDomain cmdlet is called, fabrikam.com exists only in memory: if you run the Get-CsAllowedDomain cmdlet any time prior to the last line in the example, fabrikam.com will not appear on the list of allowed domains. Fabrikam.com will not show up on the allowed list until after you have called the Set-CsAllowedDomain cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csalloweddomain - - - Get-CsAllowedDomain - - - - Remove-CsAllowedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsAllowedDomain - - - - - - - New-CsApplicationAccessPolicy - New - CsApplicationAccessPolicy - - Creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user. - - - - This cmdlet creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user. - - - - New-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - - - - - - - ---- Create a new application access policy with one app ID ---- - PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b7b" -Description "Some description" - - The command shown above shows how to create a new policy with one app IDs configured. - - - - - Create a new application access policy with multiple app IDs - - PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b71", "57caaef9-5ed0-48d5-8862-e5abfa71b3e1", "dc17674c-81d9-4adb-bfb2-8f6a442e4620" -Description "Some description" - - The command shown above shows how to create a new policy with a list of (three) app IDs configured. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - - - - New-CsBlockedDomain - New - CsBlockedDomain - - Adds a new domain to the list of domains blocked for federation. By definition, your users are not allowed to use Skype for Business Server applications to communicate with people from the blocked domain; for example, users cannot use Skype for Business to exchange instant messages with anyone with a SIP account in a domain that appears on the blocked list. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications, and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider; and, 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your servers running the Skype for Business Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To establish a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with; if a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - The New-CsBlockedDomain cmdlet enables you to add a domain to the list of blocked domains. - - - - New-CsBlockedDomain - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the blocked domain. For example, you might add a Comment that explains why the domain has been blocked. - - String - - String - - - None - - - Domain - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, fabrikam.com) of the domain to be added to the blocked list. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value that is assigned to Identity. If you use Domain, the Identity property will be set to the same value that is assigned to Domain. - Note that Domains must be unique: if the specified domain already exists on either the blocked or the allowed list, the command will fail. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsBlockedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be added to the blocked list; for example, "fabrikam.com". You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value that is assigned to Domain. - Note that Identities must be unique: if the specified domain already exists on either the blocked or the allowed list, the command will fail. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the blocked domain. For example, you might add a Comment that explains why the domain has been blocked. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the blocked domain. For example, you might add a Comment that explains why the domain has been blocked. - - String - - String - - - None - - - Domain - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - FQDN (for example, fabrikam.com) of the domain to be added to the blocked list. You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value that is assigned to Identity. If you use Domain, the Identity property will be set to the same value that is assigned to Domain. - Note that Domains must be unique: if the specified domain already exists on either the blocked or the allowed list, the command will fail. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be added to the blocked list; for example, "fabrikam.com". You can use either the Identity or the Domain parameter (but not both) in order to specify the domain name. If you use Identity, the Domain property will be set to the same value assigned to Identity. If you use Domain, the Identity property will be set to the same value that is assigned to Domain. - Note that Identities must be unique: if the specified domain already exists on either the blocked or the allowed list, the command will fail. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsBlockedDomain cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - Creates instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsBlockedDomain -Identity "fabrikam.com" -Comment "Blocked per Ken Myer." - - In Example 1, the domain fabrikam.com is added to the list of blocked domains. To do this, the New-CsBlockedDomain cmdlet is called, along with the Identity parameter, which is assigned the name of the domain to be blocked. In addition, the Comment parameter is included in order to add a comment to the blocked domain. Note that this command will fail if fabrikam.com is already on the blocked list or on the allowed list. - - - - -------------------------- EXAMPLE 2 -------------------------- - $x = New-CsBlockedDomain -Identity "fabrikam.com" -InMemory - -$x.Comment = "Blocked per Ken Myer." - -Set-CsBlockedDomain -Instance $x - - Example 2 demonstrates how you can use the InMemory parameter to create a new blocked domain that initially exists only in memory. After you modify the property values of this in-memory-only domain you can then call the Set-CsBlockedDomain cmdlet to add the domain to the blocked list. - To perform this task, the first line in the command uses the New-CsBlockedDomain cmdlet and the InMemory parameter to create a blocked domain with the Identity fabrikam.com. Upon creation, this virtual domain is stored in the variable $x. - In the second line, the Comment property of the virtual domain is modified. After that, line 3 uses the Set-CsBlockedDomain cmdlet to add the virtual domain to the blocked list. Without line 3, the virtual domain would exist only in memory and would never be added to the blocked list. Instead, the virtual domain will disappear as soon as you end your Windows PowerShell session or delete the variable $x. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csblockeddomain - - - Get-CsBlockedDomain - - - - Remove-CsBlockedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsBlockedDomain - - - - - - - New-CsCallingLineIdentity - New - CsCallingLineIdentity - - Use the New-CsCallingLineIdentity cmdlet to create a new Caller ID policy for your organization. - - - - You can either change or block the Caller ID (also called a Calling Line ID) for a user. By default, the Teams or Skype for Business Online user's phone number can be seen when that user makes a call to a PSTN phone, or when a call comes in. You can create a Caller ID policy to provide an alternate displayed number, or to block any number from being displayed. - Note: - Identity must be unique. - - If CallerIdSubstitute is given as "Resource", then ResourceAccount cannot be empty. - - - - New-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The default value is LineUri. Supported values are Anonymous, LineUri, and Resource. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The default value is LineUri. Supported values are Anonymous, LineUri, and Resource. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false - - This example creates a new Caller ID policy that sets the Caller ID to Anonymous. - - - - -------------------------- Example 2 -------------------------- - New-CsCallingLineIdentity -Identity BlockIncomingCLID -BlockIncomingPstnCallerID $true - - This example creates a new Caller ID policy that blocks the incoming Caller ID. - - - - -------------------------- Example 3 -------------------------- - $ObjId = (Get-CsOnlineApplicationInstance -Identity dkcq@contoso.com).ObjectId -New-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -EnableUserOverride $false -ResourceAccount $ObjId -CompanyName "Contoso" - - This example creates a new Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso - - - - -------------------------- Example 4 -------------------------- - New-CsCallingLineIdentity -Identity AllowAnonymousForUsers -EnableUserOverride $true - - This example creates a new Caller ID policy that allows Teams users to make anonymous calls. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - - - - New-CsConferencingPolicy - New - CsConferencingPolicy - - Creates a new conferencing policy for your organization. Conferencing policy determines the features and capabilities that can be used in a conference as well as in a broadcast meeting; this includes everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. - - - - Conferencing is an important part of Skype for Business Online and Skype for Business Server: conferencing enables groups of users to come together online to view slides and video, share applications, exchange files, and otherwise communicate and collaborate. - It's important for administrators to maintain control over conferences and conference settings. In some cases, there might be security concerns: by default, anyone, including unauthenticated users, can participate in meetings and save any of the slides or handouts distributed during those meetings. In other cases, there might be bandwidth concerns: having a multitude of simultaneous meetings, each involving hundreds of participants and each featuring video feeds and file sharing, has the potential to cause problems with your network. In addition, there might be occasional legal concerns. For example, by default meeting participants are allowed to make annotations on shared content; however, these annotations are not saved when the meeting is archived. If your organization is required to keep a record of all electronic communication, you might want to disable annotations. - In Skype for Business Online and Skype for Business Server, conferences are managed using conferencing policy. Conferencing policy determines the features and capabilities that can be used in a conference, including everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. In Skype for Business Online, conferencing policy also governs certain aspects of broadcast meetings, in particular, the video bit rate. - - In Skype for Business Online, conferencing policy is managed on a per-user basis. Skype for Business Online provides several built-in conferencing policy instances, and if needed administrators, can create their own policy instances as well, using the New-CsConferencingPolicy cmdlet. - In Skype for Business Server, conferencing policies can be created at either the site or the per-user scope. If you need to modify property values of the global conferencing policy, use the Set-CsConferencingPolicy cmdlet. - The following parameters are not applicable to Skype for Business Online: ApplicationSharingMode, AudioBitRateKb, Description, EnableMultiViewJoin, EnableOnlineMeetingPromptForLyncResources, EnableReliableConferenceDeletion, FileTransferBitRateKb, Force, Identity, InMemory, MaxMeetingSize, MaxVideoConferenceResolution, PipelineVariable, Tenant, and TotalReceiveVideoBitRateKb. - - - - New-CsConferencingPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be created. In Skype for Business Server, Conferencing policies can be created at the site or per-user scopes. In Skype for Business Online, Conferencing policies can created on a per-user scope only. To create a site policy, use syntax similar to this: `-Identity site:Redmond.` To create a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy.` - - XdsIdentity - - XdsIdentity - - - None - - - AllowAnnotations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not participants are allowed to make on-screen annotations on any content shared during the meeting; in addition, this setting determines whether or not whiteboarding is allowed in the conference. The default value is True. - Note that annotations are not archived along with other meeting content. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will include annotations. However, the user can participate in other conferences where annotations are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousParticipantsInMeetings - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether anonymous users are allowed to participate in the meeting. If set to False then only authenticated users (that is, users logged on to your Active Directory Domain Services or the Active Directory of a federated partner) are allowed to attend the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants. However, the user can take part in other conferences where anonymous participants are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not anonymous users (unauthenticated users) are allowed to join a conference using dial-out phoning. With dial-out phoning, the conferencing server telephones the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even if this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants to join the conference via dial-out phoning. However, the user can take part in other conferences where anonymous users can join via dial out. - The default value is False. - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are allowed to record the meeting. The default value is False. - This setting applies to all users taking part in the conference. - - Boolean - - Boolean - - - None - - - AllowExternalUserControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to take control of shared applications or desktops. The default value is False. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to give up control of a shared application or desktop to an external user while other users might not be allowed to give up control. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToRecordMeeting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to record the meeting. The default value is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to record conferences. However, the user can take part in other conferences where external users are allowed to record meetings. - Note that this setting takes effect only if the AllowConferenceRecording property is set to True. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToSaveContent - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (that is, users not currently logged-on to your network) are allowed to save handouts, slides, and other meeting content. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to save content. However, the user can take part in other conferences where external users are allowed to save content. - - Boolean - - Boolean - - - None - - - AllowFederatedParticipantJoinAsSameEnterprise - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True), allows federated meeting participants to join the meeting as though they were internal users rather than external users. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer audio is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP audio. However, the user can take part in other conferences where IP audio is allowed. - - Boolean - - Boolean - - - None - - - AllowIPVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer video is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP video. However, the user can take part in other conferences where IP video is allowed. - - Boolean - - Boolean - - - None - - - AllowLargeMeetings - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, all online meetings are treated as "large meeting." With a large meeting, restrictions are placed on the number of notifications that are sent to participants as well as the size of the meeting roster that is transmitted by default. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowMultiView - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) enables users to schedule conferences that allow multiview; that is, clients can receive multiple video streams during a given conference. This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy can include multiview. However, the user can participate in other conferences where multiview is allowed. - - Boolean - - Boolean - - - None - - - AllowNonEnterpriseVoiceUsersToDialOut - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or users who have not been enabled for Enterprise Voice are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow users who have not been enabled for Enterprise Voice to join the conference via dial-out phoning. However, the user can take part in other conferences where users who have not been enabled for Enterprise Voice can join via dial out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowOfficeContent - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to False, prevents users from using Office content in their conferences. - - Boolean - - Boolean - - - None - - - AllowParticipantControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not meeting participants are allowed to take control of applications or desktops shared during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow participant control. However, the user can take part in other conferences where participant control is allowed. - - Boolean - - Boolean - - - None - - - AllowPolls - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to conduct online polls during a meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow polls. However, the user can take part in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowQandA - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) the user will be able to include the Questions and Answers Manager in any online conference that he or she organizes. When set to False, the user will be prohibited from including Questions and Answers Manager in any of his or her conferences. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow the use of the Questions and Answers Manager. However, the user can make use of the Questions and Answers Manager in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) any open OneNote notebooks linked to the conference will automatically be updated with information such as conference participants and details about content shared during the conference. - - Boolean - - Boolean - - - None - - - AllowUserToScheduleMeetingsWithAppSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to organize meetings that include application sharing. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow application sharing. However, the user can take part in other conferences where application sharing is allowed. - - Boolean - - Boolean - - - None - - - ApplicationSharingMode - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines the protocol used for screen sharing - VbSS vs RDP. This parameter is used only in SfB Server. To disable VbSS for a user, use the value "RDP". - - String - - String - - - None - - - AppSharingBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for application sharing. The default value is 50000. - - Int64 - - Int64 - - - None - - - AudioBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for audio transmissions. The audio bit rate can be any whole number between 20 and 200, inclusive; the default value is 200. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. - - UInt32 - - UInt32 - - - None - - - CloudRecordingServiceSupport - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - - NotSupported - Supported - Required - - CloudRecordingServiceSupport - - CloudRecordingServiceSupport - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provider explanatory text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisablePowerPointAnnotations - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) users will not be able to add annotations to PowerPoint slides used in a conference. However (depending on the value of the AllowAnnotations property), users will still have access to other whiteboarding features. The default value is False, meaning that PowerPoint annotations are allowed. - - Boolean - - Boolean - - - None - - - EnableAppDesktopSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether participants are allowed to share applications (or their desktop) during the course of a meeting. Allowed values are: - Desktop. Users are allowed to share their entire desktop. - SingleApplication. Users are allowed to share a single application. - None. Users are not allowed to share applications or their desktop. - This setting is enforced at the per-user level. That means that some users in a conference might be allowed to share their desktop or applications while other users in the same conference might not be allowed to do so. - The default value is Desktop. - - EnableAppDesktopSharing - - EnableAppDesktopSharing - - - None - - - EnableDataCollaboration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users can organize meetings that include data collaboration activities such as whiteboarding and annotations. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow data collaboration. However, the user can take part in other conferences where data collaboration is allowed. - - Boolean - - Boolean - - - None - - - EnableDialInConferencing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are able to join the meeting by dialing in with a public switched telephone network (PSTN) telephone. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow dial-in conferencing. However, the user can take part in other conferences where dial-in conferencing is allowed. - - Boolean - - Boolean - - - None - - - EnableFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether file transfers to all the meeting participants are allowed during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow file transfers. However, the user can take part in other conferences where file transfers are allowed. - - Boolean - - Boolean - - - None - - - EnableMultiViewJoin - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) clients will attempt to join a conference using multiview (which allows the client to receive multiple video streams during the conference). This parameter will be ignored if multiview is not allowed in the conference being joined. This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to have multiple video streams while other users in the same conference might not. - - Boolean - - Boolean - - - None - - - EnableOnlineMeetingPromptForLyncResources - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, users will be prompted any time they schedule a meeting in Outlook that includes invitees (such as a meeting room) that would benefit from having the meeting held online. The default value is False. - - Boolean - - Boolean - - - None - - - EnableP2PFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether peer-to-peer file transfers (that is, file transfers that do not involve all participants) are allowed during the meeting. The default value is True. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to transfer files while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to record peer-to-peer conferencing sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to record the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to take part in peer-to-peer video conferencing sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to use video the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableReliableConferenceDeletion - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - FileTransferBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for file transfers. The default value is 50000. - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - MaxMeetingSize - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of people who are allowed to attend a meeting. After the maximum number of participants has been reached, anyone else who tries to join the meeting will be turned away with the notice that the meeting is full. The number of participants specified in this value can be any 32-bit whole number (any value between 1 and 4,294,967,295), but the recommended size is between 2 and 250, inclusive; the default value is 250. - 250 is the maximum for shared pool deployments, based on Microsoft testing. For information about supporting meeting with more than 250 participants, see "Microsoft Lync Server 2010 Support for Large Meetings" at https://go.microsoft.com/fwlink/p/?linkId=242073 (https://go.microsoft.com/fwlink/p/?linkId=242073). - This setting applies to the user who organizes the conference: no conference created by a user affected by this policy will allow more than the specified number of participants. However, the user can take part in other conferences where additional participants are allowed. - - UInt32 - - UInt32 - - - None - - - MaxVideoConferenceResolution - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum resolution for meeting video. Allowed values are: - CIF. Common Intermediate Format (CIF) has a resolution of 352 pixels by 288 pixels. - VGA. VGA has a resolution of 640 pixels by 480 pixels. - The default value is VGA. - - MaxVideoConferenceResolution - - MaxVideoConferenceResolution - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new conferencing policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TotalReceiveVideoBitRateKb - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum allowed bitrate (in kilobytes per second) for all the video used in a conference; that is, the combined total for all the video streams. The default value is 50000 kilobytes per second. - - Int64 - - Int64 - - - None - - - VideoBitRateKb - - > Applicable: Skype for Business Online, Skype for Business Server 2019, Skype for Business Server 2015, Lync Server 2013, Lync Server 2010, - Bit rate (in kilobits) used for video transmissions. The default value is 400. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. In Skype for Business Online, this setting is also enforced for producers of Skype for Business Online Broadcast meetings. Note: As a result of unprecedented demand for video conferencing during the COVID-19 situation, when creating policies in Skype for Business Online, this setting cannot be changed from its default value. If you are using broadcast meeting functionality and require a a higher video bit rate, please contact your Technical Account Manager or Support to request this change. - - Int64 - - Int64 - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowAnnotations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not participants are allowed to make on-screen annotations on any content shared during the meeting; in addition, this setting determines whether or not whiteboarding is allowed in the conference. The default value is True. - Note that annotations are not archived along with other meeting content. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will include annotations. However, the user can participate in other conferences where annotations are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousParticipantsInMeetings - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether anonymous users are allowed to participate in the meeting. If set to False then only authenticated users (that is, users logged on to your Active Directory Domain Services or the Active Directory of a federated partner) are allowed to attend the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants. However, the user can take part in other conferences where anonymous participants are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not anonymous users (unauthenticated users) are allowed to join a conference using dial-out phoning. With dial-out phoning, the conferencing server telephones the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even if this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants to join the conference via dial-out phoning. However, the user can take part in other conferences where anonymous users can join via dial out. - The default value is False. - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are allowed to record the meeting. The default value is False. - This setting applies to all users taking part in the conference. - - Boolean - - Boolean - - - None - - - AllowExternalUserControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to take control of shared applications or desktops. The default value is False. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to give up control of a shared application or desktop to an external user while other users might not be allowed to give up control. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToRecordMeeting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to record the meeting. The default value is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to record conferences. However, the user can take part in other conferences where external users are allowed to record meetings. - Note that this setting takes effect only if the AllowConferenceRecording property is set to True. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToSaveContent - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (that is, users not currently logged-on to your network) are allowed to save handouts, slides, and other meeting content. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to save content. However, the user can take part in other conferences where external users are allowed to save content. - - Boolean - - Boolean - - - None - - - AllowFederatedParticipantJoinAsSameEnterprise - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True), allows federated meeting participants to join the meeting as though they were internal users rather than external users. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer audio is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP audio. However, the user can take part in other conferences where IP audio is allowed. - - Boolean - - Boolean - - - None - - - AllowIPVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer video is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP video. However, the user can take part in other conferences where IP video is allowed. - - Boolean - - Boolean - - - None - - - AllowLargeMeetings - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, all online meetings are treated as "large meeting." With a large meeting, restrictions are placed on the number of notifications that are sent to participants as well as the size of the meeting roster that is transmitted by default. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowMultiView - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) enables users to schedule conferences that allow multiview; that is, clients can receive multiple video streams during a given conference. This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy can include multiview. However, the user can participate in other conferences where multiview is allowed. - - Boolean - - Boolean - - - None - - - AllowNonEnterpriseVoiceUsersToDialOut - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or users who have not been enabled for Enterprise Voice are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow users who have not been enabled for Enterprise Voice to join the conference via dial-out phoning. However, the user can take part in other conferences where users who have not been enabled for Enterprise Voice can join via dial out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowOfficeContent - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to False, prevents users from using Office content in their conferences. - - Boolean - - Boolean - - - None - - - AllowParticipantControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not meeting participants are allowed to take control of applications or desktops shared during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow participant control. However, the user can take part in other conferences where participant control is allowed. - - Boolean - - Boolean - - - None - - - AllowPolls - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to conduct online polls during a meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow polls. However, the user can take part in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowQandA - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) the user will be able to include the Questions and Answers Manager in any online conference that he or she organizes. When set to False, the user will be prohibited from including Questions and Answers Manager in any of his or her conferences. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow the use of the Questions and Answers Manager. However, the user can make use of the Questions and Answers Manager in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) any open OneNote notebooks linked to the conference will automatically be updated with information such as conference participants and details about content shared during the conference. - - Boolean - - Boolean - - - None - - - AllowUserToScheduleMeetingsWithAppSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to organize meetings that include application sharing. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow application sharing. However, the user can take part in other conferences where application sharing is allowed. - - Boolean - - Boolean - - - None - - - ApplicationSharingMode - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines the protocol used for screen sharing - VbSS vs RDP. This parameter is used only in SfB Server. To disable VbSS for a user, use the value "RDP". - - String - - String - - - None - - - AppSharingBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for application sharing. The default value is 50000. - - Int64 - - Int64 - - - None - - - AudioBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for audio transmissions. The audio bit rate can be any whole number between 20 and 200, inclusive; the default value is 200. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. - - UInt32 - - UInt32 - - - None - - - CloudRecordingServiceSupport - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - CloudRecordingServiceSupport - - CloudRecordingServiceSupport - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provider explanatory text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisablePowerPointAnnotations - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) users will not be able to add annotations to PowerPoint slides used in a conference. However (depending on the value of the AllowAnnotations property), users will still have access to other whiteboarding features. The default value is False, meaning that PowerPoint annotations are allowed. - - Boolean - - Boolean - - - None - - - EnableAppDesktopSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether participants are allowed to share applications (or their desktop) during the course of a meeting. Allowed values are: - Desktop. Users are allowed to share their entire desktop. - SingleApplication. Users are allowed to share a single application. - None. Users are not allowed to share applications or their desktop. - This setting is enforced at the per-user level. That means that some users in a conference might be allowed to share their desktop or applications while other users in the same conference might not be allowed to do so. - The default value is Desktop. - - EnableAppDesktopSharing - - EnableAppDesktopSharing - - - None - - - EnableDataCollaboration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users can organize meetings that include data collaboration activities such as whiteboarding and annotations. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow data collaboration. However, the user can take part in other conferences where data collaboration is allowed. - - Boolean - - Boolean - - - None - - - EnableDialInConferencing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are able to join the meeting by dialing in with a public switched telephone network (PSTN) telephone. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow dial-in conferencing. However, the user can take part in other conferences where dial-in conferencing is allowed. - - Boolean - - Boolean - - - None - - - EnableFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether file transfers to all the meeting participants are allowed during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow file transfers. However, the user can take part in other conferences where file transfers are allowed. - - Boolean - - Boolean - - - None - - - EnableMultiViewJoin - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) clients will attempt to join a conference using multiview (which allows the client to receive multiple video streams during the conference). This parameter will be ignored if multiview is not allowed in the conference being joined. This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to have multiple video streams while other users in the same conference might not. - - Boolean - - Boolean - - - None - - - EnableOnlineMeetingPromptForLyncResources - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, users will be prompted any time they schedule a meeting in Outlook that includes invitees (such as a meeting room) that would benefit from having the meeting held online. The default value is False. - - Boolean - - Boolean - - - None - - - EnableP2PFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether peer-to-peer file transfers (that is, file transfers that do not involve all participants) are allowed during the meeting. The default value is True. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to transfer files while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to record peer-to-peer conferencing sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to record the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to take part in peer-to-peer video conferencing sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to use video the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableReliableConferenceDeletion - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - FileTransferBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for file transfers. The default value is 50000. - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be created. In Skype for Business Server, Conferencing policies can be created at the site or per-user scopes. In Skype for Business Online, Conferencing policies can created on a per-user scope only. To create a site policy, use syntax similar to this: `-Identity site:Redmond.` To create a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy.` - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - MaxMeetingSize - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of people who are allowed to attend a meeting. After the maximum number of participants has been reached, anyone else who tries to join the meeting will be turned away with the notice that the meeting is full. The number of participants specified in this value can be any 32-bit whole number (any value between 1 and 4,294,967,295), but the recommended size is between 2 and 250, inclusive; the default value is 250. - 250 is the maximum for shared pool deployments, based on Microsoft testing. For information about supporting meeting with more than 250 participants, see "Microsoft Lync Server 2010 Support for Large Meetings" at https://go.microsoft.com/fwlink/p/?linkId=242073 (https://go.microsoft.com/fwlink/p/?linkId=242073). - This setting applies to the user who organizes the conference: no conference created by a user affected by this policy will allow more than the specified number of participants. However, the user can take part in other conferences where additional participants are allowed. - - UInt32 - - UInt32 - - - None - - - MaxVideoConferenceResolution - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum resolution for meeting video. Allowed values are: - CIF. Common Intermediate Format (CIF) has a resolution of 352 pixels by 288 pixels. - VGA. VGA has a resolution of 640 pixels by 480 pixels. - The default value is VGA. - - MaxVideoConferenceResolution - - MaxVideoConferenceResolution - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new conferencing policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TotalReceiveVideoBitRateKb - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum allowed bitrate (in kilobytes per second) for all the video used in a conference; that is, the combined total for all the video streams. The default value is 50000 kilobytes per second. - - Int64 - - Int64 - - - None - - - VideoBitRateKb - - > Applicable: Skype for Business Online, Skype for Business Server 2019, Skype for Business Server 2015, Lync Server 2013, Lync Server 2010, - Bit rate (in kilobits) used for video transmissions. The default value is 400. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. In Skype for Business Online, this setting is also enforced for producers of Skype for Business Online Broadcast meetings. Note: As a result of unprecedented demand for video conferencing during the COVID-19 situation, when creating policies in Skype for Business Online, this setting cannot be changed from its default value. If you are using broadcast meeting functionality and require a a higher video bit rate, please contact your Technical Account Manager or Support to request this change. - - Int64 - - Int64 - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsConferencingPolicy cmdlet does not accept pipelined input. - - - - - - - System.Object - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy - - - - - - - - - - - - - - EXAMPLE 1: Create a new conferencing policy with per user scope (Skype for Business Online, Skype for Business Server) - New-CsConferencingPolicy -Identity SalesConferencingPolicy -MaxMeetingSize 50 - - The command shown in Example 1 uses the New-CsConferencingPolicy cmdlet to create a new conferencing policy with the Identity SalesConferencingPolicy. This policy will use all the default values for a conferencing policy except one: MaxMeetingSize; in this example, the maximum size for a meeting will be set to 50 instead of the default value of 250. - - - - EXAMPLE 2: Create a new conferencing policy with per site scope (Skype for Business Server) - New-CsConferencingPolicy -Identity site:Redmond -MaxMeetingSize 100 -AllowParticipantControl $False - - In Example 2, the New-CsConferencingPolicy cmdlet is used to create a conferencing policy with the Identity site:Redmond. In this example two different property values are configured: MaxMeetingSize is set to 100 and AllowParticipantControl is set to False. All other policy properties will use the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csconferencingpolicy - - - Get-CsConferencingPolicy - - - - Grant-CsConferencingPolicy - - - - Remove-CsConferencingPolicy - - - - Set-CsConferencingPolicy - - - - - - - New-CsDialInConferencingConfiguration - New - CsDialInConferencingConfiguration - - Creates a new collection of dial-in conferencing configuration settings. These settings determine how Skype for Business Server responds when users join or leave a dial-in conference. In particular, information is returned regarding whether or not participants are required to record their name when joining a conference, and how (or if) the system announces that someone has joined or left the call. This cmdlet was introduced in Lync Server 2010. - - - - When users join (or leave) a dial-in conference, Skype for Business Server can respond in different ways. For example, participants might be asked to record their name before they can enter the conference. Likewise, administrators can decide whether they want to have Skype for Business Server announce that dial-in participants have either left or joined a conference. - These conference "join behaviors" are managed using dial-in conferencing configuration settings; these settings can be configured at the global scope or at the site scope. (Settings configured at the site scope take precedence over settings configured at the global scope.) When you first install Skype for Business Server, the only dial-in conferencing configuration settings you will have are the ones at the global scope; however, you can create new settings at the site scope by using the New-CSDialInConferencingConfiguration cmdlet. - - - - New-CsDialInConferencingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be created. Because these settings can only be created at the site scope, use syntax similar to this, with the prefix "site:" followed by the name of the site: `-Identity site:Redmond.` - Note that there can only be one set of dial-in conferencing configuration settings per site. The sample command will fail if a collection of settings with the Identity site:Redmond already exists. - - XdsIdentity - - XdsIdentity - - - None - - - AllowAnonymousPstnActivation - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide a PIN when joining the meeting. $True to allow anonymous activation, otherwise $False. The default is $False. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not users are asked to record their name before entering the conference. Set to True ($True) to require name recording; set to False ($False) to bypass name recording. The default value is True. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsEnabledByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True announcements will be played each time a participant enters or exits a conference. If set to False (the default value), entry and exit announcements will not be played. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the action taken by the system any time a participant enters or leaves a conference. Valid values are: - UseNames. The person's name is announced any time he or she enters or leaves a conference (for example, "Ken Myer is exiting the conference"). - ToneOnly. A tone is played any time a participant enters or leaves a conference. - The default value is UseNames. Note that announcements are played only if the EntryExitAnnouncementsEnabledByDefault property is set to True. - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - PinAuthType - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies which users are allowed to use PIN authentication. Allowed values are: - Everyone - OrganizerOnly - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowAnonymousPstnActivation - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide a PIN when joining the meeting. $True to allow anonymous activation, otherwise $False. The default is $False. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not users are asked to record their name before entering the conference. Set to True ($True) to require name recording; set to False ($False) to bypass name recording. The default value is True. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsEnabledByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True announcements will be played each time a participant enters or exits a conference. If set to False (the default value), entry and exit announcements will not be played. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the action taken by the system any time a participant enters or leaves a conference. Valid values are: - UseNames. The person's name is announced any time he or she enters or leaves a conference (for example, "Ken Myer is exiting the conference"). - ToneOnly. A tone is played any time a participant enters or leaves a conference. - The default value is UseNames. Note that announcements are played only if the EntryExitAnnouncementsEnabledByDefault property is set to True. - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be created. Because these settings can only be created at the site scope, use syntax similar to this, with the prefix "site:" followed by the name of the site: `-Identity site:Redmond.` - Note that there can only be one set of dial-in conferencing configuration settings per site. The sample command will fail if a collection of settings with the Identity site:Redmond already exists. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - PinAuthType - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies which users are allowed to use PIN authentication. Allowed values are: - Everyone - OrganizerOnly - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsDialInConferencingConfiguration cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration - - - Creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CSDialInConferencingConfiguration -Identity site:Redmond -EnableNameRecording $False - - The command shown in Example 1 creates a new collection of dial-in conferencing configuration settings that are applied to the Redmond site. In addition, the optional parameter EnableNameRecording is included in order to set the EnableNameRecording property to False. - - - - -------------------------- EXAMPLE 2 -------------------------- - $x = New-CSDialInConferencingConfiguration -Identity site:Redmond -InMemory - -$x.EnableNameRecording = $False - -Set-CSDialInConferencingConfiguration -Instance $x - - In Example 2 the InMemory parameter is used to create a new collection of dial-in conferencing configuration settings that initially exist only in memory. To do this, the example first calls the New-CSDialInConferencingConfiguration cmdlet, and the InMemory parameter to create a virtual settings collection that is stored in the variable $x. (Note that this collection is given the Identity site:Redmond.) After creating the virtual collection, line 2 is used to modify the value of the EnableNameRecording property. Finally, line 3 in the example calls the Set-CSDialInConferencingConfiguration cmdlet to transform the virtual configuration settings stored in $x into an actual collection of settings applied to the Redmond site. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csdialinconferencingconfiguration - - - Get-CsDialInConferencingConfiguration - - - - Remove-CsDialInConferencingConfiguration - - - - Set-CsDialInConferencingConfiguration - - - - - - - New-CsDialInConferencingDtmfConfiguration - New - CsDialInConferencingDtmfConfiguration - - Creates a new collection of dual-tone multifrequency (DTMF) signaling settings used for dial-in conferencing. DTMF enables users who dial in to a conference to control conference settings (such as muting and unmuting themselves or locking and unlocking the conference) by using the keypad on their telephone. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server enables users to join conferences by dialing in over the telephone. Dial-in users are not able to view video or exchange instant messages with other conference attendees, but they are able to fully participate in the audio portion of the meeting. - In addition to being able to join a conference, users are also able to manage selected portions of that conference by using their telephone keypad. (The specific conference settings users can and cannot manage depend on whether or not the user is a presenter.) For example, by default users can press the 6 key on their keypad to mute or unmute themselves. Participants can privately play the names of all the other people attending the meeting, while presenters can do such things as mute and unmute all the meeting participants and enable or disable the announcement that is played any time someone joins or leaves a conference. - The ability to make selections like these using a telephone keypad is known as dual-tone multi-frequency (DTMF) signaling: if you have ever dialed a phone number and been instructed to do something along the order of "Press 1 for English or press 2 for Spanish," then you have used DTMF signaling. - When you install Skype for Business Server, a global collection of DTMF settings is created for you. In addition to those global settings, you can use the New-CSDialInConferencingDtmfConfiguration cmdlet to create custom settings on a site-by-site basis. For example, you can create a new collection of settings for the Redmond site (and only the Redmond site) that uses the 4 key instead of the 6 key as the mute/unmute key. Note that any settings you configure at the site scope take precedence over the settings configured at the global scope. As a result, users in the Redmond site will use the 4 key as the mute/unmute key even though the global settings use the 6 key for muting and unmuting. - You can have only one collection of DTMF settings and one global collection per site. For example, suppose you already have a collection with the Identity site:Redmond and you then try to run this command: - `New- CSDialInConferencingDtmfConfiguration -Identity site:Redmond` - That command will fail, because the site:Redmond collection already exists. If you want to modify the settings for the Redmond site, either use the Set-CSDialInConferencingDtmfConfiguration cmdlet, or remove the existing collection and then create a new collection that uses the Identity site:Redmond. - When configuring values for the DTMF commands, keep two things in mind. First, you can only use the numeric keys 0 through 9 and the asterisk (*); any other keys that might be found on your keypad (such as the # key) are not allowed. (With one exception: the CommandCharacter key accepts only the * key or the # key.) Second, commands must be assigned unique keys; for example, the 4 key cannot be used both to mute and unmute yourself and to lock and unlock a conference. That means that, when modifying the keys assigned to a command, you might need to swap the keys used by two different commands. For example, if you want to assign the 4 key to EnableDisableAnnouncementsCommand (default value: 9), then you should, in the same command, assign the 9 key to AudienceMuteCommand. - To disable a command, set its value to Null ($Null). - - - - New-CsDialInConferencingDtmfConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier to be assigned to the new collection of DTMF configuration settings. Because you can only create new collections at the site scope, the Identity will always be the prefix "site:" followed by the site name; for example "site:Redmond". - - XdsIdentity - - XdsIdentity - - - None - - - AdmitAll - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to allow all the users in the lobby to immediately join the conference. The default value is 8. - - String - - String - - - None - - - AudienceMuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key a presenter can press to mute or unmute everyone else in the conference (that is, everyone other than the presenter will be muted or unmuted). The default key is 4. - - String - - String - - - None - - - CommandCharacter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed at the beginning of a command. The default key is the asterisk (*). The only other allowed value is #. - - String - - String - - - None - - - EnableDisableAnnouncementsCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to enable or disable announcements each time someone joins or leaves the conference. The default key is 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - HelpCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to privately play a description of all the DTMF commands. The default key is 1. - - String - - String - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - LockUnlockConferenceCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to lock or unlock a conference. If a conference is locked, then no new participants will be allowed to join that conference, at least not until the conference has been unlocked. The default key is 7. - - String - - String - - - None - - - MuteUnmuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to mute or unmute yourself; the same key is used to toggle back and forth between muting and unmuting. The default key is 6. - - String - - String - - - None - - - OperatorLineUri - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Phone number that the dial-in conferencing auto-attendant will connect a PSTN user to any time that user presses *0 on their telephone keypad. Pressing *0 is designed to connect dial-in conferencing users to operator assistance. - - String - - String - - - None - - - PrivateRollCallCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to privately play the name of each conference participant. The default key is 3. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AdmitAll - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to allow all the users in the lobby to immediately join the conference. The default value is 8. - - String - - String - - - None - - - AudienceMuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key a presenter can press to mute or unmute everyone else in the conference (that is, everyone other than the presenter will be muted or unmuted). The default key is 4. - - String - - String - - - None - - - CommandCharacter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed at the beginning of a command. The default key is the asterisk (*). The only other allowed value is #. - - String - - String - - - None - - - EnableDisableAnnouncementsCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to enable or disable announcements each time someone joins or leaves the conference. The default key is 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HelpCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to privately play a description of all the DTMF commands. The default key is 1. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier to be assigned to the new collection of DTMF configuration settings. Because you can only create new collections at the site scope, the Identity will always be the prefix "site:" followed by the site name; for example "site:Redmond". - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - LockUnlockConferenceCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to lock or unlock a conference. If a conference is locked, then no new participants will be allowed to join that conference, at least not until the conference has been unlocked. The default key is 7. - - String - - String - - - None - - - MuteUnmuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to mute or unmute yourself; the same key is used to toggle back and forth between muting and unmuting. The default key is 6. - - String - - String - - - None - - - OperatorLineUri - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Phone number that the dial-in conferencing auto-attendant will connect a PSTN user to any time that user presses *0 on their telephone keypad. Pressing *0 is designed to connect dial-in conferencing users to operator assistance. - - String - - String - - - None - - - PrivateRollCallCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to privately play the name of each conference participant. The default key is 3. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsDialInConferencingDtmfConfiguration cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration - - - Creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration object. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CSDialInConferencingDtmfConfiguration -Identity site:Redmond -MuteUnmuteCommand 4 -AudienceMuteCommand 6 - - The command shown in Example 1 creates a new set of DTMF configuration settings for the Redmond site. In this example, the MuteUnmuteCommand property is set to 4 and the AudienceMuteCommand property is set to 6. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CSDialInConferencingDtmfConfiguration -Identity site:Redmond -AdmitAll $Null - - Example 2 creates a new set of DTMF configuration settings for the Redmond site. In this example, the AdmitAll property is disabled; that's done by using the AdmitAll parameter and setting the parameter value to null. - - - - -------------------------- EXAMPLE 3 -------------------------- - $x = New-CSDialInConferencingDtmfConfiguration -Identity site:Redmond -InMemory - -$x.AdmitAll = $Null - -$x.MuteUnmuteCommand = 4 - -$x.AudienceMuteCommand = 6 - -Set-CSDialInConferencingDtmfConfiguration -Instance $x - - Example 3 shows how you can use the InMemory parameter to create an in-memory-only instance of a DTMF configuration settings collection, modify those settings, and then use the Set-CSDialInConferencingDtmfConfiguration cmdlet to create an actual collection with the Identity site:Redmond. To do this, the first command in the example creates a new in-memory-only instance of a DTMF configuration settings collection, storing that instance in a variable named $x. These settings will exist only in memory; if you close Windows PowerShell or delete the variable $x the settings will disappear and will never be applied to the Redmond site. - The next 3 commands modify properties of this "virtual" DTMF settings collection: commands 2, 3, and 4 assign new values to AdmitAll, MuteUnmuteCommand, and AudienceMuteCommand, respectively. The final command then uses the Set-CSDialInConferencingDtmfConfiguration cmdlet and the Instance parameter to transform the virtual settings stored in $x into an actual collection of settings configured for the Redmond site. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csdialinconferencingdtmfconfiguration - - - Get-CsDialInConferencingDtmfConfiguration - - - - Remove-CsDialInConferencingDtmfConfiguration - - - - Set-CsDialInConferencingDtmfConfiguration - - - - - - - New-CsDialPlan - New - CsDialPlan - - Creates a new dial plan. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet creates a new dial plan (also known as a location profile). Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Dial plans are also used by the Conferencing Attendant application for dial-in conferencing. A dial plan determines such things as which normalization rules are applied and whether a prefix must be dialed for external calls. - Creating a dial plan automatically creates a default voice normalization rule. Normalization rules can be modified by calling the Set-CsVoiceNormalizationRule cmdlet. New normalization rules can be added to a dial plan by calling the New-CsVoiceNormalizationRule cmdlet. - - - - New-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier designating the scope and name (site), the service role and FQDN, or the name (per user) to identify the dial plan. For example, a site Identity would be entered in the format site:<sitename>, where sitename is the name of the site. A dial plan at the service scope must be a Registrar or PSTN gateway service, where the Identity value is formatted like this: Registrar:Redmond.litwareinc.com. A per-user Identity would be entered simply as a unique string value. - - XdsIdentity - - XdsIdentity - - - None - - - City - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - CountryCode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of this dial plan--what it's for, what type of user it applies to, or any other information that will be helpful in identifying the purpose of the dial plan. - Maximum characters: 512 - - String - - String - - - None - - - DialinConferencingRegion - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the region associated with this dial plan. Specify a value for this parameter if the dial plan will be used for dial-in conferencing. This allows the correct access number to be assigned when the conference organizer sets up the conference. Available regions can be retrieved by calling the Get-CsNetworkRegion cmdlet. - Maximum characters: 512 - - String - - String - - - None - - - ExternalAccessPrefix - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number (or set of numbers) that designates the call as external to the organization. (For example, to dial an outside line, first press 9.) This prefix will be ignored by the normalization rules, although these rules will be applied to the rest of the number. - The OptimizeDeviceDialing parameter must be set to True for this value to take effect. - This parameter must match the regular expression [0-9]{1,4}. This means it must be a value 0 through 9, one to four digits in length. - Default: 9 - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - NormalizationRules - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of normalization rules that are applied to this dial plan. - While this list and these rules can be created directly with this cmdlet, we recommend that you create the normalization rules with the New-CsVoiceNormalizationRule cmdlet, which creates the rule and assigns it to the specified dial plan. - Each time a new dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user dial plan. By default the Identity of the new voice normalization rule is the dial plan Identity followed by a slash followed by the name Prefix All. For example, site:Redmond/Prefix All. - Default: {Description=;Pattern=^(\d11)$;Translation=+$1;Name=Prefix All;IsInternalExtension=False } Note: This default is only a placeholder. For the dial plan to be useful, you should either modify the normalization rule created by the dial plan or create a new rule for the site, service, or user. You can create a new normalization rule by calling the New-CsVoiceNormalizationRule cmdlet; modify a normalization rule by calling the Set-CsVoiceNormalizationRule cmdlet. - - PSListModifier - - PSListModifier - - - None - - - OptimizeDeviceDialing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Setting this parameter to True will apply the prefix in the ExternalAccessPrefix parameter to calls made outside the organization. This value can be set to True only if a value has been specified for the ExternalAccessPrefix parameter. - Default: False - - Boolean - - Boolean - - - None - - - SimpleName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A display name for the dial plan. This name must be unique among all dial plans within the Skype for Business Server deployment. - This string can be up to 256 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), plus (+), underscore (_), and parentheses (()). - This parameter must contain a value. However, if you don't provide a value in the call to the New-CsDialPlan cmdlet, a default value will be supplied. The default value for a Global dial plan is Prefix All. The default for a site-level dial plan is the name of the site. The default for a service is the name of the service (Registrar or PSTN gateway) followed by an underscore, followed by the service fully qualified domain name (FQDN). For example, Registrar_pool0.litwareinc.com. The default for a per-user dial plan is the Identity of the dial plan. - - String - - String - - - None - - - State - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - CountryCode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of this dial plan--what it's for, what type of user it applies to, or any other information that will be helpful in identifying the purpose of the dial plan. - Maximum characters: 512 - - String - - String - - - None - - - DialinConferencingRegion - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the region associated with this dial plan. Specify a value for this parameter if the dial plan will be used for dial-in conferencing. This allows the correct access number to be assigned when the conference organizer sets up the conference. Available regions can be retrieved by calling the Get-CsNetworkRegion cmdlet. - Maximum characters: 512 - - String - - String - - - None - - - ExternalAccessPrefix - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number (or set of numbers) that designates the call as external to the organization. (For example, to dial an outside line, first press 9.) This prefix will be ignored by the normalization rules, although these rules will be applied to the rest of the number. - The OptimizeDeviceDialing parameter must be set to True for this value to take effect. - This parameter must match the regular expression [0-9]{1,4}. This means it must be a value 0 through 9, one to four digits in length. - Default: 9 - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier designating the scope and name (site), the service role and FQDN, or the name (per user) to identify the dial plan. For example, a site Identity would be entered in the format site:<sitename>, where sitename is the name of the site. A dial plan at the service scope must be a Registrar or PSTN gateway service, where the Identity value is formatted like this: Registrar:Redmond.litwareinc.com. A per-user Identity would be entered simply as a unique string value. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - NormalizationRules - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of normalization rules that are applied to this dial plan. - While this list and these rules can be created directly with this cmdlet, we recommend that you create the normalization rules with the New-CsVoiceNormalizationRule cmdlet, which creates the rule and assigns it to the specified dial plan. - Each time a new dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user dial plan. By default the Identity of the new voice normalization rule is the dial plan Identity followed by a slash followed by the name Prefix All. For example, site:Redmond/Prefix All. - Default: {Description=;Pattern=^(\d11)$;Translation=+$1;Name=Prefix All;IsInternalExtension=False } Note: This default is only a placeholder. For the dial plan to be useful, you should either modify the normalization rule created by the dial plan or create a new rule for the site, service, or user. You can create a new normalization rule by calling the New-CsVoiceNormalizationRule cmdlet; modify a normalization rule by calling the Set-CsVoiceNormalizationRule cmdlet. - - PSListModifier - - PSListModifier - - - None - - - OptimizeDeviceDialing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Setting this parameter to True will apply the prefix in the ExternalAccessPrefix parameter to calls made outside the organization. This value can be set to True only if a value has been specified for the ExternalAccessPrefix parameter. - Default: False - - Boolean - - Boolean - - - None - - - SimpleName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A display name for the dial plan. This name must be unique among all dial plans within the Skype for Business Server deployment. - This string can be up to 256 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), plus (+), underscore (_), and parentheses (()). - This parameter must contain a value. However, if you don't provide a value in the call to the New-CsDialPlan cmdlet, a default value will be supplied. The default value for a Global dial plan is Prefix All. The default for a site-level dial plan is the name of the site. The default for a service is the name of the service (Registrar or PSTN gateway) followed by an underscore, followed by the service fully qualified domain name (FQDN). For example, Registrar_pool0.litwareinc.com. The default for a per-user dial plan is the Identity of the dial plan. - - String - - String - - - None - - - State - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsDialPlan -Identity RedmondDialPlan - - The command shown in Example 1 creates a new dial plan with the Identity RedmondDialPlan. (The absence of a scope in the Identity value indicates that this is a per-user policy. Dial plans created at the per-user scope can be directly assigned to users and groups.) All other properties of the dial plan will be assigned default values. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CsDialPlan -Identity site:Redmond -SimpleName RedmondSiteDialPlan - -New-CsVoiceNormalizationRule -Identity "site:Redmond/SeattlePrefix" -Pattern "^9(\d*){1,5}$" -Translation "+1206$1" - - The commands shown in Example 2 create a new dial plan with the Identity site:Redmond (meaning the dial plan applies to all users on the Redmond site who do not have a per-user or service-level dial plan assigned to them) and the SimpleName RedmondSiteDialPlan. The next line in the example then creates a new normalization rule associated with that plan. A default normalization rule is created for a dial plan, but this is created mostly as a placeholder--the values are of limited use. So after calling the New-CsDialPlan cmdlet to create a new dial plan, you should call the New-CsVoiceNormalizationRule cmdlet to create a named rule that is functional for your organization. That's exactly what line 2 of this example does: it calls the New-CsVoiceNormalizationRule cmdlet and creates a rule for the Redmond site with the name SeattlePrefix and specifying the Pattern and Translation properties for the rule. No further steps need to be taken to modify the dial plan; the changes to the normalization rule are automatically applied to the dial plan with the identity matching that of the normalization rule. (The site:Redmond portion of the Identity matches the dial plan Identity; SeattlePrefix is the name of the normalization rule. Multiple normalization rules can be applied to one dial plan, so each normalization rule needs a unique name within a given scope.) - - - - -------------------------- EXAMPLE 3 -------------------------- - New-CsDialPlan -Identity RedmondDialPlan -Description "Dial plan for Redmond users" - - The command shown in Example 3 creates a new dial plan with the Identity RedmondDialPlan and specifies a Description to explain what the dial plan is for. (Dial plans created at the per-user scope can be directly assigned to users and groups.) The default values will be assigned for all other parameters. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csdialplan - - - Remove-CsDialPlan - - - - Set-CsDialPlan - - - - Get-CsDialPlan - - - - Grant-CsDialPlan - - - - Test-CsDialPlan - - - - New-CsVoiceNormalizationRule - - - - Set-CsVoiceNormalizationRule - - - - Remove-CsVoiceNormalizationRule - - - - Get-CsVoiceNormalizationRule - - - - - - - New-CsEmergencyNumber - New - CsEmergencyNumber - - The `New-CsEmergencyNumber` cmdlet creates a new emergency number in your organization. This cmdlet was introduced in Skype for Business Server June 2016 Cumulative Update. - - - - This cmdlet enables you to configure multiple emergency numbers in Skype for Business Server. - Skype for Business Server now supports multiple emergency numbers for a client. Multiple emergency numbers is a new feature introduced in the June 2016 Cumulative Update. - With the November 2016 Cumulative Update, the number of support emergency numbers increases from 5 to 100. - - - - New-CsEmergencyNumber - - DialMask - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - For each emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. For example, assume you enter a value of 212 in this field and the emergency dial number field has a value of 911. When a user dials 212, the number will be translated to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country or region with a different emergency number attempts to dial that country or region's number rather than the number for the country or region they are currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, 212;414. The string limit for a dial mask is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - DialString - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the phone number to call out with this emergency number. - - String - - String - - - None - - - - - - DialMask - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - For each emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. For example, assume you enter a value of 212 in this field and the emergency dial number field has a value of 911. When a user dials 212, the number will be translated to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country or region with a different emergency number attempts to dial that country or region's number rather than the number for the country or region they are currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, 212;414. The string limit for a dial mask is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - DialString - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the phone number to call out with this emergency number. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> New-CsEmergencyNumber -DialString 911 - - This example creates a new emergency number with dial string 911. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> New-CsEmergencyNumber -DialString 911 -DialMask 112 - - This example creates a new emergency number with dial string 911 and single dial mask 112. - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> New-CsEmergencyNumber -DialString 911 -DialMask 112;999 - - This example creates an emergency number with multiple dial masks. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csemergencynumber - - - New-CsLocationPolicy - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-cslocationpolicy?view=skype-ps - - - Set-CsLocationPolicy - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-cslocationpolicy?view=skype-ps - - - - - - New-CsExternalAccessPolicy - New - CsExternalAccessPolicy - - Enables you to create a new external access policy. - - - - This cmdlet was introduced in Lync Server 2010. - For information about external access in Microsoft Teams, see Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access) and [Teams and Skype interoperability](https://learn.microsoft.com/microsoftteams/teams-skype-interop)for specific details. When you install Skype for Business Server your users are only allowed to exchange instant messages and presence information among themselves: by default, they can only communicate with other people who have SIP accounts in your Active Directory Domain Services. In addition, users are not allowed to access Skype for Business Server over the Internet; instead, they must be logged on to your internal network before they will be able to log on to Skype for Business Server. - That might be sufficient to meet your communication needs. If it doesn't meet your needs you can use external access policies to extend the ability of your users to communicate and collaborate. External access policies can grant (or revoke) the ability of your users to do any or all of the following: - 1. Communicate with people who have SIP accounts with a federated organization. Note that enabling federation alone will not provide users with this capability. Instead, you must enable federation and then assign users an external access policy that gives them the right to communicate with federated users. - 2. (Microsoft Teams only) Communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). this policy setting only applies if acs federation has been enabled at the tenant level using the cmdlet [Set-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration). - 3. Access Skype for Business Server over the Internet, without having to first log on to your internal network. This enables your users to use Skype for Business and log on to Skype for Business Server from an Internet café or other remote location. - 4. Communicate with people who have SIP accounts with a public instant messaging service such as Skype. - 5. (Microsoft Teams Only) Communicate with people who are using Teams with an account that's not managed by an organization. This policy only applies if Teams Consumer Federation has been enabled at the tenant level using the cmdlet Set-CsTenantFederationConfiguration (https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration)or Teams Admin Center under the External Access setting. - When you install Skype for Business Server, a global external access policy is automatically created for you. In addition to the global policy, you can also create custom external access policies at either the site or the per-user scope. If you create an external access policy at the site scope, that policy will automatically be assigned to the site upon creation. If you create an external access policy at the per-user scope, that policy will be created but will not be assigned to any users. To assign the policy to a user or group of users, use the Grant-CsExternalAccessPolicy cmdlet. - New external access policies can be created by using the New-CsExternalAccessPolicy cmdlet. Note that these policies can only be created at the site or the per-user scope; you cannot create a new policy at the global scope. In addition, you can have only one external access policy per site: if the Redmond site already has been assigned an external access policy you cannot create a second policy for the site. - The following parameters are not applicable to Skype for Business Online/Microsoft Teams: Description, EnableXmppAccess, Force, Identity, InMemory, PipelineVariable, and Tenant - - - - New-CsExternalAccessPolicy - - Identity - - Unique Identity to be assigned to the policy. New external access policies can be created at the site or per-user scope. - To create a new site policy, use the prefix "site:" and the name of the site as your Identity. - For example, use this syntax to create a new policy for the Redmond site: `-Identity site:Redmond.` - To create a new per-user policy, use an Identity similar to this: `-Identity SalesAccessPolicy.` - Note that you cannot create a new global policy; if you want to make changes to the global policy, use the Set-CsExternalAccessPolicy cmdlet instead. - Likewise, you cannot create a new site or per-user policy if a policy with that Identity already exists. If you need to make changes to an existing policy, use the Set-CsExternalAccessPolicy cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - AllowedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains allowed to communicate with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `AllowSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - BlockedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains blocked from communicating with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `BlockSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - CommunicationWithExternalOrgs - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how users assigned to the policy can communicate with external organizations (domains). This setting has 5 possible values: - - OrganizationDefault: users follow the federation settings specified in `TenantFederationConfiguration`. This is the default value. - - AllowAllExternalDomains: users are allowed to communicate with all domains. - - AllowSpecificExternalDomains: users can communicate with external domains listed in `AllowedExternalDomains`. - - BlockSpecificExternalDomains: users are blocked from communicating with domains listed in `BlockedExternalDomains`. - - BlockAllExternalDomains: users cannot communicate with any external domains. - - The setting is only applicable when `EnableFederationAccess` is set to true. This setting can only be modified in custom policies. In the Global (default) policy, it is fixed to `OrganizationDefault` and cannot be changed. - - String - - String - - - OrganizationDefault - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - EnableAcsFederationAccess - - > Applicable: Microsoft Teams - Indicates whether Teams meetings organized by the user can be joined by users of customer applications built using Azure Communication Services (ACS). This policy setting only applies if ACS Teams federation has been enabled at the tenant level using the cmdlet Set-CsTeamsAcsFederationConfiguration. Additionally, Azure Communication Services users would be able to call Microsoft 365 users that have assigned policies with enabled federation. - To enable for all users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to True. It can be disabled for selected users by assigning them a policy with federation disabled. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - - Boolean - - Boolean - - - True - - - EnableFederationAccess - - Indicates whether the user is allowed to communicate with people who have SIP accounts with a federated organization. Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableOutsideAccess - - Indicates whether the user is allowed to connect to Skype for Business Server over the Internet, without logging on to the organization's internal network. The default value is False. - - Boolean - - Boolean - - - None - - - EnablePublicCloudAudioVideoAccess - - Indicates whether the user is allowed to conduct audio/video conversations with people who have SIP accounts with a public Internet connectivity provider such as MSN. When set to False, audio and video options in Skype for Business Server will be disabled any time a user is communicating with a public Internet connectivity contact. - - Boolean - - Boolean - - - None - - - EnableTeamsConsumerAccess - - (Microsoft Teams Only) Indicates whether the user is allowed to communicate with people who have who are using Teams with an account that's not managed by an organization. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsConsumerInbound - - (Microsoft Teams Only) Indicates whether the user is allowed to be discoverable by people who are using Teams with an account that's not managed by an organization. It also controls if people who have who are using Teams with an account that's not managed by an organization can start the communication with the user. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsSmsAccess - - Allows you to control whether users can have SMS text messaging capabilities within Teams. - Possible values: True, False - - Boolean - - Boolean - - - None - - - EnableXmppAccess - - Indicates whether the user is allowed to communicate with users who have SIP accounts with a federated XMPP (Extensible Messaging and Presence Protocol) partner. The default value is False. - - Boolean - - Boolean - - - None - - - FederatedBilateralChats - - This setting enables bi-lateral chats for the users included in the messaging policy. - Some organizations may want to restrict who users are able to message in Teams. While organizations have always been able to limit users' chats to only other internal users, organizations can now limit users' chat ability to only chat with other internal users and users in one other organization via the bilateral chat policy. - Once external access and bilateral policy is set up, users with the policy can be in external group chats only with a maximum of two organizations. When they try to create a new external chat with users from more than two tenants or add a user from a third tenant to an existing external chat, a system message will be shown preventing this action. - Users with bilateral policy applied are also removed from existing external group chats with more than two organizations. - This policy doesn't apply to meetings, meeting chats, or channels. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory - Possible values: True, False - - Boolean - - Boolean - - - None - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new external access policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains allowed to communicate with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `AllowSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - BlockedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains blocked from communicating with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `BlockSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - CommunicationWithExternalOrgs - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how users assigned to the policy can communicate with external organizations (domains). This setting has 5 possible values: - - OrganizationDefault: users follow the federation settings specified in `TenantFederationConfiguration`. This is the default value. - - AllowAllExternalDomains: users are allowed to communicate with all domains. - - AllowSpecificExternalDomains: users can communicate with external domains listed in `AllowedExternalDomains`. - - BlockSpecificExternalDomains: users are blocked from communicating with domains listed in `BlockedExternalDomains`. - - BlockAllExternalDomains: users cannot communicate with any external domains. - - The setting is only applicable when `EnableFederationAccess` is set to true. This setting can only be modified in custom policies. In the Global (default) policy, it is fixed to `OrganizationDefault` and cannot be changed. - - String - - String - - - OrganizationDefault - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - EnableAcsFederationAccess - - > Applicable: Microsoft Teams - Indicates whether Teams meetings organized by the user can be joined by users of customer applications built using Azure Communication Services (ACS). This policy setting only applies if ACS Teams federation has been enabled at the tenant level using the cmdlet Set-CsTeamsAcsFederationConfiguration. Additionally, Azure Communication Services users would be able to call Microsoft 365 users that have assigned policies with enabled federation. - To enable for all users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to True. It can be disabled for selected users by assigning them a policy with federation disabled. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - - Boolean - - Boolean - - - True - - - EnableFederationAccess - - Indicates whether the user is allowed to communicate with people who have SIP accounts with a federated organization. Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableOutsideAccess - - Indicates whether the user is allowed to connect to Skype for Business Server over the Internet, without logging on to the organization's internal network. The default value is False. - - Boolean - - Boolean - - - None - - - EnablePublicCloudAudioVideoAccess - - Indicates whether the user is allowed to conduct audio/video conversations with people who have SIP accounts with a public Internet connectivity provider such as MSN. When set to False, audio and video options in Skype for Business Server will be disabled any time a user is communicating with a public Internet connectivity contact. - - Boolean - - Boolean - - - None - - - EnableTeamsConsumerAccess - - (Microsoft Teams Only) Indicates whether the user is allowed to communicate with people who have who are using Teams with an account that's not managed by an organization. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsConsumerInbound - - (Microsoft Teams Only) Indicates whether the user is allowed to be discoverable by people who are using Teams with an account that's not managed by an organization. It also controls if people who have who are using Teams with an account that's not managed by an organization can start the communication with the user. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsSmsAccess - - Allows you to control whether users can have SMS text messaging capabilities within Teams. - Possible values: True, False - - Boolean - - Boolean - - - None - - - EnableXmppAccess - - Indicates whether the user is allowed to communicate with users who have SIP accounts with a federated XMPP (Extensible Messaging and Presence Protocol) partner. The default value is False. - - Boolean - - Boolean - - - None - - - FederatedBilateralChats - - This setting enables bi-lateral chats for the users included in the messaging policy. - Some organizations may want to restrict who users are able to message in Teams. While organizations have always been able to limit users' chats to only other internal users, organizations can now limit users' chat ability to only chat with other internal users and users in one other organization via the bilateral chat policy. - Once external access and bilateral policy is set up, users with the policy can be in external group chats only with a maximum of two organizations. When they try to create a new external chat with users from more than two tenants or add a user from a third tenant to an existing external chat, a system message will be shown preventing this action. - Users with bilateral policy applied are also removed from existing external group chats with more than two organizations. - This policy doesn't apply to meetings, meeting chats, or channels. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique Identity to be assigned to the policy. New external access policies can be created at the site or per-user scope. - To create a new site policy, use the prefix "site:" and the name of the site as your Identity. - For example, use this syntax to create a new policy for the Redmond site: `-Identity site:Redmond.` - To create a new per-user policy, use an Identity similar to this: `-Identity SalesAccessPolicy.` - Note that you cannot create a new global policy; if you want to make changes to the global policy, use the Set-CsExternalAccessPolicy cmdlet instead. - Likewise, you cannot create a new site or per-user policy if a policy with that Identity already exists. If you need to make changes to an existing policy, use the Set-CsExternalAccessPolicy cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory - Possible values: True, False - - Boolean - - Boolean - - - None - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new external access policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - None. The New-CsExternalAccessPolicy cmdlet does not accept pipelined input. - - - - - - - Output types - - - Creates new instances of the Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy object. - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsExternalAccessPolicy -Identity site:Redmond -EnableFederationAccess $True -EnableOutsideAccess $True - - The command shown in Example 1 creates a new external access policy that has the Identity site:Redmond; upon creation, this policy will automatically be assigned to the Redmond site. Note that this new policy sets both the EnableFederationAccess and the EnableOutsideAccess properties to True. - - - - -------------------------- Example 2 -------------------------- - Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true -New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false - - In this example, the Global policy is updated to allow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation disabled and which can then be assigned to selected users for which Team-ACS federation will not be allowed. - - - - -------------------------- Example 3 -------------------------- - New-CsExternalAccessPolicy -Identity site:Redmond -EnableTeamsConsumerAccess $True -EnableTeamsConsumerInbound $False - - The command shown in Example 3 creates a new external access policy that has the Identity site:Redmond; upon creation, this policy will automatically be assigned to the Redmond site. Note that this new policy enables communication with people using Teams with an account that's not managed by an organization and limits this to only be initiated by people in your organization. This means that people using Teams with an account that's not managed by an organization will not be able to discover or start a conversation with people with this policy assigned. - - - - -------------------------- EXAMPLE 4 -------------------------- - $x = New-CsExternalAccessPolicy -Identity RedmondAccessPolicy -InMemory - -$x.EnableFederationAccess = $True - -$x.EnableOutsideAccess = $True - -Set-CsExternalAccessPolicy -Instance $x - - Example 4 demonstrates the use of the InMemory parameter; this parameter enables you to create an in-memory-only instance of an external access policy. After it has been created, you can modify the in-memory-only instance, then use the Set-CsExternalAccessPolicy cmdlet to transform the virtual policy into a real external access policy. - To do this, the first command in the example uses the New-CsExternalAccessPolicy cmdlet and the InMemory parameter to create a virtual policy with the Identity RedmondAccessPolicy; this virtual policy is stored in a variable named $x. The next three commands are used to modify two properties of the virtual policy: EnableFederationAccess and the EnableOutsideAccess. Finally, the last command uses the Set-CsExternalAccessPolicy cmdlet to create an actual per-user external access policy with the Identity RedmondAccessPolicy. If you do not call the Set-CsExternalAccessPolicy cmdlet, then the virtual policy will disappear as soon as you end your Windows PowerShell session or delete the variable $x. Should that happen, an external access policy with the Identity RedmondAccessPolicy will never be created. - - - - -------------------------- Example 5 -------------------------- - New-CsExternalAccessPolicy -Identity GranularFederationExample -CommunicationWithExternalOrgs "AllowSpecificExternalDomains" -AllowedExternalDomains @("example1.com", "example2.com") -Set-CsTenantFederationConfiguration -CustomizeFederation $true - - In this example, we create an ExternalAccessPolicy named "GranularFederationExample" that allows communication with specific external domains, namely `example1.com` and `example2.com`. The federation policy is set to restrict communication to only these allowed domains. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Get-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - Remove-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - - - - New-CsHostedVoicemailPolicy - New - CsHostedVoicemailPolicy - - Creates a new hosted voice mail policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet creates a policy that configures a user account enabled for Skype for Business Server to use an Exchange Unified Messaging (UM) hosted voice mail service. The policy determines how to route unanswered calls to the user to a hosted Exchange UM service. - A user must be enabled for Exchange UM hosted voice mail for this policy to take effect. You can call the Get-CsUser cmdlet and check the HostedVoiceMail property to determine whether a user is enabled for hosted voice mail. (A value of True means the user is enabled.) - Policies created at the site scope will be automatically assigned to the users homed on those sites. Policies created at the per-user scope must be assigned to users or contact objects with the Grant-CsHostedVoicemailPolicy cmdlet. - > [!NOTE] > Cloud Voicemail takes the place of Exchange Unified Messaging (UM) in providing voice messaging functionality for Skype for Business 2019 voice users who have mailboxes on Exchange Server 2019 or Exchange Online, and for Skype for Business Online voice users. For more information please check Plan Cloud Voicemail service (https://learn.microsoft.com/skypeforbusiness/hybrid/plan-cloud-voicemail) and [Retiring Unified Messaging in Exchange Online](https://techcommunity.microsoft.com/t5/Exchange-Team-Blog/Retiring-Unified-Messaging-in-Exchange-Online/ba-p/608991). - - - - New-CsHostedVoicemailPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the policy, which includes the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as RenoHostedVoicemail). A global policy will always exist and can't be removed, so you cannot create a global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly description of the policy. - - String - - String - - - None - - - Destination - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The value assigned to this parameter is the fully qualified domain name (FQDN) of the hosted Exchange UM service. Note that the chosen destination must be trusted for routing. - This parameter is optional, but if you attempt to enable a user for hosted voice mail and the user's assigned policy does not have a Destination value, the enable will fail. - This value must be 255 characters or less and in the form of an FQDN, such as server.litwareinc.com. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - Organization - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains a comma-separated list of the Exchange tenants that contain Skype for Business Server users. Each tenant must be specified as an FQDN of the tenant on the hosted Exchange Service. - - String - - String - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for which the new hosted voicemail policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly description of the policy. - - String - - String - - - None - - - Destination - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The value assigned to this parameter is the fully qualified domain name (FQDN) of the hosted Exchange UM service. Note that the chosen destination must be trusted for routing. - This parameter is optional, but if you attempt to enable a user for hosted voice mail and the user's assigned policy does not have a Destination value, the enable will fail. - This value must be 255 characters or less and in the form of an FQDN, such as server.litwareinc.com. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the policy, which includes the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as RenoHostedVoicemail). A global policy will always exist and can't be removed, so you cannot create a global policy. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - Organization - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains a comma-separated list of the Exchange tenants that contain Skype for Business Server users. Each tenant must be specified as an FQDN of the tenant on the hosted Exchange Service. - - String - - String - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for which the new hosted voicemail policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsHostedVoicemailPolicy -Identity ExRedmond -Destination ExUM.fabrikam.com -Description "Hosted voicemail policy for Redmond users." -Organization "corp1.litwareinc.com, corp2.litwareinc.com" - - This command creates a new hosted voice mail policy named ExRedmond. (The fact that no scope is specified means that this policy can be assigned to individual users or contacts.) This policy defines the Exchange UM destination for this policy to be at FQDN ExUM.fabrikam.com. In addition, the Skype for Business Server users of this policy can be spread across the corp1 and corp2 organizations of litwareinc. This policy is described as (has a Description parameter value of) "Hosted voice mail property for Redmond users." - - - - -------------------------- Example 2 -------------------------- - $x = New-CsHostedVoiceMailPolicy -Identity global -Tenant "73d355dd-ce5d-4ab9-bf49-7b822c18dd98" -Destination ExUM.fabrikam.com -Description "Hosted voicemail policy for Redmond users." -Organization "corp1.litwareinc.com, corp2.litwareinc.com" - -Set-CsHostedVoiceMailPolicy -Instance $x -Tenant "73d355dd-ce5d-4ab9-bf49-7b822c18dd98" - - The commands shown in Example 2 are a variation of the command shown in Example 1; in this case, however, the new hosted voicemail policy is assigned to the Skype for Business Online tenant with the tenant ID 73d355dd-ce5d-4ab9-bf49-7b822c18dd98. To create a new policy for a Skype for Business Online tenant you must include the InMemory parameter and store the resulting policy in a variable. That's what happens in the first command, with the new policy stored in a variable named $x. Note, too that you must set the Identity to Global and the Tenant parameter to the appropriate tenant ID. - To create the new policy, the second command then calls the Set-CsHostedVoiceMailPolicy cmdlet along with the Instance parameter and the Tenant parameter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-cshostedvoicemailpolicy - - - Remove-CsHostedVoicemailPolicy - - - - Set-CsHostedVoicemailPolicy - - - - Get-CsHostedVoicemailPolicy - - - - Grant-CsHostedVoicemailPolicy - - - - - - - New-CsInboundBlockedNumberPattern - New - CsInboundBlockedNumberPattern - - Adds a blocked number pattern to the tenant list. - - - - This cmdlet adds a blocked number pattern to the tenant list. An inbound PSTN call from a number that matches the blocked number pattern will be blocked. If a ResourceAccount is specified, the call will be redirected to that resource account instead of being blocked. - - - - New-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsInboundBlockedNumberPattern - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Name - - A displayable name describing the blocked number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Identity - - A unique identifier specifying the blocked number pattern to be created. - - String - - String - - - None - - - Name - - A displayable name describing the blocked number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> New-CsInboundBlockedNumberPattern -Description "Avoid Unwanted Automatic Call" -Name "BlockAutomatic" -Pattern "^\+11234567890" - - This example adds a blocked number pattern to block inbound calls from +11234567890 number. - - - - -------------------------- Example 2 -------------------------- - PS> New-CsInboundBlockedNumberPattern -Description "Avoid Unwanted Automatic Call" -Name "BlockAutomatic" -Pattern "^\+11234567890" -ResourceAccount "d290f1ee-6c54-4b01-90e6-d701748f0851" - - This example adds a blocked number pattern to redirect inbound calls from +11234567890 number to the specified resource account instead of blocking it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - New-CsInboundExemptNumberPattern - New - CsInboundExemptNumberPattern - - This cmdlet lets you configure a new number pattern that is exempt from tenant call blocking. - - - - The `New-CsInboundExemptNumberPattern` cmdlet creates a new inbound exempt number pattern that allows specific phone numbers to bypass tenant call blocking. This is useful for ensuring that important numbers, such as emergency services or critical business contacts, are not inadvertently blocked by the tenant's call blocking policies. - - - - New-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - System.String - - System.String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Name - - A displayable name describing the exempt number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - System.String - - System.String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Identity - - Unique identifier for the exempt number pattern to be created. - - String - - String - - - None - - - Name - - A displayable name describing the exempt number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your block and exempt phone number ranges. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS> New-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" -Description "Allow Contoso helpdesk" -Enabled $True - - Creates a new inbound exempt number pattern for the numbers 1 (312) 555-88882 and 1 (312) 555-88883 and enables it - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - New-CsLocationPolicy - New - CsLocationPolicy - - Creates a new location policy for use with location identification for the Enhanced 9-1-1 (E9-1-1) service and general client location. The E9-1-1 service enables those who answer 911 calls to determine the caller's geographic location. This cmdlet was introduced in Lync Server 2010. - - - - The location policy is used to apply settings that relate to E9-1-1 functionality and location settings to users or contacts. The location policy determines whether a user is enabled for E9-1-1, and if so what the behavior is of an emergency call. For example, you can use the location policy to define what number constitutes an emergency call (911 in the United States), whether corporate security should be automatically notified, and how the call should be routed. This cmdlet creates a new location policy at the site or per-user scope. (A policy at the global scope already exists.) - IMPORTANT: The location policy behaves differently from other policies in Skype for Business Server in terms of order of scope. For all other policies, if a policy is defined at the per-user scope, the policy is applied to any user granted that policy. If the user has not been granted a per-user policy, the site policy is applied. If there is no site policy, the global policy is applied. Location policies are applied in the same way, with one exception: a per-user location policy can also be assigned to a network site. (A network site consists of a group of subnets.) If the user is making the emergency call from a location that is mapped to a network site within the organization, the user-level policy assigned to that network site is used. This functionality will override a per-user policy that has been granted to that user. If the user calls from a location that is unknown or unmapped in the organization, the standard policy scoping will be applied. - - - - New-CsLocationPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the location policy. This cmdlet can be used to create policies at the site or per-user scope. (A global policy exists by default and cannot be removed.) For a policy created at the site scope, this value must be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment. For example, site:Redmond. A policy created at the per-user scope can be assigned any string value, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - ConferenceMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If a value is specified for the ConferenceUri parameter, the ConferenceMode parameter determines whether a third party can participate in the call or can only listen in. Available values are: - Oneway: Third party can only listen to the conversation between the caller and the Public Safety Answering Point (PSAP) operator. - Twoway: Third party can listen in and participate in the call between the caller and the PSAP operator. - - ConferenceModeEnum - - ConferenceModeEnum - - - None - - - ConferenceUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The SIP Uniform Resource Identifier (URI), in this case the telephone number, of a third party that will be conferenced in to any emergency calls that are made. For example, the company security office could receive a call when an emergency call is made and listen in or participate in that call (depending on the value of the ConferenceMode property). - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A detailed description of this location. For example, "Reno corporate users". - - String - - String - - - None - - - EmergencyDialMask - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number that is dialed that will be translated into the value of the EmergencyDialString property. For example, if EmergencyDialMask has a value of "212" and EmergencyDialString has a value of "911", if a user dials 212 the call will be made to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country/region with a different emergency number attempts to dial that country/region's number rather than the number for the country/region they're currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, `-EmergencyDialMask "212;414".` - IMPORTANT. Ensure that the specified dial mask value is not the same as a number in a call park orbit range. Call park routing will take precedence over emergency dial string conversion. To see the existing call park orbit ranges, call the Get-CsCallParkOrbit cmdlet. - Maximum length of the string is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - EmergencyDialString - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The number that is dialed to reach emergency services. In the United States this value is 911. - The string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyNumbers - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EmergencyNumbers Description}} - - PSListModifier - - PSListModifier - - - None - - - EnhancedEmergencyServiceDisclaimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Text value containing information that will be displayed to users who are connected from locations that cannot be resolved by the location mapping (wiremap) who choose not to enter their location manually. To remove a service disclaimer from a location policy set this property to a null value: - `-EnhancedEmergencyServiceDisclaimer $Null` - Location policies, and the EnhancedEmergencyServiceDisclaimer property, should be used in Skype for Business Server to set disclaimers for the E9-1-1 service. By using location policies to set these disclaimers, you can create different disclaimers for different locales or different sets of users. - - String - - String - - - None - - - EnhancedEmergencyServicesEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether the users associated with this policy are enabled for E9-1-1. Set the value to True to enable E9-1-1 so Skype for Business Server clients will retrieve location information on registration and include that information when an emergency call is made. - Default Value: False - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - LocationRefreshInterval - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the amount of time (in hours) between client requests for Location Information service location update. The LocationRefreshInterval can be set to any value between 1 and 12; the default value is 4. - - Int64 - - Int64 - - - None - - - LocationRequired - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If the client was unable to retrieve a location from the location configuration database, the user can be prompted to manually enter a location. This parameter accepts the following values: - - no: The user will not be prompted for a location. When a call is made with no location information, the Emergency Service Provider will answer the call and ask for a location. - - yes: The user will be prompted to input location information when the client registers at a new location. The user can dismiss the prompt without entering any information. If information is entered, a call made to 911 will first be answered by the Emergency Service Provider to verify the location before being routed to the PSAP operator (the 911 operator). - - disclaimer: This option is the same as yes except that if the user dismisses the prompt disclaimer text will be displayed that can alert the user to the consequences of declining to enter location information. (The disclaimer text must be set by calling the Set-CsEnhancedEmergencyServiceDisclaimer cmdlet.) - - This value is ignored if EnhancedEmergencyServicesEnabled is set to False (the default). Users will not be prompted for location information. - - LocationRequiredEnum - - LocationRequiredEnum - - - None - - - NotificationUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - One or more SIP URIs to be notified when an emergency call is made. For example, the company security office could be notified through an instant message whenever an emergency call is made. If the caller's location is available that location will be included in the notification. - Multiple SIP URIs can be included as a comma-separated list. For example, `-NotificationUri sip:security@litwareinc.com,sip:kmyer@litwareinc.com.` Note that distribution lists can be configured as a notification URI. - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - PstnUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The public switched telephone network (PSTN) usage that will be used to determine which voice route will be used to route emergency calls from clients using this profile. The route associated with this usage should point to a SIP trunk dedicated to emergency calls. - The usage must already exist in the global list of PSTN usages. Call the Get-CsPstnUsage cmdlet to retrieve a list of usages. To create a new usage, call the Set-CsPstnUsage cmdlet. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new location policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - UseLocationForE911Only - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Location information can be used by the Skype for Business Server client for various reasons (such as notifying teammates of current location). Set this value to True to ensure location information is available only for use with an emergency call. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - ConferenceMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If a value is specified for the ConferenceUri parameter, the ConferenceMode parameter determines whether a third party can participate in the call or can only listen in. Available values are: - Oneway: Third party can only listen to the conversation between the caller and the Public Safety Answering Point (PSAP) operator. - Twoway: Third party can listen in and participate in the call between the caller and the PSAP operator. - - ConferenceModeEnum - - ConferenceModeEnum - - - None - - - ConferenceUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The SIP Uniform Resource Identifier (URI), in this case the telephone number, of a third party that will be conferenced in to any emergency calls that are made. For example, the company security office could receive a call when an emergency call is made and listen in or participate in that call (depending on the value of the ConferenceMode property). - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A detailed description of this location. For example, "Reno corporate users". - - String - - String - - - None - - - EmergencyDialMask - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number that is dialed that will be translated into the value of the EmergencyDialString property. For example, if EmergencyDialMask has a value of "212" and EmergencyDialString has a value of "911", if a user dials 212 the call will be made to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country/region with a different emergency number attempts to dial that country/region's number rather than the number for the country/region they're currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, `-EmergencyDialMask "212;414".` - IMPORTANT. Ensure that the specified dial mask value is not the same as a number in a call park orbit range. Call park routing will take precedence over emergency dial string conversion. To see the existing call park orbit ranges, call the Get-CsCallParkOrbit cmdlet. - Maximum length of the string is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - EmergencyDialString - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The number that is dialed to reach emergency services. In the United States this value is 911. - The string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyNumbers - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EmergencyNumbers Description}} - - PSListModifier - - PSListModifier - - - None - - - EnhancedEmergencyServiceDisclaimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Text value containing information that will be displayed to users who are connected from locations that cannot be resolved by the location mapping (wiremap) who choose not to enter their location manually. To remove a service disclaimer from a location policy set this property to a null value: - `-EnhancedEmergencyServiceDisclaimer $Null` - Location policies, and the EnhancedEmergencyServiceDisclaimer property, should be used in Skype for Business Server to set disclaimers for the E9-1-1 service. By using location policies to set these disclaimers, you can create different disclaimers for different locales or different sets of users. - - String - - String - - - None - - - EnhancedEmergencyServicesEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether the users associated with this policy are enabled for E9-1-1. Set the value to True to enable E9-1-1 so Skype for Business Server clients will retrieve location information on registration and include that information when an emergency call is made. - Default Value: False - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the location policy. This cmdlet can be used to create policies at the site or per-user scope. (A global policy exists by default and cannot be removed.) For a policy created at the site scope, this value must be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment. For example, site:Redmond. A policy created at the per-user scope can be assigned any string value, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - LocationRefreshInterval - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the amount of time (in hours) between client requests for Location Information service location update. The LocationRefreshInterval can be set to any value between 1 and 12; the default value is 4. - - Int64 - - Int64 - - - None - - - LocationRequired - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If the client was unable to retrieve a location from the location configuration database, the user can be prompted to manually enter a location. This parameter accepts the following values: - - no: The user will not be prompted for a location. When a call is made with no location information, the Emergency Service Provider will answer the call and ask for a location. - - yes: The user will be prompted to input location information when the client registers at a new location. The user can dismiss the prompt without entering any information. If information is entered, a call made to 911 will first be answered by the Emergency Service Provider to verify the location before being routed to the PSAP operator (the 911 operator). - - disclaimer: This option is the same as yes except that if the user dismisses the prompt disclaimer text will be displayed that can alert the user to the consequences of declining to enter location information. (The disclaimer text must be set by calling the Set-CsEnhancedEmergencyServiceDisclaimer cmdlet.) - - This value is ignored if EnhancedEmergencyServicesEnabled is set to False (the default). Users will not be prompted for location information. - - LocationRequiredEnum - - LocationRequiredEnum - - - None - - - NotificationUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - One or more SIP URIs to be notified when an emergency call is made. For example, the company security office could be notified through an instant message whenever an emergency call is made. If the caller's location is available that location will be included in the notification. - Multiple SIP URIs can be included as a comma-separated list. For example, `-NotificationUri sip:security@litwareinc.com,sip:kmyer@litwareinc.com.` Note that distribution lists can be configured as a notification URI. - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - PstnUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The public switched telephone network (PSTN) usage that will be used to determine which voice route will be used to route emergency calls from clients using this profile. The route associated with this usage should point to a SIP trunk dedicated to emergency calls. - The usage must already exist in the global list of PSTN usages. Call the Get-CsPstnUsage cmdlet to retrieve a list of usages. To create a new usage, call the Set-CsPstnUsage cmdlet. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the new location policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - UseLocationForE911Only - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Location information can be used by the Skype for Business Server client for various reasons (such as notifying teammates of current location). Set this value to True to ensure location information is available only for use with an emergency call. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - Creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsLocationPolicy -Identity site:Redmond -EnhancedEmergencyServicesEnabled $True - - Example 1 uses the New-CsLocationPolicy cmdlet to create a new location policy for the Redmond site that enables all users on that site for E9-1-1. To create this policy, the New-CsLocationPolicy cmdlet is called along with two parameters: one to set the Identity, which in this case is the string site: followed by the name of the site to which this policy will apply; the other to set the value of the EnhancedEmergencyServicesEnabled property to True. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CsLocationPolicy -Identity Reno -Description "All users located at the Reno site" -EnhancedEmergencyServicesEnabled $True -PstnUsage Emergency -EmergencyDialString 911 - - This example creates a per-user location policy. (Per-user policies must be specifically granted to individual users or groups.) This policy has an Identity of Reno. We've added a more detailed description of the policy by using the Description parameter. The next parameter we supply is EnhancedEmergencyServicesEnabled, which is set to True to turn on E9-1-1 functionality for all users to which this policy is granted. The next parameter is PstnUsage, in this case with a value of Emergency. This value must match a value in the list of PSTN usages. (This list can be retrieved by calling the Get-CsPstnUsage cmdlet.) The usage should be associated with a voice route that will be used for emergency calls. (You can retrieve voice routes by calling the Get-CsVoiceRoute cmdlet.) The final parameter used in this example is EmergencyDialString, which specifies the number that is dialed to make an emergency call. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-cslocationpolicy - - - Remove-CsLocationPolicy - - - - Set-CsLocationPolicy - - - - Get-CsLocationPolicy - - - - Grant-CsLocationPolicy - - - - Test-CsLocationPolicy - - - - Get-CsPstnUsage - - - - Get-CsVoiceRoute - - - - - - - New-CsOnlineAudioConferencingRoutingPolicy - New - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet creates a Online Audio Conferencing Routing Policy. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - New-CsOnlineAudioConferencingRoutingPolicy - - Identity - - Identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineAudioConferencingRoutingPolicy -Identity Test - - Creates a new Online Audio Conferencing Routing Policy policy with an identity called "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineaudioconferencingroutingpolicy - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - New-CsOnlineVoicemailPolicy - New - CsOnlineVoicemailPolicy - - Creates a new Online Voicemail policy. - - - - Cloud Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation. - By default, users enabled for Phone System will be enabled for Cloud Voicemail. The Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify the voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages. - - Voicemail transcription is enabled by default - - Transcription profanity masking is disabled by default - - Transcription translation is enabled by default - - Editing call answer rule settings is enabled by default - - Voicemail maximum recording length is set to 5 minutes by default - - Primary and secondary system prompt languages are set to null by default and the user's voicemail language setting is used - - Tenant admin would be able to create a customized online voicemail policy to match the organization's requirements. - - - - New-CsOnlineVoicemailPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnableEditingCallAnswerRulesSetting - - Controls if editing call answer rule settings are enabled or disabled for a user. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscription - - Allows you to disable or enable voicemail transcription. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionProfanityMasking - - Allows you to disable or enable profanity masking for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionTranslation - - Allows you to disable or enable translation for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - MaximumRecordingLength - - A duration of voicemail maximum recording length. The length should be between 30 seconds to 10 minutes. - - Duration - - Duration - - - None - - - PostambleAudioFile - - The audio file to play to the caller after the user's voicemail greeting has played and before the caller is allowed to leave a voicemail message. - - String - - String - - - None - - - PreambleAudioFile - - The audio file to play to the caller before the user's voicemail greeting is played. - - String - - String - - - None - - - PreamblePostambleMandatory - - Is playing the Pre- or Post-amble mandatory before the caller can leave a message. - - Boolean - - Boolean - - - False - - - PrimarySystemPromptLanguage - - The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. Please see Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - SecondarySystemPromptLanguage - - The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. Please see Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - ShareData - - Specifies whether voicemail and transcription data are shared with the service for training and improving accuracy. Possible values are Defer and Deny. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnableEditingCallAnswerRulesSetting - - Controls if editing call answer rule settings are enabled or disabled for a user. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscription - - Allows you to disable or enable voicemail transcription. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionProfanityMasking - - Allows you to disable or enable profanity masking for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionTranslation - - Allows you to disable or enable translation for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - MaximumRecordingLength - - A duration of voicemail maximum recording length. The length should be between 30 seconds to 10 minutes. - - Duration - - Duration - - - None - - - PostambleAudioFile - - The audio file to play to the caller after the user's voicemail greeting has played and before the caller is allowed to leave a voicemail message. - - String - - String - - - None - - - PreambleAudioFile - - The audio file to play to the caller before the user's voicemail greeting is played. - - String - - String - - - None - - - PreamblePostambleMandatory - - Is playing the Pre- or Post-amble mandatory before the caller can leave a message. - - Boolean - - Boolean - - - False - - - PrimarySystemPromptLanguage - - The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. Please see Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - SecondarySystemPromptLanguage - - The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. Please see Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - ShareData - - Specifies whether voicemail and transcription data are shared with the service for training and improving accuracy. Possible values are Defer and Deny. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsOnlineVoicemailPolicy -Identity "CustomOnlineVoicemailPolicy" -MaximumRecordingLength ([TimeSpan]::FromSeconds(60)) - - The command shown in Example 1 creates a per-user online voicemail policy CustomOnlineVoicemailPolicy with MaximumRecordingLength set to 60 seconds and other fields set to tenant level global value. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Get-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - Set-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - Remove-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - Grant-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - - - - New-CsOnlineVoiceRoute - New - CsOnlineVoiceRoute - - Creates a new online voice route. - - - - Use this cmdlet to create a new online voice route. All online voice routes are created at the Global scope. However, multiple global voice routes can be defined. This is accomplished through the Identity parameter, which requires a unique route name. - Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - Voice routes are associated with online voice policies through online PSTN usages. A voice route includes a regular expression that identifies which phone numbers will be routed through a given voice route: phone numbers matching the regular expression will be routed through this route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - New-CsOnlineVoiceRoute - - Identity - - A name that uniquely identifies the online voice route. Voice routes can be defined only at the global scope, so the identity is simply the name you want to give the route. (You can have spaces in the route name, for instance Test Route, but you must enclose the full string in double quotes in the call to the New-CsOnlineVoiceRoute cmdlet.) - If Identity is specified, the Name must be left blank. The value of the Identity will be assigned to the Name. - - String - - String - - - None - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsOnlineVoiceRoute - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - Name - - The unique name of the voice route. If this parameter is set, the value will be automatically applied to the online voice route Identity. You cannot specify both an Identity and a Name. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - Identity - - A name that uniquely identifies the online voice route. Voice routes can be defined only at the global scope, so the identity is simply the name you want to give the route. (You can have spaces in the route name, for instance Test Route, but you must enclose the full string in double quotes in the call to the New-CsOnlineVoiceRoute cmdlet.) - If Identity is specified, the Name must be left blank. The value of the Identity will be assigned to the Name. - - String - - String - - - None - - - Name - - The unique name of the voice route. If this parameter is set, the value will be automatically applied to the online voice route Identity. You cannot specify both an Identity and a Name. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineVoiceRoute -Identity Route1 - - The command in this example creates a new online voice route with an Identity of Route1. All other properties will be set to the default values. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add="Long Distance"} -OnlinePstnGatewayList @{add="sbc1.litwareinc.com"} - - The command in this example creates a new online voice route with an Identity of Route1. It also adds the online PSTN usage Long Distance to the list of usages and the service ID PstnGateway sbc1.litwareinc.com to the list of online PSTN gateways. - - - - -------------------------- Example 3 -------------------------- - PS C:\> $x = (Get-CsOnlinePstnUsage).Usage - -New-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add=$x} - - This example creates a new online voice route named Route1 and populates that route's list of PSTN usages with all the existing usages for the organization. The first command in this example retrieves the list of global online PSTN usages. Notice that the call to the `Get-CsOnlinePstnUsage` cmdlet is in parentheses; this means that we first retrieve an object containing PSTN usage information. (Because there is only one, global, online PSTN usage, only one object will be retrieved.) The command then retrieves the Usage property of this object. That property, which contains a list of usages, is assigned to the variable $x. In the second line of this example, the `New-CsOnlineVoiceRoute` cmdlet is called to create a new online voice route. This voice route will have an identity of Route1. Notice the value passed to the OnlinePstnUsages parameter: @{add=$x}. This value says to add the contents of $x, which contain the phone usages list retrieved in line 1, to the list of online PSTN usages for this route. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - New-CsOnlineVoiceRoutingPolicy - New - CsOnlineVoiceRoutingPolicy - - Creates a new online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - New-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet). - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet). - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages "Long Distance" - - The command shown in Example 1 creates a new online per-user voice routing policy with the Identity RedmondOnlineVoiceRoutingPolicy. This policy is assigned a single online PSTN usage: Long Distance. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages "Long Distance", "Local", "Internal" - - Example 2 is a variation of the command shown in Example 1; in this case, however, the new policy is assigned three online PSTN usages: Long Distance; Local; Internal. Multiple usages can be assigned simply by separating each usage using a comma. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - New-CsPresenceProvider - New - CsPresenceProvider - - Authorizes a new presence provider for use in the organization. Presence providers represent the PresenceProviders property of a collection of user services configuration settings. This cmdlet was introduced in Lync Server 2013. - - - - The CsPresenceProvider cmdlets are used to manage the PresenceProviders property found in the User Services configuration settings. Among other things, these settings are used to maintain presence information, including a collection of authorized presence providers. That collection is stored in the PresenceProviders property. You can use the New-CsPresenceProvider cmdlet to add an authorized presence provider to a collection of User Services configuration settings. - Skype for Business Server Control Panel: The functions carried out by the New-CsPresenceProvider cmdlet are not available in the Skype for Business Server Control Panel. - - - - New-CsPresenceProvider - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Fqdn - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name for the presence provider. For example: - -Fqdn "fabrikam.com" - If you use the Fqdn parameter you must also use the Parent parameter. However, the Fqdn parameter cannot be used in the same command as the Identity parameter. - Note that FQDNs must be unique at a given scope. - - String - - String - - - None - - - InMemory - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Parent - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Scope where the new presence provider will be created. To create a new presence provider at the global scope, use syntax similar to this: - `-Parent "global"` - To create a new provider at the site scope use syntax like this: - `-Parent "site:Redmond"` - To create a provider at the service scope (for the UserServer service only), use syntax similar to this: - `-Parent "UserServer:atl-cs-001.litwareinc.com"` - If you use the Parent parameter you must also include the Fqdn parameter. However, the Parent parameter cannot be used in conjunction with the Identity parameter. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsPresenceProvider - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the new presence provider. The Identity of a presence provider is composed of two parts: the scope (Parent) where the rule has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider's fully qualified domain name. To create a new provider at the global scope use syntax similar to this: - `-Identity "global/fabrikam.com"` - To create a provider at the site scope, use syntax like this: - `-Identity "site:Redmond/fabrikam.com"` - To create a provider at the service scope (for the UserServer service only), use syntax similar to this: - `-Parent "UserServer:atl-cs-001.litwareinc.com"` - You cannot use the Identity parameter in the same command as the Fqdn or the Parent parameter. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Fqdn - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name for the presence provider. For example: - -Fqdn "fabrikam.com" - If you use the Fqdn parameter you must also use the Parent parameter. However, the Fqdn parameter cannot be used in the same command as the Identity parameter. - Note that FQDNs must be unique at a given scope. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the new presence provider. The Identity of a presence provider is composed of two parts: the scope (Parent) where the rule has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider's fully qualified domain name. To create a new provider at the global scope use syntax similar to this: - `-Identity "global/fabrikam.com"` - To create a provider at the site scope, use syntax like this: - `-Identity "site:Redmond/fabrikam.com"` - To create a provider at the service scope (for the UserServer service only), use syntax similar to this: - `-Parent "UserServer:atl-cs-001.litwareinc.com"` - You cannot use the Identity parameter in the same command as the Fqdn or the Parent parameter. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Parent - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Scope where the new presence provider will be created. To create a new presence provider at the global scope, use syntax similar to this: - `-Parent "global"` - To create a new provider at the site scope use syntax like this: - `-Parent "site:Redmond"` - To create a provider at the service scope (for the UserServer service only), use syntax similar to this: - `-Parent "UserServer:atl-cs-001.litwareinc.com"` - If you use the Parent parameter you must also include the Fqdn parameter. However, the Parent parameter cannot be used in conjunction with the Identity parameter. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The New-CsPresenceProvider cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated - - - The New-CsPresenceProvider cmdlet creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsPresenceProvider -Parent "global" -Fqdn "fabrikam.com" - - The command shown in Example 1 creates a new presence provider (with the fully qualified domain name "fabrikam.com") that will be added to the global collection of user services configuration settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsUserServicesConfiguration | ForEach-Object {New-CsPresenceProvider -Parent $_.Identity -Fqdn "fabrikam.com"} - - Example 2 adds a presence provider with the Fqdn "fabrikam.com" to all the user services configuration collections in the organization. To do this, the command first uses the Get-CsUserServicesConfiguration cmdlet to return a collection of all the user services settings. Those settings are then piped to the ForEach-Object, which takes each item in the collection and a creates a new presence provider for that collection, using "fabrikam.com" as the presence provider Fqdn and the Identity of the user services collection as the presence provider Parent. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-cspresenceprovider - - - Get-CsPresenceProvider - - - - Get-CsUserServicesConfiguration - - - - Remove-CsPresenceProvider - - - - Set-CsPresenceProvider - - - - - - - New-CsTeamsAIPolicy - New - CsTeamsAIPolicy - - This cmdlet creates a Teams AI policy. - - - - The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs. - This cmdlet creates a Teams AI policy. If you get an error that the policy already exists, it means that the policy already exists for your tenant. In this case, run Get-CsTeamsAIPolicy. - - - - New-CsTeamsAIPolicy - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - New-CsTeamsAIPolicy - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsAIPolicy -Identity Test - - Creates a new Teams AI policy with the specified identity. The newly created policy with value will be printed on success. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsTeamsAIPolicy - - - Remove-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaipolicy - - - Get-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaipolicy - - - Set-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaipolicy - - - Grant-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaipolicy - - - - - - New-CsTeamsAppPermissionPolicy - New - CsTeamsAppPermissionPolicy - - As an admin, you can use app permission policies to allow or block apps for your users. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. While the cmdlet may succeed, the changes aren't applied to the tenant. - As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Setup Policies: <https://learn.microsoft.com/microsoftteams/teams-app-permission-policies>. This is only applicable for tenants who have not been migrated to ACM or UAM. - - - - New-CsTeamsAppPermissionPolicy - - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsapppermissionpolicy - - - - - - New-CsTeamsAppSetupPolicy - New - CsTeamsAppSetupPolicy - - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. App setup policies let you showcase apps that users in your organization need, including ones built by third parties or by developers in your organization. You can also use app setup policies to manage how built-in features appear. - Apps are pinned to the app bar. This is the bar on the side of the Teams desktop client and at the bottom of the Teams mobile clients (iOS and Android). Learn more about the App Setup Policies: <https://learn.microsoft.com/MicrosoftTeams/teams-app-setup-policies>. - - - - New-CsTeamsAppSetupPolicy - - Identity - - Name of App setup policy. If empty, all Identities will be used by default. - - String - - String - - - None - - - AdditionalCustomizationApps - - This parameter allows IT admins to create multiple customized versions of their apps and assign these customized versions to users and groups via setup policies. It enables customization of app icons and names for supportive first-party (1P) and third-party (3P) apps, enhancing corporate connections to employees through brand expression and stimulating app awareness and usage. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - - None - - - AllowSideLoading - - This is also known as side loading. This setting determines if a user can upload a custom app package in the Teams app. Turning it on lets you create or develop a custom app to be used personally or across your organization without having to submit it to the Teams app store. Uploading a custom app also lets you test an app before you distribute it more widely by only assigning it to a single user or group of users. - - Boolean - - Boolean - - - None - - - AllowUserPinning - - If you turn this on, the user's existing app pins will be added to the list of pinned apps set in this policy. Users can rearrange, add, and remove pins as they choose. If you turn this off, the user's existing app pins will be removed and replaced with the apps defined in this policy. - - Boolean - - Boolean - - - None - - - AppPresetList - - Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - - None - - - AppPresetMeetingList - - This parameter is used to manage the list of preset apps that are available during meetings. It allows admins to control which apps are pinned and set the order in which they appear, ensuring that users have quick access to the relevant apps during meetings. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - Description of the app setup policy. - - String - - String - - - None - - - PinnedAppBarApps - - Pinning an app displays the app in the app bar in Teams client. Admins can pin apps and they can allow users to pin apps. Pinning is used to highlight apps that are needed the most by users and promote ease of access. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - - None - - - PinnedCallingBarApps - - Determines the list of apps that are pre pinned for a participant in Calls. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - - None - - - PinnedMessageBarApps - - Apps are pinned in messaging extensions and into the ellipsis menu. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AdditionalCustomizationApps - - This parameter allows IT admins to create multiple customized versions of their apps and assign these customized versions to users and groups via setup policies. It enables customization of app icons and names for supportive first-party (1P) and third-party (3P) apps, enhancing corporate connections to employees through brand expression and stimulating app awareness and usage. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - - None - - - AllowSideLoading - - This is also known as side loading. This setting determines if a user can upload a custom app package in the Teams app. Turning it on lets you create or develop a custom app to be used personally or across your organization without having to submit it to the Teams app store. Uploading a custom app also lets you test an app before you distribute it more widely by only assigning it to a single user or group of users. - - Boolean - - Boolean - - - None - - - AllowUserPinning - - If you turn this on, the user's existing app pins will be added to the list of pinned apps set in this policy. Users can rearrange, add, and remove pins as they choose. If you turn this off, the user's existing app pins will be removed and replaced with the apps defined in this policy. - - Boolean - - Boolean - - - None - - - AppPresetList - - Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - - None - - - AppPresetMeetingList - - This parameter is used to manage the list of preset apps that are available during meetings. It allows admins to control which apps are pinned and set the order in which they appear, ensuring that users have quick access to the relevant apps during meetings. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the app setup policy. - - String - - String - - - None - - - Identity - - Name of App setup policy. If empty, all Identities will be used by default. - - String - - String - - - None - - - PinnedAppBarApps - - Pinning an app displays the app in the app bar in Teams client. Admins can pin apps and they can allow users to pin apps. Pinning is used to highlight apps that are needed the most by users and promote ease of access. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - - None - - - PinnedCallingBarApps - - Determines the list of apps that are pre pinned for a participant in Calls. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - - None - - - PinnedMessageBarApps - - Apps are pinned in messaging extensions and into the ellipsis menu. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsTeamsAppSetupPolicy -Identity (Get-Date -Format FileDateTimeUniversal) - - Create a new TeamsAppSetupPolicy, if no parameters are specified, the Global Policy configuration is used by default. - - - - -------------------------- Example 2 -------------------------- - New-CsTeamsAppSetupPolicy -Identity (Get-Date -Format FileDateTimeUniversal) -AllowSideLoading $true -AllowUserPinning $true - - Create a new TeamsAppSetupPolicy. Users can upload a custom app package in the Teams app because AllowSideLoading is set as True, and existing app pins can be added to the list of pinned apps because AllowUserPinning is set as True. - - - - -------------------------- Example 3 -------------------------- - # Set ActivityApp, ChatApp, TeamsApp as PinnedAppBarApps -$ActivityApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="14d6962d-6eeb-4f48-8890-de55454bb136"} -$ChatApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="86fcd49b-61a2-4701-b771-54728cd291fb"} -$TeamsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="2a84919f-59d8-4441-a975-2a8c2643b741"} -$PinnedAppBarApps = @($ActivityApp,$ChatApp,$TeamsApp) - -# Settings to pin these apps to the app bar in Teams client. -New-CsTeamsAppSetupPolicy -Identity (Get-Date -Format FileDateTimeUniversal) -AllowUserPinning $true -PinnedAppBarApps $PinnedAppBarApps - - Create a new TeamsAppSetupPolicy and pin ActivityApp, ChatApp, TeamsApp apps to the app bar in Teams client by setting these apps as PinnedAppBarApps. - - - - -------------------------- Example 4 -------------------------- - # Set VivaConnectionsApp as PinnedMessageBarApps -$VivaConnectionsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp -Property @{Id="d2c6f111-ffad-42a0-b65e-ee00425598aa"} -$PinnedMessageBarApps = @($VivaConnectionsApp) -# Settings to pin these apps to the messaging extension in Teams client. -Set-CsTeamsAppSetupPolicy -Identity (Get-Date -Format FileDateTimeUniversal) -AllowUserPinning $true -PinnedMessageBarApps $PinnedMessageBarApps - - Create a new TeamsAppSetupPolicy and pin VivaConnections app to the messaging extension in Teams client by setting these apps as PinnedMessageBarApps. - - - - -------------------------- Example 5 -------------------------- - # Set VivaConnectionsApp as AppPresetList -$VivaConnectionsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset -Property @{Id="d2c6f111-ffad-42a0-b65e-ee00425598aa"} -$AppPresetList = @($VivaConnectionsApp) -# Settings to install these apps in your users' personal Teams environment -Set-CsTeamsAppSetupPolicy -Identity (Get-Date -Format FileDateTimeUniversal) -AllowSideLoading $true -AppPresetList $AppPresetList - - Create a new TeamsAppSetupPolicy and install VivaConnections App in users' personal Teams environment by setting these apps as AppPresetList. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsappsetuppolicy - - - - - - New-CsTeamsAudioConferencingPolicy - New - CsTeamsAudioConferencingPolicy - - - - - - The New-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. This cmdlet creates a new Teams audio conferencing policy. Custom policies can then be assigned to users using the Grant-CsTeamsAudioConferencingPolicy cmdlet. - - - - New-CsTeamsAudioConferencingPolicy - - Identity - - Specify the name of the policy that you are creating - - String - - String - - - None - - - AllowTollFreeDialin - - Determines whether users of the Policy can have Toll free numbers - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTollFreeDialin - - Determines whether users of the Policy can have Toll free numbers - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $False - - The command shown in Example 1 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: AllowTollFreeDialin; in this example, meetings created by users with this policy cannot include Toll Free phone numbers. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" - - The command shown in Example 2 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: MeetingInvitePhoneNumbers; in this example, meetings created by users with this policy will include the following toll and toll free phone numbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - New-CsTeamsCallHoldPolicy - New - CsTeamsCallHoldPolicy - - Creates a new Teams call hold policy in your tenant. The Teams call hold policy is used to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a Teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - New-CsTeamsCallHoldPolicy - - Identity - - Unique identifier to be assigned to the new Teams call hold policy. - - String - - String - - - None - - - AudioFileId - - A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams call hold policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - StreamingSourceAuthType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StreamingSourceUrl - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AudioFileId - - A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams call hold policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier to be assigned to the new Teams call hold policy. - - String - - String - - - None - - - StreamingSourceAuthType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StreamingSourceUrl - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -Description "country music" -AudioFileID "c65233-ac2a27-98701b-123ccc" - - The command shown in Example 1 creates a new, per-user Teams call hold policy with the Identity ContosoPartnerTeamsCallHoldPolicy. This policy is assigned the audio file ID: c65233-ac2a27-98701b-123ccc, which is the ID referencing an audio file that was uploaded using the Import-CsOnlineAudioFile cmdlet. - Any Microsoft Teams users who are assigned this policy will have their call holds customized such that the user being held will hear the audio file specified by AudioFileId. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Get-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - Set-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Grant-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - Remove-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - - - - New-CsTeamsCallingPolicy - New - CsTeamsCallingPolicy - - Use this cmdlet to create a new instance of a Teams Calling Policy. - - - - The Teams Calling Policy controls which calling and call forwarding features are available to users in Microsoft Teams. This cmdlet allows admins to create new policy instances. - - - - New-CsTeamsCallingPolicy - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - AIInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features. - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowCallForwardingToPhone - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number. - - Boolean - - Boolean - - - None - - - AllowCallForwardingToUser - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to other users in your tenant. - - Boolean - - Boolean - - - None - - - AllowCallGroups - - > Applicable: Microsoft Teams - Enables the user to configure call groups in the Microsoft Teams client and that inbound calls should be routed to call groups. - - Boolean - - Boolean - - - None - - - AllowCallRedirect - - > Applicable: Microsoft Teams - Setting this parameter enables local call redirection for SIP devices connecting via the Microsoft Teams SIP gateway. - Valid options are: - Enabled: Enables the user to redirect an incoming call. - - Disabled: The user is not enabled to redirect an incoming call. - - - UserOverride: This option is not available for use. - - String - - String - - - None - - - AllowCloudRecordingForCalls - - > Applicable: Microsoft Teams - Determines whether cloud recording is allowed in a user's 1:1 Teams or PSTN calls. Set this to True to allow the user to be able to record 1:1 calls. Set this to False to prohibit the user from recording 1:1 calls. - - Boolean - - Boolean - - - None - - - AllowDelegation - - > Applicable: Microsoft Teams - Enables the user to configure delegation in the Microsoft Teams client and that inbound calls to be routed to delegates; allows delegates to make outbound calls on behalf of the users for whom they have delegated permissions. - - Boolean - - Boolean - - - None - - - AllowPrivateCalling - - > Applicable: Microsoft Teams - Controls all calling capabilities in Teams. Turning this off will turn off all calling functionality in Teams. If you use Skype for Business for calling, this policy will not affect calling functionality in Skype for Business. - - Boolean - - Boolean - - - None - - - AllowSIPDevicesCalling - - > Applicable: Microsoft Teams - Determines whether the user is allowed to use a SIP device for calling on behalf of a Teams client. - - Boolean - - Boolean - - - None - - - AllowTranscriptionForCalling - - > Applicable: Microsoft Teams - Determines whether post-call transcriptions are allowed. Set this to True to allow. Set this to False to prohibit. - - Boolean - - Boolean - - - None - - - AllowVoicemail - - > Applicable: Microsoft Teams - Enables inbound calls to be routed to voicemail. - Valid options are: - - AlwaysEnabled: Calls are always forwarded to voicemail on unanswered after ringing for thirty seconds, regardless of the unanswered call forward setting for the user. - - AlwaysDisabled: Calls are never routed to voicemail, regardless of the call forward or unanswered settings for the user. Voicemail isn't available as a call forwarding or unanswered setting in Teams. - - UserOverride: Calls are forwarded to voicemail based on the call forwarding and/or unanswered settings for the user. - - String - - String - - - None - - - AllowWebPSTNCalling - - > Applicable: Microsoft Teams - Allows PSTN calling from the Team web client. - - Object - - Object - - - None - - - AutoAnswerEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to enable or disable auto-answer for incoming meeting invites on Teams Phones. This setting applies only to incoming meeting invites and does not include support for other call types. - Valid options are: - - Enabled: Auto-answer is enabled. - - Disabled: Auto-answer is disabled. This is the default setting. - - String - - String - - - Disabled - - - BusyOnBusyEnabledType - - > Applicable: Microsoft Teams - Setting this parameter lets you configure how incoming calls are handled when a user is already in a call or conference or has a call placed on hold. - Valid options are: - - Enabled: New or incoming calls will be rejected with a busy signal. - - Unanswered: The user's unanswered settings will take effect, such as routing to voicemail or forwarding to another user. - - Disabled: New or incoming calls will be presented to the user. - - UserOverride: Users can set their busy options directly from call settings in Teams app. - - String - - String - - - None - - - CallingSpendUserLimit - - > Applicable: Microsoft Teams - The maximum amount a user can spend on outgoing PSTN calls, including all calls made through Pay-as-you-go Calling Plans and any overages on plans with bundled minutes. - Possible values: any positive integer - - Long - - Long - - - None - - - CallRecordingExpirationDays - - > Applicable: Microsoft Teams - Sets the expiration of the recorded 1:1 calls. Default is 60 days. - - Long - - Long - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Copilot - - > Applicable: Microsoft Teams - Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call. - Valid options are: - Enabled: Copilot can work with or without transcription during calls. This is the default value. - - EnabledWithTranscript: Copilot will only work when transcription is enabled during calls. - - Disabled: Copilot is disabled for calls. - - String - - String - - - Enabled - - - Description - - > Applicable: Microsoft Teams - Enables administrators to provide explanatory text about the calling policy. For example, the Description might indicate the users to whom the policy should be assigned. - - String - - String - - - None - - - EnableSpendLimits - - > Applicable: Microsoft Teams - This setting allows an admin to enable or disable spend limits on PSTN calls for their user base. - Possible values: - - True - - False - - Boolean - - Boolean - - - False - - - EnableWebPstnMediaBypass - - Determines if MediaBypass is enabled for PSTN calls on specified Web platforms. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InboundFederatedCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound federated calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound federated call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - - Voicemail: The inbound federated call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - InboundPstnCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound PSTN calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound PSTN call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound PSTN call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - UserOverride: For now, setting the value to UserOverride is the same as RegularIncoming. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - LiveCaptionsEnabledTypeForCalling - - > Applicable: Microsoft Teams - Determines whether real-time captions are available for the user in Teams calls. - Valid options are: - - DisabledUserOverride: Allows the user to turn on live captions. - - Disabled: Prohibits the user from turning on live captions. - - String - - String - - - None - - - MusicOnHoldEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to turn on or turn off the music on hold when a caller is placed on hold. - Valid options are: - - Enabled: Music on hold is enabled. This is the default. - - Disabled: Music on hold is disabled. - - UserOverride: For now, setting the value to UserOverride is the same as Enabled. - - String - - String - - - Enabled - - - PopoutAppPathForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to set the PopoutForIncomingPstnCalls setting's URL path of the website to launch upon receiving incoming PSTN calls. This parameter accepts an HTTPS URL with less than 1024 characters. The URL can contain a `{phone}` placeholder that is replaced with the caller's PSTN number in E.164 format when launched. - - String - - String - - - "" - - - PopoutForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to control the tenant users' ability to launch an external website URL automatically in the browser window upon incoming PSTN calls for specific users or user groups. Valid options are Enabled and Disabled. - - String - - String - - - Disabled - - - PreventTollBypass - - > Applicable: Microsoft Teams - Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - > [!NOTE] > Do not set this parameter to True for Calling Plan or Operator Connect users as it will prevent successful call routing. This setting only works with Direct Routing which is configured to handle location-based routing restrictions. - - Boolean - - Boolean - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a call, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - SpamFilteringEnabledType - - > Applicable: Microsoft Teams - Determines Spam filtering mode. - Possible values: - - Enabled: Spam detection is enabled. In case the inbound call is considered spam, the user will get a "Spam Likely" label in Teams. - - Disabled: Spam Filtering is completely disabled. No checks are performed. A "Spam Likely" notification will not appear. - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - This setting controls whether users must provide or obtain explicit consent before recording a 1:1 PSTN or Teams call. When enabled, both parties will receive a notification, and consent must be given before recording starts. - Possible values: - - Enabled : Requires users to give and obtain explicit consent before starting a call recording. - Disabled : Users are not required to obtain explicit consent before recording starts. - - String - - String - - - Disabled - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams calls. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription calling message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - AIInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features. - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowCallForwardingToPhone - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number. - - Boolean - - Boolean - - - None - - - AllowCallForwardingToUser - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to other users in your tenant. - - Boolean - - Boolean - - - None - - - AllowCallGroups - - > Applicable: Microsoft Teams - Enables the user to configure call groups in the Microsoft Teams client and that inbound calls should be routed to call groups. - - Boolean - - Boolean - - - None - - - AllowCallRedirect - - > Applicable: Microsoft Teams - Setting this parameter enables local call redirection for SIP devices connecting via the Microsoft Teams SIP gateway. - Valid options are: - Enabled: Enables the user to redirect an incoming call. - - Disabled: The user is not enabled to redirect an incoming call. - - - UserOverride: This option is not available for use. - - String - - String - - - None - - - AllowCloudRecordingForCalls - - > Applicable: Microsoft Teams - Determines whether cloud recording is allowed in a user's 1:1 Teams or PSTN calls. Set this to True to allow the user to be able to record 1:1 calls. Set this to False to prohibit the user from recording 1:1 calls. - - Boolean - - Boolean - - - None - - - AllowDelegation - - > Applicable: Microsoft Teams - Enables the user to configure delegation in the Microsoft Teams client and that inbound calls to be routed to delegates; allows delegates to make outbound calls on behalf of the users for whom they have delegated permissions. - - Boolean - - Boolean - - - None - - - AllowPrivateCalling - - > Applicable: Microsoft Teams - Controls all calling capabilities in Teams. Turning this off will turn off all calling functionality in Teams. If you use Skype for Business for calling, this policy will not affect calling functionality in Skype for Business. - - Boolean - - Boolean - - - None - - - AllowSIPDevicesCalling - - > Applicable: Microsoft Teams - Determines whether the user is allowed to use a SIP device for calling on behalf of a Teams client. - - Boolean - - Boolean - - - None - - - AllowTranscriptionForCalling - - > Applicable: Microsoft Teams - Determines whether post-call transcriptions are allowed. Set this to True to allow. Set this to False to prohibit. - - Boolean - - Boolean - - - None - - - AllowVoicemail - - > Applicable: Microsoft Teams - Enables inbound calls to be routed to voicemail. - Valid options are: - - AlwaysEnabled: Calls are always forwarded to voicemail on unanswered after ringing for thirty seconds, regardless of the unanswered call forward setting for the user. - - AlwaysDisabled: Calls are never routed to voicemail, regardless of the call forward or unanswered settings for the user. Voicemail isn't available as a call forwarding or unanswered setting in Teams. - - UserOverride: Calls are forwarded to voicemail based on the call forwarding and/or unanswered settings for the user. - - String - - String - - - None - - - AllowWebPSTNCalling - - > Applicable: Microsoft Teams - Allows PSTN calling from the Team web client. - - Object - - Object - - - None - - - AutoAnswerEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to enable or disable auto-answer for incoming meeting invites on Teams Phones. This setting applies only to incoming meeting invites and does not include support for other call types. - Valid options are: - - Enabled: Auto-answer is enabled. - - Disabled: Auto-answer is disabled. This is the default setting. - - String - - String - - - Disabled - - - BusyOnBusyEnabledType - - > Applicable: Microsoft Teams - Setting this parameter lets you configure how incoming calls are handled when a user is already in a call or conference or has a call placed on hold. - Valid options are: - - Enabled: New or incoming calls will be rejected with a busy signal. - - Unanswered: The user's unanswered settings will take effect, such as routing to voicemail or forwarding to another user. - - Disabled: New or incoming calls will be presented to the user. - - UserOverride: Users can set their busy options directly from call settings in Teams app. - - String - - String - - - None - - - CallingSpendUserLimit - - > Applicable: Microsoft Teams - The maximum amount a user can spend on outgoing PSTN calls, including all calls made through Pay-as-you-go Calling Plans and any overages on plans with bundled minutes. - Possible values: any positive integer - - Long - - Long - - - None - - - CallRecordingExpirationDays - - > Applicable: Microsoft Teams - Sets the expiration of the recorded 1:1 calls. Default is 60 days. - - Long - - Long - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Copilot - - > Applicable: Microsoft Teams - Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call. - Valid options are: - Enabled: Copilot can work with or without transcription during calls. This is the default value. - - EnabledWithTranscript: Copilot will only work when transcription is enabled during calls. - - Disabled: Copilot is disabled for calls. - - String - - String - - - Enabled - - - Description - - > Applicable: Microsoft Teams - Enables administrators to provide explanatory text about the calling policy. For example, the Description might indicate the users to whom the policy should be assigned. - - String - - String - - - None - - - EnableSpendLimits - - > Applicable: Microsoft Teams - This setting allows an admin to enable or disable spend limits on PSTN calls for their user base. - Possible values: - - True - - False - - Boolean - - Boolean - - - False - - - EnableWebPstnMediaBypass - - Determines if MediaBypass is enabled for PSTN calls on specified Web platforms. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - InboundFederatedCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound federated calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound federated call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - - Voicemail: The inbound federated call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - InboundPstnCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound PSTN calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound PSTN call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound PSTN call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - UserOverride: For now, setting the value to UserOverride is the same as RegularIncoming. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - LiveCaptionsEnabledTypeForCalling - - > Applicable: Microsoft Teams - Determines whether real-time captions are available for the user in Teams calls. - Valid options are: - - DisabledUserOverride: Allows the user to turn on live captions. - - Disabled: Prohibits the user from turning on live captions. - - String - - String - - - None - - - MusicOnHoldEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to turn on or turn off the music on hold when a caller is placed on hold. - Valid options are: - - Enabled: Music on hold is enabled. This is the default. - - Disabled: Music on hold is disabled. - - UserOverride: For now, setting the value to UserOverride is the same as Enabled. - - String - - String - - - Enabled - - - PopoutAppPathForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to set the PopoutForIncomingPstnCalls setting's URL path of the website to launch upon receiving incoming PSTN calls. This parameter accepts an HTTPS URL with less than 1024 characters. The URL can contain a `{phone}` placeholder that is replaced with the caller's PSTN number in E.164 format when launched. - - String - - String - - - "" - - - PopoutForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to control the tenant users' ability to launch an external website URL automatically in the browser window upon incoming PSTN calls for specific users or user groups. Valid options are Enabled and Disabled. - - String - - String - - - Disabled - - - PreventTollBypass - - > Applicable: Microsoft Teams - Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - > [!NOTE] > Do not set this parameter to True for Calling Plan or Operator Connect users as it will prevent successful call routing. This setting only works with Direct Routing which is configured to handle location-based routing restrictions. - - Boolean - - Boolean - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a call, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - SpamFilteringEnabledType - - > Applicable: Microsoft Teams - Determines Spam filtering mode. - Possible values: - - Enabled: Spam detection is enabled. In case the inbound call is considered spam, the user will get a "Spam Likely" label in Teams. - - Disabled: Spam Filtering is completely disabled. No checks are performed. A "Spam Likely" notification will not appear. - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - This setting controls whether users must provide or obtain explicit consent before recording a 1:1 PSTN or Teams call. When enabled, both parties will receive a notification, and consent must be given before recording starts. - Possible values: - - Enabled : Requires users to give and obtain explicit consent before starting a call recording. - Disabled : Users are not required to obtain explicit consent before recording starts. - - String - - String - - - Disabled - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams calls. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription calling message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCallingPolicy -Identity Sales -AllowPrivateCalling $false - - The cmdlet create the policy instance Sales and sets the value of the parameter AllowPrivateCalling to False. The rest of the parameters are set to the corresponding values in the Global policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallingpolicy - - - Get-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallingpolicy - - - Remove-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallingpolicy - - - Grant-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallingpolicy - - - Set-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallingpolicy - - - - - - New-CsTeamsCallParkPolicy - New - CsTeamsCallParkPolicy - - The New-CsTeamsCallParkPolicy cmdlet lets you create a new custom policy that can then be assigned to one or more specific users. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: The call park feature currently available in desktop. mobile and web clients. Supported with TeamsOnly mode. - - - - New-CsTeamsCallParkPolicy - - Identity - - A unique identifier for the policy - this will be used to retrieve the policy later on to assign it to specific users. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier for the policy - this will be used to retrieve the policy later on to assign it to specific users. - - XdsIdentity - - XdsIdentity - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true - - Create a new custom policy that has call park enabled. This policy can then be assigned to individual users. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -PickupRangeStart 500 -PickupRangeEnd 1500 - - Create a new custom policy that has call park enabled. This policy will generate pickup numbers starting from 500 and up until 1500. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -ParkTimeoutSeconds 600 - - Create a new custom call park policy which will ring back the parker after 600 seconds if the parked call is unanswered - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallparkpolicy - - - - - - New-CsTeamsChannelsPolicy - New - CsTeamsChannelsPolicy - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - This cmdlet allows you to create new policies of this type, which can later be assigned to specific users. - - - - New-CsTeamsChannelsPolicy - - Identity - - Specify the name of the policy that you are creating. - - String - - String - - - None - - - AllowChannelSharingToExternalUser - - Owners of a shared channel can invite external users to join the channel if Microsoft Entra external sharing policies are configured. If the channel has been shared with an external member or team, they will continue to have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - AllowOrgWideTeamCreation - - Determines whether a user is allowed to create an org-wide team. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateChannelCreation - - Determines whether a user is allowed to create a private channel. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSharedChannelCreation - - Team owners can create shared channels for people within and outside the organization. Only people added to the shared channel can read and write messages. - - Boolean - - Boolean - - - None - - - AllowUserToParticipateInExternalSharedChannel - - Users and teams can be invited to external shared channels if Microsoft Entra external sharing policies are configured. If a team in your organization is part of an external shared channel, new team members will have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - EnablePrivateTeamDiscovery - - Determines whether a user is allowed to discover private teams in suggestions and search results. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Force - - Bypasses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - ThreadedChannelCreation - - > [!NOTE] > This parameter is reserved for internal Microsoft use. - This setting enables/disables Threaded Channel creation and editing. - Possible Values: - Enabled: Users are allowed to create and edit Threaded Channels. - - Disabled: Users are not allowed to create and edit Threaded Channels. - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowChannelSharingToExternalUser - - Owners of a shared channel can invite external users to join the channel if Microsoft Entra external sharing policies are configured. If the channel has been shared with an external member or team, they will continue to have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - AllowOrgWideTeamCreation - - Determines whether a user is allowed to create an org-wide team. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateChannelCreation - - Determines whether a user is allowed to create a private channel. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSharedChannelCreation - - Team owners can create shared channels for people within and outside the organization. Only people added to the shared channel can read and write messages. - - Boolean - - Boolean - - - None - - - AllowUserToParticipateInExternalSharedChannel - - Users and teams can be invited to external shared channels if Microsoft Entra external sharing policies are configured. If a team in your organization is part of an external shared channel, new team members will have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - EnablePrivateTeamDiscovery - - Determines whether a user is allowed to discover private teams in suggestions and search results. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Force - - Bypasses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating. - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - ThreadedChannelCreation - - > [!NOTE] > This parameter is reserved for internal Microsoft use. - This setting enables/disables Threaded Channel creation and editing. - Possible Values: - Enabled: Users are allowed to create and edit Threaded Channels. - - Disabled: Users are not allowed to create and edit Threaded Channels. - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsChannelsPolicy -Identity StudentPolicy -EnablePrivateTeamDiscovery $false - - This example shows creating a new policy with name "StudentPolicy" where Private Team Discovery is disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamschannelspolicy - - - Set-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamschannelspolicy - - - Remove-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamschannelspolicy - - - Grant-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamschannelspolicy - - - Get-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamschannelspolicy - - - - - - New-CsTeamsComplianceRecordingApplication - New - CsTeamsComplianceRecordingApplication - - Creates a new association between an application instance of a policy-based recording application and a Teams recording policy for administering automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Policy-based recording applications are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy. - Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. Please also refer to the documentation of CsTeamsComplianceRecordingPolicy cmdlets for further information. - - - - New-CsTeamsComplianceRecordingApplication - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Id - - The ObjectId of the application instance of a policy-based recording application as exposed by the Get-CsOnlineApplicationInstance cmdlet. For example, the Id of an application instance can be \"39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance has ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Parent - - The Identity of the Teams recording policy that this application instance of a policy-based recording application is associated with. For example, the Parent of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy\", which indicates that the application instance is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - String - - String - - - None - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsComplianceRecordingApplication - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Id - - The ObjectId of the application instance of a policy-based recording application as exposed by the Get-CsOnlineApplicationInstance cmdlet. For example, the Id of an application instance can be \"39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance has ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. - - String - - String - - - None - - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Parent - - The Identity of the Teams recording policy that this application instance of a policy-based recording application is associated with. For example, the Parent of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy\", which indicates that the application instance is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - String - - String - - - None - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' - - The command shown in Example 1 creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Parent 'Tag:ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899' - - The command shown in Example 2 is a variation of Example 1. It also creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy, but it does this by using the Parent and Id parameters instead of the Identity parameter. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Parent 'Tag:ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899' -RequiredBeforeMeetingJoin $false -RequiredDuringMeeting $false - - The command shown in Example 3 creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is deemed optional for meetings but mandatory for calls. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredDuringMeeting parameters for more information. - - - - -------------------------- Example 4 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Parent 'Tag:ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899' -RequiredBeforeCallEstablishment $false -RequiredDuringCall $false - - The command shown in Example 4 creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is deemed optional for calls but mandatory for meetings. Please refer to the documentation of the RequiredBeforeCallEstablishment and RequiredDuringCall parameters for more information. - - - - -------------------------- Example 5 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Parent 'Tag:ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899' -ConcurrentInvitationCount 2 - - The command shown in Example 5 creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made resilient by specifying that two invites must be sent to the same application for the same call or meeting. Please refer to the documentation of the ConcurrentInvitationCount parameter for more information. - - - - -------------------------- Example 6 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingApplication -Parent 'Tag:ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899' -ComplianceRecordingPairedApplications @(New-CsTeamsComplianceRecordingPairedApplication -Id '39dc3ede-c80e-4f19-9153-417a65a1f144') - - The command shown in Example 6 creates a new association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made resilient by pairing it with another application instance of a policy-based recording application with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. Separate invites are sent to the paired applications for the same call or meeting. Please refer to the documentation of the ComplianceRecordingPairedApplications parameter for more information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - New-CsTeamsComplianceRecordingPairedApplication - New - CsTeamsComplianceRecordingPairedApplication - - Creates a new association between multiple application instances of policy-based recording applications to achieve application resiliency in automatic policy-based recording scenarios. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Policy-based recording applications are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy. - Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application, to determine if application resiliency is needed for your workflows, and how best to achieve application resiliency. Please also refer to the documentation of CsTeamsComplianceRecordingApplication cmdlets for further information. - - - - New-CsTeamsComplianceRecordingPairedApplication - - Id - - The ObjectId of the application instance of a policy-based recording application as exposed by the Get-CsOnlineApplicationInstance cmdlet. For example, the Id of an application instance can be \"39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance has ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. - - String - - String - - - None - - - - - - Id - - The ObjectId of the application instance of a policy-based recording application as exposed by the Get-CsOnlineApplicationInstance cmdlet. For example, the Id of an application instance can be \"39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance has ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingPairedApplication -Id '39dc3ede-c80e-4f19-9153-417a65a1f144' - - The command shown in Example 1 creates an in-memory instance of an application instance of a policy-based recording application that can be associated with other such application instances to achieve application resiliency. - Note that this cmdlet is only used in conjunction with New-CsTeamsComplianceRecordingApplication and Set-CsTeamsComplianceRecordingApplication to create associations between multiple application instances of policy-based recording applications. Please refer to the documentation of CsTeamsComplianceRecordingApplication cmdlets for examples and further information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - - - - New-CsTeamsComplianceRecordingPolicy - New - CsTeamsComplianceRecordingPolicy - - Creates a new Teams recording policy for governing automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - New-CsTeamsComplianceRecordingPolicy - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - ComplianceRecordingApplications - - A list of application instances of policy-based recording applications to assign to this policy. The Id of each of these application instances must be the ObjectId of the application instance as obtained by the Get-CsOnlineApplicationInstance cmdlet. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - - ComplianceRecordingApplication[] - - ComplianceRecordingApplication[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CustomBanner - - References the Custom Banner text in the storage. - - Guid - - Guid - - - None - - - CustomPromptsEnabled - - Indicates whether compliance recording custom prompts feature is enabled for this tenant / user. - - Boolean - - Boolean - - - None - - - CustomPromptsPackageId - - Reference to custom prompts package. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams recording policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording. - - Boolean - - Boolean - - - False - - - Enabled - - Controls whether this Teams recording policy is active or not. - Setting this to True and having the right set of ComplianceRecordingApplications will initiate automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - Setting this to False will stop automatic policy-based recording for any new calls or meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - RecordReroutedCalls - - Setting this attribute to true enables compliance recording for calls that have been re-routed from a compliance recording-enabled user. Supported call scenarios include forward, transfer, delegation, call groups, and simultaneous ring. - - Boolean - - Boolean - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WarnUserOnRemoval - - This parameter is reserved for future use. - - Boolean - - Boolean - - - True - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ComplianceRecordingApplications - - A list of application instances of policy-based recording applications to assign to this policy. The Id of each of these application instances must be the ObjectId of the application instance as obtained by the Get-CsOnlineApplicationInstance cmdlet. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - - ComplianceRecordingApplication[] - - ComplianceRecordingApplication[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CustomBanner - - References the Custom Banner text in the storage. - - Guid - - Guid - - - None - - - CustomPromptsEnabled - - Indicates whether compliance recording custom prompts feature is enabled for this tenant / user. - - Boolean - - Boolean - - - None - - - CustomPromptsPackageId - - Reference to custom prompts package. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams recording policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording. - - Boolean - - Boolean - - - False - - - Enabled - - Controls whether this Teams recording policy is active or not. - Setting this to True and having the right set of ComplianceRecordingApplications will initiate automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - Setting this to False will stop automatic policy-based recording for any new calls or meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - RecordReroutedCalls - - Setting this attribute to true enables compliance recording for calls that have been re-routed from a compliance recording-enabled user. Supported call scenarios include forward, transfer, delegation, call groups, and simultaneous ring. - - Boolean - - Boolean - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WarnUserOnRemoval - - This parameter is reserved for future use. - - Boolean - - Boolean - - - True - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -Enabled $true -ComplianceRecordingApplications @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899') - - The command shown in Example 1 creates a new per-user Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. This policy is assigned a single application instance of a policy-based recording application: d93fefc7-93cc-4d44-9a5d-344b0fff2899, which is the ObjectId of the application instance as obtained from the Get-CsOnlineApplicationInstance cmdlet. - Any Microsoft Teams users who are assigned this policy will have their calls and meetings recorded by that application instance. Existing calls and meetings are unaffected. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -Enabled $true -ComplianceRecordingApplications @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899'), @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id '39dc3ede-c80e-4f19-9153-417a65a1f144') - - Example 2 is a variation of Example 1. In this case, the Teams recording policy is assigned two application instances of policy-based recording applications. - Any Microsoft Teams users who are assigned this policy will have their calls and meetings recorded by both those application instances. Existing calls and meetings are unaffected. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - New-CsTeamsCortanaPolicy - New - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - This cmdlet creates a new Teams Cortana policy. Custom policies can then be assigned to users using the Grant-CsTeamsCortanaPolicy cmdlet. - - - - New-CsTeamsCortanaPolicy - - Identity - - Unique identifier for Teams cortana policy you're creating. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for Teams cortana policy you're creating. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCortanaPolicy -Identity MyCortanaPolicy -CortanaVoiceInvocationMode PushToTalkUserOverride - - In this example, a new Teams Cortana Policy is created. Cortana voice invocation mode is set to 'push to talk' i.e. Cortana in Teams can be invoked by tapping on the Cortana mic button only. Wake word ("Hey Cortana") invocation is not allowed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - New-CsTeamsCustomBannerText - New - CsTeamsCustomBannerText - - Enables administrators to configure a custom text on the banner displayed when compliance recording bots start recording the call. - - - - Creates a single instance of a custom banner text. - - - - New-CsTeamsCustomBannerText - - Id - - > Applicable: Microsoft Teams - The Identity of the CustomBannerText. You do not need to provide an ID as the backend will generate it for you. However, if you wish to provide your own ID, you can provide your own GUID. Note that you have to provide a unique ID for every CsTeamsCustomBannerText you create. - - Guid - - Guid - - - None - - - Description - - The description that the global admin would like to set to identify what this text represents. - - String - - String - - - None - - - Text - - The text that the global admin would like to set in the policy. - - String - - String - - - None - - - - - - Description - - The description that the global admin would like to set to identify what this text represents. - - String - - String - - - None - - - Id - - > Applicable: Microsoft Teams - The Identity of the CustomBannerText. You do not need to provide an ID as the backend will generate it for you. However, if you wish to provide your own ID, you can provide your own GUID. Note that you have to provide a unique ID for every CsTeamsCustomBannerText you create. - - Guid - - Guid - - - None - - - Text - - The text that the global admin would like to set in the policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCustomBannerText -Id 123e4567-e89b-12d3-a456-426614174000 -Description "Custom Banner Text Example" -Text "Custom Text" - - This example creates an instance of TeamsCustomBannerText with the name CustomText. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscustombannertext - - - Set-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscustombannertext - - - New-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscustombannertext - - - Remove-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscustombannertext - - - - - - New-CsTeamsEmergencyCallingExtendedNotification - New - CsTeamsEmergencyCallingExtendedNotification - - - - - - This cmdlet supports creating specific emergency calling notification settings per emergency phone number. It is used with TeamsEmergencyCallingPolicy. - - - - New-CsTeamsEmergencyCallingExtendedNotification - - EmergencyDialString - - Specifies the emergency phone number. - - String - - String - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 entries consisting of users and/or groups can be added to the NotificationGroup. The total number of users notified cannot exceed 50. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. - - - NotificationOnly - ConferenceMuted - ConferenceUnMuted - - Microsoft.Rtc.Management.WritableConfig.Policy.Teams.NotificationMode - - Microsoft.Rtc.Management.WritableConfig.Policy.Teams.NotificationMode - - - None - - - - - - EmergencyDialString - - Specifies the emergency phone number. - - String - - String - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 entries consisting of users and/or groups can be added to the NotificationGroup. The total number of users notified cannot exceed 50. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. - - Microsoft.Rtc.Management.WritableConfig.Policy.Teams.NotificationMode - - Microsoft.Rtc.Management.WritableConfig.Policy.Teams.NotificationMode - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $en1 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "911" -NotificationGroup "alert2@contoso.com" -NotificationMode ConferenceUnMuted - - Creates an extended emergency calling notification for the emergency phone number 911 and stores it in the variable $en1. The variable should be added afterward to a TeamsEmergencyCallingPolicy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingextendednotification - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - - - - New-CsTeamsEmergencyCallingPolicy - New - CsTeamsEmergencyCallingPolicy - - - - - - This cmdlet creates a new Teams Emergency Calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. - - - - New-CsTeamsEmergencyCallingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Calling policy - what it is for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EnhancedEmergencyServiceDisclaimer - - Allows the tenant administrator to configure a text string, which is shown at the top of the Calls app. The user can acknowledge the string by selecting OK. The string will be shown on client restart. The disclaimer can be up to 350 characters. - - String - - String - - - None - - - ExtendedNotifications - - A list of one or more instances of TeamsEmergencyCallingExtendedNotification. Each TeamsEmergencyCallingExtendedNotification should use a unique EmergencyDialString. - If an extended notification is found for an emergency phone number based on the EmergencyDialString parameter the extended notification will be controlling the notification. If no extended notification is found the notification settings on the policy instance itself will be used. - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - - None - - - ExternalLocationLookupMode - - Enable ExternalLocationLookupMode. This mode allow users to set Emergency addresses for remote locations. - - - Disabled - Enabled - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. Possible values are NotificationOnly, ConferenceMuted, and ConferenceUnMuted. - - - NotificationOnly - ConferenceMuted - ConferenceUnMuted - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Calling policy - what it is for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EnhancedEmergencyServiceDisclaimer - - Allows the tenant administrator to configure a text string, which is shown at the top of the Calls app. The user can acknowledge the string by selecting OK. The string will be shown on client restart. The disclaimer can be up to 350 characters. - - String - - String - - - None - - - ExtendedNotifications - - A list of one or more instances of TeamsEmergencyCallingExtendedNotification. Each TeamsEmergencyCallingExtendedNotification should use a unique EmergencyDialString. - If an extended notification is found for an emergency phone number based on the EmergencyDialString parameter the extended notification will be controlling the notification. If no extended notification is found the notification settings on the policy instance itself will be used. - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - - None - - - ExternalLocationLookupMode - - Enable ExternalLocationLookupMode. This mode allow users to set Emergency addresses for remote locations. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy - - String - - String - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. Possible values are NotificationOnly, ConferenceMuted, and ConferenceUnMuted. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------- Emergency calling policy Example 1 -------------- - $en1 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "933" -New-CsTeamsEmergencyCallingPolicy -Identity ECP1 -Description "Test ECP1" -NotificationGroup "alert@contoso.com" -NotificationDialOutNumber "+14255551234" -NotificationMode ConferenceUnMuted -ExternalLocationLookupMode Enabled -ExtendedNotifications @{add=$en1} - - - - - - -------------- Emergency calling policy Example 2 -------------- - $en1 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "911" -NotificationGroup "alert@contoso.com;567@contoso.com" -NotificationDialOutNumber "+14255551234" -NotificationMode ConferenceUnMuted -$en2 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "933" -New-CsTeamsEmergencyCallingPolicy -Identity ECP2 -Description "Test ECP2" -ExternalLocationLookupMode Enabled -ExtendedNotifications @{add=$en1,$en2} - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Get-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - Grant-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - Remove-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingExtendedNotification - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingextendednotification - - - - - - New-CsTeamsEmergencyCallRoutingPolicy - New - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency number. - - - - This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency numbers. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - New-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -New-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$en1} -AllowEnhancedEmergencyServices:$true -Description "test" - - This example first creates a new Teams emergency number object and then creates a Teams Emergency Call Routing policy with this emergency number object. Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used. Note that {@add=....} will try to append a new emergency number to the values taken from the global instance. - - - - -------------------------- Example 2 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -EmergencyNumbers $en1 -AllowEnhancedEmergencyServices:$true -Description "test" - - This example overrides the global emergency numbers from the global instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - - - - New-CsTeamsEmergencyNumber - New - CsTeamsEmergencyNumber - - - - - - This cmdlet supports creating multiple Teams emergency numbers. Used with TeamsEmergencyCallRoutingPolicy and only relevant for Direct Routing. - - - - New-CsTeamsEmergencyNumber - - EmergencyDialMask - - For each Teams emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. Dial mask must be list of numbers separated by semicolon. Each number string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyDialString - - Specifies the emergency phone number - - String - - String - - - None - - - OnlinePSTNUsage - - Specify the online public switched telephone network (PSTN) usage - - String - - String - - - None - - - - - - EmergencyDialMask - - For each Teams emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. Dial mask must be list of numbers separated by semicolon. Each number string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyDialString - - Specifies the emergency phone number - - String - - String - - - None - - - OnlinePSTNUsage - - Specify the online public switched telephone network (PSTN) usage - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsEmergencyNumber -EmergencyDialString 911 -EmergencyDialMask 933 -OnlinePSTNUsage "US911" - - Create a new Teams emergency number - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "117;897" -OnlinePSTNUsage "EU112" - - Create a new Teams emergency number with multiple emergency dial masks. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - - - - New-CsTeamsEnhancedEncryptionPolicy - New - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to create a new Teams enhanced encryption policy. - - - - Use this cmdlet to create a new Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - New-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling Set-CsTeamsEnhancedEncryptionPolicy. - - - SwitchParameter - - - False - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling Set-CsTeamsEnhancedEncryptionPolicy. - - SwitchParameter - - SwitchParameter - - - False - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy - - Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTeamsEnhancedEncryptionPolicy and applies the default values to its settings. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy -CallingEndtoEndEncryptionEnabledType DisabledUserOverride -MeetingEndToEndEncryption DisabledUserOverride - - Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTeamsEnhancedEncryptionPolicy and applies the provided values to its settings. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - New-CsTeamsEventsPolicy - New - CsTeamsEventsPolicy - - This cmdlet allows you to create a new TeamsEventsPolicy instance and set its properties. Note that this policy is currently still in preview. - - - - TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - New-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting governs which types of town halls can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting governs which types of webinars can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - Enabled - - - AllowEventIntegrations - - This setting governs the access to the integrations tab in the event creation workflow. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town hall. - - String - - String - - - Enabled - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - Enabled - - - BroadcastPremiumApps - - This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Possible values are: - Enabled : An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall - Disabled : An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - This setting governs which users can access the Town hall event and access the event registration page or the event site to register for a Webinar. It also governs which user type is allowed to join the session or sessions in the event for both event types. - Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - - EveryoneInCompanyExcludingGuests : For Webinar - enables creating events to allow only in-tenant users to register and join the event. For Town hall - enables creating events to allow only in-tenant users to join the event (Note: for Town hall, in-tenant users include guests; this parameter will disable public Town halls). - - String - - String - - - Everyone - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs if the user can enable the Comment Stream chat experience for Townhalls. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - String - - String - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting governs which types of town halls can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting governs which types of webinars can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - Enabled - - - AllowEventIntegrations - - This setting governs the access to the integrations tab in the event creation workflow. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town hall. - - String - - String - - - Enabled - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - Enabled - - - BroadcastPremiumApps - - This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Possible values are: - Enabled : An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall - Disabled : An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - This setting governs which users can access the Town hall event and access the event registration page or the event site to register for a Webinar. It also governs which user type is allowed to join the session or sessions in the event for both event types. - Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - - EveryoneInCompanyExcludingGuests : For Webinar - enables creating events to allow only in-tenant users to register and join the event. For Town hall - enables creating events to allow only in-tenant users to join the event (Note: for Town hall, in-tenant users include guests; this parameter will disable public Town halls). - - String - - String - - - Everyone - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs if the user can enable the Comment Stream chat experience for Townhalls. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - String - - String - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsEventsPolicy -Identity DisablePublicWebinars -AllowWebinars Enabled -EventAccessType EveryoneInCompanyExcludingGuests - - The command shown in Example 1 creates a new per-user Teams Events policy with the Identity DisablePublicWebinars. This policy disables a user from creating public webinars. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsEventsPolicy -Identity DisableWebinars -AllowWebinars Disabled - - The command shown in Example 2 creates a new per-user Teams Events policy with the Identity DisableWebinars. This policy disables a user from creating webinars. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamseventspolicy - - - - - - New-CsTeamsFeedbackPolicy - New - CsTeamsFeedbackPolicy - - Use this cmdlet to control whether users in your organization can send feedback about Teams to Microsoft through Give feedback and whether they receive the survey. - - - - Use this cmdlet to control whether users in your organization can send feedback about Teams to Microsoft through Give feedback and whether they receive the survey. By default, all users in your organization are automatically assigned the global (Org-wide default) policy and the Give feedback feature and survey are enabled in the policy. The exception is Teams for Education, where the features are enabled for teachers and disabled for students. For more information, visit Manage feedback policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-feedback-policies-in-teams). - - - - New-CsTeamsFeedbackPolicy - - Identity - - A unique identifier. - - Object - - Object - - - None - - - AllowEmailCollection - - Set this to TRUE to enable Email collection. - - Boolean - - Boolean - - - None - - - AllowLogCollection - - Set this to TRUE to enable log collection. - - Boolean - - Boolean - - - None - - - AllowScreenshotCollection - - Set this to TRUE to enable Screenshot collection. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableFeatureSuggestions - - This setting will enable Tenant Admins to hide or show the Teams menu item “Help | Suggest a Feature”. - - Boolean - - Boolean - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - The InMemory parameter creates an object reference without actually committing the object as a permanent change. - - - SwitchParameter - - - False - - - ReceiveSurveysMode - - Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey. - Possible values: - Enabled - Disabled - EnabledUserOverride - - String - - String - - - Enabled - - - Tenant - - Internal Microsoft use only. - - Object - - Object - - - None - - - UserInitiatedMode - - Set the userInitiatedMode parameter to enabled to allow users who are assigned the policy to give feedback. Setting the parameter to disabled turns off the feature and users who are assigned the policy don't have the option to give feedback. - Possible values: - Enabled - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEmailCollection - - Set this to TRUE to enable Email collection. - - Boolean - - Boolean - - - None - - - AllowLogCollection - - Set this to TRUE to enable log collection. - - Boolean - - Boolean - - - None - - - AllowScreenshotCollection - - Set this to TRUE to enable Screenshot collection. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableFeatureSuggestions - - This setting will enable Tenant Admins to hide or show the Teams menu item “Help | Suggest a Feature”. - - Boolean - - Boolean - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier. - - Object - - Object - - - None - - - InMemory - - The InMemory parameter creates an object reference without actually committing the object as a permanent change. - - SwitchParameter - - SwitchParameter - - - False - - - ReceiveSurveysMode - - Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey. - Possible values: - Enabled - Disabled - EnabledUserOverride - - String - - String - - - Enabled - - - Tenant - - Internal Microsoft use only. - - Object - - Object - - - None - - - UserInitiatedMode - - Set the userInitiatedMode parameter to enabled to allow users who are assigned the policy to give feedback. Setting the parameter to disabled turns off the feature and users who are assigned the policy don't have the option to give feedback. - Possible values: - Enabled - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsFeedbackPolicy -identity "New Hire Feedback Policy" -userInitiatedMode disabled -receiveSurveysMode disabled - - In this example, we create a feedback policy called New Hire Feedback Policy and we turn off the ability to give feedback through Give feedback and the survey. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsfeedbackpolicy - - - - - - New-CsTeamsFilesPolicy - New - CsTeamsFilesPolicy - - Creates a new teams files policy. - - - - If your organization chooses a third-party for content storage, you can turn off the NativeFileEntryPoints parameter in the Teams Files policy. This parameter is enabled by default, which shows option to attach OneDrive / SharePoint content from Teams chats or channels. When this parameter is disabled, users won't see access points for OneDrive and SharePoint in Teams. Please note that OneDrive app in the left navigation pane in Teams isn't affected by this policy. Teams administrators would be able to create a customized teams files policy to match the organization's requirements. - - - - New-CsTeamsFilesPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - DefaultFileUploadAppId - - This can be used by the 3p apps to configure their app, so when the files will be dragged and dropped in compose, it will get uploaded in that 3P app. - - String - - String - - - None - - - FileSharingInChatswithExternalUsers - - Indicates if file sharing in chats with external users is enabled. It is by default disabled, to enable admins can run following command. - - Set-CsTeamsFilesPolicy -Identity Global -FileSharingInChatswithExternalUsers Enabled - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - NativeFileEntryPoints - - This parameter is enabled by default, which shows the option to upload content from ODSP to Teams chats or channels. . Possible values are Enabled or Disabled. - - String - - String - - - None - - - SPChannelFilesTab - - Indicates whether Iframe channel files tab is enabled, if not, integrated channel files tab will be enabled. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - DefaultFileUploadAppId - - This can be used by the 3p apps to configure their app, so when the files will be dragged and dropped in compose, it will get uploaded in that 3P app. - - String - - String - - - None - - - FileSharingInChatswithExternalUsers - - Indicates if file sharing in chats with external users is enabled. It is by default disabled, to enable admins can run following command. - - Set-CsTeamsFilesPolicy -Identity Global -FileSharingInChatswithExternalUsers Enabled - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - NativeFileEntryPoints - - This parameter is enabled by default, which shows the option to upload content from ODSP to Teams chats or channels. . Possible values are Enabled or Disabled. - - String - - String - - - None - - - SPChannelFilesTab - - Indicates whether Iframe channel files tab is enabled, if not, integrated channel files tab will be enabled. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsTeamsFilesPolicy -Identity "CustomTeamsFilesPolicy" -NativeFileEntryPoints Disabled/Enabled - - The command shown in Example 1 creates a per-user teams files policy CustomTeamsFilesPolicy with NativeFileEntryPoints set to Disabled/Enabled and other fields set to tenant level global value. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfilespolicy - - - - - - New-CsTeamsHiddenMeetingTemplate - New - CsTeamsHiddenMeetingTemplate - - This cmdlet is used to create a `HiddenMeetingTemplate` object. - - - - Creates an object that can be supplied as `HiddenMeetingTemplate` to the New-CsTeamsMeetingTemplatePermissionPolicy (new-csteamsmeetingtemplatepermissionpolicy.md)and Set-CsTeamsMeetingTemplatePermissionPolicy (set-csteamsmeetingtemplatepermissionpolicy.md)cmdlets. - - - - New-CsTeamsHiddenMeetingTemplate - - Id - - > Applicable: Microsoft Teams - ID of the meeting template to hide. - - String - - String - - - None - - - - - - Id - - > Applicable: Microsoft Teams - ID of the meeting template to hide. - - String - - String - - - None - - - - - - - - - - - - ------ Example 1 - Creating a new hidden meeting template ------ - PS> $hiddentemplate_1 = New-CsTeamsHiddenMeetingTemplate -Id customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056 - - Creates a new HiddenMeetingTemplate object with the given template ID. - For more examples of how this can be used, see the examples for New-CsTeamsMeetingTemplatePermissionPolicy (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsTeamsHiddenMeetingTemplate - - - Get-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplatepermissionpolicy - - - New-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy - - - Set-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingtemplatepermissionpolicy - - - - - - New-CsTeamsHiddenTemplate - New - CsTeamsHiddenTemplate - - This cmdlet is used to create a `HiddenTemplate` object. - - - - Creates an object that can be supplied as `HiddenTemplate` to the New-CsTeamsTemplatePermissionPolicy (new-csteamstemplatepermissionpolicy.md) and [Set-CsTeamsTemplatePermissionPolicy](set-csteamstemplatepermissionpolicy.md)cmdlets. - - - - New-CsTeamsHiddenTemplate - - Id - - ID of the Teams template to hide. - - String - - String - - - None - - - - - - Id - - ID of the Teams template to hide. - - String - - String - - - None - - - - - - None - - - - - - - - - - HiddenTemplate.Cmdlets.HiddenTemplate - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS >$manageProjectTemplate = New-CsTeamsHiddenTemplate -Id com.microsoft.teams.template.ManageAProject - - Creates a new hidden Teams template object. For more examples of how this can be used, see the examples for New-CsTeamsTemplatePermissionPolicy (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddentemplate - - - New-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy - - - Set-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstemplatepermissionpolicy - - - - - - New-CsTeamsIPPhonePolicy - New - CsTeamsIPPhonePolicy - - New-CsTeamsIPPhonePolicy allows you to create a policy to manage features related to Teams phone experiences. Teams phone policies determine the features that are available to users. - - - - The New-CsTeamsIPPhonePolicy cmdlet allows you to create a policy to manage features related to Teams phone experiences assigned to a user account used to sign into a Teams phone. - - - - New-CsTeamsIPPhonePolicy - - Identity - - The identity of the policy that you want to create. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines whether hot desking mode is enabled. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - String - - String - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can search the Global Address List in Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - Object - - Object - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines whether hot desking mode is enabled. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - String - - String - - - None - - - Identity - - The identity of the policy that you want to create. - - XdsIdentity - - XdsIdentity - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can search the Global Address List in Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - Object - - Object - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsIPPhonePolicy -Identity CommonAreaPhone -SignInMode CommonAreaPhoneSignin - - This example shows a new policy being created called "CommonAreaPhone" setting the SignInMode as "CommonAreaPhoneSignIn". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsipphonepolicy - - - - - - New-CsTeamsMediaConnectivityPolicy - New - CsTeamsMediaConnectivityPolicy - - This cmdlet creates a Teams media connectivity policy. - - - - This cmdlet creates a Teams media connectivity policy. If you get an error that the policy already exists, it means that the policy already exists for your tenant. In this case, run Get-CsTeamsMediaConnectivityPolicy. - - - - New-CsTeamsMediaConnectivityPolicy - - DirectConnection - - This setting will enable Tenant Admins to control the Teams media connectivity behavior in Teams for both Meetings and 1:1 calls. If this setting is set to true, a direct media connection between the current user and a remote user is allowed which may improve the meeting quality and reduce the egress bandwidth usage for the customer. If this setting is set to disabled, no direct media connection will be allowed for the current user. - - String - - String - - - None - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - DirectConnection - - This setting will enable Tenant Admins to control the Teams media connectivity behavior in Teams for both Meetings and 1:1 calls. If this setting is set to true, a direct media connection between the current user and a remote user is allowed which may improve the meeting quality and reduce the egress bandwidth usage for the customer. If this setting is set to disabled, no direct media connection will be allowed for the current user. - - String - - String - - - None - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMediaConnectivityPolicy -Identity Test - -Identity DirectConnection -------------------------- -Tag:Test Enabled - - Creates a new Teams media connectivity policy with the specified identity. The newly created policy with value will be printed on success. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsTeamsMediaConnectivityPolicy - - - Remove-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmediaconnectivitypolicy - - - Get-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmediaconnectivitypolicy - - - Set-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmediaconnectivitypolicy - - - Grant-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmediaconnectivitypolicy - - - - - - New-CsTeamsMeetingBrandingPolicy - New - CsTeamsMeetingBrandingPolicy - - The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - This cmdlet creates a new TeamsMeetingBrandingPolicy . You can only create an empty meeting branding policy with this cmdlet, image upload is not supported. If you want to upload the images, you should use Teams Admin Center. - - - - New-CsTeamsMeetingBrandingPolicy - - Identity - - Identity of meeting branding policy that will be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DefaultTheme - - This parameter is reserved for Microsoft internal use only. Identity of default meeting theme. - - String - - String - - - None - - - EnableMeetingBackgroundImages - - Enable custom meeting backgrounds. - - Boolean - - Boolean - - - None - - - EnableMeetingOptionsThemeOverride - - Allow organizer to control meeting theme. - - Boolean - - Boolean - - - None - - - EnableNdiAssuranceSlate - - This enables meeting Network Device Interface Assurance Slate branding. - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - MeetingBackgroundImages - - This parameter is reserved for Microsoft internal use only. List of meeting background images. Image upload is not possible via cmdlets. You should upload background images via Teams Admin Center. - - PSListModifier - - PSListModifier - - - None - - - MeetingBrandingThemes - - This parameter is reserved for Microsoft internal use only. List of meeting branding themes. Image upload is not possible via cmdlets. You should create meeting themes via Teams Admin Center. - - PSListModifier - - PSListModifier - - - None - - - NdiAssuranceSlateImages - - Used to specify images that can be used as assurance slates during NDI (Network Device Interface) streaming in Teams meetings. This parameter allows administrators to define a set of images that can be displayed to participants to ensure that the NDI stream is functioning correctly. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate] - - - None - - - RequireBackgroundEffect - - This mandates a meeting background for participants. - - Boolean - - Boolean - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultTheme - - This parameter is reserved for Microsoft internal use only. Identity of default meeting theme. - - String - - String - - - None - - - EnableMeetingBackgroundImages - - Enable custom meeting backgrounds. - - Boolean - - Boolean - - - None - - - EnableMeetingOptionsThemeOverride - - Allow organizer to control meeting theme. - - Boolean - - Boolean - - - None - - - EnableNdiAssuranceSlate - - This enables meeting Network Device Interface Assurance Slate branding. - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity of meeting branding policy that will be created. - - String - - String - - - None - - - MeetingBackgroundImages - - This parameter is reserved for Microsoft internal use only. List of meeting background images. Image upload is not possible via cmdlets. You should upload background images via Teams Admin Center. - - PSListModifier - - PSListModifier - - - None - - - MeetingBrandingThemes - - This parameter is reserved for Microsoft internal use only. List of meeting branding themes. Image upload is not possible via cmdlets. You should create meeting themes via Teams Admin Center. - - PSListModifier - - PSListModifier - - - None - - - NdiAssuranceSlateImages - - Used to specify images that can be used as assurance slates during NDI (Network Device Interface) streaming in Teams meetings. This parameter allows administrators to define a set of images that can be displayed to participants to ensure that the NDI stream is functioning correctly. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate] - - - None - - - RequireBackgroundEffect - - This mandates a meeting background for participants. - - Boolean - - Boolean - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Available in Teams PowerShell Module 4.9.3 and later. - - - - - ------------- Create empty meeting branding policy ------------- - PS C:\> New-CsTeamsMeetingBrandingPolicy -Identity "test policy" - - In this example, the command will create an empty meeting branding policy with the identity `test policy`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Get-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbrandingpolicy - - - Grant-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - New-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Remove-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Set-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - - - - New-CsTeamsMeetingBroadcastPolicy - New - CsTeamsMeetingBroadcastPolicy - - Use this cmdlet to create a new policy. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - New-CsTeamsMeetingBroadcastPolicy - - Identity - - Specifies the name of the policy being created - - XdsIdentity - - XdsIdentity - - - None - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded, never recorded or user can choose whether to record or not. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Specifies why this policy is being created. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Tenant - - Not applicable, you can only specify policies for your own logged-in tenant. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded, never recorded or user can choose whether to record or not. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Specifies why this policy is being created. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specifies the name of the policy being created - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable, you can only specify policies for your own logged-in tenant. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMeetingBroadcastPolicy -Identity Students -AllowBroadcastScheduling $false - - Creates a new MeetingBroadcastPolicy with broadcast scheduling disabled, which can then be assigned to individual users using the corresponding grant- command. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbroadcastpolicy - - - - - - New-CsTeamsMeetingPolicy - New - CsTeamsMeetingPolicy - - The New-CsTeamsMeetingPolicy cmdlet allows administrators to define new meeting policies that can be assigned to particular users to control Teams features related to meetings. - - - - The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users. - > [!NOTE] > The `AllowCarbonSummary` parameter is no longer supported and blocked by the service, though it may appear in older documentation or scripts. It can no longer be set using this cmdlet. - - - - New-CsTeamsMeetingPolicy - - Identity - - Specify the name of the policy being created. - - XdsIdentity - - XdsIdentity - - - None - - - AIInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowAnnotations - - This setting will allow admins to choose which users will be able to use the Annotation feature. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - Determines whether anonymous users are allowed to dial out to a PSTN number. Set this to TRUE to allow anonymous users to dial out. Set this to FALSE to #prohibit anonymous users from dialing out. - > [!NOTE] > This parameter is temporarily disabled. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToJoinMeeting - - > [!NOTE] > The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check <https://learn.microsoft.com/microsoftteams/meeting-settings-in-teams> for details. - Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting. - - Boolean - - Boolean - - - True - - - AllowAnonymousUsersToStartMeeting - - Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting - - Boolean - - Boolean - - - None - - - AllowAvatarsInGallery - - If admins disable avatars in 2D meetings, then users cannot represent themselves as avatars in the Gallery view. This does not disable avatars in Immersive view. - - Boolean - - Boolean - - - None - - - AllowBreakoutRooms - - Set to true to enable Breakout Rooms, set to false to disable the Breakout Rooms functionality. - - Boolean - - Boolean - - - True - - - AllowCartCaptionsScheduling - - Determines whether a user can add a URL for captions from a Communications Access Real-Time Translation (CART) captioner for providing real-time captions in meetings. - Possible values are: - - EnabledUserOverride : CART captions are available by default but you can disable them. - DisabledUserOverride : If you would like users to be able to use CART captions in meetings but they are disabled by default. - Disabled : If you do not want to allow CART captions in meetings. - - String - - String - - - DisabledUserOverride - - - AllowChannelMeetingScheduling - - Determines whether a user can schedule channel meetings. Set this to TRUE to allow a user to schedule channel meetings. Set this to FALSE to prohibit the user from scheduling channel meetings. Note this only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowCloudRecording - - Determines whether cloud recording is allowed in a user's meetings. Set this to TRUE to allow the user to be able to record meetings. Set this to FALSE to prohibit the user from recording meetings - - Boolean - - Boolean - - - None - - - AllowDocumentCollaboration - - This setting will allow admins to choose which users will be able to use the Document Collaboration feature. - - String - - String - - - None - - - AllowedStreamingMediaInput - - Enables the use of RTMP-In in Teams meetings. - Possible values are: - - <blank> - - RTMP - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingDetails - - Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely. - Possible Values: - UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details. - - Everyone: All meeting participants can see the meeting info details. - - String - - String - - - UsersAllowedToByPassTheLobby - - - AllowEngagementReport - - Determines whether users are allowed to download the attendee engagement report. Set this to Enabled to allow the user to download the report. Set this to Disabled to prohibit the user to download it. ForceEnabled will enable attendee report generation and prohibit meeting organizer from disabling it. - Possible values: - - Enabled - - Disabled - - ForceEnabled - - String - - String - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalParticipantGiveRequestControl - - Determines whether external participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit an external user from giving or requesting control in a meeting - - Boolean - - Boolean - - - None - - - AllowImmersiveView - - If admins have disabled avatars, this does not disable using avatars in Immersive view on Teams desktop or web. Additionally, it does not prevent users from joining the Teams meeting on VR headsets. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - Determines whether audio is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their audio. Set this to FALSE to prohibit the user from sharing their audio. - - Boolean - - Boolean - - - True - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video - - Boolean - - Boolean - - - None - - - AllowLocalRecording - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowMeetingCoach - - This setting will allow admins to allow users the option of turning on Meeting Coach during meetings, which provides users with private personalized feedback on their communication and inclusivity. If set to True, then users will see and be able to click the option for turning on Meeting Coach during calls. If set to False, then users will not have the option to turn on Meeting Coach during calls. - - Boolean - - Boolean - - - None - - - AllowMeetingReactions - - Set to false to disable Meeting Reactions. - - Boolean - - Boolean - - - True - - - AllowMeetingRegistration - - Controls if a user can create a webinar meeting. The default value is True. - Possible values: - - true - - false - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether a user can start ad-hoc meetings in a channel. Set this to TRUE to allow a user to start ad-hoc meetings in a channel. Set this to FALSE to prohibit the user from starting ad-hoc meetings in a channel. - - Boolean - - Boolean - - - TRUE - - - AllowNDIStreaming - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowNetworkConfigurationSettingsLookup - - Determines whether network configuration setting lookups can be made by users who are not Enterprise Voice enabled. It is used to enable Network Roaming policies. - - Boolean - - Boolean - - - False - - - AllowOrganizersToOverrideLobbySettings - - Set this parameter to true to enable Organizers to override lobby settings. - - Boolean - - Boolean - - - False - - - AllowOutlookAddIn - - Determines whether a user can schedule Teams Meetings in Outlook desktop client. Set this to TRUE to allow the user to be able to schedule Teams meetings in Outlook client. Set this to FALSE to prohibit a user from scheduling Teams meeting in Outlook client - - Boolean - - Boolean - - - None - - - AllowParticipantGiveRequestControl - - Determines whether participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit the user from giving, requesting control in a meeting - - Boolean - - Boolean - - - None - - - AllowPowerPointSharing - - Determines whether Powerpoint sharing is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowPrivateMeetingScheduling - - Determines whether a user can schedule private meetings. Set this to TRUE to allow a user to schedule private meetings. Set this to FALSE to prohibit the user from scheduling private meetings. Note this only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetNow - - Determines whether a user can start ad-hoc meetings. Set this to TRUE to allow a user to start ad-hoc private meetings. Set this to FALSE to prohibit the user from starting ad-hoc private meetings. - - Boolean - - Boolean - - - TRUE - - - AllowPSTNUsersToBypassLobby - - Determines whether a PSTN user joining the meeting is allowed or not to bypass the lobby. If you set this parameter to True, PSTN users are allowed to bypass the lobby as long as an authenticated user is joined to the meeting. - - Boolean - - Boolean - - - None - - - AllowRecordingStorageOutsideRegion - - Allow storing recording outside of region. All meeting recordings will be permanently stored in another region, and can't be migrated. For more info, see <https://aka.ms/in-region>. - - Boolean - - Boolean - - - None - - - AllowScreenContentDigitization - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - Determines whether users are allowed to take shared notes. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowTasksFromTranscript - - This policy setting allows for the extraction of AI-Assisted Action Items/Tasks from the Meeting Transcript. - - String - - String - - - None - - - AllowTrackingInReport - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether real-time and/or post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowUserToJoinExternalMeeting - - Possible values are: - - Enabled - - FederatedOnly - - Disabled - - String - - String - - - Disabled - - - AllowWatermarkCustomizationForCameraVideo - - Allows the admin to grant customization permissions to a meeting organizer - - Boolean - - Boolean - - - None - - - AllowWatermarkCustomizationForScreenSharing - - Allows the admin to grant customization permissions to a meeting organizer - - Boolean - - Boolean - - - None - - - AllowWatermarkForCameraVideo - - This setting allows scheduling meetings with watermarking for video enabled. - - Boolean - - Boolean - - - False - - - AllowWatermarkForScreenSharing - - This setting allows scheduling meetings with watermarking for screen sharing enabled. - - Boolean - - Boolean - - - False - - - AllowWhiteboard - - Determines whether whiteboard is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AnonymousUserAuthenticationMethod - - Determines how anonymous users will be authenticated when joining a meeting. - Possible values are: - OneTimePasscode , if you would like anonymous users to be sent a one time passcode to their email when joining a meeting - None , if you would like to disable authentication for anonymous users joining a meeting - - String - - String - - - OneTimePasscode - - - AttendeeIdentityMasking - - This setting will allow admins to enable or disable Masked Attendee mode in Meetings. Masked Attendee meetings will hide attendees' identifying information (e.g., name, contact information, profile photo). - Possible Values: Enabled: Hides attendees' identifying information in meetings. Disabled: Does not allow attendees' to hide identifying information in meetings - - String - - String - - - None - - - AudibleRecordingNotification - - The setting controls whether recording notification is played to all attendees or just PSTN users. - - String - - String - - - None - - - AutoAdmittedUsers - - Determines what types of participants will automatically be added to meetings organized by this user. Possible values are: - - EveryoneInCompany , if you would like meetings to place every external user in the lobby but allow all users in the company to join the meeting immediately. - EveryoneInSameAndFederatedCompany , if you would like meetings to allow federated users to join like your company's users, but place all other external users in a lobby. - Everyone , if you'd like to admit anonymous users by default. - OrganizerOnly , if you would like that only meeting organizers can bypass the lobby. - EveryoneInCompanyExcludingGuests , if you would like meetings to place every external and guest users in the lobby but allow all other users in the company to join the meeting immediately. - InvitedUsers , if you would like that only meeting organizers and invited users can bypass the lobby. - This setting also applies to participants joining via a PSTN device (i.e. a traditional phone). - - String - - String - - - None - - - AutomaticallyStartCopilot - - > [!Note] > This feature has not been fully released yet, so the setting will have no effect.* - This setting gives admins the ability to auto-start Copilot. - Possible values are: - - Enabled - - Disabled - - String - - String - - - Disabled - - - BlockedAnonymousJoinClientTypes - - A user can join a Teams meeting anonymously using a Teams client (https://support.microsoft.com/office/join-a-meeting-without-a-teams-account-c6efc38f-4e03-4e79-b28f-e65a4c039508) or using a [custom application built using Azure Communication Services](https://learn.microsoft.com/azure/communication-services/concepts/join-teams-meeting). When anonymous meeting join is enabled, both types of clients may be used by default. This optional parameter can be used to block one of the client types that can be used. - The allowed values are ACS (to block the use of Azure Communication Services clients) or Teams (to block the use of Teams clients). Both can also be specified, separated by a comma, but this is equivalent to disabling anonymous join completely. - - List - - List - - - Empty List - - - CaptchaVerificationForMeetingJoin - - Require a verification check for meeting join. - - String - - String - - - None - - - ChannelRecordingDownload - - Controls how channel meeting recordings are saved, permissioned, and who can download them. - Possible values: - Allow - Saves channel meeting recordings to a "Recordings" folder in the channel. The permissions on the recording files will be based on the Channel SharePoint permissions. This is the same as any other file uploaded for the channel. Block - Saves channel meeting recordings to a "Recordings\View only" folder in the channel. Channel owners will have full rights to the recordings in this folder, but channel members will have read access without the ability to download. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectToMeetingControls - - Allows external connections of thirdparty apps to Microsoft Teams - Possible values are: - Enabled Disabled - - String - - String - - - None - - - ContentSharingInExternalMeetings - - This policy allows admins to determine whether the user can share content in meetings organized by external organizations. The user should have a Teams Premium license to be protected under this policy. - - String - - String - - - None - - - Copilot - - This setting allows the admin to choose whether Copilot will be enabled with a persisted transcript or a non-persisted transcript. - Possible values are: - - Enabled - - EnabledWithTranscript - - String - - String - - - EnabledWithTranscript - - - CopyRestriction - - Enables a setting that controls a meeting option which allows users to disable right-click or Ctrl+C to copy, Copy link, Forward message, and Share to Outlook for meeting chat messages. - - Boolean - - Boolean - - - TRUE - - - Description - - Enables administrators to provide explanatory text about the meeting policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DesignatedPresenterRoleMode - - Determines if users can change the default value of the Who can present? setting in Meeting options in the Teams client. This policy setting affects all meetings, including Meet Now meetings. - Possible values are: - - EveryoneUserOverride: All meeting participants can be presenters. This is the default value. This parameter corresponds to the Everyone setting in Teams. - EveryoneInCompanyUserOverride: Authenticated users in the organization, including guest users, can be presenters. This parameter corresponds to the People in my organization setting in Teams. - EveryoneInSameAndFederatedCompanyUserOverride: Authenticated users in the organization, including guest users and users from federated organizations, can be presenters. This parameter corresponds to the People in my organization and trusted organizations setting in Teams. - OrganizerOnlyUserOverride: Only the meeting organizer can be a presenter and all meeting participants are designated as attendees. This parameter corresponds to the Only me setting in Teams. - - String - - String - - - EveryoneUserOverride - - - DetectSensitiveContentDuringScreenSharing - - Allows the admin to enable sensitive content detection during screen share. - - Boolean - - Boolean - - - None - - - EnrollUserOverride - - Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - Set participant agreement and notification for Recording, Transcript, Copilot in Teams meetings. - Possible Values: - - Enabled: Explicit consent, requires participant agreement. - - Disabled: Implicit consent, does not require participant agreement. - - LegitimateInterest: Legitimate interest, less restrictive consent to meet legitimate interest without requiring explicit agreement from participants. - - String - - String - - - None - - - ExternalMeetingJoin - - Possible values are: - - EnabledForAnyone - - EnabledForTrustedOrgs - - Disabled - - String - - String - - - EnabledForAnyone - - - ExternalBotAccessMode - - Controls how external third-party automated bots and meeting assistants are handled when they attempt to join meetings. This policy provides predictable behavior and helps organizers apply intentional control for bot participation. - Possible Values: - AllowAllBots : Don't detect bots; allow them to join meetings directly. - RequireApprovalWhenDetected : When detected, require approval before joining by routing detected bots to the meeting lobby. This is the default value. - BlockDetectedBots : Block detected bots from joining meetings. - - String - - String - - - RequireApprovalWhenDetected - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InfoShownInReportMode - - This policy controls what kind of information get shown for the user's attendance in attendance report/dashboard. - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - - SwitchParameter - - - False - - - IPAudioMode - - Determines whether audio can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming audio in the meeting. Set this to DISABLED to prohibit outgoing and incoming audio in the meeting. - - String - - String - - - None - - - IPVideoMode - - Determines whether video can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming video in the meeting. Set this to DISABLED to prohibit outgoing and incoming video in the meeting. Invalid value combination IPVideoMode: EnabledOutgoingIncoming and IPAudioMode: Disabled - - String - - String - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for the user in Teams meetings. Set this to DisabledUserOverride to allow user to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - None - - - LiveInterpretationEnabledType - - Allows meeting organizers to configure a meeting for language interpretation, selecting attendees of the meeting to become interpreters that other attendees can select and listen to the real-time translation they provide. - Possible values are: - DisabledUserOverride, if you would like users to be able to use interpretation in meetings but by default it is disabled. Disabled, prevents the option to be enabled in Meeting Options. - - String - - String - - - None - - - LiveStreamingMode - - Determines whether you provide support for your users to stream their Teams meetings to large audiences through Real-Time Messaging Protocol (RTMP). - Possible values are: - - Disabled (default) - - Enabled - - String - - String - - - None - - - LobbyChat - - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether chat messages are allowed in the lobby. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - UInt32 - - UInt32 - - - None - - - MeetingChatEnabledType - - Specifies if users will be able to chat in meetings. Possible values are: Disabled, Enabled, and EnabledExceptAnonymous. - - String - - String - - - None - - - MeetingInviteLanguages - - > Applicable: Microsoft Teams - Controls how the join information in meeting invitations is displayed by enforcing a common language or enabling up to two languages to be displayed. - > [!NOTE] > All Teams supported languages can be specified using language codes. For more information about its delivery date, see the roadmap (Feature ID: 81521) (https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=81521). - The preliminary list of available languages is shown below: - `ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW`. - - String - - String - - - None - - - NewMeetingRecordingExpirationDays - - Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days. - > [!NOTE] > You may opt to set Meeting Recordings to never expire by entering the value -1. - - Int32 - - Int32 - - - None - - - NoiseSuppressionForDialInParticipants - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Control Noises Supression Feature for PST legs joining a meeting. - Possible Values: - - MicrosoftDefault - - Enabled - - Disabled - - String - - String - - - None - - - ParticipantNameChange - - This setting will enable Tenant Admins to turn on/off participant renaming feature. - Possible Values: Enabled: Turns on the Participant Renaming feature. Disabled: Turns off the Participant Renaming feature. - - String - - String - - - None - - - ParticipantSlideControl - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting. - Possible Values: - Everyone: Anyone in the meeting can give or take control - - EveryoneInOrganization: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control - - EveryoneInOrganizationAndGuests: Only those who are Guests to the tenant, MTO users, and internal AAD users can give or take control - - None: No one in the meeting can give or take control - - String - - String - - - Enabled - - - PasscodeComplexity - - > Applicable: Microsoft Teams - Controls whether meeting passcodes use the system‑default complexity or a reduced complexity using numeric‑only digits. When enabled, meetings scheduled by users to whom this policy applies will use 8‑digit numeric‑only passcodes . Changes apply only to meetings scheduled after the setting is enabled . Existing meetings are not affected. This setting is disabled by default . - Possible Values: - Default : Alphanumeric passcodes with 8 characters (system default). - NumericOnly : 8‑digit numeric‑only passcodes with lower complexity for meetings scheduled by users to whom this policy applies. Numeric‑only passcodes increase the risk of unauthorized access compared to the default setting and do not align with Microsoft’s recommended meeting security best practices . - - String - - String - - - Default - - - PreferredMeetingProviderForIslandsMode - - Determines the Outlook meeting add-in available to users on Islands mode. By default, this is set to TeamsAndSfb, and the users sees both the Skype for Business and Teams add-ins. Set this to Teams to remove the Skype for Business add-in and only show the Teams add-in. - - String - - String - - - TeamsAndSfb - - - QnAEngagementMode - - This setting enables Microsoft 365 Tenant Admins to Enable or Disable the Questions and Answers experience (Q+A). When Enabled, Organizers can turn on Q+A for their meetings. When Disabled, Organizers cannot turn on Q+A in their meetings. The setting is enforced when a meeting is created or is updated by Organizers. Attendees can use Q+A in meetings where it was previously added. Organizers can remove Q+A for those meetings through Teams and Outlook Meeting Options. Possible values: Enabled, Disabled - - String - - String - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - RecordingStorageMode - - This parameter can take two possible values: - - Stream - - OneDriveForBusiness - - > [!Note] > The change of storing Teams meeting recordings from Classic Stream to OneDrive and SharePoint (ODSP) has been completed as of August 30th, 2021. All recordings are now stored in ODSP. This change overrides the RecordingStorageMode parameter, and modifying the setting in PowerShell no longer has any impact. - - String - - String - - - None - - - RoomAttributeUserOverride - - Possible values: - - Off - - Distinguish - - Attribute - - String - - String - - - None - - - RoomPeopleNameUserOverride - - Enabling people recognition requires the tenant CsTeamsMeetingPolicy roomPeopleNameUserOverride to be "On" and roomAttributeUserOverride to be Attribute for allowing individual voice and face profiles to be used for recognition in meetings. - > [!Note] > In some locations, people recognition can't be used due to local laws or regulations. Possible values: - - On - - Off - - String - - String - - - None - - - ScreenSharingMode - - Determines the mode in which a user can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens. - - String - - String - - - None - - - SmsNotifications - - Participants can sign up for text message meeting reminders. - - String - - String - - - None - - - SpeakerAttributionMode - - Possible values: - - EnabledUserOverride - - Disabled - - String - - String - - - None - - - StreamingAttendeeMode - - Possible values are: - - Disabled - - Enabled - - String - - String - - - Enabled - - - TeamsCameraFarEndPTZMode - - Possible values are: - - Disabled - - AutoAcceptInTenant - - AutoAcceptAll - - String - - String - - - Disabled - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanAdmitFromLobby - - This policy controls who can admit from the lobby. - - String - - String - - - None - - - VideoFiltersMode - - Determines the background effects that a user can configure in the Teams client. Possible values are: - - NoFilters: No filters are available. - - BlurOnly: Background blur is the only option available (requires a processor with AVX2 support, see Hardware requirements for Microsoft Teams (https://learn.microsoft.com/microsoftteams/hardware-requirements-for-the-teams-app) for more information). - BlurAndDefaultBackgrounds: Background blur and a list of pre-selected images are available. - - AllFilters: All filters are available, including custom images. This is the default value. - - String - - String - - - AllFilters - - - VoiceIsolation - - Determines whether you provide support for your users to enable voice isolation in Teams meeting calls. - Possible values are: - - Enabled (default) - - Disabled - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - WatermarkForAnonymousUsers - - Determines the meeting experience and watermark content of an anonymous user. - - String - - String - - - None - - - WatermarkForCameraVideoOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForCameraVideoPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WatermarkForScreenSharingOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForScreenSharingPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - WhoCanRegister - - Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts, set the value to 'EveryoneInCompany'. - Possible values: - - Everyone - - EveryoneInCompany - - Object - - Object - - - None - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams meetings. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription meeting message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - AIInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowAnnotations - - This setting will allow admins to choose which users will be able to use the Annotation feature. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - Determines whether anonymous users are allowed to dial out to a PSTN number. Set this to TRUE to allow anonymous users to dial out. Set this to FALSE to #prohibit anonymous users from dialing out. - > [!NOTE] > This parameter is temporarily disabled. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToJoinMeeting - - > [!NOTE] > The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check <https://learn.microsoft.com/microsoftteams/meeting-settings-in-teams> for details. - Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting. - - Boolean - - Boolean - - - True - - - AllowAnonymousUsersToStartMeeting - - Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting - - Boolean - - Boolean - - - None - - - AllowAvatarsInGallery - - If admins disable avatars in 2D meetings, then users cannot represent themselves as avatars in the Gallery view. This does not disable avatars in Immersive view. - - Boolean - - Boolean - - - None - - - AllowBreakoutRooms - - Set to true to enable Breakout Rooms, set to false to disable the Breakout Rooms functionality. - - Boolean - - Boolean - - - True - - - AllowCartCaptionsScheduling - - Determines whether a user can add a URL for captions from a Communications Access Real-Time Translation (CART) captioner for providing real-time captions in meetings. - Possible values are: - - EnabledUserOverride : CART captions are available by default but you can disable them. - DisabledUserOverride : If you would like users to be able to use CART captions in meetings but they are disabled by default. - Disabled : If you do not want to allow CART captions in meetings. - - String - - String - - - DisabledUserOverride - - - AllowChannelMeetingScheduling - - Determines whether a user can schedule channel meetings. Set this to TRUE to allow a user to schedule channel meetings. Set this to FALSE to prohibit the user from scheduling channel meetings. Note this only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowCloudRecording - - Determines whether cloud recording is allowed in a user's meetings. Set this to TRUE to allow the user to be able to record meetings. Set this to FALSE to prohibit the user from recording meetings - - Boolean - - Boolean - - - None - - - AllowDocumentCollaboration - - This setting will allow admins to choose which users will be able to use the Document Collaboration feature. - - String - - String - - - None - - - AllowedStreamingMediaInput - - Enables the use of RTMP-In in Teams meetings. - Possible values are: - - <blank> - - RTMP - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingDetails - - Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely. - Possible Values: - UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details. - - Everyone: All meeting participants can see the meeting info details. - - String - - String - - - UsersAllowedToByPassTheLobby - - - AllowEngagementReport - - Determines whether users are allowed to download the attendee engagement report. Set this to Enabled to allow the user to download the report. Set this to Disabled to prohibit the user to download it. ForceEnabled will enable attendee report generation and prohibit meeting organizer from disabling it. - Possible values: - - Enabled - - Disabled - - ForceEnabled - - String - - String - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalParticipantGiveRequestControl - - Determines whether external participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit an external user from giving or requesting control in a meeting - - Boolean - - Boolean - - - None - - - AllowImmersiveView - - If admins have disabled avatars, this does not disable using avatars in Immersive view on Teams desktop or web. Additionally, it does not prevent users from joining the Teams meeting on VR headsets. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - Determines whether audio is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their audio. Set this to FALSE to prohibit the user from sharing their audio. - - Boolean - - Boolean - - - True - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video - - Boolean - - Boolean - - - None - - - AllowLocalRecording - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowMeetingCoach - - This setting will allow admins to allow users the option of turning on Meeting Coach during meetings, which provides users with private personalized feedback on their communication and inclusivity. If set to True, then users will see and be able to click the option for turning on Meeting Coach during calls. If set to False, then users will not have the option to turn on Meeting Coach during calls. - - Boolean - - Boolean - - - None - - - AllowMeetingReactions - - Set to false to disable Meeting Reactions. - - Boolean - - Boolean - - - True - - - AllowMeetingRegistration - - Controls if a user can create a webinar meeting. The default value is True. - Possible values: - - true - - false - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether a user can start ad-hoc meetings in a channel. Set this to TRUE to allow a user to start ad-hoc meetings in a channel. Set this to FALSE to prohibit the user from starting ad-hoc meetings in a channel. - - Boolean - - Boolean - - - TRUE - - - AllowNDIStreaming - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowNetworkConfigurationSettingsLookup - - Determines whether network configuration setting lookups can be made by users who are not Enterprise Voice enabled. It is used to enable Network Roaming policies. - - Boolean - - Boolean - - - False - - - AllowOrganizersToOverrideLobbySettings - - Set this parameter to true to enable Organizers to override lobby settings. - - Boolean - - Boolean - - - False - - - AllowOutlookAddIn - - Determines whether a user can schedule Teams Meetings in Outlook desktop client. Set this to TRUE to allow the user to be able to schedule Teams meetings in Outlook client. Set this to FALSE to prohibit a user from scheduling Teams meeting in Outlook client - - Boolean - - Boolean - - - None - - - AllowParticipantGiveRequestControl - - Determines whether participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit the user from giving, requesting control in a meeting - - Boolean - - Boolean - - - None - - - AllowPowerPointSharing - - Determines whether Powerpoint sharing is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowPrivateMeetingScheduling - - Determines whether a user can schedule private meetings. Set this to TRUE to allow a user to schedule private meetings. Set this to FALSE to prohibit the user from scheduling private meetings. Note this only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetNow - - Determines whether a user can start ad-hoc meetings. Set this to TRUE to allow a user to start ad-hoc private meetings. Set this to FALSE to prohibit the user from starting ad-hoc private meetings. - - Boolean - - Boolean - - - TRUE - - - AllowPSTNUsersToBypassLobby - - Determines whether a PSTN user joining the meeting is allowed or not to bypass the lobby. If you set this parameter to True, PSTN users are allowed to bypass the lobby as long as an authenticated user is joined to the meeting. - - Boolean - - Boolean - - - None - - - AllowRecordingStorageOutsideRegion - - Allow storing recording outside of region. All meeting recordings will be permanently stored in another region, and can't be migrated. For more info, see <https://aka.ms/in-region>. - - Boolean - - Boolean - - - None - - - AllowScreenContentDigitization - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - Determines whether users are allowed to take shared notes. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowTasksFromTranscript - - This policy setting allows for the extraction of AI-Assisted Action Items/Tasks from the Meeting Transcript. - - String - - String - - - None - - - AllowTrackingInReport - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether real-time and/or post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AllowUserToJoinExternalMeeting - - Possible values are: - - Enabled - - FederatedOnly - - Disabled - - String - - String - - - Disabled - - - AllowWatermarkCustomizationForCameraVideo - - Allows the admin to grant customization permissions to a meeting organizer - - Boolean - - Boolean - - - None - - - AllowWatermarkCustomizationForScreenSharing - - Allows the admin to grant customization permissions to a meeting organizer - - Boolean - - Boolean - - - None - - - AllowWatermarkForCameraVideo - - This setting allows scheduling meetings with watermarking for video enabled. - - Boolean - - Boolean - - - False - - - AllowWatermarkForScreenSharing - - This setting allows scheduling meetings with watermarking for screen sharing enabled. - - Boolean - - Boolean - - - False - - - AllowWhiteboard - - Determines whether whiteboard is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit - - Boolean - - Boolean - - - None - - - AnonymousUserAuthenticationMethod - - Determines how anonymous users will be authenticated when joining a meeting. - Possible values are: - OneTimePasscode , if you would like anonymous users to be sent a one time passcode to their email when joining a meeting - None , if you would like to disable authentication for anonymous users joining a meeting - - String - - String - - - OneTimePasscode - - - AttendeeIdentityMasking - - This setting will allow admins to enable or disable Masked Attendee mode in Meetings. Masked Attendee meetings will hide attendees' identifying information (e.g., name, contact information, profile photo). - Possible Values: Enabled: Hides attendees' identifying information in meetings. Disabled: Does not allow attendees' to hide identifying information in meetings - - String - - String - - - None - - - AudibleRecordingNotification - - The setting controls whether recording notification is played to all attendees or just PSTN users. - - String - - String - - - None - - - AutoAdmittedUsers - - Determines what types of participants will automatically be added to meetings organized by this user. Possible values are: - - EveryoneInCompany , if you would like meetings to place every external user in the lobby but allow all users in the company to join the meeting immediately. - EveryoneInSameAndFederatedCompany , if you would like meetings to allow federated users to join like your company's users, but place all other external users in a lobby. - Everyone , if you'd like to admit anonymous users by default. - OrganizerOnly , if you would like that only meeting organizers can bypass the lobby. - EveryoneInCompanyExcludingGuests , if you would like meetings to place every external and guest users in the lobby but allow all other users in the company to join the meeting immediately. - InvitedUsers , if you would like that only meeting organizers and invited users can bypass the lobby. - This setting also applies to participants joining via a PSTN device (i.e. a traditional phone). - - String - - String - - - None - - - AutomaticallyStartCopilot - - > [!Note] > This feature has not been fully released yet, so the setting will have no effect.* - This setting gives admins the ability to auto-start Copilot. - Possible values are: - - Enabled - - Disabled - - String - - String - - - Disabled - - - BlockedAnonymousJoinClientTypes - - A user can join a Teams meeting anonymously using a Teams client (https://support.microsoft.com/office/join-a-meeting-without-a-teams-account-c6efc38f-4e03-4e79-b28f-e65a4c039508) or using a [custom application built using Azure Communication Services](https://learn.microsoft.com/azure/communication-services/concepts/join-teams-meeting). When anonymous meeting join is enabled, both types of clients may be used by default. This optional parameter can be used to block one of the client types that can be used. - The allowed values are ACS (to block the use of Azure Communication Services clients) or Teams (to block the use of Teams clients). Both can also be specified, separated by a comma, but this is equivalent to disabling anonymous join completely. - - List - - List - - - Empty List - - - CaptchaVerificationForMeetingJoin - - Require a verification check for meeting join. - - String - - String - - - None - - - ChannelRecordingDownload - - Controls how channel meeting recordings are saved, permissioned, and who can download them. - Possible values: - Allow - Saves channel meeting recordings to a "Recordings" folder in the channel. The permissions on the recording files will be based on the Channel SharePoint permissions. This is the same as any other file uploaded for the channel. Block - Saves channel meeting recordings to a "Recordings\View only" folder in the channel. Channel owners will have full rights to the recordings in this folder, but channel members will have read access without the ability to download. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectToMeetingControls - - Allows external connections of thirdparty apps to Microsoft Teams - Possible values are: - Enabled Disabled - - String - - String - - - None - - - ContentSharingInExternalMeetings - - This policy allows admins to determine whether the user can share content in meetings organized by external organizations. The user should have a Teams Premium license to be protected under this policy. - - String - - String - - - None - - - Copilot - - This setting allows the admin to choose whether Copilot will be enabled with a persisted transcript or a non-persisted transcript. - Possible values are: - - Enabled - - EnabledWithTranscript - - String - - String - - - EnabledWithTranscript - - - CopyRestriction - - Enables a setting that controls a meeting option which allows users to disable right-click or Ctrl+C to copy, Copy link, Forward message, and Share to Outlook for meeting chat messages. - - Boolean - - Boolean - - - TRUE - - - Description - - Enables administrators to provide explanatory text about the meeting policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DesignatedPresenterRoleMode - - Determines if users can change the default value of the Who can present? setting in Meeting options in the Teams client. This policy setting affects all meetings, including Meet Now meetings. - Possible values are: - - EveryoneUserOverride: All meeting participants can be presenters. This is the default value. This parameter corresponds to the Everyone setting in Teams. - EveryoneInCompanyUserOverride: Authenticated users in the organization, including guest users, can be presenters. This parameter corresponds to the People in my organization setting in Teams. - EveryoneInSameAndFederatedCompanyUserOverride: Authenticated users in the organization, including guest users and users from federated organizations, can be presenters. This parameter corresponds to the People in my organization and trusted organizations setting in Teams. - OrganizerOnlyUserOverride: Only the meeting organizer can be a presenter and all meeting participants are designated as attendees. This parameter corresponds to the Only me setting in Teams. - - String - - String - - - EveryoneUserOverride - - - DetectSensitiveContentDuringScreenSharing - - Allows the admin to enable sensitive content detection during screen share. - - Boolean - - Boolean - - - None - - - EnrollUserOverride - - Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - Set participant agreement and notification for Recording, Transcript, Copilot in Teams meetings. - Possible Values: - - Enabled: Explicit consent, requires participant agreement. - - Disabled: Implicit consent, does not require participant agreement. - - LegitimateInterest: Legitimate interest, less restrictive consent to meet legitimate interest without requiring explicit agreement from participants. - - String - - String - - - None - - - ExternalMeetingJoin - - Possible values are: - - EnabledForAnyone - - EnabledForTrustedOrgs - - Disabled - - String - - String - - - EnabledForAnyone - - - ExternalBotAccessMode - - Controls how external third-party automated bots and meeting assistants are handled when they attempt to join meetings. This policy provides predictable behavior and helps organizers apply intentional control for bot participation. - Possible Values: - AllowAllBots : Don't detect bots; allow them to join meetings directly. - RequireApprovalWhenDetected : When detected, require approval before joining by routing detected bots to the meeting lobby. This is the default value. - BlockDetectedBots : Block detected bots from joining meetings. - - String - - String - - - RequireApprovalWhenDetected - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy being created. - - XdsIdentity - - XdsIdentity - - - None - - - InfoShownInReportMode - - This policy controls what kind of information get shown for the user's attendance in attendance report/dashboard. - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - SwitchParameter - - SwitchParameter - - - False - - - IPAudioMode - - Determines whether audio can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming audio in the meeting. Set this to DISABLED to prohibit outgoing and incoming audio in the meeting. - - String - - String - - - None - - - IPVideoMode - - Determines whether video can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming video in the meeting. Set this to DISABLED to prohibit outgoing and incoming video in the meeting. Invalid value combination IPVideoMode: EnabledOutgoingIncoming and IPAudioMode: Disabled - - String - - String - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for the user in Teams meetings. Set this to DisabledUserOverride to allow user to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - None - - - LiveInterpretationEnabledType - - Allows meeting organizers to configure a meeting for language interpretation, selecting attendees of the meeting to become interpreters that other attendees can select and listen to the real-time translation they provide. - Possible values are: - DisabledUserOverride, if you would like users to be able to use interpretation in meetings but by default it is disabled. Disabled, prevents the option to be enabled in Meeting Options. - - String - - String - - - None - - - LiveStreamingMode - - Determines whether you provide support for your users to stream their Teams meetings to large audiences through Real-Time Messaging Protocol (RTMP). - Possible values are: - - Disabled (default) - - Enabled - - String - - String - - - None - - - LobbyChat - - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether chat messages are allowed in the lobby. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - UInt32 - - UInt32 - - - None - - - MeetingChatEnabledType - - Specifies if users will be able to chat in meetings. Possible values are: Disabled, Enabled, and EnabledExceptAnonymous. - - String - - String - - - None - - - MeetingInviteLanguages - - > Applicable: Microsoft Teams - Controls how the join information in meeting invitations is displayed by enforcing a common language or enabling up to two languages to be displayed. - > [!NOTE] > All Teams supported languages can be specified using language codes. For more information about its delivery date, see the roadmap (Feature ID: 81521) (https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=81521). - The preliminary list of available languages is shown below: - `ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW`. - - String - - String - - - None - - - NewMeetingRecordingExpirationDays - - Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days. - > [!NOTE] > You may opt to set Meeting Recordings to never expire by entering the value -1. - - Int32 - - Int32 - - - None - - - NoiseSuppressionForDialInParticipants - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Control Noises Supression Feature for PST legs joining a meeting. - Possible Values: - - MicrosoftDefault - - Enabled - - Disabled - - String - - String - - - None - - - ParticipantNameChange - - This setting will enable Tenant Admins to turn on/off participant renaming feature. - Possible Values: Enabled: Turns on the Participant Renaming feature. Disabled: Turns off the Participant Renaming feature. - - String - - String - - - None - - - ParticipantSlideControl - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting. - Possible Values: - Everyone: Anyone in the meeting can give or take control - - EveryoneInOrganization: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control - - EveryoneInOrganizationAndGuests: Only those who are Guests to the tenant, MTO users, and internal AAD users can give or take control - - None: No one in the meeting can give or take control - - String - - String - - - Enabled - - - PasscodeComplexity - - > Applicable: Microsoft Teams - Controls whether meeting passcodes use the system‑default complexity or a reduced complexity using numeric‑only digits. When enabled, meetings scheduled by users to whom this policy applies will use 8‑digit numeric‑only passcodes . Changes apply only to meetings scheduled after the setting is enabled . Existing meetings are not affected. This setting is disabled by default . - Possible Values: - Default : Alphanumeric passcodes with 8 characters (system default). - NumericOnly : 8‑digit numeric‑only passcodes with lower complexity for meetings scheduled by users to whom this policy applies. Numeric‑only passcodes increase the risk of unauthorized access compared to the default setting and do not align with Microsoft’s recommended meeting security best practices . - - String - - String - - - Default - - - PreferredMeetingProviderForIslandsMode - - Determines the Outlook meeting add-in available to users on Islands mode. By default, this is set to TeamsAndSfb, and the users sees both the Skype for Business and Teams add-ins. Set this to Teams to remove the Skype for Business add-in and only show the Teams add-in. - - String - - String - - - TeamsAndSfb - - - QnAEngagementMode - - This setting enables Microsoft 365 Tenant Admins to Enable or Disable the Questions and Answers experience (Q+A). When Enabled, Organizers can turn on Q+A for their meetings. When Disabled, Organizers cannot turn on Q+A in their meetings. The setting is enforced when a meeting is created or is updated by Organizers. Attendees can use Q+A in meetings where it was previously added. Organizers can remove Q+A for those meetings through Teams and Outlook Meeting Options. Possible values: Enabled, Disabled - - String - - String - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - RecordingStorageMode - - This parameter can take two possible values: - - Stream - - OneDriveForBusiness - - > [!Note] > The change of storing Teams meeting recordings from Classic Stream to OneDrive and SharePoint (ODSP) has been completed as of August 30th, 2021. All recordings are now stored in ODSP. This change overrides the RecordingStorageMode parameter, and modifying the setting in PowerShell no longer has any impact. - - String - - String - - - None - - - RoomAttributeUserOverride - - Possible values: - - Off - - Distinguish - - Attribute - - String - - String - - - None - - - RoomPeopleNameUserOverride - - Enabling people recognition requires the tenant CsTeamsMeetingPolicy roomPeopleNameUserOverride to be "On" and roomAttributeUserOverride to be Attribute for allowing individual voice and face profiles to be used for recognition in meetings. - > [!Note] > In some locations, people recognition can't be used due to local laws or regulations. Possible values: - - On - - Off - - String - - String - - - None - - - ScreenSharingMode - - Determines the mode in which a user can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens. - - String - - String - - - None - - - SmsNotifications - - Participants can sign up for text message meeting reminders. - - String - - String - - - None - - - SpeakerAttributionMode - - Possible values: - - EnabledUserOverride - - Disabled - - String - - String - - - None - - - StreamingAttendeeMode - - Possible values are: - - Disabled - - Enabled - - String - - String - - - Enabled - - - TeamsCameraFarEndPTZMode - - Possible values are: - - Disabled - - AutoAcceptInTenant - - AutoAcceptAll - - String - - String - - - Disabled - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanAdmitFromLobby - - This policy controls who can admit from the lobby. - - String - - String - - - None - - - VideoFiltersMode - - Determines the background effects that a user can configure in the Teams client. Possible values are: - - NoFilters: No filters are available. - - BlurOnly: Background blur is the only option available (requires a processor with AVX2 support, see Hardware requirements for Microsoft Teams (https://learn.microsoft.com/microsoftteams/hardware-requirements-for-the-teams-app) for more information). - BlurAndDefaultBackgrounds: Background blur and a list of pre-selected images are available. - - AllFilters: All filters are available, including custom images. This is the default value. - - String - - String - - - AllFilters - - - VoiceIsolation - - Determines whether you provide support for your users to enable voice isolation in Teams meeting calls. - Possible values are: - - Enabled (default) - - Disabled - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - WatermarkForAnonymousUsers - - Determines the meeting experience and watermark content of an anonymous user. - - String - - String - - - None - - - WatermarkForCameraVideoOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForCameraVideoPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WatermarkForScreenSharingOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForScreenSharingPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - WhoCanRegister - - Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts, set the value to 'EveryoneInCompany'. - Possible values: - - Everyone - - EveryoneInCompany - - Object - - Object - - - None - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams meetings. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription meeting message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsTeamsMeetingPolicy -Identity SalesMeetingPolicy -AllowTranscription $True - - The command shown in Example 1 uses the New-CsTeamsMeetingPolicy cmdlet to create a new meeting policy with the Identity SalesMeetingPolicy. This policy will use all the default values for a meeting policy except one: AllowTranscription; in this example, meetings for users with this policy can include real time or post meeting captions and transcriptions. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CsTeamsMeetingPolicy -Identity HrMeetingPolicy -AutoAdmittedUsers "Everyone" -AllowMeetNow $False - - In Example 2, the New-CsTeamsMeetingPolicy cmdlet is used to create a meeting policy with the Identity HrMeetingPolicy. In this example two different property values are configured: AutoAdmittedUsers is set to Everyone and AllowMeetNow is set to False. All other policy properties will use the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingpolicy - - - - - - New-CsTeamsMeetingTemplatePermissionPolicy - New - CsTeamsMeetingTemplatePermissionPolicy - - Creates a new instance of the TeamsMeetingTemplatePermissionPolicy. - - - - Creates a new instance of the policy with a name and a list of hidden meeting template IDs. The template IDs passed into the `HiddenMeetingTemplates` object must be valid existing template IDs. The current custom and first-party templates on a tenant can be fetched by Get-CsTeamsMeetingTemplateConfiguration (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplateconfiguration) and [Get-CsTeamsFirstPartyMeetingTemplateConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfirstpartymeetingtemplateconfiguration)respectively. - - - - New-CsTeamsMeetingTemplatePermissionPolicy - - Description - - > Applicable: Microsoft Teams - Description of the new policy instance to be created. - - String - - String - - - None - - - HiddenMeetingTemplates - - > Applicable: Microsoft Teams - The list of meeting template IDs to hide. The HiddenMeetingTemplate objects are created with New-CsTeamsHiddenMeetingTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddenmeetingtemplate). - - HiddenMeetingTemplate[] - - HiddenMeetingTemplate[] - - - None - - - Identity - - > Applicable: Microsoft Teams - Name of the new policy instance to be created. - - String - - String - - - None - - - - - - Description - - > Applicable: Microsoft Teams - Description of the new policy instance to be created. - - String - - String - - - None - - - HiddenMeetingTemplates - - > Applicable: Microsoft Teams - The list of meeting template IDs to hide. The HiddenMeetingTemplate objects are created with New-CsTeamsHiddenMeetingTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddenmeetingtemplate). - - HiddenMeetingTemplate[] - - HiddenMeetingTemplate[] - - - None - - - Identity - - > Applicable: Microsoft Teams - Name of the new policy instance to be created. - - String - - String - - - None - - - - - - - - - - - - Example 1 - Creating a new meeting template permission policy - $hiddentemplate_1 = New-CsTeamsHiddenMeetingTemplate -Id customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056 -$hiddentemplate_2 = New-CsTeamsHiddenMeetingTemplate -Id firstparty_e514e598-fba6-4e1f-b8b3-138dd3bca748 - -New-CsTeamsMeetingTemplatePermissionPolicy -Identity Test_Policy -HiddenMeetingTemplates @($hiddentemplate_1, $hiddentemplate_2) -Description "This is a test policy" - -Identity : Tag:Test_Policy -HiddenMeetingTemplates : {customtemplate_9ab0014a-bba4-4ad6-b816-0b42104b5056, firstparty_e514e598-fba6-4e1f-b8b3-138dd3bca748} -Description : This is a test policy - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsTeamsMeetingTemplatePermissionPolicy - - - New-CsTeamsHiddenMeetingTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddenmeetingtemplate - - - Set-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingtemplatepermissionpolicy - - - Get-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplatepermissionpolicy - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingtemplatepermissionpolicy - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingtemplatepermissionpolicy - - - - - - New-CsTeamsMessagingPolicy - New - CsTeamsMessagingPolicy - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. These also help determine the type of messages users can create and modify. - - - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. These also help determine the type of messages users can create and modify. This cmdlet creates a new Teams messaging policy. Custom policies can then be assigned to users using the Grant-CsTeamsMessagingPolicy cmdlet. - - - - New-CsTeamsMessagingPolicy - - Identity - - Unique identifier for the teams messaging policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - AllowSmartCompose - - Turn on this setting to let a user get text predictions for chat messages. - - Boolean - - Boolean - - - None - - - AllowChatWithGroup - - This setting determines if users can chat with groups (Distribution, M365 and Security groups). Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowCommunicationComplianceEndUserReporting - - This setting determines if users can report offensive messages to their admin for Communication Compliance. Possible Values: True, False - - Boolean - - Boolean - - - None - - - AllowCustomGroupChatAvatars - - These settings enables, disables updating or fetching custom group chat avatars for the users included in the messaging policy. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowExtendedWorkInfoInSearch - - This setting enables/disables showing company name and department name in search results for MTO users. - - Boolean - - Boolean - - - None - - - AllowFluidCollaborate - - This field enables or disables Fluid Collaborate feature for users. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowFullChatPermissionUserToDeleteAnyMessage - - This setting determines if users with the 'Full permissions' role can delete any group or meeting chat message within their tenant. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGiphy - - Determines whether a user is allowed to access and post Giphys. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowGiphyDisplay - - Determines if Giphy images should be displayed that had been already sent or received in chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGroupChatJoinLinks - - This setting determines if users in a group chat can create and share join links for other users within the organization to join that chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines whether a user is allowed to use Immersive Reader for reading conversation messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines whether a user is allowed to access and post memes. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessage - - Determines whether owners are allowed to delete all the messages in their team. Set this to TRUE to allow. Set this to FALSE to prohibit. - If the `-AllowUserDeleteMessage` parameter is set to FALSE, the team owner will not be able to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowPasteInternetImage - - Determines if a user is allowed to paste internet-based images in compose. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowPriorityMessages - - Determines whether a user is allowed to send priorities messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowRemoveUser - - Determines whether a user is allowed to remove a user from a conversation. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSecurityEndUserReporting - - This setting determines if users can report any security concern posted in messages to their admin. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowSmartReply - - Turn this setting on to enable suggested replies for chat messages. - - Boolean - - Boolean - - - True - - - AllowStickers - - Determines whether a user is allowed to access and post stickers. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUrlPreviews - - Use this setting to turn automatic URL previewing on or off in messages. Set this to TRUE to turn on. Set this to FALSE to turn off. Note: Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for URL previews to be allowed. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessage - - Determines whether a user is allowed to delete their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines whether a user is allowed to edit their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserTranslation - - Determines whether a user is allowed to translate messages to their client languages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowVideoMessages - - This setting determines if users can create and send video messages. Possible values: True, False - - Boolean - - Boolean - - - None - - - AudioMessageEnabledType - - Determines whether a user is allowed to send audio messages. Possible values are: ChatsAndChannels,ChatsOnly,Disabled. - - AudioMessageEnabledTypeEnum - - AudioMessageEnabledTypeEnum - - - None - - - ChannelsInChatListEnabledType - - On mobile devices, enable to display favorite channels above recent chats. - Possible values are: DisabledUserOverride,EnabledUserOverride. - - ChannelsInChatListEnabledTypeEnum - - ChannelsInChatListEnabledTypeEnum - - - None - - - ChatPermissionRole - - Determines the Supervised Chat role of the user. Set this to Full to allow the user to supervise chats. Supervisors have the ability to initiate chats with and invite any user within the environment. Set this to Limited to allow the user to initiate conversations with Full and Limited permissioned users, but not Restricted. Set this to Restricted to block chat creation with anyone other than Full permissioned users. - - String - - String - - - Restricted - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CreateCustomEmojis - - This setting enables the creation of custom emojis and reactions within an organization for the specified policy users. - - Boolean - - Boolean - - - None - - - DeleteCustomEmojis - - These settings enable and disable the editing and deletion of custom emojis and reactions for the users included in the messaging policy. - - Boolean - - Boolean - - - None - - - Description - - Allows you to provide a description of your policy to note the purpose of creating it. - - String - - String - - - None - - - DesignerForBackgroundsAndImages - - This setting determines whether a user is allowed to create custom AI-powered backgrounds and images with MS Designer. - Possible values are: Enabled, Disabled. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - GiphyRatingType - - Determines the Giphy content restrictions applicable to a user. Set this to STRICT, MODERATE or NORESTRICTION. - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - - SwitchParameter - - - False - - - InOrganizationChatControl - - This setting determines if chat regulation for internal communication in the tenant is allowed. - - String - - String - - - None - - - ReadReceiptsEnabledType - - Use this setting to specify whether read receipts are user controlled, enabled for everyone, or disabled. Set this to UserPreference, Everyone or None. - - String - - String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - UseB2BInvitesToAddExternalUsers - - Indicates whether B2B invites should be used to add external users when necessary. - Possible values: - - True: External users will be added using B2B invites. - - False: External users will not be added using B2B invites. - - Boolean - - Boolean - - - True - - - AutoShareFilesInExternalChats - - Determines whether files are automatically shared in external chats. - Possible values: - - `Enabled`: Files are automatically shared in external chats. - - `Disabled`: Files are not automatically shared in external chats. - - System.String - - System.String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowChatWithGroup - - This setting determines if users can chat with groups (Distribution, M365 and Security groups). Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowCommunicationComplianceEndUserReporting - - This setting determines if users can report offensive messages to their admin for Communication Compliance. Possible Values: True, False - - Boolean - - Boolean - - - None - - - AllowCustomGroupChatAvatars - - These settings enables, disables updating or fetching custom group chat avatars for the users included in the messaging policy. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowExtendedWorkInfoInSearch - - This setting enables/disables showing company name and department name in search results for MTO users. - - Boolean - - Boolean - - - None - - - AllowFluidCollaborate - - This field enables or disables Fluid Collaborate feature for users. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowFullChatPermissionUserToDeleteAnyMessage - - This setting determines if users with the 'Full permissions' role can delete any group or meeting chat message within their tenant. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGiphy - - Determines whether a user is allowed to access and post Giphys. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowGiphyDisplay - - Determines if Giphy images should be displayed that had been already sent or received in chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGroupChatJoinLinks - - This setting determines if users in a group chat can create and share join links for other users within the organization to join that chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines whether a user is allowed to use Immersive Reader for reading conversation messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines whether a user is allowed to access and post memes. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessage - - Determines whether owners are allowed to delete all the messages in their team. Set this to TRUE to allow. Set this to FALSE to prohibit. - If the `-AllowUserDeleteMessage` parameter is set to FALSE, the team owner will not be able to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowPasteInternetImage - - Determines if a user is allowed to paste internet-based images in compose. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowPriorityMessages - - Determines whether a user is allowed to send priorities messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowRemoveUser - - Determines whether a user is allowed to remove a user from a conversation. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSecurityEndUserReporting - - This setting determines if users can report any security concern posted in messages to their admin. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowSmartCompose - - Turn on this setting to let a user get text predictions for chat messages. - - Boolean - - Boolean - - - None - - - AllowSmartReply - - Turn this setting on to enable suggested replies for chat messages. - - Boolean - - Boolean - - - True - - - AllowStickers - - Determines whether a user is allowed to access and post stickers. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUrlPreviews - - Use this setting to turn automatic URL previewing on or off in messages. Set this to TRUE to turn on. Set this to FALSE to turn off. Note: Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for URL previews to be allowed. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessage - - Determines whether a user is allowed to delete their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines whether a user is allowed to edit their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserTranslation - - Determines whether a user is allowed to translate messages to their client languages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowVideoMessages - - This setting determines if users can create and send video messages. Possible values: True, False - - Boolean - - Boolean - - - None - - - AudioMessageEnabledType - - Determines whether a user is allowed to send audio messages. Possible values are: ChatsAndChannels,ChatsOnly,Disabled. - - AudioMessageEnabledTypeEnum - - AudioMessageEnabledTypeEnum - - - None - - - ChannelsInChatListEnabledType - - On mobile devices, enable to display favorite channels above recent chats. - Possible values are: DisabledUserOverride,EnabledUserOverride. - - ChannelsInChatListEnabledTypeEnum - - ChannelsInChatListEnabledTypeEnum - - - None - - - ChatPermissionRole - - Determines the Supervised Chat role of the user. Set this to Full to allow the user to supervise chats. Supervisors have the ability to initiate chats with and invite any user within the environment. Set this to Limited to allow the user to initiate conversations with Full and Limited permissioned users, but not Restricted. Set this to Restricted to block chat creation with anyone other than Full permissioned users. - - String - - String - - - Restricted - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CreateCustomEmojis - - This setting enables the creation of custom emojis and reactions within an organization for the specified policy users. - - Boolean - - Boolean - - - None - - - DeleteCustomEmojis - - These settings enable and disable the editing and deletion of custom emojis and reactions for the users included in the messaging policy. - - Boolean - - Boolean - - - None - - - Description - - Allows you to provide a description of your policy to note the purpose of creating it. - - String - - String - - - None - - - DesignerForBackgroundsAndImages - - This setting determines whether a user is allowed to create custom AI-powered backgrounds and images with MS Designer. - Possible values are: Enabled, Disabled. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - GiphyRatingType - - Determines the Giphy content restrictions applicable to a user. Set this to STRICT, MODERATE or NORESTRICTION. - - String - - String - - - None - - - Identity - - Unique identifier for the teams messaging policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - SwitchParameter - - SwitchParameter - - - False - - - InOrganizationChatControl - - This setting determines if chat regulation for internal communication in the tenant is allowed. - - String - - String - - - None - - - ReadReceiptsEnabledType - - Use this setting to specify whether read receipts are user controlled, enabled for everyone, or disabled. Set this to UserPreference, Everyone or None. - - String - - String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - UseB2BInvitesToAddExternalUsers - - Indicates whether B2B invites should be used to add external users when necessary. - Possible values: - - True: External users will be added using B2B invites. - - False: External users will not be added using B2B invites. - - Boolean - - Boolean - - - True - - - AutoShareFilesInExternalChats - - Determines whether files are automatically shared in external chats. - Possible values: - - `Enabled`: Files are automatically shared in external chats. - - `Disabled`: Files are not automatically shared in external chats. - - System.String - - System.String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMessagingPolicy -Identity StudentMessagingPolicy -AllowGiphy $false -AllowMemes $false - - In this example two different property values are configured: AllowGiphy is set to false and AllowMemes is set to False. All other policy properties will use the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmessagingpolicy - - - Set-CsTeamsMessagingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmessagingpolicy - - - Get-CsTeamsMessagingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy - - - Grant-CsTeamsMessagingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmessagingpolicy - - - Remove-CsTeamsMessagingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmessagingpolicy - - - - - - New-CsTeamsMobilityPolicy - New - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The New-CsTeamsMobilityPolicy cmdlet lets an Admin create a custom teams mobility policy to assign to particular sets of users. - - - - New-CsTeamsMobilityPolicy - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making and receiving calls or joining meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making and receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making and receiving calls or joining meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making and receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMobilityPolicy -Identity SalesMobilityPolicy -IPAudioMobileMode "WifiOnly" - - The command shown in Example 1 uses the New-CsTeamsMobilityPolicy cmdlet to create a new Teams Mobility Policy with the Identity SalesMobilityPolicy and IPAudioMobileMode equal to WifiOnly. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmobilitypolicy - - - - - - New-CsTeamsNetworkRoamingPolicy - New - CsTeamsNetworkRoamingPolicy - - New-CsTeamsNetworkRoamingPolicy allows IT Admins to create policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Creates new Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - New-CsTeamsNetworkRoamingPolicy - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the new policy to be created. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the new policy to be created. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsNetworkRoamingPolicy -Identity "RedmondRoaming" -AllowIPVideo $true -MediaBitRateKb 2000 -Description "Redmond campus roaming policy" - - The command shown in Example 1 creates a new teams network roaming policy with Identity "RedmondRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 2000 Kbps. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsNetworkRoamingPolicy -Identity "RemoteRoaming" - - The command shown in Example 2 creates a new teams network roaming policy with Identity "RemoteRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 50000 Kbps by default. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsnetworkroamingpolicy - - - - - - New-CsTeamsPersonalAttendantPolicy - New - CsTeamsPersonalAttendantPolicy - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - Use this cmdlet to create a new instance of a Teams Personal Attendant Policy. - When policy modifications are temporarily blocked, new policy instances can be created successfully if the following parameters are kept at their default values (`EnabledUserOverride`): `PersonalAttendant`, `CallScreening`, `CalendarBookings`, `InboundInternalCalls`, `InboundFederatedCalls`, `InboundPSTNCalls`. The AutomaticTranscription and AutomaticRecording parameters remain fully configurable during this period. - - - - The Teams Personal Attendant Policy controls personal attendant and its functionalities available to users in Microsoft Teams. This cmdlet allows admins to create new policy instances. - - - - New-CsTeamsPersonalAttendantPolicy - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - PersonalAttendant - - Enables the user to use the personal attendant - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CallScreening - - Enables the user to use the personal attendant call context evaluation features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CalendarBookings - - Enables the user to use the personal attendant calendar related features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundInternalCalls - - Enables the user to use the personal attendant for incoming domain calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundFederatedCalls - - Enables the user to use the personal attendant for incoming calls from other domains - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundPSTNCalls - - Enables the user to use the personal attendant for incoming PSTN calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticTranscription - - Enables the user to use the automatic storing of personal attendant call transcriptions - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticRecording - - Enables the user to use the automatic storing of personal attendant call recordings - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - PersonalAttendant - - Enables the user to use the personal attendant - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CallScreening - - Enables the user to use the personal attendant call context evaluation features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CalendarBookings - - Enables the user to use the personal attendant calendar related features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundInternalCalls - - Enables the user to use the personal attendant for incoming domain calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundFederatedCalls - - Enables the user to use the personal attendant for incoming calls from other domains - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundPSTNCalls - - Enables the user to use the personal attendant for incoming PSTN calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticTranscription - - Enables the user to use the automatic storing of personal attendant call transcriptions - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticRecording - - Enables the user to use the automatic storing of personal attendant call recordings - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.2.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - New-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy -CallScreening Enabled - - The cmdlet create the policy instance SalesPersonalAttendantPolicy and sets the value of the parameter CallScreening to Enabled. The rest of the parameters are set to the corresponding values in the Global policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamspersonalattendantpolicy - - - Get-CsTeamsPersonalAttendantPolicy - - - - Set-CsTeamsPersonalAttendantPolicy - - - - Grant-CsTeamsPersonalAttendantPolicy - - - - Remove-CsTeamsPersonalAttendantPolicy - - - - - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - New - CsTeamsRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - Create a concrete prompt message setting in multiple languages and multiple scenarios to be displayed to participants after recording or transcription has started. - - - - The strings defined by this command is used for display after recording or transcription is started in a meeting. Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below. These strings will not take effect immediately after being created; they need to be associated with other configurations and policies. - This command will define a complete custom message override policy that can be directly assigned to users. It specifies the In-meeting notification(UFD) prompt content that users with different roles will see in six different scenarios when starting recording and transcription, across various language environments. After this configuration is successfully completed, you can assign the generated Id to the user’s RecordingAndTranscriptionCustomMessageIdentifier field to apply the policy to that user. Afterwards, in meetings hosted by this user, once the language and scenario match, participants will see the new In-meeting notification(UFD) message customized by this command. - - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - - RecordingAndTranscriptionLocalizationCustomMessage - - Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage. - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - - None - - - - - - Id - - The ObjectId of the CsTeamsRecordingAndTranscriptionCustomMessage setting, By assigning the ID to the RecordingAndTranscriptionCustomMessageIdentifier field in the meeting policy or calling policy, you can associate the current custom prompt message configuration with a user group or individual users. - At the same time, when creating CsTeamsRecordingAndTranscriptionCustomMessage, it is not necessary to explicitly specify the ID; a GUID will be automatically generated and stored as the Id. - - - - - - - None - - - DESCRIPTION - - Add a description for CsTeamsRecordingAndTranscriptionCustomMessage. - - - - - - - None - - - RecordingAndTranscriptionLocalizationCustomMessage - - Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage. - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - - None - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsRecordingAndTranscriptionCustomMessage -Id '39dc3ede-c80e-4f19-9153-417a65a1f144' - - The command shown in Example 1 creates an in-memory instance of a CsTeamsRecordingAndTranscriptionCustomMessage with no content. It can be set to RecordingAndTranscriptionCustomMessageIdentifier but nothing will change. - - - - -------------------------- Example 2 -------------------------- - $en = New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -InitiatorImplicit "This call is being recorded." -ParticipantImplicit "This call is being recorded." ->> $zh = New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "zh-CN" -InitiatorExplicit "请注意,此通话正在录音。" -ParticipantExplicitRequested "此通话正在录音,我们将在得到您同意后再录制你的声音。" ->> New-CsTeamsRecordingAndTranscriptionCustomMessage -Description "Multi languages record custom message" -RecordingAndTranscriptionLocalizationCustomMessage @($en, $zh) - - Example 2 demonstrates a complete case, defining the recording and transcription prompt messages that users see in English and Chinese under different scenarios. - If such policy applied to the meeting organizer, then: - - Current user is recording/transcription intiator, Teams language is English US", the meeting organizer doesn't enable consent recording/transcription, when current user start recording or transcript, he/she will see "This call is being recorded.". - - Current user is normal participant, Teams language is English US, the meeting organizer doesn't enable consent recording/transcription, when recording or transcript started, current user will see "This call is being recorded." - - Current user is recording/transcription intiator, Teams language is Chinese simplify, the meeting organizer enable the consent recording/transcription, when current user start recording or transcript, he/she will see "请注意,此通话正在录音。" - - Current user is normal participant, Teams language is Chinese simplify, the meeting organizer enable the consent recording/transcription,after someone started recording or transcription, he will see "此通话正在录音,我们将在得到您同意后再录制你的声音。" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsRecordingAndTranscriptionCustomMessage - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - - - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - New - CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - Create a set of language-specific prompt messages to be displayed to participants after recording or transcription has started. - - - - The strings defined by this command is used for display after recording or transcription is started in a meeting. Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below. These strings will not take effect immediately after being created; they need to be associated with other configurations and policies. Followings are the keys we support. - <b>InitiatorImplicit</b> - User is recording or transcription initiator, recording or transcription consent policy is off for the organizer. - <b>ParticipantImplicit</b> - Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is off for the organizer. - <b>InitiatorExplicit</b> - User is recording or transcription initiator, recording or transcription consent policy is on for the organizer. - <b>ParticipantExplicitRequested</b> - Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is required the attendee to give the consent to recording and transcription. - <b>ParticipantExplicitProvided</b> - Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is attendee has given the consent to recording and transcription. - <b>AgreementDialogue</b> - Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. User clicks the mute, share screen or turn on camera, then a confirm dialog will show to the user. - In most cases, we directly use the custom string to overwrite the original string content. For example, under normal circumstances, when the meeting organizer starts recording, the prompt shown to regular participants is "Started by XXX. By attending this meeting, you agree to being included." If you set the ParticipantImplicit string to "This meeting will be recorded." and successfully apply it to the organizer, then regular participants will see: "Started by XXX. This meeting will be recorded." - However, ParticipantExplicitRequested and agreementDialogue are handled differently. Their original content contains instructional information, so we retain the original content and append the custom content after it. - Note that this cmdlet is only used in conjunction with New-CsTeamsRecordingAndTranscriptionCustomMessage and Set-CsTeamsRecordingAndTranscriptionCustomMessage to create associations between messages in multiple languages. Please refer to the documentation of CsTeamsRecordingAndTranscriptionCustomMessage cmdlets for examples and further information. - - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - Language - - Define language of the message set. In a meeting, if the organizer has applied a custom message, all participants will use the organizer's policy. - - String - - String - - - None - - - InitiatorImplicit - - Custom message when user is recording or transcription initiator, and recording or transcription consent policy is off for the organizer. - - String - - String - - - None - - - ParticipantImplicit - - Custom message when others in meeting turn on recording or transcription, and consent policy is off for the organizer. - - String - - String - - - None - - - InitiatorExplicit - - Custom message when user is recording or transcription initiator, and consent policy is on for the organizer. - - String - - String - - - None - - - ParticipantExplicitRequested - - Custom message when others turn on recording/transcription, consent policy is on, and consent is required. - - String - - String - - - None - - - ParticipantExplicitProvided - - Custom message when others turn on recording/transcription, consent policy is on, and consent has been given. - - String - - String - - - None - - - AgreementDialogue - - Custom message for the agreement dialog when user interacts (mute, share screen, turn on camera) during recording. - - String - - String - - - None - - - - - - Language - - Define language of the message set. In a meeting, if the organizer has applied a custom message, all participants will use the organizer's policy. - - String - - String - - - None - - - InitiatorImplicit - - Custom message when user is recording or transcription initiator, and recording or transcription consent policy is off for the organizer. - - String - - String - - - None - - - ParticipantImplicit - - Custom message when others in meeting turn on recording or transcription, and consent policy is off for the organizer. - - String - - String - - - None - - - InitiatorExplicit - - Custom message when user is recording or transcription initiator, and consent policy is on for the organizer. - - String - - String - - - None - - - ParticipantExplicitRequested - - Custom message when others turn on recording/transcription, consent policy is on, and consent is required. - - String - - String - - - None - - - ParticipantExplicitProvided - - Custom message when others turn on recording/transcription, consent policy is on, and consent has been given. - - String - - String - - - None - - - AgreementDialogue - - Custom message for the agreement dialog when user interacts (mute, share screen, turn on camera) during recording. - - String - - String - - - None - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -InitiatorImplicit "This call is being recorded." -ParticipantImplicit "This call is being recorded." - - The command shown in Example 1 created a new set of custom message in en-US, it defined 2 scenarios, InitiatorImplicit and ParticipantImplicit. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -initiatorExplicit "<empty>" -ParticipantExplicitProvided "<empty>" - -<empty> - - is a keyword for clean the default message. The command shown in Example 2 will create a void message to override the default message of initiatorExplicit and ParticipantExplicitProvided scenarios. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/get-CsTeamsRecordingAndTranscriptionCustomMessage - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - - - - New-CsTeamsRemoteLogCollectionDevice - New - CsTeamsRemoteLogCollectionDevice - - This cmdlet allows you to create a new TeamsRemoteLogCollectionDevice instance and set it's properties. - - - - This cmdlet allows you to create a TeamsRemoteLogCollectionDevice instance. - Remote log collection is a feature in Microsoft Teams that allows IT administrators to remotely trigger the collection of diagnostic logs from user devices through the Teams Admin Center (TAC). Instead of relying on manual user intervention, admins can initiate log collection for troubleshooting directly from the TAC portal. - TeamsRemoteLogCollectionConfiguration is updated with a list of devices when an administrator wants to initiate a request for remote log collection for a user's device. Each device has a unique GUID identity, userId, deviceId and expiry date. - - - - New-CsTeamsRemoteLogCollectionDevice - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - UserId - - > Applicable: Microsoft Teams - Indicates the userId of the user for which an admin is requesting logs for. This userId must be a valid GUID. - - String - - String - - - None - - - DeviceId - - > Applicable: Microsoft Teams - Indicates the deviceId of the device for which an admin is requesting logs for. This deviceId must be a valid GUID. - - String - - String - - - None - - - ExpireAfter - - > Applicable: Microsoft Teams - Indicates the expiry date after which the remote log collection request will expire. This expire after date should be set to now() + 3 days. This expiry date should be in ISO 8601 UTC format. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - UserId - - > Applicable: Microsoft Teams - Indicates the userId of the user for which an admin is requesting logs for. This userId must be a valid GUID. - - String - - String - - - None - - - DeviceId - - > Applicable: Microsoft Teams - Indicates the deviceId of the device for which an admin is requesting logs for. This deviceId must be a valid GUID. - - String - - String - - - None - - - ExpireAfter - - > Applicable: Microsoft Teams - Indicates the expiry date after which the remote log collection request will expire. This expire after date should be set to now() + 3 days. This expiry date should be in ISO 8601 UTC format. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsRemoteLogCollectionDevice -UserId "765267a2-aa73-4984-a37e-43470f5e21a7" -DeviceId "765267a2-aa73-4984-a37e-43470f5e21a7" -ExpireAfter "06/07/2025 15:30:45" - - Creates a new instance of TeamsRemoteLogCollectionDevice. Each Identity, userId and deviceId must be a valid GUID. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csTeamsRemoteLogCollectionDevice - - - Get-CsTeamsRemoteLogCollectionConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionConfiguration - - - Get-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionDevice - - - Set-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/set-csTeamsRemoteLogCollectionDevice - - - Remove-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csTeamsRemoteLogCollectionDevice - - - - - - New-CsTeamsRoomVideoTeleConferencingPolicy - New - CsTeamsRoomVideoTeleConferencingPolicy - - Creates a new TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - New-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsroomvideoteleconferencingpolicy - - - - - - New-CsTeamsSharedCallingRoutingPolicy - New - CsTeamsSharedCallingRoutingPolicy - - Use the New-CsTeamsSharedCallingRoutingPolicy cmdlet to configure a shared calling routing policy. - - - - The Teams shared calling routing policy configures the caller ID for normal outbound PSTN and emergency calls made by users enabled for Shared Calling using this policy instance. - The caller ID for normal outbound PSTN calls is the phone number assigned to the resource account specified in the policy instance. Typically this is the organization's main auto attendant phone number. Callbacks will go to the auto attendant and the PSTN caller can use the auto attendant to be transferred to the shared calling user. - When a shared calling user makes an emergency call, the emergency services need to be able to make a direct callback to the user who placed the emergency call. One of the defined emergency numbers is used for this purpose as caller ID for the emergency call. It will be reserved for the next 60 minutes and any inbound call to that number will directly ring the shared calling user who made the emergency call. If no emergency numbers are defined, the phone number of the resource account is used as caller ID. If no free emergency numbers are available, the first number in the list is reused. - The emergency call will contain the location of the shared calling user. The location will be either the dynamic emergency location obtained by the Teams client or if that is not available the static location assigned to the phone number of the resource account used in the shared calling policy instance. - - - - New-CsTeamsSharedCallingRoutingPolicy - - Identity - - Unique identifier of the Teams shared calling routing policy to be created. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The description of the new policy instance. - - String - - String - - - None - - - EmergencyNumbers - - An array of phone numbers used as caller ID on emergency calls. - The emergency numbers must be routable for inbound PSTN calls, and for Calling Plan and Operator Connect phone numbers, must be available within the organization. - The emergency numbers specified must all be of the same phone number type and country as the phone number assigned to the specified resource account. If the resource account has a Calling Plan service number assigned, the emergency numbers need to be Calling Plan subscriber numbers. - The emergency numbers must be unique and can't be reused in other shared calling policy instances. The emergency numbers can't be assigned to any user or resource account. - If no emergency numbers are configured, the phone number of the resource account is used as the Caller ID for the emergency call. - - System.Management.Automation.PSListModifier[String] - - System.Management.Automation.PSListModifier[String] - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - ResourceAccount - - The Identity of the resource account. Can only be specified using the Identity or ObjectId of the resource account. - The phone number assigned to the resource account must: - Have the same phone number type and country as the emergency numbers configured in this policy instance. - - Must have an emergency location assigned. You can use the Teams PowerShell Module Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and the -LocationId parameter to set the location. - If the resource account is using a Calling Plan service number, you must have a Pay-As-You-Go Calling Plan, and assign it to the resource account. In addition, you need to assign a Communications credits license to the resource account and fund it to support outbound shared calling calls via the Pay-As-You-Go Calling Plan. - The same resource account can be used in multiple shared calling policy instances. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The description of the new policy instance. - - String - - String - - - None - - - EmergencyNumbers - - An array of phone numbers used as caller ID on emergency calls. - The emergency numbers must be routable for inbound PSTN calls, and for Calling Plan and Operator Connect phone numbers, must be available within the organization. - The emergency numbers specified must all be of the same phone number type and country as the phone number assigned to the specified resource account. If the resource account has a Calling Plan service number assigned, the emergency numbers need to be Calling Plan subscriber numbers. - The emergency numbers must be unique and can't be reused in other shared calling policy instances. The emergency numbers can't be assigned to any user or resource account. - If no emergency numbers are configured, the phone number of the resource account is used as the Caller ID for the emergency call. - - System.Management.Automation.PSListModifier[String] - - System.Management.Automation.PSListModifier[String] - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the Teams shared calling routing policy to be created. - - String - - String - - - None - - - ResourceAccount - - The Identity of the resource account. Can only be specified using the Identity or ObjectId of the resource account. - The phone number assigned to the resource account must: - Have the same phone number type and country as the emergency numbers configured in this policy instance. - - Must have an emergency location assigned. You can use the Teams PowerShell Module Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and the -LocationId parameter to set the location. - If the resource account is using a Calling Plan service number, you must have a Pay-As-You-Go Calling Plan, and assign it to the resource account. In addition, you need to assign a Communications credits license to the resource account and fund it to support outbound shared calling calls via the Pay-As-You-Go Calling Plan. - The same resource account can be used in multiple shared calling policy instances. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - In some Calling Plan markets, you are not allowed to set the location on service numbers. In this instance, kindly contact the Telephone Number Services service desk (https://learn.microsoft.com/microsoftteams/phone-reference/manage-numbers/contact-tns-service-desk). - If you are attempting to use a resource account with an Operator Connect phone number assigned, you should confirm support for Shared Calling with your operator. - Shared Calling is not supported for Calling Plan service phone numbers in Romania, the Czech Republic, Hungary, Singapore, New Zealand, Australia, and Japan. A limited number of existing Calling Plan service phone numbers in other countries are also not supported for Shared Calling. For such service phone numbers, please contact the Telephone Number Services service desk (https://learn.microsoft.com/microsoftteams/phone-reference/manage-numbers/contact-tns-service-desk). - This cmdlet was introduced in Teams PowerShell Module 5.5.0. - - - - - -------------------------- Example 1 -------------------------- - $ra = Get-CsOnlineUser -Identity ra1@contoso.com -$PhoneNumber=Get-CsPhoneNumberAssignment -AssignedPstnTargetId ra1@contoso.com -$CivicAddress = Get-CsOnlineLisCivicAddress -City Seattle -Set-CsPhoneNumberAssignment -LocationId $CivicAddress.DefaultLocationId -PhoneNumber $PhoneNumber.TelephoneNumber -New-CsTeamsSharedCallingRoutingPolicy -Identity Seattle -ResourceAccount $ra.Identity -EmergencyNumbers @{add='+14255556677','+14255554321'} -Description 'Seattle' - - The command shown in Example 1 gets the identity and phone number assigned to the Teams resource account ra1@contoso.com, sets the location of the phone number to be the Seattle location, and creates a new Shared Calling policy called Seattle that is using the Teams resource account ra1@contoso.com and the emergency numbers +14255556677 and +14255554321. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssharedcallingroutingpolicy - - - Set-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssharedcallingroutingpolicy - - - Grant-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssharedcallingroutingpolicy - - - Remove-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssharedcallingroutingpolicy - - - Get-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssharedcallingroutingpolicy - - - Set-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment - - - - - - New-CsTeamsShiftsPolicy - New - CsTeamsShiftsPolicy - - This cmdlet allows you to create a new TeamsShiftPolicy instance and set it's properties. - - - - This cmdlet allows you to create a TeamsShiftPolicy instance. Use this to also set the policy name, schedule owner permissions, and Teams off shift warning message-specific settings (ShiftNoticeMessageType, ShiftNoticeMessageCustom, ShiftNoticeFrequency, AccessGracePeriodMinutes). - - - - New-CsTeamsShiftsPolicy - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - AccessGracePeriodMinutes - - > Applicable: Microsoft Teams - Indicates the grace period time in minutes between when the first shift starts or last shift ends and when access is blocked. - - Int64 - - Int64 - - - None - - - AccessType - - > Applicable: Microsoft Teams - Indicates the Teams access type granted to the user. Today, only unrestricted access to Teams app is supported. Use 'UnrestrictedAccess_TeamsApp' as the value for this setting, or is set by default. For Teams Off Shift Access Control, the option to show the user a blocking dialog message is supported. Once the user accepts this message, it is audit logged and the user has usual access to Teams. Set other off shift warning message-specific settings to configure off shift access controls for the user. - - String - - String - - - UnrestrictedAccess_TeamsApp - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableScheduleOwnerPermissions - - > Applicable: Microsoft Teams - Indicates whether a user can manage a Shifts schedule as a team member. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - ShiftNoticeFrequency - - > Applicable: Microsoft Teams - Frequency of warning dialog displayed when user opens Teams. Select one of Always, ShowOnceOnChange, Never. - - String - - String - - - None - - - ShiftNoticeMessageCustom - - > Applicable: Microsoft Teams - Provide a custom message. Must set ShiftNoticeMessageType to 'CustomMessage' to enforce this. - - String - - String - - - None - - - ShiftNoticeMessageType - - > Applicable: Microsoft Teams - The warning message is shown in the blocking dialog when a user access Teams off shift hours. Select one of 7 Microsoft provided messages, a default message or a custom message. 'Message1' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. By accepting, you acknowledge that your use of Teams while off shift is not authorized and you will not be compensated. 'Message2' - Accessing this app outside working hours is voluntary. You won't be compensated for time spent on Teams. Refer to your employer's guidelines on using this app outside working hours. By accepting, you acknowledge that you understand the statement above. 'Message3' - You won't be compensated for time using Teams. By accepting, you acknowledge that you understand the statement above. 'Message4' - You're not authorized to use Teams while off shift. By accepting, you acknowledge your use of Teams is against your employer's policy. 'Message5' - Access to Teams is turned off during non-working hours. You will be able to access the app when your next shift starts. 'Message6' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. Access to corporate resources are only allowed during approved working hours and should be recorded as hours worked in your employer's timekeeping system. 'Message7' - Your employer has turned off access to Teams during non-working hours. Refer to your employer's guidelines on using this app outside working hours. 'DefaultMessage' - You aren't authorized to use Microsoft Teams during non-working hours and will only be compensated for using it during approved working hours. 'CustomMessage' - - String - - String - - - DefaultMessage - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AccessGracePeriodMinutes - - > Applicable: Microsoft Teams - Indicates the grace period time in minutes between when the first shift starts or last shift ends and when access is blocked. - - Int64 - - Int64 - - - None - - - AccessType - - > Applicable: Microsoft Teams - Indicates the Teams access type granted to the user. Today, only unrestricted access to Teams app is supported. Use 'UnrestrictedAccess_TeamsApp' as the value for this setting, or is set by default. For Teams Off Shift Access Control, the option to show the user a blocking dialog message is supported. Once the user accepts this message, it is audit logged and the user has usual access to Teams. Set other off shift warning message-specific settings to configure off shift access controls for the user. - - String - - String - - - UnrestrictedAccess_TeamsApp - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableScheduleOwnerPermissions - - > Applicable: Microsoft Teams - Indicates whether a user can manage a Shifts schedule as a team member. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - ShiftNoticeFrequency - - > Applicable: Microsoft Teams - Frequency of warning dialog displayed when user opens Teams. Select one of Always, ShowOnceOnChange, Never. - - String - - String - - - None - - - ShiftNoticeMessageCustom - - > Applicable: Microsoft Teams - Provide a custom message. Must set ShiftNoticeMessageType to 'CustomMessage' to enforce this. - - String - - String - - - None - - - ShiftNoticeMessageType - - > Applicable: Microsoft Teams - The warning message is shown in the blocking dialog when a user access Teams off shift hours. Select one of 7 Microsoft provided messages, a default message or a custom message. 'Message1' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. By accepting, you acknowledge that your use of Teams while off shift is not authorized and you will not be compensated. 'Message2' - Accessing this app outside working hours is voluntary. You won't be compensated for time spent on Teams. Refer to your employer's guidelines on using this app outside working hours. By accepting, you acknowledge that you understand the statement above. 'Message3' - You won't be compensated for time using Teams. By accepting, you acknowledge that you understand the statement above. 'Message4' - You're not authorized to use Teams while off shift. By accepting, you acknowledge your use of Teams is against your employer's policy. 'Message5' - Access to Teams is turned off during non-working hours. You will be able to access the app when your next shift starts. 'Message6' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. Access to corporate resources are only allowed during approved working hours and should be recorded as hours worked in your employer's timekeeping system. 'Message7' - Your employer has turned off access to Teams during non-working hours. Refer to your employer's guidelines on using this app outside working hours. 'DefaultMessage' - You aren't authorized to use Microsoft Teams during non-working hours and will only be compensated for using it during approved working hours. 'CustomMessage' - - String - - String - - - DefaultMessage - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsShiftsPolicy -Identity OffShiftAccessMessage1Always - - Creates a new instance of TeamsShiftsPolicy called OffShiftAccessMessage1Always and applies the default values to its settings. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsShiftsPolicy -Identity OffShiftAccessMessage1Always -ShiftNoticeFrequency always -ShiftNoticeMessageType Message1 -AccessType UnrestrictedAccess_TeamsApp -AccessGracePeriodMinutes 5 -EnableScheduleOwnerPermissions $false - - Creates a new instance of TeamsShiftsPolicy called OffShiftAccessMessage1Always and applies the provided values to its settings. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-teamsshiftspolicy - - - Get-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftspolicy - - - Set-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftspolicy - - - Remove-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftspolicy - - - Grant-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsshiftspolicy - - - - - - New-CsTeamsSurvivableBranchAppliance - New - CsTeamsSurvivableBranchAppliance - - Creates a new Survivable Branch Appliance (SBA) object in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - New-CsTeamsSurvivableBranchAppliance - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Fqdn - - The FQDN of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the SBA. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Fqdn - - The FQDN of the SBA. - - String - - String - - - None - - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssurvivablebranchappliance - - - - - - New-CsTeamsSurvivableBranchAppliancePolicy - New - CsTeamsSurvivableBranchAppliancePolicy - - Creates a new Survivable Branch Appliance (SBA) policy object in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - New-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The unique identifier. - - String - - String - - - None - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssurvivablebranchappliancepolicy - - - - - - New-CsTeamsTemplatePermissionPolicy - New - CsTeamsTemplatePermissionPolicy - - Creates a new instance of the TeamsTemplatePermissionPolicy. - - - - Creates a new instance of the policy with a name and a list of hidden Teams template IDs. The template IDs passed into the `HiddenTemplates` object must be valid existing template IDs. The current custom and first-party templates on a tenant can be fetched by Get-CsTeamTemplateList (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist). - - - - New-CsTeamsTemplatePermissionPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the new policy instance to be created. - - String - - String - - - None - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - - SwitchParameter - - - False - - - HiddenTemplates - - The list of Teams template IDs to hide. The HiddenTemplate objects are created with New-CsTeamsHiddenTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddentemplate). - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the new policy instance to be created. - - String - - String - - - None - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - SwitchParameter - - SwitchParameter - - - False - - - HiddenTemplates - - The list of Teams template IDs to hide. The HiddenTemplate objects are created with New-CsTeamsHiddenTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddentemplate). - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - - None - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - TeamsTemplatePermissionPolicy.Cmdlets.TeamsTemplatePermissionPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS >$manageEventTemplate = New-CsTeamsHiddenTemplate -Id com.microsoft.teams.template.ManageAnEvent -PS >$manageProjectTemplate = New-CsTeamsHiddenTemplate -Id com.microsoft.teams.template.ManageAProject -PS >$HiddenList = @($manageProjectTemplate, $manageEventTemplate) -PS >New-CsTeamsTemplatePermissionPolicy -Identity Foobar -HiddenTemplates $HiddenList - -Identity HiddenTemplates Description --------- --------------- ----------- -Tag:Foobar {com.microsoft.teams.template.ManageAProject, com.microsoft.teams.template.ManageAnEvent} - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy - - - Get-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstemplatepermissionpolicy - - - Remove-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstemplatepermissionpolicy - - - Set-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstemplatepermissionpolicy - - - - - - New-CsTeamsUnassignedNumberTreatment - New - CsTeamsUnassignedNumberTreatment - - Creates a new treatment for how calls to an unassigned number range should be routed. The call can be routed to a user, an application or to an announcement service where a custom message will be played to the caller. - - - - This cmdlet creates a treatment for how calls to an unassigned number range should be routed. - - - - New-CsTeamsUnassignedNumberTreatment - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsTeamsUnassignedNumberTreatment - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentId - - The identity of the treatment. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentId - - The identity of the treatment. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - The parameters Identity and TreatmentId are mutually exclusive. - To route calls to unassigned Microsoft Calling Plan subscriber numbers, your tenant needs to have available Communications Credits. - To route calls to unassigned Microsoft Calling Plan service numbers, your tenant needs to have at least one Microsoft Teams Phone Resource Account license. - Both inbound calls to Microsoft Teams and outbound calls from Microsoft Teams will have the called number checked against the unassigned number range. - If a specified pattern/range contains phone numbers that are assigned to a user or resource account in the tenant, calls to these phone numbers will be routed to the appropriate target and not routed to the specified unassigned number treatment. There are no other checks of the numbers in the range. If the range contains a valid external phone number, outbound calls from Microsoft Teams to that phone number will be routed according to the treatment. - - - - - -------------------------- Example 1 -------------------------- - $RAObjectId = (Get-CsOnlineApplicationInstance -Identity aa@contoso.com).ObjectId -New-CsTeamsUnassignedNumberTreatment -Identity MainAA -Pattern "^\+15552223333$" -TargetType ResourceAccount -Target $RAObjectId -TreatmentPriority 1 - - This example creates a treatment that will route all calls to the number +1 (555) 222-3333 to the resource account aa@contoso.com. That resource account is associated with an Auto Attendant (not part of the example). - - - - -------------------------- Example 2 -------------------------- - $Content = Get-Content "C:\Media\MainAnnoucement.wav" -Encoding byte -ReadCount 0 -$AudioFile = Import-CsOnlineAudioFile -FileName "MainAnnouncement.wav" -Content $Content -$Fid=[System.Guid]::Parse($audioFile.Id) -New-CsTeamsUnassignedNumberTreatment -Identity TR1 -Pattern "^\+1555333\d{4}$" -TargetType Announcement -Target $Fid.Guid -TreatmentPriority 2 - - This example creates a treatment that will route all calls to unassigned numbers in the range +1 (555) 333-0000 to +1 (555) 333-9999 to the announcement service, where the audio file MainAnnouncement.wav will be played to the caller. - - - - -------------------------- Example 3 -------------------------- - $UserObjectId = (Get-CsOnlineUser -Identity user@contoso.com).Identity -New-CsTeamsUnassignedNumberTreatment -Identity TR2 -Pattern "^\+15552224444$" -TargetType User -Target $UserObjectId -TreatmentPriority 3 - - This example creates a treatment that will route all calls to the number +1 (555) 222-4444 to the user user@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - New-CsTeamsUpdateManagementPolicy - New - CsTeamsUpdateManagementPolicy - - Use this cmdlet to create Teams Update Management policy. - - - - The Teams Update Management Policy allows admins to specify if a given user is enabled to preview features in Teams. - This cmdlet can be used to create a new policy to manage the visibility of some Teams in-product messages. Executing the cmdlet will suppress the corresponding category of messages from appearing for the specified user group. - - - - New-CsTeamsUpdateManagementPolicy - - Identity - - A unique identifier. - - String - - String - - - None - - - AllowManagedUpdates - - Enables/Disables managed updates for the user. - - Boolean - - Boolean - - - None - - - AllowPreview - - Indicates whether all feature flags are switched on or off. Can be set only when AllowManagedUpdates is set to True. - - Boolean - - Boolean - - - None - - - AllowPrivatePreview - - This setting will allow admins to allow users in their tenant to opt in to Private Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is Forced, then users will be switched to Private Preview. - - AllowPrivatePreview - - AllowPrivatePreview - - - None - - - AllowPublicPreview - - This setting will allow admins to allow users in their tenant to opt in to Public Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is FollowOfficePreview, then users will not be able to opt in and instead follow their Office channel, and be switched to Public Preview if their Office channel is CC (Preview). The ring switcher UI will be hidden in the Desktop Client. This is not applicable to the Web Client. If it is Forced, then users will be switched to Public Preview. - - String - - String - - - None - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisabledInProductMessages - - List of IDs of the categories of the in-product messages that will be disabled. You can choose one of the categories from this table: - | ID | Campaign Category | | -- | -- | | 91382d07-8b89-444c-bbcb-cfe43133af33| What's New | | edf2633e-9827-44de-b34c-8b8b9717e84c | Conferences | - - System.Management.Automation.PSListModifier`1[System.String] - - System.Management.Automation.PSListModifier`1[System.String] - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - UpdateDayOfWeek - - Machine local day. 0-6(Sun-Sat) Can be set only when AllowManagedUpdates is set to True. - - Int64 - - Int64 - - - None - - - UpdateTime - - Machine local time in HH:MM format. Can be set only when AllowManagedUpdates is set to True. - - String - - String - - - None - - - UpdateTimeOfDay - - Machine local time. Can be set only when AllowManagedUpdates is set to True - - DateTime - - DateTime - - - None - - - UseNewTeamsClient - - This setting will enable admins to show or hide which users see the Teams preview toggle on the current Teams client. If it is AdminDisabled, then users will not be able to see the Teams preview toggle in the Desktop Client. If it is UserChoice, then users will be able to see the Teams preview toggle in the Desktop Client. If it is MicrosoftChoice, then Microsoft will configure/ manage whether user sees or does not see this feature if the admin has set nothing. If it is NewTeamsAsDefault, then New Teams will be default for users, and they will be able to switch back to Classic Teams via the toggle in the Desktop Client. If it is NewTeamsOnly, then New Teams will be the only Teams client installed for users. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowManagedUpdates - - Enables/Disables managed updates for the user. - - Boolean - - Boolean - - - None - - - AllowPreview - - Indicates whether all feature flags are switched on or off. Can be set only when AllowManagedUpdates is set to True. - - Boolean - - Boolean - - - None - - - AllowPrivatePreview - - This setting will allow admins to allow users in their tenant to opt in to Private Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is Forced, then users will be switched to Private Preview. - - AllowPrivatePreview - - AllowPrivatePreview - - - None - - - AllowPublicPreview - - This setting will allow admins to allow users in their tenant to opt in to Public Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is FollowOfficePreview, then users will not be able to opt in and instead follow their Office channel, and be switched to Public Preview if their Office channel is CC (Preview). The ring switcher UI will be hidden in the Desktop Client. This is not applicable to the Web Client. If it is Forced, then users will be switched to Public Preview. - - String - - String - - - None - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisabledInProductMessages - - List of IDs of the categories of the in-product messages that will be disabled. You can choose one of the categories from this table: - | ID | Campaign Category | | -- | -- | | 91382d07-8b89-444c-bbcb-cfe43133af33| What's New | | edf2633e-9827-44de-b34c-8b8b9717e84c | Conferences | - - System.Management.Automation.PSListModifier`1[System.String] - - System.Management.Automation.PSListModifier`1[System.String] - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier. - - String - - String - - - None - - - UpdateDayOfWeek - - Machine local day. 0-6(Sun-Sat) Can be set only when AllowManagedUpdates is set to True. - - Int64 - - Int64 - - - None - - - UpdateTime - - Machine local time in HH:MM format. Can be set only when AllowManagedUpdates is set to True. - - String - - String - - - None - - - UpdateTimeOfDay - - Machine local time. Can be set only when AllowManagedUpdates is set to True - - DateTime - - DateTime - - - None - - - UseNewTeamsClient - - This setting will enable admins to show or hide which users see the Teams preview toggle on the current Teams client. If it is AdminDisabled, then users will not be able to see the Teams preview toggle in the Desktop Client. If it is UserChoice, then users will be able to see the Teams preview toggle in the Desktop Client. If it is MicrosoftChoice, then Microsoft will configure/ manage whether user sees or does not see this feature if the admin has set nothing. If it is NewTeamsAsDefault, then New Teams will be default for users, and they will be able to switch back to Classic Teams via the toggle in the Desktop Client. If it is NewTeamsOnly, then New Teams will be the only Teams client installed for users. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - TeamsUpdateManagementPolicy.Cmdlets.TeamsUpdateManagementPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsUpdateManagementPolicy -Identity "Campaign Policy" -DisabledInProductMessages @("91382d07-8b89-444c-bbcb-cfe43133af33") - - Disable the in-product messages with the category "What's New". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsupdatemanagementpolicy - - - - - - New-CsTeamsUpgradePolicy - New - CsTeamsUpgradePolicy - - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether user see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download Teams based on the value of CsTeamsUpgradeConfiguration. - - - - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The new-CsTeamsUpgradePolicy lets the administrator create a policy that can be assigned to users homed in Skype for Business on-premises to notify of them of a pending upgrade to Teams. Notifications are enabled by the boolean parameter NotifySfBUsers. - For users with Win32 versions of Skype for Business, if DownloadTeams=true in CsTeamsUpgradeConfiguration, users who are assigned an instance of TeamsUpgradePolicy with NotifySfBUsers=true will have Teams automatically downloaded in the background. - Notes: * Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online. - * Skype for Business Online already provides built-in instances of TeamsUpgradePolicy, so there is no New-CsTeamsUpgradePolicy cmdlet for the online environment by design. - - - - New-CsTeamsUpgradePolicy - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing. - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Skype for Business Server 2019 - Free form text that can be used as needed by administrators. - - String - - String - - - None - - - NotifySfbUsers - - > Applicable: Skype for Business Server 2019 - Determines whether users who are assigned this policy will see a notification in their Skype for Business client about a pending upgrade to Teams. In addition, if NotifySfBUsers=true and TeamsUpgradeConfiguration has DownloadTeams=true, Win32 versions of Skype for Business will silently download the Teams client. - - Boolean - - Boolean - - - None - - - - - - Description - - > Applicable: Skype for Business Server 2019 - Free form text that can be used as needed by administrators. - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing. - - XdsIdentity - - XdsIdentity - - - None - - - NotifySfbUsers - - > Applicable: Skype for Business Server 2019 - Determines whether users who are assigned this policy will see a notification in their Skype for Business client about a pending upgrade to Teams. In addition, if NotifySfBUsers=true and TeamsUpgradeConfiguration has DownloadTeams=true, Win32 versions of Skype for Business will silently download the Teams client. - - Boolean - - Boolean - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - ------------ Example 1: Create a site-level policy ------------ - PS C:\> new-CsTeamsUpgradePolicy -identity site:Redmond1 -NotifySfBUsers $true - - This creates a policy for users in the site Redmond1. - - - - ------ Example 2: Create a policy not specific to a site. ------ - PS C:\> new-CsTeamsUpgradePolicy -identity EnableNotifications -NotifySfBUsers $true - - This creates a policy for users that can be granted as desired to individual users - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - Grant-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradePolicy - - - - New-CsTeamsUpgradePolicy - - - - Remove-CsTeamsUpgradePolicy - - - - Set-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradeConfiguration - - - - Set-CsTeamsUpgradeConfiguration - - - - - - - New-CsTeamsVdiPolicy - New - CsTeamsVdiPolicy - - The New-CsTeamsVdiPolicy cmdlet allows administrators to define new Vdi policies that can be assigned to particular users to control Teams features related to meetings on a VDI environment. - - - - The CsTeamsVdiPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting for an unoptimized VDI environment. It also controls whether a user can be in VDI 2.0 optimization mode. - - - - New-CsTeamsVdiPolicy - - Identity - - Specify the name of the policy being created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DisableAudioVideoInCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can hold person-to-person audio and video calls. Set this to TRUE to disallow a non-optimized user to hold person-to-person audio and video calls. Set this to FALSE to allow a non-optimized user to hold person-to-person audio and video calls. A user can still join a meeting and share screen from chat and join a meeting and share a screen and move their audio to a phone. - - Boolean - - Boolean - - - None - - - DisableCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can make all types of calls. Set this to TRUE to disallow a non-optimized user to make calls, join meetings, and screen share from chat. Set this to FALSE to allow a non-optimized user to make calls, join meetings, and screen share from chat. - - Boolean - - Boolean - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - VDI2Optimization - - Determines whether a user can be VDI 2.0 optimized. * Enabled - allow a user to be VDI 2.0 optimized. - * Disabled - disallow a user to be VDI 2.0 optimized. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DisableAudioVideoInCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can hold person-to-person audio and video calls. Set this to TRUE to disallow a non-optimized user to hold person-to-person audio and video calls. Set this to FALSE to allow a non-optimized user to hold person-to-person audio and video calls. A user can still join a meeting and share screen from chat and join a meeting and share a screen and move their audio to a phone. - - Boolean - - Boolean - - - None - - - DisableCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can make all types of calls. Set this to TRUE to disallow a non-optimized user to make calls, join meetings, and screen share from chat. Set this to FALSE to allow a non-optimized user to make calls, join meetings, and screen share from chat. - - Boolean - - Boolean - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy being created. - - String - - String - - - None - - - VDI2Optimization - - Determines whether a user can be VDI 2.0 optimized. * Enabled - allow a user to be VDI 2.0 optimized. - * Disabled - disallow a user to be VDI 2.0 optimized. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - TeamsVdiPolicy.Cmdlets.TeamsVdiPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsVdiPolicy -Identity RestrictedUserPolicy -VDI2Optimization "Disabled" - - The command shown in Example 1 uses the New-CsTeamsVdiPolicy cmdlet to create a new Vdi policy with the Identity RestrictedUserPolicy. This policy will use all the default values for a vdi policy except one: VDI2Optimization; in this example, users with this policy will not be able to be VDI 2.0 optimized. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsVdiPolicy -Identity OnlyOptimizedPolicy -DisableAudioVideoInCallsAndMeetings $True -DisableCallsAndMeetings $True - - In Example 2, the New-CsTeamsVdiPolicy cmdlet is used to create a Vdi policy with the Identity OnlyOptimizedPolicy. In this example two different property values are configured: DisableAudioVideoInCallsAndMeetings is set to True and DisableCallsAndMeetings is set to True. All other policy properties will use the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvdipolicy - - - - - - New-CsTeamsVirtualAppointmentsPolicy - New - CsTeamsVirtualAppointmentsPolicy - - This cmdlet is used to create a new instance of the TeamsVirtualAppointmentsPolicy. - - - - Creates a new instance of the TeamsVirtualAppointmentsPolicy. This policy can be used to tailor the virtual appointment template meeting experience. The parameter `EnableSmsNotifications` allows you to specify whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using the virtual appointment meeting template. - - - - New-CsTeamsVirtualAppointmentsPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableSmsNotifications - - > Applicable: Microsoft Teams - This property specifies whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using a virtual appointment template meeting. - - Boolean - - Boolean - - - True - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableSmsNotifications - - > Applicable: Microsoft Teams - This property specifies whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using a virtual appointment template meeting. - - Boolean - - Boolean - - - True - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - TeamsVirtualAppointmentsPolicy.Cmdlets.TeamsVirtualAppointmentsPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsVirtualAppointmentsPolicy -Identity sms-enabled - -Identity EnableSmsNotifications --------- ---------------------- -Tag:sms-enabled True - - Creates a new policy instance with the identity enable-sms. `EnableSmsNotifications` will default to true if it is not specified. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsVirtualAppointmentsPolicy -Identity disable-sms -EnableSmsNotifications $false - -Identity EnableSmsNotifications --------- ---------------------- -Tag:sms-enabled False - - Creates a new policy instance with the identity sms-disabled. `EnableSmsNotifications` is set to the value specified in the command. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvirtualappointmentspolicy - - - Get-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvirtualappointmentspolicy - - - Remove-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvirtualappointmentspolicy - - - Set-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvirtualappointmentspolicy - - - Grant-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvirtualappointmentspolicy - - - - - - New-CsTeamsVoiceApplicationsPolicy - New - CsTeamsVoiceApplicationsPolicy - - Creates a new Teams voice applications policy. `TeamsVoiceApplications` policy governs what permissions the supervisors/users have over auto attendants and call queues. - - - - `TeamsVoiceApplicationsPolicy` is used for Supervisor Delegated Administration which allows admins in the organization to permit certain users to make changes to auto attendant and call queue configurations. - - - - New-CsTeamsVoiceApplicationsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - AllowAutoAttendantAfterHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantAfterHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours schedule. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours schedule. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday call flows. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday call flows. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidaysChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday schedules. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday schedules. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's language. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantTimeZoneChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's time zone. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's time zone. - - Boolean - - Boolean - - - False - - - AllowCallQueueAgentOptChange - - When set to `True`, users affected by the policy will be allowed to change an agent's opt-in status in the call queue. When set to `False` (the default value), users affected by the policy won't be allowed to change an agent's opt-in status in the call queue. - - Boolean - - Boolean - - - False - - - AllowCallQueueConferenceModeChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's conference mode. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's conference mode. - - Boolean - - Boolean - - - False - - - AllowCallQueueLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's language. - - Boolean - - Boolean - - - False - - - AllowCallQueueMembershipChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's users. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's users. - - Boolean - - Boolean - - - False - - - AllowCallQueueMusicOnHoldChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's music on hold information. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's music on hold. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentSharedVoicemailGreetingChange - - This option is not currently available in Queues app. When set to `True`, users affected by the policy will be allowed to change the call queue's no agent shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no agent shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentsRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's no-agent handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no-agent handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOptOutChange - - When set to `True`, users affected by the policy will be allowed to change the call queue opt-out setting that allows agents to opt out of receiving calls. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue opt-out setting. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueuePresenceBasedRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's presence-based routing option. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's presence-based routing option. - - Boolean - - Boolean - - - False - - - AllowCallQueueRoutingMethodChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's routing method. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's routing method. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueWelcomeGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's welcome greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's welcome greeting. - - Boolean - - Boolean - - - False - - - CallQueueAgentMonitorMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Monitor | Whisper | Barge | Takeover - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor call sessions. - When set to `Monitor`, users affected by the policy will be allowed to monitor and listen to call sessions. - When set to `Whisper`, users affected by the policy will be allowed to monitor call sessions and whisper to an agent in the call. - When set to `Barge`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, or join the call session. - When set to `Takeover`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, join the call session, or take over the call from an agent. - - Object - - Object - - - Disabled - - - CallQueueAgentMonitorNotificationMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Agent - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor agents during call sessions. - When set to `Agent`, users affected by the policy will be allowed to monitor agents during call sessions. - - Object - - Object - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - HistoricalAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for agents who are members in the call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all agents in all call queues in the organization. - - Object - - Object - - - None - - - HistoricalAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for auto attendants they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all auto attendants in the organization. - - Object - - Object - - - None - - - HistoricalCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all call queues in the organization. - - Object - - Object - - - None - - - RealTimeAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for agents who are members in the call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeAgentMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for auto attendants they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeAutoAttendantMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeCallQueueMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowAutoAttendantAfterHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantAfterHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours schedule. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours schedule. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday call flows. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday call flows. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidaysChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday schedules. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday schedules. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's language. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantTimeZoneChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's time zone. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's time zone. - - Boolean - - Boolean - - - False - - - AllowCallQueueAgentOptChange - - When set to `True`, users affected by the policy will be allowed to change an agent's opt-in status in the call queue. When set to `False` (the default value), users affected by the policy won't be allowed to change an agent's opt-in status in the call queue. - - Boolean - - Boolean - - - False - - - AllowCallQueueConferenceModeChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's conference mode. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's conference mode. - - Boolean - - Boolean - - - False - - - AllowCallQueueLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's language. - - Boolean - - Boolean - - - False - - - AllowCallQueueMembershipChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's users. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's users. - - Boolean - - Boolean - - - False - - - AllowCallQueueMusicOnHoldChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's music on hold information. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's music on hold. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentSharedVoicemailGreetingChange - - This option is not currently available in Queues app. When set to `True`, users affected by the policy will be allowed to change the call queue's no agent shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no agent shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentsRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's no-agent handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no-agent handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOptOutChange - - When set to `True`, users affected by the policy will be allowed to change the call queue opt-out setting that allows agents to opt out of receiving calls. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue opt-out setting. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueuePresenceBasedRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's presence-based routing option. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's presence-based routing option. - - Boolean - - Boolean - - - False - - - AllowCallQueueRoutingMethodChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's routing method. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's routing method. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueWelcomeGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's welcome greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's welcome greeting. - - Boolean - - Boolean - - - False - - - CallQueueAgentMonitorMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Monitor | Whisper | Barge | Takeover - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor call sessions. - When set to `Monitor`, users affected by the policy will be allowed to monitor and listen to call sessions. - When set to `Whisper`, users affected by the policy will be allowed to monitor call sessions and whisper to an agent in the call. - When set to `Barge`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, or join the call session. - When set to `Takeover`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, join the call session, or take over the call from an agent. - - Object - - Object - - - Disabled - - - CallQueueAgentMonitorNotificationMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Agent - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor agents during call sessions. - When set to `Agent`, users affected by the policy will be allowed to monitor agents during call sessions. - - Object - - Object - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - HistoricalAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for agents who are members in the call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all agents in all call queues in the organization. - - Object - - Object - - - None - - - HistoricalAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for auto attendants they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all auto attendants in the organization. - - Object - - Object - - - None - - - HistoricalCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all call queues in the organization. - - Object - - Object - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - RealTimeAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for agents who are members in the call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeAgentMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for auto attendants they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeAutoAttendantMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved, however, any user assigned a policy with RealTimeCallQueueMetricsPermission set to `All` won't be able to access real-time metrics. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsTeamsVoiceApplicationsPolicy -Identity SDA-Allow-CQ-Moh -AllowCallQueueMusicOnHoldChange $true - - The command shown in Example 1 creates a new per-user Teams voice applications policy with the Identity `SDA-Allow-Moh`. This policy allows delegated administrators to change the music on hold information. - - - - -------------------------- EXAMPLE 2 -------------------------- - New-CsTeamsVoiceApplicationsPolicy -Identity SDA-Allow-AA-After-Hour -AllowAutoAttendantAfterHoursGreetingChange $true - - The command shown in Example 2 creates a new per-user Teams voice applications policy with the Identity `SDA-Allow-AA-After-Hour`. This policy allows delegated administrators to change after-hours greetings for auto attendants. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - Get-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Grant-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Remove-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - Set-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - - - - New-CsTeamsWorkLoadPolicy - New - CsTeamsWorkLoadPolicy - - This cmdlet creates a Teams Workload Policy instance for the tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - New-CsTeamsWorkLoadPolicy - - Identity - - The identity of the Teams Workload Policy. - - String - - String - - - None - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Teams Workload policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Teams Workload policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - The identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsWorkLoadPolicy -Identity Test - - Creates a new Teams Workload Policy with the specified identity of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - New-CsTeamsWorkLocationDetectionPolicy - New - CsTeamsWorkLocationDetectionPolicy - - This cmdlet is used to create a new instance of the TeamsWorkLocationDetectionPolicy. - - - - Creates a new instance of the TeamsWorkLocationDetectionPolicy. This policy can be used to tailor the Automatic Update of work location (https://learn.microsoft.com/microsoft-365/places/configure-auto-detect-work-location)experience in Microsoft Teams. - - `EnableWorkLocationDetection`: specifies whether Microsoft Teams determines a user’s work location based on interaction with organization‑managed networks and devices. When enabled, Teams updates the user’s current work location using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users’ personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839). - - `UserSettingsDefault`: specifies the default user consent behavior when automatic update of work location is enabled and only applies to WiFi, and has no impact on device-based detection. - `Disabled` (default): Users must explicitly opt in (Ask mode). - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - Learn more about the admin configuration modes (https://learn.microsoft.com/microsoft-365/places/configure-auto-detect-work-location). - The combination of these settings determines whether automatic update runs, which signals are active, and how users are informed. Behavior matrix | EnableWorkLocationDetection | UserSettingsDefault | Automatic detection behavior | |----------------------------|---------------------|------------------------------| | False | (ignored) | Peripheral and Wi-Fi check-in are disabled. UserSettingsDefault is ignored. | | True | Disabled | Peripheral and Wi-Fi check‑in are enabled. Wi‑Fi check‑in runs in Ask mode , meaning users will be asked to opt in before update activates. | | True | Enabled | Peripheral and Wi‑Fi check‑in are enabled. Wi-Fi check-in runs in Inform mode , meaning Wi-Fi based update is on by default and users can opt out. | | False | Enabled | Peripheral check‑in is disabled. Wi‑Fi check‑in is disabled. UserSettingsDefault is ignored when EnableWorkLocationDetection is set to False. | Notes on behavior - When EnableWorkLocationDetection is set to False , automatic update is fully disabled regardless of user defaults. - When EnableWorkLocationDetection is set to True , UserSettingsDefault determines whether users experience Ask (opt‑in) or Inform (opt‑out) behavior. - Peripheral and Wi‑Fi signals follow the same consent model and are not independently configured. - - Automatic update applies only to actual location for the current working day and is cleared at the end of a user’s working hours. - - - - New-CsTeamsWorkLocationDetectionPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableWorkLocationDetection - - This parameter specifies whether Microsoft Teams determines a user’s work location based on interaction with organization‑managed networks and devices. When enabled, users' work location gets updated using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users’ personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839). - - Boolean - - Boolean - - - None - - - UserSettingsDefault - - This parameter specifies the default user consent behavior when Automatic Update of location is enabled. - `Disabled` (default): Users must explicitly opt in (Ask mode). - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - Learn more about the admin configuration modes (https://learn.microsoft.com/en-us/microsoft-365/places/configure-auto-detect-work-location). - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableWorkLocationDetection - - This parameter specifies whether Microsoft Teams determines a user’s work location based on interaction with organization‑managed networks and devices. When enabled, users' work location gets updated using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users’ personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839). - - Boolean - - Boolean - - - None - - - UserSettingsDefault - - This parameter specifies the default user consent behavior when Automatic Update of location is enabled. - `Disabled` (default): Users must explicitly opt in (Ask mode). - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - Learn more about the admin configuration modes (https://learn.microsoft.com/en-us/microsoft-365/places/configure-auto-detect-work-location). - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - TeamsWorkLocationDetectionPolicy.Cmdlets.TeamsWorkLocationDetectionPolicy - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy -EnableWorkLocationDetection $true - -Identity EnableWorkLocationDetection UserSettingsDefault --------- --------------------------- ------------------- -Tag:wld-policy True Disabled - - Creates a new policy instance with the identity wld-policy. `EnableWorkLocationDetection` is set to the value specified in the command, and `UserSettingsDefault` defaults to `Disabled`. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy -UserSettingsDefault Enabled - -Identity EnableWorkLocationDetection UserSettingsDefault --------- --------------------------- ------------------- -Tag:wld-policy False Enabled - - Creates a new policy instance with the identity wld-policy. `EnableWorkLocationDetection` defaults to `False` and `UserSettingsDefault` is set to `Enabled`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworklocationdetectionpolicy - - - Get-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworklocationdetectionpolicy - - - Remove-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworklocationdetectionpolicy - - - Set-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworklocationdetectionpolicy - - - Grant-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworklocationdetectionpolicy - - - - - - New-CsTenantDialPlan - New - CsTenantDialPlan - - Use the `New-CsTenantDialPlan` cmdlet to create a new tenant dial plan. - - - - You can use this cmdlet to create a new tenant dial plan. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - You can add new normalization rules to a tenant dial plan by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - - - New-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan. Identity is an alphanumeric string that cannot exceed 49 characters. Valid characters are alphabetic or numeric characters, hyphen (-) and dot (.). The value should not begin with a (.) - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to and any other information that helps to identify the purpose of the tenant dial plan. Maximum characters: 1040. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule) cmdlet, which creates the rule and then assign it to the specified tenant dial plan using [Set-CsTenantDialPlan](https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan)cmdlet. - Each time a new tenant dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user tenant dial plan. By default, the Identity of the new voice normalization rule is the tenant dial plan Identity followed by a slash and then followed by the name Prefix All. (For example, TAG:Redmond/Prefix All.) The number of normalization rules cannot exceed 50 per TenantDialPlan. - You can create a new normalization rule by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()). - This parameter must contain a value. However, if you don't provide a value, a default value matching the Identity of the tenant dial plan will be supplied. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to and any other information that helps to identify the purpose of the tenant dial plan. Maximum characters: 1040. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan. Identity is an alphanumeric string that cannot exceed 49 characters. Valid characters are alphabetic or numeric characters, hyphen (-) and dot (.). The value should not begin with a (.) - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule) cmdlet, which creates the rule and then assign it to the specified tenant dial plan using [Set-CsTenantDialPlan](https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan)cmdlet. - Each time a new tenant dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user tenant dial plan. By default, the Identity of the new voice normalization rule is the tenant dial plan Identity followed by a slash and then followed by the name Prefix All. (For example, TAG:Redmond/Prefix All.) The number of normalization rules cannot exceed 50 per TenantDialPlan. - You can create a new normalization rule by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()). - This parameter must contain a value. However, if you don't provide a value, a default value matching the Identity of the tenant dial plan will be supplied. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - New-CsTenantDialPlan -Identity vt1tenantDialPlan9 - - This example creates a tenant dial plan that has an Identity of vt1tenantDialPlan9. - - - - -------------------------- Example 2 -------------------------- - $nr2 = New-CsVoiceNormalizationRule -Identity Global/NR2 -Description "TestNR1" -Pattern '^(d{11})$' -Translation '+1' -InMemory -New-CsTenantDialPlan -Identity vt1tenantDialPlan91 -NormalizationRules @{Add=$nr2} - - This example creates a new normalization rule and then applies that rule to a new tenant dial plan. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - New-CsTenantNetworkRegion - New - CsTenantNetworkRegion - - Creates a new network region. - - - - A network region interconnects various parts of a network across multiple geographic areas. The RegionID parameter is a logical name that represents the geography of the region and has no dependencies or restrictions. The organization's network region is used for Location-Based Routing. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. A network region contains a collection of network sites. For example, if your organization has many sites located in Redmond, then you may choose to designate "Redmond" as a network region. - - - - New-CsTenantNetworkRegion - - Identity - - Unique identifier for the network region to be created. - - String - - String - - - None - - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkRegion - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. This must be a string that is unique. You cannot specify an NetworkRegionID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be created. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. This must be a string that is unique. You cannot specify an NetworkRegionID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkRegion -NetworkRegionID "RegionA" - - The command shown in Example 1 creates the network region 'RegionA' with no description. Identity and CentralSite will both be set identically to NetworkRegionID. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - New-CsTenantNetworkSite - New - CsTenantNetworkSite - - As an admin, you can use the Teams PowerShell command, New-CsTenantNetworkSite to define network sites. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. The organization's network site is used for Location-Based Routing. - - - - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities. - - - - New-CsTenantNetworkSite - - Identity - - Unique identifier for the network site to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkSite - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - NetworkSiteID - - The name of the network site. This must be a string that is unique. You cannot specify an NetworkSiteID and an Identity at the same time. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be created. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - NetworkSiteID - - The name of the network site. This must be a string that is unique. You cannot specify an NetworkSiteID and an Identity at the same time. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "MicrosoftSite1" -NetworkRegionID "RegionRedmond" - - The command shown in Example 1 created the network site 'MicrosoftSite1' with no description. Identity will be set identical with NetworkSiteID. - The network region 'RegionRedmond' is created beforehand and 'MicrosoftSite1' will be associated with 'RegionRedmond'. - NetworkSites can exist without all parameters excepts NetworkSiteID. NetworkRegionID can be left blank. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site2" -Description "site 2" -NetworkRegionID "RedmondRegion" -LocationPolicy "TestLocationPolicy" -EnableLocationBasedRouting $true - - The command shown in Example 2 creates the network site 'site2' with the description 'site 2'. This site is enabled for LBR, and associates with network region 'RedmondRegion' and with location policy 'TestLocationPolicy'. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy" - - The command shown in Example 3 creates the network site 'site3' with the description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Remove-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - Set-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - - - - New-CsTenantNetworkSubnet - New - CsTenantNetworkSubnet - - Creates a new network subnet. - - - - Each internal subnet may only be associated with one site. Tenant network subnet is used for Location Based Routing. IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - When the client is sending the network subnet, please make sure we have already safelisted the IP address by running this command-let, otherwise the request will be rejected. If you are only adding the IPv4 address by running this command-let, but your client are only sending and IPv6 address, it will be rejected. - - - - New-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkSubnet - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - SubnetID - - The name of the network subnet. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an NetworkSubnetID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - Identity - - Unique identifier for the network subnet to be created. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - SubnetID - - The name of the network subnet. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an NetworkSubnetID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkSubnet -SubnetID "192.168.0.1" -MaskBits "24" -NetworkSiteID "site1" - - The command shown in Example 1 created the network subnet '192.168.0.1' with no description. The subnet is IPv4 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 24. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantNetworkSubnet -SubnetID "2001:4898:e8:25:844e:926f:85ad:dd8e" -MaskBits "120" -NetworkSiteID "site1" - - The command shown in Example 2 created the network subnet '2001:4898:e8:25:844e:926f:85ad:dd8e' with no description. The subnet is IPv6 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 120. - IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - New-CsTenantTrustedIPAddress - New - CsTenantTrustedIPAddress - - Creates a new IP address. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Both IPv4 and IPv6 trusted IP addresses are supported. You can define an unlimited number of external subnets for a tenant. - - - - New-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the IP address to be created. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantTrustedIPAddress - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - IPAddress - - The name of the IP address. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an IP address and an Identity at the same time. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the IP address to be created. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - IPAddress - - The name of the IP address. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an IP address and an Identity at the same time. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "192.168.0.1" - - The command shown in Example 1 created the IP address '192.168.0.1' with no description. The IP address is in IPv4 format, and the maskbits is set to 32 by default. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "192.168.2.0" -MaskBits "24" - - The command shown in Example 2 created the IP address '192.168.2.0' with no description. The IP address is in IPv4 format, and the maskbits is set to 24. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "2001:4898:e8:25:844e:926f:85ad:dd8e" -Description "IPv6 IP address" - - The command shown in Example 3 created the IP address '2001:4898:e8:25:844e:926f:85ad:dd8e' with description. The IP address is in IPv6 format, and the maskbits is set to 128 by default. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenanttrustedipaddress - - - - - - New-CsVideoInteropServiceProvider - New - CsVideoInteropServiceProvider - - Use the New-CsVideoInteropServiceProvider to specify information about a supported CVI partner your organization would like to use. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - Important note: New-CsVideoInteropServiceProvider does not do a check on the -Identity to be one of the Identity (without tag:) from the Get-CsTeamsVideoInteropServicePolicy, however if this is not set to match, the VTC coordinates will not added to the meetings correctly. Make sure that your "Identity" matches a valid policy identity. - - - - New-CsVideoInteropServiceProvider - - Identity - - This is mandatory parameter and can have only one of the 6 values PolycomServiceProviderEnabled PexipServiceProviderEnabled BlueJeansServiceProviderEnabled - PolycomServiceProviderDisabled PexipServiceProviderDisabled BlueJeansServiceProviderDisabled - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Create a provider object in memory without committing it to the service. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsVideoInteropServiceProvider - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Create a provider object in memory without committing it to the service. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Name - - This is mandatory parameter and can have only one of the 4 values - Polycom BlueJeans Pexip Cisco - - String - - String - - - DefaultProvider - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - This is mandatory parameter and can have only one of the 6 values PolycomServiceProviderEnabled PexipServiceProviderEnabled BlueJeansServiceProviderEnabled - PolycomServiceProviderDisabled PexipServiceProviderDisabled BlueJeansServiceProviderDisabled - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - Create a provider object in memory without committing it to the service. - - SwitchParameter - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Name - - This is mandatory parameter and can have only one of the 4 values - Polycom BlueJeans Pexip Cisco - - String - - String - - - DefaultProvider - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsVideoInteropServiceProvider - - {{ Add example description here }} - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csvideointeropserviceprovider - - - - - - New-CsVoiceNormalizationRule - New - CsVoiceNormalizationRule - - Creates a new voice normalization rule. - - - - This cmdlet was introduced in Lync Server 2010. - Voice normalization rules are used to convert a telephone dialing requirement (for example, dialing 9 to access an outside line) to the E.164 phone number format used by Skype for Business Server or Microsoft Teams. - These rules are a required part of phone authorization and call routing. They define the requirements for converting (or translating) numbers from an internal format to a standard (E.164) format. An understanding of regular expressions is helpful in order to define number patterns that will be translated. - For Lync or Skype for Business Server, rules that are created by using this cmdlet are part of the dial plan and in addition to being accessible through the `Get-CsVoiceNormalizationRule` cmdlet can also be accessed through the NormalizationRules property returned by a call to the `Get-CsDialPlan` cmdlet. You cannot create a normalization rule unless a dial plan with an Identity matching the scope specified in the normalization rule Identity already exists. For example, you can't create a normalization rule with the Identity site:Redmond/RedmondNormalizationRule unless a dial plan for site:Redmond already exists. - For Microsoft Teams, rules that are created by using this cmdlet can only be created with the InMemory switch and should be added to a tenant dial plan using the `New-CsTenantDialPlan` or `Set-CsTenantDialPlan` cmdlets. - - - - New-CsVoiceNormalizationRule - - Identity - - A unique identifier for the rule. The Identity specified must include the scope followed by a slash and then the name; for example: site:Redmond/Rule1, where site:Redmond is the scope and Rule1 is the name. The name portion will automatically be stored in the Name property. You cannot specify values for Identity and Name in the same command. - For Lync and Skype for Business Server, voice normalization rules can be created at the following scopes: global, site, service (Registrar and PSTNGateway only) and per user. A dial plan with an Identity matching the scope of the normalization rule must already exist before a new rule can be created. (To retrieve a list of dial plans, call the `Get-CsDialPlan` cmdlet.) - For Microsoft Teams, voice normalization rules can be created at the following scopes: global and tag. - The Identity parameter is required unless the Parent parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsVoiceNormalizationRule - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Name - - The name of the rule. This parameter is required if a value has been specified for the Parent parameter. If no value has been specified for the Parent parameter, Name defaults to the name specified in the Identity parameter. For example, if a rule is created with the Identity site:Redmond/RedmondRule, the Name will default to RedmondRule. The Name parameter and the Identity parameter cannot be used in the same command. - - String - - String - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier for the rule. The Identity specified must include the scope followed by a slash and then the name; for example: site:Redmond/Rule1, where site:Redmond is the scope and Rule1 is the name. The name portion will automatically be stored in the Name property. You cannot specify values for Identity and Name in the same command. - For Lync and Skype for Business Server, voice normalization rules can be created at the following scopes: global, site, service (Registrar and PSTNGateway only) and per user. A dial plan with an Identity matching the scope of the normalization rule must already exist before a new rule can be created. (To retrieve a list of dial plans, call the `Get-CsDialPlan` cmdlet.) - For Microsoft Teams, voice normalization rules can be created at the following scopes: global and tag. - The Identity parameter is required unless the Parent parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Name - - The name of the rule. This parameter is required if a value has been specified for the Parent parameter. If no value has been specified for the Parent parameter, Name defaults to the name specified in the Identity parameter. For example, if a rule is created with the Identity site:Redmond/RedmondRule, the Name will default to RedmondRule. The Name parameter and the Identity parameter cannot be used in the same command. - - String - - String - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - None. - - - - - - - Output types - - - This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsVoiceNormalizationRule -Identity "site:Redmond/Prefix Redmond" - - This example creates a new voice normalization rule for site Redmond named Prefix Redmond. Because no other parameters are specified, the rule is created with the default values. Notice that the value passed to the Identity parameter is in double quotes; this is because the name of the rule (Prefix Redmond) contains a space. If the rule name does not contain a space you don't need to enclose the Identity in double quotes. - Keep in mind that a dial plan for the Redmond site must exist for this command to succeed. You can create a new dial plan by calling the `New-CsDialPlan` cmdlet. - - - - -------------------------- Example 2 -------------------------- - New-CsVoiceNormalizationRule -Parent SeattleUser -Name SeattleFourDigit -Description "Dialing with internal four-digit extension" -Pattern '^(\d{4})$' -Translation '+1206555$1' - - This example creates a new voice normalization rule named SeattleFourDigit that applies to the per-user dial plan with the Identity SeattleUser. (Note: Rather than specifying a Parent and a Name, we could have instead created this same rule by specifying -Identity SeattleUser/SeattleFourDigit.) We've included a Description explaining that this rule is for translating numbers dialed internally with only a 4-digit extension. In addition, Pattern and Translation values have been specified. These values translate a four-digit number (specified by the regular expression in the Pattern) to the same four-digit number, but prefixed by the Translation value (+1206555). For example, if the extension 1234 was entered, this rule would translate that extension to the number +12065551234. - Note the single quotes around the Pattern and Translation values. Single quotes are required for these values; double quotes (or no quotes) will not work in this instance. - As in Example 1, a dial plan with the given scope must exist. In this case, that means a dial plan with the Identity SeattleUser must already exist. - - - - -------------------------- Example 3 -------------------------- - $nr1=New-CsVoiceNormalizationRule -Identity dp1/nr1 -Description "Dialing with internal four-digit extension" -Pattern '^(\d{4})$' -Translation '+1206555$1' -InMemory -New-CsTenantDialPlan -Identity DP1 -NormalizationRules @{Add=$nr1} - - This example creates a new in-memory voice normalization rule and then adds it to a new tenant dial plan DP1 to be used for Microsoft Teams users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule - - - Test-CsVoiceNormalizationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csvoicenormalizationrule - - - Get-CsDialPlan - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - - - - New-CsVoicePolicy - New - CsVoicePolicy - - Creates a new voice policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet creates a new voice policy. Voice policies are used to manage such Enterprise Voice-related features as simultaneous ringing (the ability to have a second phone ring each time someone calls your office phone) and call forwarding. The policy created by this cmdlet determines whether many of these features are enabled or disabled. - - - - New-CsVoicePolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope or the name of the policy. Valid values for this cmdlet are site:<site name> (where <site name> is the name of the Skype for Business Server site to which this policy applies, such as site:Redmond) and a string designating a per-user policy, such as RedmondVoicePolicy. A global policy exists by default. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallForwarding - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is set to True, calls can be forwarded. If this parameter is set to False, calls cannot be forwarded. - Default: True - - Boolean - - Boolean - - - None - - - AllowPSTNReRouting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When this parameter is set to True, calls made to internal numbers homed on another pool will be routed through the public switched telephone network (PSTN) when the pool or WAN is unavailable. - Default: True - - Boolean - - Boolean - - - None - - - AllowSimulRing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Simultaneous ring is a feature that allows multiple phones to ring when a single number is dialed. Setting this parameter to True enables this feature. If this parameter is set to False, simultaneous ring cannot be configured for any user to which this policy is assigned. - Default: True - - Boolean - - Boolean - - - None - - - CallForwardingSimulRingUsageType - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for administrators to manage call forwarding and simultaneous ringing. Allowed values are: - VoicePolicyUsage - The default voice policy usage is used to manage call forwarding and simultaneous ringing on all calls. This is the default value. - InternalOnly - Call forwarding and simultaneous ringing are limited to calls made from one Lync user to another. - CustomUsage. A custom PSTN usage will be used to manage call forwarding and simultaneous ringing. This usage must be specified using the CustomCallForwardingSimulRingUsages parameter. - - CallForwardingSimulRingUsageType - - CallForwardingSimulRingUsageType - - - None - - - CustomCallForwardingSimulRingUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Custom PSTN usage used to manage call forwarding and simultaneous ringing. To add a custom usage to voice policy use syntax similar to this: - `-CustomCallForwardingSimulRingUsages @{Add="RedmondPstnUsage"}` - To remove a custom usage, use this syntax: - `-CustomCallForwardingSimulRingUsages @{Remove="RedmondPstnUsage"}` - Note that the usage must exist before it can be used with the CustomCallForwardingSimulRingUsages parameter. - - PSListModifier - - PSListModifier - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of the voice policy. - Maximum length: 1040 characters. - - String - - String - - - None - - - EnableBusyOptions - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EnableBusyOptions Description}} - - Boolean - - Boolean - - - None - - - EnableBWPolicyOverride - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Policies can be set to manage network configuration, including limiting bandwidth. Setting this parameter to True will allow override of these policies. In other words, if this parameter is set to True, no bandwidth checks will be made and calls will go through regardless of the call admission control (CAC) settings. - Default: False - - Boolean - - Boolean - - - None - - - EnableCallPark - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Call Park application allows a call to be held, or parked, at a certain number within a range of numbers for later retrieval. Setting this parameter to True enables the application. If this parameter is set to False, users assigned to this policy cannot park calls that have been dialed to their phone number. - Default: False - - Boolean - - Boolean - - - None - - - EnableCallTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether calls can be transferred to another number. If this parameter is set to True, calls can be transferred; if the parameter is set to False, calls cannot be transferred. - Default: True - - Boolean - - Boolean - - - None - - - EnableDelegation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Call delegation allows a user to answer calls for another user or make calls on the other user's behalf. For example, a manager can set up call delegation so that all incoming calls ring both the manager's phone and the phone of an administrator. Setting this parameter to True allows users with this policy to set up call delegation. Setting this parameter to False disables call delegation. - Default: True - - Boolean - - Boolean - - - None - - - EnableMaliciousCallTracing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Malicious call tracing is a standard that is in place to trace calls that a user designates as malicious. These calls can be traced even if caller ID is blocked. The trace is available only to the proper authorities, not the user. Setting this property to True enables the ability to set a trace on malicious calls. - Default: False - - Boolean - - Boolean - - - None - - - EnableTeamCall - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Team Call allows a user to designate a group of other users whose phones will ring when that user's number is called. This feature is useful in teams where, for example, anyone from a team can answer incoming calls from customers. Setting this parameter to True enables this feature. - Default: True - - Boolean - - Boolean - - - None - - - EnableVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, calls to an unanswered mobile device will be routed to the organization voicemail instead of the mobile device provider's voicemail. If a call is answered "too soon" (that is, before the value configured for the PSTNVoicemailEscapeTimer property has elapsed) it will be assumed that the mobile device is not available and the call will be routed to the organization voicemail. - The default value is False. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A displayable name describing this policy. - Default: DefaultPolicy - - String - - String - - - None - - - PreventPSTNTollBypass - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - PSTN tolls are more commonly known as long-distance charges. Organizations can sometimes bypass these tolls by implementing a Voice over Internet Protocol (VoIP) solution that enables branch offices to connect by using network calls. Setting this parameter to True will send calls through the PSTN and incur charges rather than going through the network and bypassing the tolls. - Default: False - - Boolean - - Boolean - - - None - - - PstnUsages - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages available to this policy. The PSTN usage ties a voice policy to a phone route. - Any string value can be placed into this list, as long as the value exists in the current global list of PSTN usages. (Duplicate strings are not allowed; all strings must be unique.) The list of PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - By default this list is empty. If you don't supply a value for this parameter, you'll receive a warning message stating that users granted this policy will not be able to make outbound PSTN calls. - - PSListModifier - - PSListModifier - - - None - - - PSTNVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Amount of time (in milliseconds) used to determine whether or not a call has been answered "too soon". If a response is received within this time interval Skype for Business Server will assume that the mobile device is not available and automatically switch the call to the organization's voicemail. If no response is received before the time interval is reached then the call will be allowed to proceed. The default value is 1500 milliseconds. - - Int64 - - Int64 - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for which the new voice policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - VoiceDeploymentMode - - > Applicable: Lync Server 2013 - Allowed values are: - * OnPrem - * Online - * OnlineBasic - * OnPremOnlineHybrid - - The default value is OnPrem. - - VoiceDeploymentMode - - VoiceDeploymentMode - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowCallForwarding - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is set to True, calls can be forwarded. If this parameter is set to False, calls cannot be forwarded. - Default: True - - Boolean - - Boolean - - - None - - - AllowPSTNReRouting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When this parameter is set to True, calls made to internal numbers homed on another pool will be routed through the public switched telephone network (PSTN) when the pool or WAN is unavailable. - Default: True - - Boolean - - Boolean - - - None - - - AllowSimulRing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Simultaneous ring is a feature that allows multiple phones to ring when a single number is dialed. Setting this parameter to True enables this feature. If this parameter is set to False, simultaneous ring cannot be configured for any user to which this policy is assigned. - Default: True - - Boolean - - Boolean - - - None - - - CallForwardingSimulRingUsageType - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for administrators to manage call forwarding and simultaneous ringing. Allowed values are: - VoicePolicyUsage - The default voice policy usage is used to manage call forwarding and simultaneous ringing on all calls. This is the default value. - InternalOnly - Call forwarding and simultaneous ringing are limited to calls made from one Lync user to another. - CustomUsage. A custom PSTN usage will be used to manage call forwarding and simultaneous ringing. This usage must be specified using the CustomCallForwardingSimulRingUsages parameter. - - CallForwardingSimulRingUsageType - - CallForwardingSimulRingUsageType - - - None - - - CustomCallForwardingSimulRingUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Custom PSTN usage used to manage call forwarding and simultaneous ringing. To add a custom usage to voice policy use syntax similar to this: - `-CustomCallForwardingSimulRingUsages @{Add="RedmondPstnUsage"}` - To remove a custom usage, use this syntax: - `-CustomCallForwardingSimulRingUsages @{Remove="RedmondPstnUsage"}` - Note that the usage must exist before it can be used with the CustomCallForwardingSimulRingUsages parameter. - - PSListModifier - - PSListModifier - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of the voice policy. - Maximum length: 1040 characters. - - String - - String - - - None - - - EnableBusyOptions - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EnableBusyOptions Description}} - - Boolean - - Boolean - - - None - - - EnableBWPolicyOverride - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Policies can be set to manage network configuration, including limiting bandwidth. Setting this parameter to True will allow override of these policies. In other words, if this parameter is set to True, no bandwidth checks will be made and calls will go through regardless of the call admission control (CAC) settings. - Default: False - - Boolean - - Boolean - - - None - - - EnableCallPark - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Call Park application allows a call to be held, or parked, at a certain number within a range of numbers for later retrieval. Setting this parameter to True enables the application. If this parameter is set to False, users assigned to this policy cannot park calls that have been dialed to their phone number. - Default: False - - Boolean - - Boolean - - - None - - - EnableCallTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether calls can be transferred to another number. If this parameter is set to True, calls can be transferred; if the parameter is set to False, calls cannot be transferred. - Default: True - - Boolean - - Boolean - - - None - - - EnableDelegation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Call delegation allows a user to answer calls for another user or make calls on the other user's behalf. For example, a manager can set up call delegation so that all incoming calls ring both the manager's phone and the phone of an administrator. Setting this parameter to True allows users with this policy to set up call delegation. Setting this parameter to False disables call delegation. - Default: True - - Boolean - - Boolean - - - None - - - EnableMaliciousCallTracing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Malicious call tracing is a standard that is in place to trace calls that a user designates as malicious. These calls can be traced even if caller ID is blocked. The trace is available only to the proper authorities, not the user. Setting this property to True enables the ability to set a trace on malicious calls. - Default: False - - Boolean - - Boolean - - - None - - - EnableTeamCall - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Team Call allows a user to designate a group of other users whose phones will ring when that user's number is called. This feature is useful in teams where, for example, anyone from a team can answer incoming calls from customers. Setting this parameter to True enables this feature. - Default: True - - Boolean - - Boolean - - - None - - - EnableVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, calls to an unanswered mobile device will be routed to the organization voicemail instead of the mobile device provider's voicemail. If a call is answered "too soon" (that is, before the value configured for the PSTNVoicemailEscapeTimer property has elapsed) it will be assumed that the mobile device is not available and the call will be routed to the organization voicemail. - The default value is False. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope or the name of the policy. Valid values for this cmdlet are site:<site name> (where <site name> is the name of the Skype for Business Server site to which this policy applies, such as site:Redmond) and a string designating a per-user policy, such as RedmondVoicePolicy. A global policy exists by default. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A displayable name describing this policy. - Default: DefaultPolicy - - String - - String - - - None - - - PreventPSTNTollBypass - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - PSTN tolls are more commonly known as long-distance charges. Organizations can sometimes bypass these tolls by implementing a Voice over Internet Protocol (VoIP) solution that enables branch offices to connect by using network calls. Setting this parameter to True will send calls through the PSTN and incur charges rather than going through the network and bypassing the tolls. - Default: False - - Boolean - - Boolean - - - None - - - PstnUsages - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages available to this policy. The PSTN usage ties a voice policy to a phone route. - Any string value can be placed into this list, as long as the value exists in the current global list of PSTN usages. (Duplicate strings are not allowed; all strings must be unique.) The list of PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - By default this list is empty. If you don't supply a value for this parameter, you'll receive a warning message stating that users granted this policy will not be able to make outbound PSTN calls. - - PSListModifier - - PSListModifier - - - None - - - PSTNVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Amount of time (in milliseconds) used to determine whether or not a call has been answered "too soon". If a response is received within this time interval Skype for Business Server will assume that the mobile device is not available and automatically switch the call to the organization's voicemail. If no response is received before the time interval is reached then the call will be allowed to proceed. The default value is 1500 milliseconds. - - Int64 - - Int64 - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for which the new voice policy is being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - VoiceDeploymentMode - - > Applicable: Lync Server 2013 - Allowed values are: - * OnPrem - * Online - * OnlineBasic - * OnPremOnlineHybrid - - The default value is OnPrem. - - VoiceDeploymentMode - - VoiceDeploymentMode - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Voice.VoicePolicy - - - This cmdlet creates an instance of the Microsoft.Rtc.Management.WritableConfig.Voice.VoicePolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsVoicePolicy -Identity UserVoicePolicy1 - - This example creates a new per-user voice policy (with default settings) that has an Identity of UserVoicePolicy1. - - - - -------------------------- Example 2 -------------------------- - New-CsVoicePolicy UserVoicePolicy2 -AllowSimulRing $false -PstnUsages @{add = "Local"} - - This example creates a new per-user voice policy with an Identity of UserVoicePolicy2 and sets the AllowSimulRing property to False, meaning that any users to which this policy is assigned are not enabled for simultaneous ring, a feature that determines whether a second phone (such as a mobile phone) can be set to ring every time the user's office phone rings. This command also adds "Local" to the list of PSTN usages, which associates this voice policy with a voice route that also uses the Local PSTN usage. (Note that the Identity parameter is not explicitly specified. The Identity parameter is a positional parameter and therefore if you put the identity value first in the list of parameters you don't need to explicitly state that it's the Identity.) - - - - -------------------------- Example 3 -------------------------- - $a = Get-CsPstnUsage - -New-CsVoicePolicy site:Redmond -PstnUsages @{add = $a.Usage} - - This example creates a new voice policy for site Redmond and applies all the PSTN usages defined for the organization to this policy. The first line in this example calls the `Get-CsPstnUsage` cmdlet to retrieve the global set of PSTN usages for the organization and save it in the variable $a. The second line calls the `New-CsVoicePolicy` cmdlet to create the new voice policy for site Redmond. A value is passed to the PstnUsages parameter to add the list contained in the global set of PSTN usages to this policy. Note the syntax of the add value: $a.Usage. This refers to the Usage property of the PSTN usage settings, which contains the list of PSTN usages. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csvoicepolicy - - - Remove-CsVoicePolicy - - - - Set-CsVoicePolicy - - - - Get-CsVoicePolicy - - - - Grant-CsVoicePolicy - - - - Test-CsVoicePolicy - - - - Get-CsPstnUsage - - - - - - - New-CsVoiceRoutingPolicy - New - CsVoiceRoutingPolicy - - Creates a new voice routing policy. Voice routing policies manage PSTN usages for users of hybrid voice. Hybrid voice enables users homed on Skype for Business Online to take advantage of the Enterprise Voice capabilities available in an on-premises installation of Skype for Business Server. This cmdlet was introduced in Lync Server 2013. - - - - Voice routing policies are used in "hybrid" scenarios: when some of your users are homed on the on-premises version of Skype for Business Server and other users are homed on Skype for Business Online. Assigning your Skype for Business Online users a voice routing policy enables those users to receive and to place phones calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user a voice routing policy will not enable them to make PSTN calls via Skype for Business Online. Among other things, you will also need to enable those users for Enterprise Voice and will need to assign them an appropriate voice policy and dial plan. - Skype for Business Server Control Panel: The functions carried out by the `New-CsVoiceRoutingPolicy` cmdlet are not available in the Skype for Business Server Control Panel. - - - - New-CsVoiceRoutingPolicy - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier to be assigned to the new voice routing policy. Because you can only create new policies at the per-user scope, the Identity will always be the "name" being assigned to the policy. For example: - `-Identity "RedmondVoiceRoutingPolicy"` - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide explanatory text to accompany a voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PstnUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages (such as Local or Long Distance) that can be applied to this voice routing policy. The PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet.) - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Description - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide explanatory text to accompany a voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier to be assigned to the new voice routing policy. Because you can only create new policies at the per-user scope, the Identity will always be the "name" being assigned to the policy. For example: - `-Identity "RedmondVoiceRoutingPolicy"` - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PstnUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages (such as Local or Long Distance) that can be applied to this voice routing policy. The PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet.) - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - The `New-CsVoiceRoutingPolicy` cmdlet does not accept pipelined input. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy - - - The `New-CsVoiceRoutingPolicy` cmdlet creates new instances of Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" -Name "RedmondVoiceRoutingPolicy" -PstnUsages "Long Distance" - - The command shown in Example 1 creates a new per-user voice routing policy with the Identity RedmondVoiceRoutingPolicy. This policy is assigned a single PSTN usage: Long Distance. - - - - -------------------------- Example 2 -------------------------- - New-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" -Name "RedmondVoiceRoutingPolicy" -PstnUsages "Long Distance", "Local", "Internal" - - Example 2 is a variation of the command shown in Example 1; in this case, however, the new policy is assigned three PSTN usages: Long Distance; Local; Internal. Multiple usages can be assigned simply by separating each usage using a comma. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csvoiceroutingpolicy - - - Get-CsVoiceRoutingPolicy - - - - Grant-CsVoiceRoutingPolicy - - - - Remove-CsVoiceRoutingPolicy - - - - Set-CsVoiceRoutingPolicy - - - - - - - New-CsVoiceTestConfiguration - New - CsVoiceTestConfiguration - - Creates a test scenario you can use to test phone numbers against specified routes and rules. This cmdlet was introduced in Lync Server 2010. - - - - Before implementing voice routes and voice policies, it's a good idea to test them out on various phone numbers to ensure the results are what you're expecting. You can do this testing by creating test scenarios with this cmdlet. - The `New-CsVoiceTestConfiguration` cmdlet defines the voice route, usage, dial plan and voice policy against which to test a specified phone number. All of this information can be defined and retrieved using other cmdlets; see the parameter descriptions for this topic for more information. - The configurations created with this cmdlet are tested using the `Test-CsVoiceTestConfiguration` cmdlet. - - - - New-CsVoiceTestConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying this test scenario. - This string can be up to 32 characters in length and may contain any alphanumeric characters plus the backslash (\), period (.) or underscore (_). - The value of this parameter does not include scope because this object can be created only at the global scope. Therefore only a unique name is required. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, etc. - Must be 512 characters or fewer. - Default: 1234 - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - Default: +1234 - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by called the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsVoiceTestConfiguration - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, etc. - Must be 512 characters or fewer. - Default: 1234 - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - Default: +1234 - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains the same value as the Identity. If the Identity parameter is specified, you cannot include the Name parameter in your command. Likewise, if the Name parameter is specified, you cannot specify an Identity. - - String - - String - - - None - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by called the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, etc. - Must be 512 characters or fewer. - Default: 1234 - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - Default: +1234 - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying this test scenario. - This string can be up to 32 characters in length and may contain any alphanumeric characters plus the backslash (\), period (.) or underscore (_). - The value of this parameter does not include scope because this object can be created only at the global scope. Therefore only a unique name is required. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains the same value as the Identity. If the Identity parameter is specified, you cannot include the Name parameter in your command. Likewise, if the Name parameter is specified, you cannot specify an Identity. - - String - - String - - - None - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by called the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - Default: Global - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsVoiceTestConfiguration -Identity TestConfig1 - - This example creates a new voice test configuration with default values that has the Identity TestConfig1. - - - - -------------------------- Example 2 -------------------------- - New-CsVoiceTestConfiguration TestConfig1 -TargetDialplan site:Redmond1 - - This example creates a new voice test configuration named TestConfig1 and sets the TargetDialplan parameter to site:Redmond1. This will result in the tests for expected number, usage and route to be run against the settings for the dial plan for the site Redmond1. - In this example we declared TestConfig1 without specifying the Identity parameter. Identity is a positional parameter, so the first value in the command following the cmdlet name is recognized by the cmdlet as the Identity. - - - - -------------------------- Example 3 -------------------------- - New-CsVoiceTestConfiguration -Identity TestConfig1 -DialedNumber 5551212 -ExpectedTranslatedNumber +5551212 - - This example creates a new voice test configuration named TestConfig1. This configuration will use the default values to test the DialedNumber 5551212 against an expected output (ExpectedTranslatedNumber) of +5551212. This expectation is based on the normalization rules associated with the dial plan that will be used when a test is run against this object. That test must be run using the `Test-CsVoiceTestConfiguration` cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csvoicetestconfiguration - - - Remove-CsVoiceTestConfiguration - - - - Set-CsVoiceTestConfiguration - - - - Get-CsVoiceTestConfiguration - - - - Test-CsVoiceTestConfiguration - - - - Get-CsVoiceRoute - - - - Get-CsPstnUsage - - - - Get-CsDialPlan - - - - Get-CsVoicePolicy - - - - - - - Remove-CsAdditionalInternalDomain - Remove - CsAdditionalInternalDomain - - Removes an additional internal domain previously configured for use in your organization. This cmdlet was introduced in Skype for Business Server 2015 Cumulative Update 6 - December 2017. - - - - This cmdlet removes an additional internal domain previously configured for use in your organization. - Additional internal domains are not used locally by internal user or services URIs but must be treated as internal by hybrid (split-domain) traffic analysis to support purely hosted and cloud appliance domains. - - - - Remove-CsAdditionalInternalDomain - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Force - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) for the new additional internal domain. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsAdditionalInternalDomain -Identity fabrikam.com - - Example 1 removes the additional internal domain with the Identity fabrikam.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csadditionalinternaldomain - - - New-CsAdditionalInternalDomain - https://learn.microsoft.com/powershell/module/skypeforbusiness/new-csadditionalinternaldomain?view=skype-ps - - - Get-CsAdditionalInternalDomain - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csadditionalinternaldomain?view=skype-ps - - - - - - Remove-CsAllowedDomain - Remove - CsAllowedDomain - - Removes a domain from the list of domains approved for federation. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your servers running the Skype for Business Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To set up a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with. If a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - If you want to discontinue a federation relationship, you can use the `Remove-CsAllowedDomain` cmdlet to remove the appropriate domain from the list of allowed domains and then, if appropriate, use the `New-CsBlockedDomain` cmdlet to add the domain to the blocked domain list. Note that a domain cannot simultaneously appear on both the allowed and the blocked lists. - - - - Remove-CsAllowedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be removed from the allowed list; for example, fabrikam.com. You cannot use wildcards when specifying a domain Identity. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be removed from the allowed list; for example, fabrikam.com. You cannot use wildcards when specifying a domain Identity. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - The `Remove-CsAllowedDomain` cmdlet accepts pipelined instances of the allowed domain object. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - Deletes instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsAllowedDomain -Identity fabrikam.com - - The command shown in Example 1 removes the domain fabrikam.com from the list of allowed domains. - - - - -------------------------- Example 2 -------------------------- - Get-CsAllowedDomain -Filter *fabrikam* | Remove-CsAllowedDomain - - In Example 2, all of the domains that have the string value "fabrikam" somewhere in their Identity are removed from the list of allowed domains. To do this, the command first uses the `Get-CsAllowedDomain` cmdlet and the Filter parameter to return a collection of domains that have the string value "fabrikam" somewhere in their Identity (the Identity is the only property you can filter for). That filtered collection is then piped to the `Remove-CsAllowedDomain` cmdlet, which, in turn, removes all of the items in the filtered collection from the list of allowed domains. - - - - -------------------------- Example 3 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.ProxyFqdn -eq $Null} | Remove-CsAllowedDomain - - Example 3 removes all the domains without an identified proxy server from the list of allowed domains. To carry out this task, the `Get-CsAllowedDomain` cmdlet is called to return a collection of all the domains currently on the allowed list. That collection is piped to the `Where-Object` cmdlet, which picks out only those domains where the ProxyFqdn property is equal to a null value. The filtered collection is then piped to the `Remove-CsAllowedDomain` cmdlet, which removes each domain in the collection from the allowed list. - - - - -------------------------- Example 4 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.Comment -match "Ken Myer"} | Remove-CsAllowedDomain - - In Example 4, all of the domains where the Comment field contains the string value "Ken Myer" are removed from the list of allowed domains. To do this, the command first uses the `Get-CsAllowedDomain` cmdlet to retrieve a collection of all the domains currently on the allowed domains list. This collection is then piped to the `Where-Object` cmdlet, which selects only those domains where the Comment property contains the string value "Ken Myer". This filtered collection is then piped to the `Remove-CsAllowedDomain` cmdlet, which removes each item in the collection from the list of allowed domains. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csalloweddomain - - - Get-CsAllowedDomain - - - - New-CsAllowedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsAllowedDomain - - - - - - - Remove-CsApplicationAccessPolicy - Remove - CsApplicationAccessPolicy - - Deletes an existing application access policy. - - - - This cmdlet deletes an existing application access policy. - - - - Remove-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - - - - - - - ------------- Remove an application access policy ------------- - PS C:\> Remove-CsApplicationAccessPolicy -Identity "ASimplePolicy" - - The command shown above deletes the application access policy ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Remove-CsBlockedDomain - Remove - CsBlockedDomain - - Removes a domain from the list of domains that are blocked for federation. By definition, your users are not allowed to use Skype for Business Server applications to communicate with people from the blocked domain; for example, users cannot use Skype for Business to exchange instant messages with anyone with a SIP account in a domain that appears on the blocked list. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your servers running the Skype for Business Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To establish a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with; if a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - Of course, messages are rejected only as long as the domain appears on the blocked list; after a domain has been removed from the list you can then establish a federated relationship with that domain. To enable federation with a previously-prohibited domain, you must first use the `Remove-CsBlockedDomain` cmdlet to remove that domain from the list of blocked domains. A domain cannot simultaneously appear on both the allowed and the blocked lists. - - - - Remove-CsBlockedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be removed from the blocked list; for example, fabrikam.com. Note that you cannot use wildcards when specifying a domain Identity. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the domain to be removed from the blocked list; for example, fabrikam.com. Note that you cannot use wildcards when specifying a domain Identity. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - The `Remove-CsBlockedDomain` cmdlet accepts pipelined instances of the blocked domain object. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - Deletes instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsBlockedDomain -Identity fabrikam.com - - The command shown in Example 1 removes the domain fabrikam.com from the list of blocked domains. This is done by calling the `Remove-CsBlockedDomain` cmdlet and specifying the domain with the Identity "fabrikam.com". - - - - -------------------------- Example 2 -------------------------- - Get-CsBlockedDomain -Filter *fabrikam* | Remove-CsBlockedDomain - - In Example 2, all the domains that have an Identity that includes the string value "fabrikam" are removed from the list of blocked domains. To do this, the `Get-CsBlockedDomain` cmdlet and the Filter parameter are first used to return a collection of all the blocked domains that include the string "fabrikam" somewhere in their Identity (for example, fabrikam.com, fabrikam.org, or us.fabrikam.net). That collection is then piped to the `Remove-CsBlockedDomain` cmdlet, which deletes each item in the collection from the list of blocked domains. - - - - -------------------------- Example 3 -------------------------- - Get-CsBlockedDomain | Remove-CsBlockedDomain - - The command shown in Example 3 completely clears the list of blocked domains. This is done by first calling the `Get-CsBlockedDomain` cmdlet without any parameters; that results in a returned collection that consists of all the domains currently on the blocked domain list. That collection is then piped to the `Remove-CsBlockedDomain` cmdlet, which removes each item in the collection from the blocked domain list. The net result: no domains will be left on the blocked domain list. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csblockeddomain - - - Get-CsBlockedDomain - - - - New-CsBlockedDomain - - - - Set-CsAccessEdgeConfiguration - - - - Set-CsBlockedDomain - - - - - - - Remove-CsCallingLineIdentity - Remove - CsCallingLineIdentity - - Use the `Remove-CsCallingLineIdentity` cmdlet to remove a Caller ID policy from your organization. - - - - This cmdlet will remove a Caller ID policy from your organization or resets the Global policy instance to the default values. - - - - Remove-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsCallingLineIdentity -Identity Anonymous - - This example removes a Caller ID policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - - - - Remove-CsConferencingPolicy - Remove - CsConferencingPolicy - - Removes the specified conferencing policy. Conferencing policies determine the features and capabilities that can be used in a conference; this includes everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. This cmdlet was introduced in Lync Server 2010. - - - - Conferencing is an important part of Skype for Business Server: conferencing enables groups of users to come together online to view slides and video, share applications, exchange files and otherwise communicate and collaborate. - It's important for administrators to maintain control over conferences and conference settings. In some cases, there might be security concerns: by default, anyone, including unauthenticated users, can participate in meetings and save any of the slides or handouts distributed during those meetings. In other cases, there might be bandwidth concerns: having a multitude of simultaneous meetings, each involving hundreds of participants and each featuring video feeds and file sharing, has the potential to cause problems with your network. In addition, there might be legal concerns. For example, by default meeting participants are allowed to make annotations on shared content; however, these annotations are not saved when the meeting is archived. If your organization is required to keep a record of all electronic communication, you might want to disable annotations. - Of course, needing to manage conferencing settings is one thing; actually managing these settings is another. In Skype for Business Server, conferences are managed by using conferencing policies. (In previous versions of the software, these were known as meeting policies.) As noted, conferencing policies determine the features and capabilities that can be used in a conference, including everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. Conferencing policies can be configured at the global scope; at the site scope; or at the per-user scope. This provides administrators with enormous flexibility when it comes to deciding which capabilities will be made available to which users. - You can use the `Remove-CsConferencingPolicy` cmdlet to delete any of the conferencing policies configured for use in your organization, with one exception: you cannot delete the global policy. You can still run the `Remove-CsConferencingPolicy` cmdlet against the global policy. In that case, however the policy will not be removed; instead, all the global policy properties will be reset to their default values. - - - - Remove-CsConferencingPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be removed. Conferencing policies can be configured at the global, site, or per-user scopes. To remove the global policy, use this syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a site policy, use syntax similar to this: `-Identity site:Redmond`. To remove a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy`. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If present, causes the `Remove-CsConferencingPolicy` cmdlet to delete the per-user policy even if the policy in question is currently assigned to at least one user. If not present, you will be asked to confirm the deletion request before the policy will be removed. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the conferencing policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If present, causes the `Remove-CsConferencingPolicy` cmdlet to delete the per-user policy even if the policy in question is currently assigned to at least one user. If not present, you will be asked to confirm the deletion request before the policy will be removed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be removed. Conferencing policies can be configured at the global, site, or per-user scopes. To remove the global policy, use this syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a site policy, use syntax similar to this: `-Identity site:Redmond`. To remove a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy`. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the conferencing policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy - - - The `Remove-CsConferencingPolicy` cmdlet accepts pipelined instances of the meeting policy object. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy - - - The `Remove-CsConferencingPolicy` cmdlet does not return a value or object. Instead, the cmdlet deletes instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsConferencingPolicy -Identity SalesConferencingPolicy - - In Example 1, the `Remove-CsConferencingPolicy` cmdlet is used to delete the conferencing policy with the Identity SalesConferencingPolicy. - - - - -------------------------- Example 2 -------------------------- - Get-CsConferencingPolicy -Filter "site:*" | Remove-CsConferencingPolicy - - In Example 2, all the conferencing policies that have been configured at the site scope are deleted. To accomplish this task, the command first uses the `Get-CsConferencingPolicy` cmdlet and the Filter parameter to return a collection of all the site-level policies; the filter value "site:*" ensures that only policies that have an Identity that begins with the string value "site" are returned. That filtered collection is then piped to the `Remove-CsConferencingPolicy` cmdlet, which deletes each item in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsConferencingPolicy | Where-Object {$_.MaxMeetingSize -gt 100} | Remove-CsConferencingPolicy - - In Example 3, all the policies that allow a maximum meeting size (MaxMeetingSize) of more than 100 people are deleted. To do this, the command first uses the `Get-CsConferencingPolicy` cmdlet to retrieve a collection of all the conferencing policies configured for use in the organization. That collection is then piped to the `Where-Object` cmdlet, which applies a filter that limits the returned data to those policies where the MaxMeetingSize value is greater than 100. Finally, that filtered collection is passed to the `Remove-CsConferencingPolicy` cmdlet, which deletes all the policies in the filtered collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csconferencingpolicy - - - Get-CsConferencingPolicy - - - - Grant-CsConferencingPolicy - - - - New-CsConferencingPolicy - - - - Set-CsConferencingPolicy - - - - - - - Remove-CsDialInConferencingConfiguration - Remove - CsDialInConferencingConfiguration - - Removes one or more collections of dial-in conferencing configuration settings. These settings determine how Skype for Business Server responds when users join or leave a dial-in conference. This cmdlet was introduced in Lync Server 2010. - - - - When users join (or leave) a dial-in conference, Skype for Business Server can respond in different ways. For example, participants might be asked to record their name before they can enter the conference itself. Likewise, administrators can decide whether they want to have Skype for Business Server announce that dial-in participants have either left or joined a conference. - These conference "join behaviors" are managed using dial-in conferencing configuration settings; these settings can be configured at the global scope or at the site scope. (Settings configured at the site scope take precedence over settings configured at the global scope.) When you install Skype for Business Server, a global collection of dial-in conferencing configuration settings will be created for you. If you want to have different settings for a site (or set of sites), you can create those collections by using the `New-CSDialInConferencingConfiguration` cmdlet. - The `Remove-CSDialInConferencingConfiguration` cmdlet deletes any dial-in conferencing settings that have been configured at the site scope. When these site-specific settings are deleted, users in the affected sites will have their dial-in conferencing behaviors governed by the global settings. - You can also run the `Remove-CSDialInConferencingConfiguration` cmdlet against the global dial-in conferencing settings. If you do that, the global settings will not be removed; that's because the global settings cannot be removed. Instead, all the properties within that collection of settings will be reset to their default values. - - - - Remove-CsDialInConferencingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be removed. To refer to the global settings, use this syntax: `-Identity global`. To refer to site settings, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be removed. To refer to the global settings, use this syntax: `-Identity global`. To refer to site settings, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration - - - The `Remove-CSDialInConferencingConfiguration` cmdlet accepts pipelined instances of the dial-in conferencing configuration object. - - - - - - - None - - - Instead, the `Remove-CSDialInConferencingConfiguration` cmdlet deletes instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CSDialInConferencingConfiguration -Identity "site:Redmond" - - In Example 1, the dial-in conferencing configuration settings for the Redmond site are deleted. - - - - -------------------------- Example 2 -------------------------- - Get-CSDialInConferencingConfiguration -Filter "site:*" | Remove-CSDialInConferencingConfiguration - - In Example 2, all the dial-in conferencing settings that have been configured at the site scope are deleted. To do this, the command first uses the `Get-CSDialInConferencingConfiguration` cmdlet and the Filter parameter to return a collection of all the dial-in conferencing settings that have been configured at the site scope. (The filter value "site:*" ensures that only settings that have an Identity that begins with the string value "site:" are returned.) This filtered collection is then piped to the `Remove-CSDialInConferencingConfiguration` cmdlet, which removes each item in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CSDialInConferencingConfiguration | Where-Object {$_.EnableNameRecording -eq $False} | Remove-CSDialInConferencingConfiguration - - In Example 3, all the dial-in conferencing configuration settings that do not use name recording are deleted. To carry out this task, the command first calls the `Get-CSDialInConferencingConfiguration` cmdlet without any parameters in order to return a collection of all the dial-in conferencing configuration settings currently in use in the organization. This collection is then piped to the `Where-Object` cmdlet, which picks out only those settings where the EnableNameRecording property is equal to False. In turn, this filtered collection is piped to the `Remove-CSDialInConferencingConfiguration` cmdlet, which deletes each item in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csdialinconferencingconfiguration - - - Get-CsDialInConferencingConfiguration - - - - New-CsDialInConferencingConfiguration - - - - Set-CsDialInConferencingConfiguration - - - - - - - Remove-CsDialInConferencingDtmfConfiguration - Remove - CsDialInConferencingDtmfConfiguration - - Removes an existing collection of dual-tone multifrequency (DTMF) signaling settings used for dial-in conferencing. DTMF enables users who dial in to a conference to control conference settings (such as muting and unmuting themselves or locking and unlocking the conference) by using the keypad on their telephone. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server enables users to join conferences by dialing in over the telephone. Dial-in users are not able to view video or exchange instant messages with other conference attendees, but they are able to fully participate in the audio portion of the meeting. - In addition to being able to join a conference, users are also able to manage selected portions of that conference by using their telephone keypad. (The specific conference settings users can and cannot manage depend on whether or not the user is a presenter.) For example, by default users can press the 6 key on their keypad to mute or unmute themselves. Participants can privately play the names of all the other people attending the meeting, while presenters can do such things as mute and unmute all the meeting participants and enable/disable the announcement that is played any time someone joins or leaves a conference. - The ability to make selections like these by using a telephone keypad is known as dual-tone multifrequency (DTMF) signaling: if you have ever dialed a phone number and been instructed to do something along the order of "Press 1 for English or press 2 for Spanish," then you have used DTMF signaling. - When you install Skype for Business Server, a global collection of DTMF settings is created for you. In addition to those global settings, you can use the `New-CSDialInConferencingDtmfConfiguration` cmdlet to create custom settings on a site-by-site basis. Settings you create at the site scope can later be removed by using the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet. When you remove DTMF settings applied at the site scope, users in the affected site will automatically fall under the jurisdiction of the global DTMF configuration settings. - You can also run the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet against the global settings. If you do that, however, the global settings will not be removed; that's because you cannot remove the global DTMF settings. Instead, the properties in the global settings will be reset to their default values. For example, suppose you have modified the global settings to make the 4 key the mute/unmute key. If you now run the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet against the global settings, the value of the mute/unmute key will be reset to the default value 6. - - - - Remove-CsDialInConferencingDtmfConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of DTMF settings to be removed. To "remove" the global settings, use this syntax: `-Identity global`. (As noted earlier, you cannot actually remove the global setting; all you can do is reset the properties to their default values.) To remove a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond`. You cannot use wildcards when specifying an Identity - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of DTMF settings to be removed. To "remove" the global settings, use this syntax: `-Identity global`. (As noted earlier, you cannot actually remove the global setting; all you can do is reset the properties to their default values.) To remove a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond`. You cannot use wildcards when specifying an Identity - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration - - - The `Remove-CsDialInConferencingDtmfConfiguration` cmdlet accepts pipelined instances of the dial-in conference DTMF configuration object. - - - - - - - None - - - Instead, the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet deletes instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CSDialInConferencingDtmfConfiguration -Identity site:Redmond - - Example 1 deletes the collection of DTMF configuration settings that has the Identity site:Redmond. - - - - -------------------------- Example 2 -------------------------- - Get-CSDialInConferencingDtmfConfiguration -Filter "site:*" | Remove-CSDialInConferencingDtmfConfiguration - - The command shown in Example 2 deletes all the DTMF settings that have been configured at the site scope. To perform this task, the command first uses the `Get-CSDialInConferencingDtmfConfiguration` cmdlet and the Filter parameter to return a collection of all the DTMF settings that have been configured at the site scope; the filter value "site:*" ensures that only settings that have an Identity that begins with the string value "site:" are returned. This filtered collection is then piped to the `Remove-CSDialInConferencingConfiguration` cmdlet, which removes each item in that collection. - - - - -------------------------- Example 3 -------------------------- - Get-CSDialInConferencingDtmfConfiguration | Where-Object {$_.PrivateRollCallCommand -eq $Null} | Remove-CSDialInConferencingDtmfConfiguration - - In Example 3, the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet is used to delete all the DTMF settings where the PrivateRollCallCommand property is equal to a null value. (That is, where the private roll call command has been disabled.) To do this, the command first uses the `Get-CSDialInConferencingDtmfConfiguration` cmdlet to return a collection of all the DTMF settings currently in use in the organization. This collection is then piped to the `Where-Object` cmdlet, which selects only those settings where PrivateRollCallCommand is equal to a null value. The filtered collection is then piped to the `Remove-CSDialInConferencingDtmfConfiguration` cmdlet, which deletes each item in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csdialinconferencingdtmfconfiguration - - - Get-CsDialInConferencingDtmfConfiguration - - - - New-CsDialInConferencingDtmfConfiguration - - - - Set-CsDialInConferencingDtmfConfiguration - - - - - - - Remove-CsDialPlan - Remove - CsDialPlan - - Removes the specified dial plan. This cmdlet can also be used to remove the global dial plan. If you remove the global dial plan, however, the dial plan will not actually be removed; instead, the settings will simply be reset to their default values. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet removes an existing dial plan (also known as a location profile). Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Dial plans are also used by the Conferencing Attendant application for dial-in conferencing. A dial plan determines such things as which normalization rules are applied and whether a prefix must be dialed for external calls. - Note: Removing a dial plan will also remove any associated normalization rules. If the global dial plan is removed, any associated normalization rules will also be removed, but a default global normalization rule will be created. - - - - Remove-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the dial plan you want to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the dial plan you want to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - The `Remove-CsDialPlan` cmdlet accepts pipelined input of dial plan objects. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - This cmdlet removes instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsDialPlan -Identity RedmondDialPlan - - Example 1 uses the `Remove-CsDialPlan` cmdlet to delete the per-user dial plan with the Identity RedmondDialPlan. Note that when you delete a dial plan, you do not necessarily have to assign a new plan to users who were assigned the now-deleted plan. Instead, those users will use the dial plan assigned to their service or site, or the global plan. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialPlan | Where-Object {$_.Description -match "Redmond"} | Remove-CsDialPlan - - In Example 2 all the dial plans that include the word Redmond in their description are deleted. To do this, the command first calls the `Get-CsDialPlan` cmdlet to return a collection of all the dial plans configured for use within the organization. That collection is then piped to the `Where-Object` cmdlet, which applies a filter that limits the returned data to profiles that include the word Redmond in their description. After that's done, the filtered collection is passed to the `Remove-CsDialPlan` cmdlet, which removes all the dial plans in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csdialplan - - - New-CsDialPlan - - - - Set-CsDialPlan - - - - Get-CsDialPlan - - - - Grant-CsDialPlan - - - - Test-CsDialPlan - - - - Remove-CsVoiceNormalizationRule - - - - Get-CsVoiceNormalizationRule - - - - - - - Remove-CsExternalAccessPolicy - Remove - CsExternalAccessPolicy - - Enables you to remove an existing external access policy. - - - - This cmdlet was introduced in Lync Server 2010. - When you install Skype for Business Server your users are only allowed to exchange instant messages and presence information among themselves: by default, they can only communicate with other people who have SIP accounts in your Active Directory Domain Services. In addition, users are not allowed to access Skype for Business Server over the Internet; instead, they must be logged on to your internal network before they will be able to log on to Skype for Business Server. - 1. That might be sufficient to meet your communication needs. If it doesn't meet your needs you can use external access policies to extend the ability of your users to communicate and collaborate. External access policies can grant (or revoke) the ability of your users to do any or all of the following: - 2. Communicate with people who have SIP accounts with a federated organization. Note that enabling federation alone will not provide users with this capability. Instead, you must enable federation and then assign users an external access policy that gives them the right to communicate with federated users. - 3. (Microsoft Teams only) Communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). This policy setting only applies if ACS federation has been enabled at the tenant level using the cmdlet [Set-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration). - 4. Communicate with people who have SIP accounts with a public instant messaging service such as Windows Live. - Access Skype for Business Server over the Internet, without having to first log on to your internal network. This enables your users to use Skype for Business and log on to Skype for Business Server from an Internet café or other remote location. - When you install Skype for Business Server, a global external access policy is automatically created for you. In addition to the global policy, you can use the `New-CsExternalAccessPolicy` cmdlet to create external access policies configured at the site or per-user scopes. - The `Remove-CsExternalAccessPolicy` cmdlet enables you to delete any policies that were created by using the `New-CsExternalAccessPolicy` cmdlet; that means you can delete any policies assigned to the site scope or the per-user scope. You can also run the `Remove-CsExternalAccessPolicy` cmdlet against the global external access policy. In that case, however, the global policies will not be deleted; by design, global policies cannot be deleted. Instead, the properties of the global policy will simply be reset to their default values. - - - - Remove-CsExternalAccessPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the external access policy to be removed. External access policies can be configured at the global, site, or per-user scopes. To "remove" the global policy, use this syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in the global policy will be reset to their default values.) To remove a site policy, use syntax similar to this: `-Identity site:Redmond`. To remove a per-user policy, use syntax similar to this: `-Identity SalesAccessPolicy`. - Note that wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the external access policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the external access policy to be removed. External access policies can be configured at the global, site, or per-user scopes. To "remove" the global policy, use this syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in the global policy will be reset to their default values.) To remove a site policy, use syntax similar to this: `-Identity site:Redmond`. To remove a per-user policy, use syntax similar to this: `-Identity SalesAccessPolicy`. - Note that wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the external access policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy object. The `Remove-CsExternalAccessPolicy` cmdlet accepts pipelined input of the external access policy object. - - - - - - - Output types - - - None. Instead, the `Remove-CsExternalAccessPolicy` cmdlet does not return a value or object. Instead, the cmdlet deletes instances of the Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsExternalAccessPolicy -Identity site:Redmond - - In Example 1, the external access policy with the Identity site:Redmond is deleted. After the policy is removed, users in the Redmond site will have their external access permissions governed by the global policy. - - - - -------------------------- Example 2 -------------------------- - Get-CsExternalAccessPolicy -Filter site:* | Remove-CsExternalAccessPolicy - - Example 2 deletes all the external access policies that have been configured at the site scope. To carry out this task, the command first uses the `Get-CsExternalAccessPolicy` cmdlet and the Filter parameter to return a collection of policies configured at the site scope; the filter value "site:*" limits the returned data to external access policies that have an Identity that begins with the string value "site:". The filtered collection is then piped to the `Remove-CsExternalAccessPolicy` cmdlet, which deletes each policy in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsExternalAccessPolicy | Where-Object {$_.EnableFederationAccess -eq $True} | Remove-CsExternalAccessPolicy - - In Example 3, all the external access policies that allow federation access are deleted. To do this, the command first calls the `Get-CsExternalAccessPolicy` cmdlet to return a collection of all the external access policies configured for use in the organization. This collection is then piped to the `Where-Object` cmdlet, which picks out only those policies where the EnableFederationAccess property is equal to True. This filtered collection is then piped to the `Remove-CsExternalAccessPolicy` cmdlet, which deletes each policy in the collection. - - - - -------------------------- Example 4 -------------------------- - Get-CsExternalAccessPolicy | Where-Object {$_.EnableFederationAccess -eq $True -or $_.EnablePublicCloudAccess -eq $True} | Remove-CsExternalAccessPolicy - - Example 4 deletes all the external access policies that meet at least one of two criteria: federation access is allowed, public cloud access is allowed, or both are allowed. To carry out this task, the command first uses the `Get-CsExternalAccessPolicy` cmdlet to return a collection of all the external access policies configured for use in the organization. This collection is then piped to the `Where-Object` cmdlet, which selects only those policies that meet the following criteria: either EnableFederationAccess is equal to True and/or EnablePublicCloudAccess is equal to True. Policies meeting one (or both) of those criteria are then piped to and removed by, the `Remove-CsExternalAccessPolicy` cmdlet. - To delete all the policies where both EnableFederationAccess and EnablePublicCloudAccess are True use the -and operator when calling the `Where-Object` cmdlet: - `Where-Object {$ .EnableFederationAccess -eq $True -and $ .EnablePublicCloudAccess -eq $True}` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csexternalaccesspolicy - - - Get-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - - - - Remove-CsHostedVoicemailPolicy - Remove - CsHostedVoicemailPolicy - - Removes a hosted voice mail policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet removes a policy that specifies how to route unanswered calls to the user to a hosted Exchange Unified Messaging (UM) service. - - - - Remove-CsHostedVoicemailPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the hosted voice mail policy that you want to remove. This identifier includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for the hosted voicemail policy being deleted. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the hosted voice mail policy that you want to remove. This identifier includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for the hosted voicemail policy being deleted. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - Accepts pipelined input of hosted voice mail policy objects. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - This cmdlet does not return an object. It removes an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsHostedVoicemailPolicy -Identity ExRedmond - - This command removes the hosted voice mail policy for the ExRedmond per-user policy. - - - - -------------------------- Example 2 -------------------------- - Get-CsHostedVoicemailPolicy -Filter tag* | Remove-CsHostedVoicemailPolicy - - The command in Example 2 removes all per-user hosted voice mail policies. The command starts by calling the `Get-CsHostedVoicemailPolicy` cmdlet with a Filter of tag*, which will retrieve all policies defined as per-user policies. That set of policies is then piped to the `Remove-CsHostedVoicemailPolicy` cmdlet, which deletes each one. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-cshostedvoicemailpolicy - - - New-CsHostedVoicemailPolicy - - - - Set-CsHostedVoicemailPolicy - - - - Get-CsHostedVoicemailPolicy - - - - Grant-CsHostedVoicemailPolicy - - - - - - - Remove-CsInboundBlockedNumberPattern - Remove - CsInboundBlockedNumberPattern - - Removes a blocked number pattern from the tenant list. - - - - This cmdlet removes a blocked number pattern from the tenant list. - - - - Remove-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier specifying the blocked number pattern to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Remove-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" - - This example removes a blocked number pattern identified as "BlockAutomatic". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - - - - Remove-CsInboundExemptNumberPattern - Remove - CsInboundExemptNumberPattern - - Removes a number pattern exempt from call blocking. - - - - This cmdlet removes a specific exempt number pattern from the tenant list for call blocking. - - - - Remove-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your call block and exempt phone number ranges. - - - - - -------------------------- Example 1 -------------------------- - PS>Remove-CsInboundExemptNumberPattern -Identity "Exempt1" - - This removes the exempt number patterns with Identity Exempt1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Remove-CsLocationPolicy - Remove - CsLocationPolicy - - Removes the specified location policy. (Location policies are used with the Enhanced 9-1-1 service to enable those who answer 911 calls to determine the caller's geographic location based on the phone number of the telephone or device used to make the call.) This cmdlet was introduced in Lync Server 2010. - - - - The location policy is used to apply settings that relate to E9-1-1 functionality. The location policy determines whether a user is enabled for E9-1-1, and if so what the behavior is of an emergency call. For example, you can use the location policy to define what number constitutes an emergency call (911 in the United States), whether corporate security should be automatically notified and how the call should be routed. This cmdlet removes an existing location policy. - In addition to removing site and per-user location policies, this cmdlet can also be used to remove the global location policy. In that case, however, the policy will not actually be removed; instead, the policy settings will simply be reset to their default values. - If this cmdlet is run against a per-user location policy that is assigned to user, you will be prompted to confirm the deletion. - - - - Remove-CsLocationPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to remove. To remove the global location policy (which simply resets that policy to its default values), use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Bldg30Floor3Sector1. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifying this parameter will bypass any confirmation prompts and the deletion will occur without any warning notice. For example, if a per-user location policy is assigned to one or more users, a confirmation prompt will be displayed before deletion if this parameter is not included in the command. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the location policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifying this parameter will bypass any confirmation prompts and the deletion will occur without any warning notice. For example, if a per-user location policy is assigned to one or more users, a confirmation prompt will be displayed before deletion if this parameter is not included in the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to remove. To remove the global location policy (which simply resets that policy to its default values), use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Bldg30Floor3Sector1. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the location policy is being removed. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - Accepts pipelined input of location policy objects. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - This cmdlet does not return a value or object. Instead, the cmdlet removes instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsLocationPolicy -Identity Reno - - The command shown in Example 1 uses the `Remove-CsLocationPolicy` cmdlet to delete the location policy with the Identity Reno. When a per-user policy is removed, users or groups who were assigned that policy will automatically use the policy configured for their site instead. If no policy has been configured for their site, then these users and groups will use the global location policy. - - - - -------------------------- Example 2 -------------------------- - Get-CsLocationPolicy | Where-Object {$_.EnhancedEmergencyServicesEnabled -eq $false} | Remove-CsLocationPolicy - - Example 2 deletes all the location policies where the EnhancedEmergencyServicesEnabled property is False. (In other words, it deletes all location policies that don't enable E9-1-1.) To do this, the command first uses the `Get-CsLocationPolicy` cmdlet to retrieve all the location policies currently in use in the organization. This collection is then piped to the `Where-Object` cmdlet, which applies a filter that limits the retrieved data to those policies where the EnhancedEmergencyServicesEnabled property is equal to (-eq) False ($False). Finally, this filtered collection is passed to the `Remove-CsLocationPolicy` cmdlet, which proceeds to delete each policy in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-cslocationpolicy - - - New-CsLocationPolicy - - - - Set-CsLocationPolicy - - - - Get-CsLocationPolicy - - - - Grant-CsLocationPolicy - - - - Test-CsLocationPolicy - - - - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - Remove - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet deletes an instance of the Online Audio Conferencing Routing Policy. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineAudioConferencingRoutingPolicy -Identity "Test" - - Deletes an Online Audio Conferencing Routing policy instance with the identity "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Remove-CsOnlineDialInConferencingTenantSettings - Remove - CsOnlineDialInConferencingTenantSettings - - Use the `Remove-CsOnlineDialInConferencingTenantSettings` cmdlet to revert the tenant level dial-in conferencing settings to their original defaults. - - - - There is always a single instance of the dial-in conferencing settings per tenant. You can modify the settings using `Set-CsOnlineDialInConferencingTenantSettings` and revert those settings to their defaults by using `Remove-CsOnlineDialInConferencingTenantSettings`. - - - - Remove-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineDialInConferencingTenantSettings - - This example reverts the tenant level dial-in conferencing settings to their original defaults. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinedialinconferencingtenantsettings - - - - - - Remove-CsOnlineVoicemailPolicy - Remove - CsOnlineVoicemailPolicy - - Deletes an existing Online Voicemail policy or resets the Global policy instance to the default values. - - - - Deletes an existing Online Voicemail policy or resets the Global policy instance to the default values. - - - - Remove-CsOnlineVoicemailPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You are not able to delete the pre-configured policy instances Default, TranscriptionProfanityMaskingEnabled and TranscriptionDisabled - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineVoicemailPolicy -Identity "CustomOnlineVoicemailPolicy" - - The command shown in Example 1 deletes a per-user online voicemail policy CustomOnlineVoicemailPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - Get-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - Set-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - New-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Grant-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - - - - Remove-CsOnlineVoiceRoute - Remove - CsOnlineVoiceRoute - - Removes an online voice route. Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - - - - Use this cmdlet to remove an existing online voice route. Online voice routes are associated with online voice policies through online PSTN usages, so removing an online voice route does not change any values relating to an online voice policy, it simply changes the routing for the numbers that had matched the pattern for the deleted online voice route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Remove-CsOnlineVoiceRoute - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineVoiceRoute -Identity Route1 - - Removes the settings for the online voice route with the identity Route1. - - - - -------------------------- Example 2 -------------------------- - PS C:\ Get-CsOnlineVoiceRoute | Remove-CsOnlineVoiceRoute - - This command removes all online voice routes from the organization. First all online voice routes are retrieved by the `Get-CsOnlineVoiceRoute` cmdlet. These online voice routes are then piped to the `Remove-CsOnlineVoiceRoute` cmdlet, which removes each one. - - - - -------------------------- Example 3 -------------------------- - PS C:\ Get-CsOnlineVoiceRoute -Filter *Redmond* | Remove-CsOnlineVoiceRoute - - This command removes all online voice routes with an identity that includes the string "Redmond". First the `Get-CsOnlineVoiceRoute` cmdlet is called with the Filter parameter. The value of the Filter parameter is the string Redmond surrounded by wildcard characters (*), which specifies that the string can be anywhere within the Identity. After all of the online voice routes with identities that include the string Redmond are retrieved, these online voice routes are piped to the `Remove-CsOnlineVoiceRoute` cmdlet, which removes each one. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - - - - Remove-CsOnlineVoiceRoutingPolicy - Remove - CsOnlineVoiceRoutingPolicy - - Deletes an existing online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Remove-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" - - The command shown in Example 1 deletes the online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Filter "tag:*" | Remove-CsOnlineVoiceRoutingPolicy - - In Example 2, all the online voice routing policies configured at the per-user scope are removed. To do this, the command first calls the `Get-CsOnlineVoiceRoutingPolicy` cmdlet along with the Filter parameter; the filter value "tag:*" limits the returned data to online voice routing policies configured at the per-user scope. Those per-user policies are then piped to and removed by, the `Remove-CsOnlineVoiceRoutingPolicy` cmdlet. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Long Distance"} | Remove-CsOnlineVoiceRoutingPolicy - - In Example 3, all the online voice routing polices that include the online PSTN usage "Long Distance" are removed. To carry out this task, the `Get-CsOnlineVoiceRoutingPolicy` cmdlet is first called without any parameters in order to return a collection of all the available online voice routing policies. That collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the usage "Long Distance". Policies that meet that criterion are then piped to the `Remove-CsOnlineVoiceRoutingPolicy`, which removes each online voice routing policy that includes the online PSTN usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - - - - Remove-CsPresenceProvider - Remove - CsPresenceProvider - - Removes a presence provider previously configured for use in the organization. Presence providers represent the PresenceProviders property of a collection of user services configuration settings. This cmdlet was introduced in Lync Server 2013. - - - - The CsPresenceProvider cmdlets are used to manage the PresenceProviders property found in the User Services configuration settings. Among other things, these settings are used to maintain presence information, including a collection of authorized presence providers. That collection is stored in the PresenceProviders property. - The `Remove-CsPresenceProvider` cmdlet enables you to remove a presence provider from the PresenceProviders property of one or more collections of User Services configuration settings. - Skype for Business Server Control Panel: The functions carried out by the `Remove-CsPresenceProvider` cmdlet are not available in the Skype for Business Server Control Panel. - - - - Remove-CsPresenceProvider - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier of the presence provider to be removed. To remove a single provider, use the actual Identity of the provider, which includes both the scope and the provider Fqdn: - `-Identity "global/fabrikam.com"` - To remove all the presence providers configured at a particular scope, simply use the scope as the Identity. This syntax removes all the providers configured at the global scope: - `-Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier of the presence provider to be removed. To remove a single provider, use the actual Identity of the provider, which includes both the scope and the provider Fqdn: - `-Identity "global/fabrikam.com"` - To remove all the presence providers configured at a particular scope, simply use the scope as the Identity. This syntax removes all the providers configured at the global scope: - `-Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated - - - The `Remove-CsPresenceProvider` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated object. - - - - - - - None - - - The `Remove-CsPresenceProvider` cmdlet does not return a value or object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsPresenceProvider -Identity "global/fabrikam.com" - - The command shown in Example 1 removes the presence provider with the Identity "global/fabrikam.com". - - - - -------------------------- Example 2 -------------------------- - Get-CsPresenceProvider | Remove-CsPresenceProvider - - In Example 2, all the presence providers configured for use in the organization are removed. To do this, the command first calls the `Get-CsPresenceProvider` cmdlet without any parameters; that returns a collection of all the configured presence providers. That collection is then piped to the `Remove-CsPresenceProvider` cmdlet, which deletes each item (that is, each provider) in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsPresenceProvider | Where-Object {$_.Fqdn -match "fabrikam.com"} | Remove-CsPresenceProvider - - Example 3 shows how you can delete all the presence providers that have an Fqdn that includes the string value "fabrikam.com". To carry out this task, the command first uses the `Get-CsPresenceProvider` cmdlet to return a collection of all the available presence providers. That collection is then piped to the `Where-Object` cmdlet, which picks out only those providers where the Fqdn property includes (-match) the string value "fabrikam.com". In turn, that filtered collection is then piped to the `Remove-CsPresenceProvider` cmdlet, which deletes each provider in the filtered collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-cspresenceprovider - - - Get-CsPresenceProvider - - - - Get-CsUserServicesConfiguration - - - - New-CsPresenceProvider - - - - Set-CsPresenceProvider - - - - - - - Remove-CsTeamsAIPolicy - Remove - CsTeamsAIPolicy - - This cmdlet deletes a Teams AI policy. - - - - The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs. - This cmdlet deletes a Teams AI policy with the specified identity string. - - - - Remove-CsTeamsAIPolicy - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsAIPolicy -Identity "Test" - - Deletes a Teams AI policy with the identify of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsTeamsAIPolicy - - - New-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaipolicy - - - Get-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaipolicy - - - Grant-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaipolicy - - - Set-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaipolicy - - - - - - Remove-CsTeamsAppPermissionPolicy - Remove - CsTeamsAppPermissionPolicy - - This cmdlet allows you to remove app permission policies that have been created within your organization. - - - - NOTE : You can use this cmdlet to remove a specific custom policy from a user. We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Permission Policies: <https://learn.microsoft.com/microsoftteams/teams-app-permission-policies>. - This cmdlet allows you to remove app permission policies that have been created within your organization. If you run Remove-CsTeamsAppPermissionPolicy on the Global policy, it will be reset to the defaults provided for new organizations. This is only applicable for tenants who have not been migrated to ACM or UAM. - - - - Remove-CsTeamsAppPermissionPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsAppPermissionPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsapppermissionpolicy - - - - - - Remove-CsTeamsAppSetupPolicy - Remove - CsTeamsAppSetupPolicy - - You can use this cmdlet to remove custom app setup policies. - - - - NOTE : You can use this cmdlet to remove custom app setup policies. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. App setup policies let you showcase apps that users in your organization need, including ones built by third parties or by developers in your organization. You can also use app setup policies to manage how built-in features appear. - Apps are pinned to the app bar. This is the bar on the side of the Teams desktop client and at the bottom of the Teams mobile clients (iOS and Android). Learn more about the App Setup Policies: <https://learn.microsoft.com/MicrosoftTeams/teams-app-setup-policies>. - If you run Remove-CsTeamsAppSetupPolicy on the Global policy, it will be reset to the defaults provided for new organizations. - - - - Remove-CsTeamsAppSetupPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsAppSetupPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsappsetuppolicy - - - - - - Remove-CsTeamsAudioConferencingPolicy - Remove - CsTeamsAudioConferencingPolicy - - Deletes a custom Teams audio conferencing policy. Audio conferencing policies are used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Deletes a previously created TeamsAudioConferencingPolicy. Any users with no explicitly assigned policies will then fall back to the default (Global) policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: `-Identity "<policy name>"`. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: `-Identity "<policy name>"`. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - String - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Remove-CsTeamsAudioCOnferencingPolicy -Identity "Emea Users" - - In the example shown above, the command will delete the "Emea Users" audio conferencing policy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Remove-CsTeamsCallHoldPolicy - Remove - CsTeamsCallHoldPolicy - - Deletes an existing Teams call hold policy in your tenant. The Teams call hold policy is used to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a Teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - Remove-CsTeamsCallHoldPolicy - - Identity - - Unique identifier of the Teams call hold policy to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the Teams call hold policy to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCallHoldPolicy -Identity 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 1 deletes the Teams call hold policy ContosoPartnerTeamsCallHoldPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsCallHoldPolicy -Filter 'Tag:*' | Remove-CsTeamsCallHoldPolicy - - In Example 2, all the Teams call hold policies configured at the per-user scope are removed. The Filter value "Tag:*" limits the returned data to Teams call hold policies configured at the per-user scope. Those per-user policies are then removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - New-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Get-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - Set-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Grant-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - - - - Remove-CsTeamsCallingPolicy - Remove - CsTeamsCallingPolicy - - - - - - This cmdlet removes an existing Teams Calling Policy instance or resets the Global policy instance to the default values. - - - - Remove-CsTeamsCallingPolicy - - Identity - - The Identity parameter is the unique identifier of the Teams Calling Policy instance to remove or reset. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier of the Teams Calling Policy instance to remove or reset. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCallingPolicy -Identity Sales - - This example removes the Teams Calling Policy with identity Sales - - - - -------------------------- Example 2 -------------------------- - PS C:\> Remove-CsTeamsCallingPolicy -Identity Global - - This example resets the Global Policy instance to the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallingpolicy - - - Set-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallingpolicy - - - Get-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallingpolicy - - - Grant-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallingpolicy - - - New-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallingpolicy - - - - - - Remove-CsTeamsCallParkPolicy - Remove - CsTeamsCallParkPolicy - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different Teams phone. The Remove-CsTeamsCallParkPolicy cmdlet lets delete a custom policy that has been configured in your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Remove-CsTeamsCallParkPolicy cmdlet lets delete a custom policy that has been configured in your organization. - If you run Remove-CsTeamsCallParkPolicy on the Global policy, it will be reset to the defaults provided for new organizations. - - - - Remove-CsTeamsCallParkPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCallParkPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallparkpolicy - - - - - - Remove-CsTeamsChannelsPolicy - Remove - CsTeamsChannelsPolicy - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. The Remove-CsTeamsChannelsPolicy cmdlet lets you delete a custom policy that has been configured in your organization. - If you run Remove-CsTeamsChannelsPolicy on the Global policy, it will be reset to the defaults provided for new organizations. - - - - Remove-CsTeamsChannelsPolicy - - Identity - - > Applicable: Microsoft Teams - The name of the policy to be removed. Wildcards are not supported. - To remove a custom policy, use syntax similar to this: `-Identity "Student Policy"`. - To "remove" the global policy, use the following syntax: `-Identity Global`. You can't actually remove the global policy. Instead, all properties will be reset to their default values as shown in the default policy (`Tag:Default`). - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The name of the policy to be removed. Wildcards are not supported. - To remove a custom policy, use syntax similar to this: `-Identity "Student Policy"`. - To "remove" the global policy, use the following syntax: `-Identity Global`. You can't actually remove the global policy. Instead, all properties will be reset to their default values as shown in the default policy (`Tag:Default`). - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsChannelsPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamschannelspolicy - - - - - - Remove-CsTeamsComplianceRecordingApplication - Remove - CsTeamsComplianceRecordingApplication - - Deletes an existing association between an application instance of a policy-based recording application and a Teams recording policy for administering automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Policy-based recording applications are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy. - Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. Please also refer to the documentation of CsTeamsComplianceRecordingPolicy cmdlets for further information. - - - - Remove-CsTeamsComplianceRecordingApplication - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams compliance recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams compliance recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' - - The command shown in Example 1 deletes an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication | Remove-CsTeamsComplianceRecordingApplication - - The command shown in Example 2 deletes all existing associations between application instances of policy-based recording applications and their corresponding Teams compliance recording policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Remove-CsTeamsComplianceRecordingPolicy - Remove - CsTeamsComplianceRecordingPolicy - - Deletes an existing Teams recording policy that is used to govern automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - Remove-CsTeamsComplianceRecordingPolicy - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' - - The command shown in Example 1 deletes the Teams recording policy ContosoPartnerComplianceRecordingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingPolicy -Filter 'Tag:*' | Remove-CsTeamsComplianceRecordingPolicy - - In Example 2, all the Teams recording policies configured at the per-user scope are removed. The Filter value "Tag:*" limits the returned data to Teams recording policies configured at the per-user scope. Those per-user policies are then removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Remove-CsTeamsCortanaPolicy - Remove - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - Deletes a previously created TeamsCortanaPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsCortanaPolicy - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCortanaPolicy -Identity MyCortanaPolicy - - In the example shown above, the command will delete the MyCortanaPolicy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Remove-CsTeamsCustomBannerText - Remove - CsTeamsCustomBannerText - - Enables administrators to remove a custom banner text configuration that is displayed when compliance recording bots start recording the call. - - - - Removes a single instance of custom banner text. - - - - Remove-CsTeamsCustomBannerText - - Identity - - > Applicable: Microsoft Teams - Policy instance name (optional). - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - Policy instance name (optional). - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCustomBannerText -Identity CustomText - - This example removes a TeamsCustomBannerText instance with the name "CustomText". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsTeamsCustomBannerText - - - Set-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscustombannertext - - - New-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscustombannertext - - - Remove-CsTeamsCustomBannerText - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscustombannertext - - - - - - Remove-CsTeamsEmergencyCallingPolicy - Remove - CsTeamsEmergencyCallingPolicy - - - - - - This cmdlet removes an existing Teams Emergency Calling policy. - - - - Remove-CsTeamsEmergencyCallingPolicy - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Calling policy to remove. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Calling policy to remove. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsEmergencyCallingPolicy -Identity testECP - - This example removes an existing Teams Emergency Calling policy with identity testECP. - - - - -------------------------- Example 2 -------------------------- - Remove-CsTeamsEmergencyCallingPolicy -Identity Global - - This example resets the Global Policy instance to the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Grant-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - Get-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - - - - Remove-CsTeamsEmergencyCallRoutingPolicy - Remove - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet removes an existing Teams Emergency Call Routing policy instance. - - - - This cmdlet removes an existing Teams Emergency Call Routing policy instance. - - - - Remove-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Call Routing policy to remove. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Call Routing policy to remove. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsEmergencyCallRoutingPolicy -Identity Test - - This example removes Teams Emergency Call Routing policy with identity Test. - - - - -------------------------- Example 2 -------------------------- - Remove-CsTeamsEmergencyCallRoutingPolicy -Identity Global - - This example resets the Teams Emergency Call Routing Global policy instance to its default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - - - - Remove-CsTeamsEnhancedEncryptionPolicy - Remove - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to remove an existing Teams enhanced encryption policy. - - - - Use this cmdlet to remove an existing Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Remove-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Remove-CsTeamsEnhancedEncryptionPolicy -Identity 'ContosoPartnerTeamsEnhancedEncryptionPolicy' - - The command shown in Example 1 deletes the Teams enhanced encryption policy ContosoPartnerTeamsEnhancedEncryptionPolicy. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy -Filter 'Tag:*' | Remove-CsTeamsEnhancedEncryptionPolicy - - In Example 2, all the Teams enhanced encryption policies configured at the per-user scope are removed. The Filter value "Tag:*" limits the returned data to Teams enhanced encryption policies configured at the per-user scope. Those per-user policies are then removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Remove-CsTeamsEventsPolicy - Remove - CsTeamsEventsPolicy - - The CsTeamsEventsPolicy cmdlets removes a previously created TeamsEventsPolicy. Note that this policy is currently still in preview. - - - - Deletes a previously created TeamsEventsPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsEventsPolicy - - Identity - - Unique identifier for the teams events policy to be removed. To remove the global policy, use this syntax: -Identity Global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy DisablePublicWebinars, use this syntax: -Identity DisablePublicWebinars. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams events policy to be removed. To remove the global policy, use this syntax: -Identity Global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy DisablePublicWebinars, use this syntax: -Identity DisablePublicWebinars. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsEventsPolicy -Identity DisablePublicWebinars - - In this example, the command will delete the DisablePublicWebinars policy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamseventspolicy - - - - - - Remove-CsTeamsFeedbackPolicy - Remove - CsTeamsFeedbackPolicy - - Use this cmdlet to remove a Teams Feedback policy from the Tenant. - - - - Removes a Teams Feedback policy from the Tenant. - - - - Remove-CsTeamsFeedbackPolicy - - Identity - - The identity of the policy to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy to be removed. - - String - - String - - - None - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsFeedbackPolicy -Identity "New Hire Feedback Policy" - - In this example, the policy "New Hire Feedback Policy" is being removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsfeedbackpolicy - - - - - - Remove-CsTeamsFilesPolicy - Remove - CsTeamsFilesPolicy - - Deletes an existing teams files policy or resets the Global policy instance to the default values. - - - - Deletes an existing teams files or resets the Global policy instance to the default values. - - - - Remove-CsTeamsFilesPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - - - - - You are not able to delete the pre-configured policy instances Default, TranscriptionProfanityMaskingEnabled and TranscriptionDisabled - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsFilesPolicy -Identity "Customteamsfilespolicy" - - The command shown in Example 1 deletes a per-user teams files policy Customteamsfilespolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfilespolicy - - - - - - Remove-CsTeamsIPPhonePolicy - Remove - CsTeamsIPPhonePolicy - - Use the Remove-CsTeamsIPPhonePolicy cmdlet to remove a custom policy that's been created for controlling Teams phone experiences. - - - - Use the Remove-CsTeamsIPPhonePolicy cmdlet to remove a custom policy that's been created for controlling Teams IP Phones experiences. - Note: Ensure the policy is not assigned to any users or the policy deletion will fail. - - - - Remove-CsTeamsIPPhonePolicy - - Identity - - Specify the name of the TeamsIPPhonePolicy that you would like to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the TeamsIPPhonePolicy that you would like to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsIPPhonePolicy -Identity CommonAreaPhone - - This example shows the deletion of the policy CommonAreaPhone. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsipphonepolicy - - - - - - Remove-CsTeamsMediaConnectivityPolicy - Remove - CsTeamsMediaConnectivityPolicy - - This cmdlet deletes a Teams media connectivity policy. - - - - This cmdlet deletes a Teams media connectivity policy with the specified identity string. - - - - Remove-CsTeamsMediaConnectivityPolicy - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMediaConnectivityPolicy -Identity "Test" - - Deletes a Teams media connectivity policy with the identify of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsTeamsMediaConnectivityPolicy - - - New-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmediaconnectivitypolicy - - - Get-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmediaconnectivitypolicy - - - Set-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmediaconnectivitypolicy - - - - - - Remove-CsTeamsMeetingBrandingPolicy - Remove - CsTeamsMeetingBrandingPolicy - - The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - Deletes a previously created TeamsMeetingBrandingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. If you want to remove policies currently assigned to one or more users, you should first assign a different policy to them. - - - - Remove-CsTeamsMeetingBrandingPolicy - - Identity - - Unique identifier of the policy to be deleted. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the policy to be deleted. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Available in Teams PowerShell Module 4.9.3 and later. - - - - - ---------------- Remove meeting branding policy ---------------- - PS C:\> Remove-CsTeamsMeetingBrandingPolicy -Identity "policy test" - - In this example, the command deletes the `policy test` meeting branding policy from the organization's list of meeting branding policies and removes all assignments of this policy from users who have the policy assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Get-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbrandingpolicy - - - Grant-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - New-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Remove-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Set-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - - - - Remove-CsTeamsMeetingBroadcastPolicy - Remove - CsTeamsMeetingBroadcastPolicy - - Deletes an existing Teams meeting broadcast policy in your tenant. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - Remove-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be removed. Policies can be configured at the global or per-user scopes. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) - To remove a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors when running this command. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors when running this command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be removed. Policies can be configured at the global or per-user scopes. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) - To remove a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbroadcastpolicy - - - - - - Remove-CsTeamsMeetingPolicy - Remove - CsTeamsMeetingPolicy - - The `CsTeamsMeetingPolicy` cmdlets removes a previously created TeamsMeetingPolicy. - - - - Deletes a previously created TeamsMeetingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. If you want to remove policies currently assigned to one or more users, you should assign a different policy to them before. - - - - Remove-CsTeamsMeetingPolicy - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMeetingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMeetingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMeetingPolicy -Identity StudentMeetingPolicy - - In the example shown above, the command will delete the student meeting policy from the organization's list of policies and remove all assignments of this policy from users who have had the policy assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingpolicy - - - - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - Remove - CsTeamsMeetingTemplatePermissionPolicy - - Deletes an instance of TeamsMeetingTemplatePermissionPolicy. - - - - Deletes an instance of TeamsMeetingTemplatePermissionPolicy. The `Identity` parameter accepts the identity of the policy instance to delete. - - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - - Identity - - > Applicable: Microsoft Teams - Identity of the policy instance to be deleted. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - Identity of the policy instance to be deleted. - - String - - String - - - None - - - - - - - - - - - - -- Example 1 - Deleting a meeting template permission policy -- - Remove-CsTeamsMeetingTemplatePermissionPolicy -Identity Test_Policy - - Deletes a policy instance with the Identity Test_Policy . - - - - -- Example 2 - Deleting a policy when its assigned to a user -- - Remove-CsTeamsMeetingTemplatePermissionPolicy -Identity Foobar - -Remove-CsTeamsMeetingTemplatePermissionPolicy : The policy "Foobar" is currently assigned to one or more users. Assign a different policy to the users before removing -this one. Please refer to documentation. CorrelationId: 8698472b-f441-423b-8ee3-0469c7e07528 -At line:1 char:1 -+ Remove-CsTeamsMeetingTemplatePermissionPolicy -Identity Foobar -+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - + CategoryInfo : NotSpecified: (:) [Remove-CsTeamsM...ermissionPolicy], PolicyRpException - + FullyQualifiedErrorId : ClientError,Microsoft.Teams.Policy.Administration.Cmdlets.Core.RemoveTeamsMeetingTemplatePermissionPolicyCmdlet - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsTeamsMeetingTemplatePermissionPolicy - - - Set-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingtemplatepermissionpolicy - - - Get-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplatepermissionpolicy - - - New-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingtemplatepermissionpolicy - - - - - - Remove-CsTeamsMessagingPolicy - Remove - CsTeamsMessagingPolicy - - Deletes a custom messaging policy. Teams messaging policies determine the features and capabilities that can be used in messaging within the teams client. - - - - Deletes a previously created TeamsMessagingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsMessagingPolicy - - Identity - - Unique identifier for the teams messaging policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMessagingPolicy . - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams messaging policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentMessagingPolicy . - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMessagingPolicy -Identity StudentMessagingPolicy - - In the example shown above, the command will delete the student messaging policy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmessagingpolicy - - - - - - Remove-CsTeamsMobilityPolicy - Remove - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Remove-CsTeamsMobilityPolicy cmdlet lets an Admin delete a custom teams mobility policy that has been created. - - - - Remove-CsTeamsMobilityPolicy - - Identity - - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: -Identity "SalesDepartmentPolicy". You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: -Identity "SalesDepartmentPolicy". You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMobilityPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmobilitypolicy - - - - - - Remove-CsTeamsNetworkRoamingPolicy - Remove - CsTeamsNetworkRoamingPolicy - - Remove-CsTeamsNetworkRoamingPolicy allows IT Admins to delete policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Deletes the Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - - - - Remove-CsTeamsNetworkRoamingPolicy - - Identity - - Unique identifier of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Identity - - Unique identifier of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsNetworkRoamingPolicy -Identity OfficePolicy - - In Example 1, Remove-CsTeamsNetworkRoamingPolicy is used to delete the network roaming policy that has an Identity OfficePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsnetworkroamingpolicy - - - - - - Remove-CsTeamsNotificationAndFeedsPolicy - Remove - CsTeamsNotificationAndFeedsPolicy - - Deletes an existing Teams Notification and Feeds Policy - - - - The Microsoft Teams notifications and feeds policy allows administrators to manage how notifications and activity feeds are handled within Teams. This policy includes settings that control the types of notifications users receive, how they are delivered, and which activities are highlighted in their feeds. - - - - Remove-CsTeamsNotificationAndFeedsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsNotificationAndFeedsPolicy - - Remove an existing Notifications and Feeds Policy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsnotificationandfeedspolicy - - - - - - Remove-CsTeamsPersonalAttendantPolicy - Remove - CsTeamsPersonalAttendantPolicy - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - Use this cmdlet to remove an existing instance of a Teams Personal Attendant Policy or reset the Global policy instance to the default values. - When policy modifications are temporarily blocked, this cmdlet is not available and policy removal cannot be performed during this period. - - - - This cmdlet removes an existing Teams Personal Attendant Policy instance or resets the Global policy instance to the default values. - - - - Remove-CsTeamsPersonalAttendantPolicy - - Identity - - The Identity parameter is the unique identifier of the Teams Personal Attendant Policy instance to remove or reset. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - - - - Identity - - The Identity parameter is the unique identifier of the Teams Personal Attendant Policy instance to remove or reset. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.2.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy - - This example removes the Teams Personal Attendant Policy with identity SalesPersonalAttendantPolicy - - - - -------------------------- Example 2 -------------------------- - Remove-CsTeamsPersonalAttendantPolicy -Identity Global - - This example resets the Global Personal Attendant Policy instance to the default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamspersonalattendantpolicy - - - New-CsTeamsPersonalAttendantPolicy - - - - Get-CsTeamsPersonalAttendantPolicy - - - - Set-CsTeamsPersonalAttendantPolicy - - - - Grant-CsTeamsPersonalAttendantPolicy - - - - - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - Remove - CsTeamsRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - Remove information about the instance of TeamsRecordingAndTranscriptionCustomMessage that have been configured for recording and transcription customized message. - - - - The strings defined in TeamsRecordingAndTranscriptionCustomMessage is used for display after recording or transcription is started in a meeting. Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below. These strings will not take effect immediately after being created; they need to be associated with other configurations and policies. - This command will remove an existing TeamsRecordingAndTranscriptionCustomMessage that have been configured before with New-CsTeamsRecordingAndTranscriptionCustomMessage. You must provide an Id to identify the configuration that you want to remove. - - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsRecordingAndTranscriptionCustomMessage -Id '39dc3ede-c80e-4f19-9153-417a65a1f144' - - The command shown in Example 1 remove information for the instances of TeamsRecordingAndTranscriptionCustomMessage with the Id 39dc3ede-c80e-4f19-9153-417a65a1f144. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - - - - - Remove-CsTeamsRemoteLogCollectionDevice - Remove - CsTeamsRemoteLogCollectionDevice - - Removes a device for which remote log collection was requested for. - - - - Deletes a previously created TeamsRemoteLogCollectionDevice. - - - - Remove-CsTeamsRemoteLogCollectionDevice - - Identity - - Unique identifier for the teams remote log collecton device to be removed. - - Guid - - Guid - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams remote log collecton device to be removed. - - Guid - - Guid - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsRemoteLogCollectionDevice -Identity - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csTeamsRemoteLogCollectionDevice - - - Get-CsTeamsRemoteLogCollectionConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionConfiguration - - - Get-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionDevice - - - Set-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/set-csTeamsRemoteLogCollectionDevice - - - New-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/new-csTeamsRemoteLogCollectionDevice - - - - - - Remove-CsTeamsRoomVideoTeleConferencingPolicy - Remove - CsTeamsRoomVideoTeleConferencingPolicy - - Deletes an existing TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Remove-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsroomvideoteleconferencingpolicy - - - - - - Remove-CsTeamsSharedCallingRoutingPolicy - Remove - CsTeamsSharedCallingRoutingPolicy - - Deletes an existing Teams shared calling routing policy instance. - - - - TeamsSharedCallingRoutingPolicy is used to configure shared calling. - - - - Remove-CsTeamsSharedCallingRoutingPolicy - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it is created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it is created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - This cmdlet was introduced in Teams PowerShell Module 5.5.0. - - - - - -------------------------- EXAMPLE 1 -------------------------- - Remove-CsTeamsSharedCallingRoutingPolicy -Identity "Seattle" - - The command shown in Example 1 deletes the Teams shared calling routing policy instance Seattle. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsTeamsSharedCallingRoutingPolicy -Filter "tag:*" | Remove-CsTeamsSharedCallingRoutingPolicy - - In Example 2, all Teams shared calling routing policies configured at the per-user scope are removed. To do this, the command first calls the Get-CsTeamsSharedCallingRoutingPolicy cmdlet along with the Filter parameter; the filter value "tag:*" limits the returned data to Teams shared calling routing policies configured at the per-user scope. Those per-user policies are then piped to and removed by the Remove-CsTeamsSharedCallingRoutingPolicy cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssharedcallingroutingpolicy - - - Get-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssharedcallingroutingpolicy - - - Grant-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssharedcallingroutingpolicy - - - Set-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssharedcallingroutingpolicy - - - New-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssharedcallingroutingpolicy - - - - - - Remove-CsTeamsShiftsPolicy - Remove - CsTeamsShiftsPolicy - - The `Remove-CsTeamsShiftsPolicy` cmdlet removes a previously created TeamsShiftsPolicy. - - - - Note: A TeamsShiftsPolicy needs to be unassigned from all the users before it can be deleted. - - - - Remove-CsTeamsShiftsPolicy - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsShiftsPolicy -Identity OffShiftAccess_WarningMessage1_AlwaysShowMessage - - In this example, the policy instance to be removed is called "OffShiftAccess_WarningMessage1_AlwaysShowMessage". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-teamsshiftspolicy - - - Get-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftspolicy - - - New-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftspolicy - - - Set-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftspolicy - - - Grant-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsshiftspolicy - - - - - - Remove-CsTeamsSurvivableBranchAppliance - Remove - CsTeamsSurvivableBranchAppliance - - Removes a Survivable Branch Appliance (SBA) from the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Remove-CsTeamsSurvivableBranchAppliance - - Identity - - The Identity parameter is the unique identifier for the SBA. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier for the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssurvivablebranchappliance - - - - - - Remove-CsTeamsSurvivableBranchAppliancePolicy - Remove - CsTeamsSurvivableBranchAppliancePolicy - - Removes a Survivable Branch Appliance (SBA) policy from the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Remove-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - Policy instance name. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Policy instance name. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssurvivablebranchappliancepolicy - - - - - - Remove-CsTeamsTargetingPolicy - Remove - CsTeamsTargetingPolicy - - The CsTeamsTargetingPolicy cmdlets removes a previously created CsTeamsTargetingPolicy. - - - - Deletes a previously created TeamsTargetingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. - - - - Remove-CsTeamsTargetingPolicy - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentTagPolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentTagPolicy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMeetingPolicy -Identity StudentTagPolicy - - In the example shown above, the command will delete the student tag policy from the organization's list of policies and remove all assignments of this policy from users who have had the policy assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - Get-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Set-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - - - - Remove-CsTeamsTemplatePermissionPolicy - Remove - CsTeamsTemplatePermissionPolicy - - Deletes an instance of TeamsTemplatePermissionPolicy. - - - - Deletes an instance of TeamsTemplatePermissionPolicy. The `Identity` parameter accepts the identity of the policy instance to delete. - - - - Remove-CsTeamsTemplatePermissionPolicy - - Identity - - Name of the policy instance to be deleted. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the policy instance to be deleted. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS >Remove-CsTeamsTemplatePermissionPolicy -Identity Foobar - - Deletes a policy instance with the Identity Foobar . - - - - -------------------------- Example 2 -------------------------- - PS >Remove-CsTeamsTemplatePermissionPolicy -Identity Foobar - -Remove-CsTeamsTemplatePermissionPolicy : The policy "Foobar" is currently assigned to one or more users or groups. Ensure policy is not assigned before removing. Please refer to documentation. CorrelationId: 8622aac5-00c3-4071-b6d0-d070db8f663f -At line:1 char:1 -+ Remove-CsTeamsTemplatePermissionPolicy -Identity Foobar ... -+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - + CategoryInfo : NotSpecified: (:) [Remove-CsTeamsTemplatePermissionPolicy], PolicyRpException - + FullyQualifiedErrorId : ClientError,Microsoft.Teams.Policy.Administration.Cmdlets.Core.RemoveTeamsTemplatePermissionPolicyCmdlet - - Attempting to delete a policy instance that is currently assigned to users will result in an error. Remove the assignment before attempting to delete it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstemplatepermissionpolicy - - - Get-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstemplatepermissionpolicy - - - New-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy - - - Set-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstemplatepermissionpolicy - - - - - - Remove-CsTeamsUnassignedNumberTreatment - Remove - CsTeamsUnassignedNumberTreatment - - Removes a treatment for how calls to an unassigned number range should be routed. - - - - This cmdlet removes a treatment for how calls to an unassigned number range should be routed. - - - - Remove-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment to remove. - - System.String - - System.String - - - None - - - - - - Identity - - The Id of the specific treatment to remove. - - System.String - - System.String - - - None - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsUnassignedNumberTreatment -Identity MainAA - - This example removes the treatment MainAA. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - Remove-CsTeamsUpdateManagementPolicy - Remove - CsTeamsUpdateManagementPolicy - - Use this cmdlet to remove a Teams Update Management policy from the tenant. - - - - Removes a Teams Update Management policy from the tenant. - - - - Remove-CsTeamsUpdateManagementPolicy - - Identity - - The identity of the policy to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsUpdateManagementPolicy -Identity "Campaign Policy" - - In this example, the policy "Campaign Policy" is being removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsupdatemanagementpolicy - - - - - - Remove-CsTeamsUpgradePolicy - Remove - CsTeamsUpgradePolicy - - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration. - - - - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Remove-CsTeamsUpgradePolicy lets the administrator remove instances of TeamsUpgradePolicy that were previously created by the administrator. - Instances of TeamsUpgradePolicy created on-premises will not apply to any users that are already homed online. This cmdlet cannot be used to remove the built-in instances of TeamsUpgradePolicy provided in Office 365. There is no Remove-CsTeamsUpgradePolicy cmdlet for the online environment by design. - - - - Remove-CsTeamsUpgradePolicy - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where "<name>" is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where "<name>" is the name of the site. To specify a policy that can be assigned as needed to any users, simply specify a name of your choosing. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsUpgradePolicy -Identity Site:Redmond1 - - This removes the TeamsUpgradePolicy for site named Redmond1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - Grant-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradePolicy - - - - New-CsTeamsUpgradePolicy - - - - Remove-CsTeamsUpgradePolicy - - - - Set-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradeConfiguration - - - - Set-CsTeamsUpgradeConfiguration - - - - - - - Remove-CsTeamsVdiPolicy - Remove - CsTeamsVdiPolicy - - This CsTeamsVdiPolicy cmdlets removes a previously created TeamsVdiPolicy. - - - - Deletes a previously created TeamsVdiPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. If you want to remove policies currently assigned to one or more users, you should assign a different policy to them before. - - - - Remove-CsTeamsVdiPolicy - - Identity - - Unique identifier for the teams Vdi policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity RestrictedUserPolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams Vdi policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity RestrictedUserPolicy. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMeetingPolicy -Identity RestrictedUserPolicy - - In the example shown above, the command will delete the restricted user policy from the organization's list of policies and remove all assignments of this policy from users who have had the policy assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvdipolicy - - - - - - Remove-CsTeamsVirtualAppointmentsPolicy - Remove - CsTeamsVirtualAppointmentsPolicy - - This cmdlet is used to delete an instance of TeamsVirtualAppointmentsPolicy. - - - - Deletes an instance of TeamsVirtualAppointmentsPolicy. The `Identity` parameter accepts the identity of the policy instance to delete. - - - - Remove-CsTeamsVirtualAppointmentsPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\>Remove-CsTeamsVirtualAppointmentsPolicy -Identity Foobar - - Deletes a given policy instance with the Identity Foobar. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvirtualappointmentspolicy - - - Get-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvirtualappointmentspolicy - - - New-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvirtualappointmentspolicy - - - Set-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvirtualappointmentspolicy - - - Grant-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvirtualappointmentspolicy - - - - - - Remove-CsTeamsVoiceApplicationsPolicy - Remove - CsTeamsVoiceApplicationsPolicy - - Deletes an existing Teams voice applications policy. - - - - TeamsVoiceApplicationsPolicy is used for Supervisor Delegated Administration which allows tenant admins to permit certain users to make changes to auto attendant and call queue configurations. - - - - Remove-CsTeamsVoiceApplicationsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Remove-CsTeamsVoiceApplicationsPolicy -Identity "SDA-Allow-All" - - The command shown in Example 1 deletes the Teams voice applications policy SDA-Allow-All. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsTeamsVoiceApplicationsPolicy -Filter "tag:*" | Remove-CsTeamsVoiceApplicationsPolicy - - In Example 2, all Teams voice applications policies configured at the per-user scope are removed. To do this, the command first calls the Get-CsTeamsVoiceApplicationsPolicy cmdlet along with the Filter parameter; the filter value "tag:*" limits the returned data to Teams voice applications policies configured at the per-user scope. Those per-user policies are then piped to and removed by the Remove-CsTeamsVoiceApplicationsPolicy cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - Get-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Grant-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Set-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - New-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - - - - Remove-CsTeamsWorkLoadPolicy - Remove - CsTeamsWorkLoadPolicy - - This cmdlet deletes a Teams Workload Policy instance. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Remove-CsTeamsWorkLoadPolicy - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft Internal Use Only - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal Use Only - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsWorkLoadPolicy -Identity "Test" - - Deletes a Teams Workload policy instance with the identity of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Remove-CsTeamsWorkLocationDetectionPolicy - Remove - CsTeamsWorkLocationDetectionPolicy - - This cmdlet is used to delete an instance of TeamsWorkLocationDetectionPolicy. - - - - Deletes an instance of TeamsWorkLocationDetectionPolicy. The `Identity` parameter accepts the identity of the policy instance to delete. - - - - Remove-CsTeamsWorkLocationDetectionPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\>Remove-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy - - Deletes a given policy instance with the Identity wld-policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworklocationdetectionpolicy - - - Get-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworklocationdetectionpolicy - - - New-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworklocationdetectionpolicy - - - Set-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworklocationdetectionpolicy - - - Grant-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworklocationdetectionpolicy - - - - - - Remove-CsTenantDialPlan - Remove - CsTenantDialPlan - - Use the `Remove-CsTenantDialPlan` cmdlet to remove a tenant dial plan. - - - - The `Remove-CsTenantDialPlan` cmdlet removes an existing tenant dial plan (also known as a location profile). Tenant dial plans provide required information to allow Enterprise Voice users to make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - Removing a tenant dial plan also removes any associated normalization rules. If no tenant dial plan is assigned to an organization, the Global dial plan is used. - - - - Remove-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the tenant dial plan to remove. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm parameter prompts you for confirmation before the command is executed. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm parameter prompts you for confirmation before the command is executed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the tenant dial plan to remove. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTenantDialPlan -Identity Vt1TenantDialPlan2 - - This example removes the Vt1TenantDialPlan2. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - - - - Remove-CsTenantNetworkRegion - Remove - CsTenantNetworkRegion - - Use the `Remove-CsTenantNetworkRegion` cmdlet to remove a tenant network region. - - - - The `Remove-CsTenantNetworkRegion` cmdlet removes an existing tenant network region. - A network region contains a collection of network sites. - - - - Remove-CsTenantNetworkRegion - - Identity - - Unique identifier for the network region to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network region to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkRegion -Identity "RedmondRegion" - - The command shown in Example 1 removes 'RedmondRegion'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - Remove-CsTenantNetworkSite - Remove - CsTenantNetworkSite - - Use the `Remove-CsTenantNetworkSite` cmdlet to remove a tenant network site. - - - - The `Remove-CsTenantNetworkSite` cmdlet removes an existing tenant network site. - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. - - - - Remove-CsTenantNetworkSite - - Identity - - Unique identifier for the network site to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network site to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkSite -Identity "site1" - - The command shown in Example 1 removes 'site1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - New-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Set-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - - - - Remove-CsTenantNetworkSubnet - Remove - CsTenantNetworkSubnet - - Use the `Remove-CsTenantNetworkSubnet` cmdlet to remove a tenant network subnet. - - - - The `Remove-CsTenantNetworkSubnet` cmdlet removes an existing tenant network subnet. - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. - - - - Remove-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network subnet to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkSubnet -Identity "192.168.0.1" - - The command shown in Example 1 removes '192.168.0.1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - Remove-CsTenantTrustedIPAddress - Remove - CsTenantTrustedIPAddress - - Use the `Remove-CsTenantTrustedIPAddress` cmdlet to remove a tenant trusted IP address. - - - - The `Remove-CsTenantTrustedIPAddress` cmdlet removes an existing tenant trusted IP address. - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - - - - Remove-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the trusted IP address to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP address are being removed. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the trusted IP address to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP address are being removed. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantTrustedIPAddress -Identity "192.168.0.1" - - The command shown in Example 1 removes '192.168.0.1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenanttrustedipaddress - - - - - - Remove-CsVideoInteropServiceProvider - Remove - CsVideoInteropServiceProvider - - Use the Remove-CsVideoInteropServiceProvider to remove all provider information about a provider that your organization no longer uses. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - The only input is Identity - the provider you wish to remove. - - - - Remove-CsVideoInteropServiceProvider - - Identity - - Specify the VideoInteropServiceProvider to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - - - - Identity - - Specify the VideoInteropServiceProvider to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - - - - Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csvideointeropserviceprovider - - - - - - Remove-CsVoicePolicy - Remove - CsVoicePolicy - - Removes the specified voice policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet removes an existing voice policy. Voice policies are used to manage such Enterprise Voice-related features as simultaneous ringing (the ability to have a second phone ring each time someone calls your office phone) and call forwarding. This cmdlet can also be used to remove the global voice policy. In that case, however, the policy will not actually be removed; instead, the policy settings will simply be reset to their default values. - - - - Remove-CsVoicePolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope and in some cases the name, of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for the voice policy being deleted. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope and in some cases the name, of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for the voice policy being deleted. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy - - - Accepts pipelined input of voice policy objects. - - - - - - - None - - - This cmdlet does not return a value. It removes an instance of a Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsVoicePolicy -Identity UserVoicePolicy1 - - This example removes the UserVoicePolicy1 per-user voice policy settings. - - - - -------------------------- Example 2 -------------------------- - Get-CsVoicePolicy -Filter tag* | Remove-CsVoicePolicy - - This example removes all the voice policy settings that can be assigned to specific users. First the `Get-CsVoicePolicy` cmdlet is called with a Filter of tag*, which retrieves all the per-user voice policies. That collection of policies is then piped to the `Remove-CsVoicePolicy` cmdlet to be removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csvoicepolicy - - - New-CsVoicePolicy - - - - Set-CsVoicePolicy - - - - Get-CsVoicePolicy - - - - Grant-CsVoicePolicy - - - - Test-CsVoicePolicy - - - - - - - Remove-CsVoiceRoutingPolicy - Remove - CsVoiceRoutingPolicy - - Deletes an existing voice routing policy. Voice routing policies manage PSTN usages for users of hybrid voice. Hybrid voice enables users homed on Skype for Business Online to take advantage of the Enterprise Voice capabilities available in an on-premises installation of Skype for Business Server. This cmdlet was introduced in Lync Server 2013. - - - - Voice routing policies are used in "hybrid" scenarios: when some of your users are homed on the on-premises version of Skype for Business Server and other users are homed on Skype for Business Online. Assigning your Skype for Business Online users a voice routing policy enables those users to receive and to place phones calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user a voice routing policy will not enable them to make PSTN calls via Skype for Business Online. Among other things, you will also need to enable those users for Enterprise Voice and will need to assign them an appropriate voice policy and dial plan. - Skype for Business Server Control Panel: The functions carried out by the `Remove-CsVoiceRoutingPolicy` cmdlet are not available in the Skype for Business Server. - - - - Remove-CsVoiceRoutingPolicy - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the voice routing policy to be removed. To "remove" the global policy, use the following syntax: - `-Identity global` - Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values. - To remove a per-user policy, use syntax similar to this: - `-Identity "RedmondVoiceRoutingPolicy"` - You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is present, the policy will automatically be removed even if it is currently assigned to at least one user. - If this parameter is not present, then the `Remove-CsVoiceRoutingPolicy` cmdlet will not automatically remove a per-user policy that is assigned to at least one user. Instead, a confirmation prompt will appear asking if you are sure that you want to remove the policy. You must answer yes (by pressing the Y key) before the command will continue and the policy will be removed. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is present, the policy will automatically be removed even if it is currently assigned to at least one user. - If this parameter is not present, then the `Remove-CsVoiceRoutingPolicy` cmdlet will not automatically remove a per-user policy that is assigned to at least one user. Instead, a confirmation prompt will appear asking if you are sure that you want to remove the policy. You must answer yes (by pressing the Y key) before the command will continue and the policy will be removed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the voice routing policy to be removed. To "remove" the global policy, use the following syntax: - `-Identity global` - Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values. - To remove a per-user policy, use syntax similar to this: - `-Identity "RedmondVoiceRoutingPolicy"` - You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy - - - The `Remove-CsVoiceRoutingPolicy` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - None - - - Instead, the `Remove-CsVoiceRoutingPolicy` cmdlet deletes existing instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" - - The command shown in Example 1 deletes the voice routing policy RedmondVoiceRoutingPolicy - - - - -------------------------- Example 2 -------------------------- - Get-CsVoiceRoutingPolicy -Filter "tag:*" | Remove-CsVoiceRoutingPolicy - - In Example 2, all the voice routing policies configured at the per-user scope are removed. To do this, the command first calls the `Get-CsVoiceRoutingPolicy` cmdlet along with the Filter parameter; the filter value "tag:*" limits the returned data to voice routing policies configured at the per-user scope. Those per-user policies are then piped to and removed by, the `Remove-CsVoiceRoutingPolicy` cmdlet. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoiceRoutingPolicy | Where-Object {$_.PstnUsages -contains "Long Distance"} | Remove-CsVoiceRoutingPolicy - - In Example 3, all the voice routing polices that include the PSTN usage "Long Distance" are removed. To carry out this task, the `Get-CsVoiceRoutingPolicy` cmdlet is first called without any parameters in order to return a collection of all the available voice routing policies. That collection is then piped to the `Where-Object` cmdlet, which picks out only those policies where the PstnUsages property includes (-contains) the usage "Long Distance." Policies that meet that criterion are then piped to the `Remove-CsVoiceRoutingPolicy`, which removes each voice routing policy that includes the PSTN usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csvoiceroutingpolicy - - - Get-CsVoiceRoutingPolicy - - - - Grant-CsVoiceRoutingPolicy - - - - New-CsVoiceRoutingPolicy - - - - Set-CsVoiceRoutingPolicy - - - - - - - Remove-CsVoiceTestConfiguration - Remove - CsVoiceTestConfiguration - - Removes a voice test configuration that was used to test phone numbers against specified routes and rules. This cmdlet was introduced in Lync Server 2010. - - - - Before implementing voice routes and voice policies, it's a good idea to test them out on various phone numbers to ensure the results are what you're expecting. When you're done with those tests and won't need them again, use this cmdlet to remove them. - - - - Remove-CsVoiceTestConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test configuration you want to remove. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test configuration you want to remove. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - Accepts pipelined input of voice test configuration objects. - - - - - - - None - - - Removes an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsVoiceTestConfiguration -Identity TestConfig1 - - This example removes the voice test configuration settings with the Identity TestConfig1. - - - - -------------------------- Example 2 -------------------------- - Get-CsVoiceTestConfiguration -Filter *test* | Remove-CsVoiceTestConfiguration - - This example removes all voice test configuration settings for any configuration with an Identity containing the string test. The command first calls the `Get-CsVoiceTestConfiguration` cmdlet with the Filter parameter to retrieve all voice test configurations that have an Identity with the string "test" anywhere in its value. The resulting set of configurations is then piped to the `Remove-CsVoiceTestConfiguration` cmdlet and removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/remove-csvoicetestconfiguration - - - New-CsVoiceTestConfiguration - - - - Set-CsVoiceTestConfiguration - - - - Get-CsVoiceTestConfiguration - - - - Test-CsVoiceTestConfiguration - - - - - - - Set-CsAllowedDomain - Set - CsAllowedDomain - - Modifies property values for a domain (or domains) included on the list of domains approved for federation. After a domain has been approved for federation (by being added to the allowed list), your users can exchange instant messages and presence information with people who have accounts in the federated domain. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your servers running the Skype for Business Server Access Edge service to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To set up a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with. If a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - The `Set-CsAllowedDomain` cmdlet provides a way for you to modify property values for any domain on the list of allowed domains. - - - - Set-CsAllowedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the allowed domain for which the property values are being modified. For example: - `-Identity fabrikam.com` - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being modified. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property has been deprecated and should be ignored. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server 2015. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsAllowedDomain - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being modified. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property has been deprecated and should be ignored. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server 2015. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Optional string value that provides additional information about the domain being modified. For example, you might add a Comment that provides contact information for the federated domain. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the allowed domain for which the property values are being modified. For example: - `-Identity fabrikam.com` - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MarkForMonitoring - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the federation connection between your domain and the remote domain will be monitored by Monitoring Server. By default, MarkForMonitoring is set to False, meaning that the connection will not be monitored. - This property has been deprecated and should be ignored. - - Boolean - - Boolean - - - None - - - ProxyFqdn - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (for example, proxy-server.fabrikam.com) of the SIP proxy server deployed in the domain being added to the allowed list. This property is optional: if it is not specified then DNS SRV discovery procedures will be used to determine the location of the SIP proxy server. - - String - - String - - - None - - - VerificationLevel - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how (or if) messages sent from a domain are verified to ensure that they were sent from that domain. The VerificationLevel must be set to one of the following values: - AlwaysVerifiable. All messages purportedly sent from this domain will be accepted. If a verification header is not found in the message it will be added by Skype for Business Server 2015. - AlwaysUnverifiable. All messages purportedly sent from a domain are considered unverified. They will be delivered only if they were sent from a person who is on the recipient's Contacts list. For example, if Ken Myer is on your Contacts list you will be able to receive messages from him. If David Longmire is not on your Contacts list then you will not be able to receive messages from him. Note that Skype for Business users can manually override this setting, thereby allowing themselves to receive messages people not on their Contacts list. - UseSourceVerification. Uses the verification header added to the message by the public provider. If the verification information is missing the message will be rejected. This is the default value. - - VerificationLevelType - - VerificationLevelType - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain - - - The `Set-CsAllowedDomain` cmdlet accepts pipelined instances of the allowed domain object. - - - - - - - None - - - The `Set-CsAllowedDomain` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowedDomain object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsAllowedDomain -Identity fabrikam.com -Comment "Contact: Ken Myer (kenmyer@fabrikam.com)" - - The command shown in Example 1 modifies the Comment property for the allowed domain with the Identity "fabrikam.com". This is done by including the Comment parameter and the appropriate parameter value: "Contact: Ken Myer (kenmyer@fabrikam.com)". - - - - -------------------------- Example 2 -------------------------- - Get-CsAllowedDomain -Filter *fabrikam* | Set-CsAllowedDomain -Comment "Contact: Ken Myer (kenmyer@fabrikam.com)" - - Example 2 modifies the Comment property for all of the allowed domains that have the string value "fabrikam" somewhere in their Identity. To carry out this task, the command first calls the `Get-CsAllowedDomain` cmdlet and the Filter parameter. The filter value " fabrikam " instructs the `Get-CsAllowedDomain` cmdlet to return any domain where the Identity includes the string value "fabrikam". (For example, this command returns domains such as fabrikam.com, us.fabrikam.net and fabrikam-users.org). The filtered collection is then piped to the `Set-CsAllowedDomain` cmdlet, which modifies for Comment property. - - - - -------------------------- Example 3 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.Comment -eq $Null} | Set-CsAllowedDomain -Comment "Need contact information." - - Example 3 adds a generic comment ("Need contact information.") to each domain on the allowed list where the Comment property currently has no value. To carry out this task, the command first calls the `Get-CsAllowedDomain` cmdlet to retrieve a collection of all the domains on the allowed list. This collection is then piped to the `Where-Object` cmdlet, which picks out those domains where the Comment property is equal to a null value. That filtered collection is then piped to the `Set-CsAllowedDomain` cmdlet, which modifies the Comment property for each item in the collection. - - - - -------------------------- Example 4 -------------------------- - Get-CsAllowedDomain | Where-Object {$_.Comment -eq $Null} | Set-CsAllowedDomain -Comment "Need contact information." - - Example 4 adds a generic comment ("Need contact information.") to each domain on the allowed list where the Comment property currently has no value. To carry out this task, the command first calls `Get-CsAllowedDomain` to retrieve a collection of all the domains on the allowed list. This collection is then piped to `Where-Object`, which picks out those domains where the Comment property is equal to a null value. That filtered collection is then piped to `Set-CsAllowedDomain`, which modifies the Comment property for each item in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csalloweddomain - - - Get-CsAllowedDomain - - - - New-CsAllowedDomain - - - - Remove-CsAllowedDomain - - - - Set-CsAccessEdgeConfiguration - - - - - - - Set-CsApplicationAccessPolicy - Set - CsApplicationAccessPolicy - - Modifies an existing application access policy. - - - - This cmdlet modifies an existing application access policy. - - - - Set-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - ----------------- Add new app ID to the policy ----------------- - PS C:\> Set-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds @{Add="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above adds a new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the per-user application access policy ASimplePolicy. - - - - ---------------- Remove app IDs from the policy ---------------- - PS C:\> Set-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds @{Remove="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above removes the app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" from the per-user application access policy ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Set-CsApplicationMeetingConfiguration - Set - CsApplicationMeetingConfiguration - - Modifies an existing application meeting configuration for the tenant. - - - - This cmdlet modifies an existing application meeting configuration for the tenant. - - - - Set-CsApplicationMeetingConfiguration - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Set-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - AllowRemoveParticipantAppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Teams - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - WhatIf - - > Applicable: Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowRemoveParticipantAppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Teams - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Set-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - WhatIf - - > Applicable: Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - None. The `Set-CsApplicationMeetingConfiguration` cmdlet does not accept pipelined input. - - - - - - - Output types - - - The `Set-CsApplicationMeetingConfiguration` cmdlet does not return any objects or values. - - - - - - - - - - - Add new app ID to the configuration to allow remove participant for the tenant - PS C:\> Set-CsApplicationMeetingConfiguration -AllowRemoveParticipantAppIds @{Add="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above adds a new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the application meeting configuration settings for the tenant to allow it to remove participant. - - - - Remove app IDs from the configuration to allow remove participant for the tenant - PS C:\> Set-CsApplicationMeetingConfiguration -AllowRemoveParticipantAppIds @{Remove="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above removes the app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" from the application meeting configuration settings for the tenant to disallow it to remove participant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsApplicationMeetingConfiguration - - - Get-CsApplicationMeetingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csapplicationmeetingconfiguration - - - - - - Set-CsAVEdgeConfiguration - Set - CsAVEdgeConfiguration - - Enables you to modify configuration settings for computers running the A/V Edge service (these computers are also known as A/V Edge servers). An A/V Edge server enables internal users to share audio and video data with external users (that is, users who are not logged on to your internal network), as well as exchange files and participate in desktop sharing sessions. This cmdlet was introduced in Lync Server 2010. - - - - An A/V Edge server provides a way for audio and video traffic to be exchanged across an organization's firewall. Among other things, this enables users to use Skype for Business Server across the Internet and then exchange audio and video data with users who have logged onto the system from inside the firewall. Edge Server configuration settings can be assigned at the global scope, the site scope and the service scope. These configuration settings enable administrators to do such things as manage the amount of time that user authentication is valid before it must be renewed and to limit the amount of bandwidth that can be used by a single user or a single port. - The `Set-CsAVEdgeConfiguration` cmdlet provides a way for you to modify the A/V Edge configuration settings currently in use in your organization. However, unless instructed by Microsoft support personnel, it is recommended that administrators do not modify the default A/V Edge settings. - - - - Set-CsAVEdgeConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of A/V Edge configuration settings to be modified. To modify the global collection, use the following syntax: `-Identity global`. To modify a site collection use syntax similar to this: `-Identity site:Redmond`. Settings configured at the service scope should be referred to using syntax similar to this: `-Identity service:EdgeServer:atl-cs-001.litwareinc.com`. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - MaxBandwidthPerPortKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to a single port. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 3000. - - UInt32 - - UInt32 - - - None - - - MaxBandwidthPerUserKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to any one user. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 10000. - - UInt32 - - UInt32 - - - None - - - MaxTokenLifetime - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that an authentication token can be used before it expires and must be renewed. Token lifetimes are expressed using the following format: Days.Hours:Minutes:Seconds. For example, 13 days must be expressed like this, with a period (.) following the number of days, and colons (:) used to separate the hours, minutes, and seconds: - 13.00:00:00 - The default value of 8 hours must be expressed like this: - 08:00:00 - The minimum allowed token lifetime is 1 minute (00:01:00); the maximum allowed lifetime is 180 days (180.00:00:00). - - TimeSpan - - TimeSpan - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsAVEdgeConfiguration - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaxBandwidthPerPortKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to a single port. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 3000. - - UInt32 - - UInt32 - - - None - - - MaxBandwidthPerUserKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to any one user. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 10000. - - UInt32 - - UInt32 - - - None - - - MaxTokenLifetime - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that an authentication token can be used before it expires and must be renewed. Token lifetimes are expressed using the following format: Days.Hours:Minutes:Seconds. For example, 13 days must be expressed like this, with a period (.) following the number of days, and colons (:) used to separate the hours, minutes, and seconds: - 13.00:00:00 - The default value of 8 hours must be expressed like this: - 08:00:00 - The minimum allowed token lifetime is 1 minute (00:01:00); the maximum allowed lifetime is 180 days (180.00:00:00). - - TimeSpan - - TimeSpan - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the collection of A/V Edge configuration settings to be modified. To modify the global collection, use the following syntax: `-Identity global`. To modify a site collection use syntax similar to this: `-Identity site:Redmond`. Settings configured at the service scope should be referred to using syntax similar to this: `-Identity service:EdgeServer:atl-cs-001.litwareinc.com`. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaxBandwidthPerPortKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to a single port. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 3000. - - UInt32 - - UInt32 - - - None - - - MaxBandwidthPerUserKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum amount of bandwidth (in kilobits per second) that can be allocated to any one user. The maximum bandwidth can be set to any integer value between 1 and 4294967296 (4096 gigabits) per second; the default value is 10000. - - UInt32 - - UInt32 - - - None - - - MaxTokenLifetime - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that an authentication token can be used before it expires and must be renewed. Token lifetimes are expressed using the following format: Days.Hours:Minutes:Seconds. For example, 13 days must be expressed like this, with a period (.) following the number of days, and colons (:) used to separate the hours, minutes, and seconds: - 13.00:00:00 - The default value of 8 hours must be expressed like this: - 08:00:00 - The minimum allowed token lifetime is 1 minute (00:01:00); the maximum allowed lifetime is 180 days (180.00:00:00). - - TimeSpan - - TimeSpan - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.MediaRelaySettings - - - The `Set-CsAVEdgeConfiguration` cmdlet accepts pipelined input of media relay settings objects. - - - - - - - None - - - The `Set-CsAVEdgeConfiguration` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.MediaRelaySettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsAVEdgeConfiguration -Identity global -MaxTokenLifetime "04:00:00" - - In Example 1, the command modifies the MaxTokenLifetime property for the global A/V Edge configuration settings. In this example, the maximum token lifetime is set to 4 hours (04 hours : 00 minutes : 00 seconds). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csavedgeconfiguration - - - Get-CsAVEdgeConfiguration - - - - New-CsAVEdgeConfiguration - - - - Remove-CsAVEdgeConfiguration - - - - - - - Set-CsBlockedDomain - Set - CsBlockedDomain - - Modifies the Comment property for one or more of the domains included on the list of domains that are blocked for federation. By definition, your users are not allowed to use Skype for Business Server applications to communicate with people from the blocked domain; for example, users cannot employ Skype for Business to exchange instant messages with anyone with a SIP account in a domain that appears on the blocked list. This cmdlet was introduced in Lync Server 2010. - - - - Federation is a means by which two organizations can set up a trust relationship that facilitates communication between the two groups. When federation has been established, users in the two organizations can send each other instant messages, subscribe for presence notifications, and otherwise communicate with one another by using SIP applications such as Skype for Business. Skype for Business Server allows for three types of federation: 1) direct federation between your organization and another; 2) federation between your organization and a public provider and 3) federation between your organization and a third-party hosting provider. - Setting up direct federation with another organization involves several tasks. To begin with, you must enable your Access Edge servers to allow federation. In addition, the other organization must enable federation with you; federation cannot be established unless both parties agree to the relationship. - To set up a federated relationship you might also need to manage two federation-related lists: the allowed list and the blocked list. The allowed list represents the organizations you have chosen to federate with; if a domain appears on the allowed list then (depending on your configuration settings) your users will be able to exchange instant messages and presence information with users who have accounts in that federated domain. Conversely, the blocked list represents domains that users are expressly forbidden from federating with; for example, messages sent from a blocked domain will automatically be rejected by Skype for Business Server. - The Comment property, the only property of a blocked domain that can be modified, is used to store additional information about a domain on the blocked list (for example, why the domain is being blocked; when the domain can be removed from the blocked list; or who to contact if you would like to have the domain removed from the blocked list). If you need to change the Comment property for any domain on the list of blocked domains, use the `Set-CsBlockedDomain` cmdlet. - - - - Set-CsBlockedDomain - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the blocked domain for which the Comment property is being modified. For example: fabrikam.com - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to provide additional information about the domain being modified. For example, you might add a Comment that indicates why the domain has been placed on the blocked list. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsBlockedDomain - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to provide additional information about the domain being modified. For example, you might add a Comment that indicates why the domain has been placed on the blocked list. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Comment - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to provide additional information about the domain being modified. For example, you might add a Comment that indicates why the domain has been placed on the blocked list. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Fully qualified domain name (FQDN) of the blocked domain for which the Comment property is being modified. For example: fabrikam.com - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain - - - The `Set-CsBlockedDomain` cmdlet accepts pipelined instances of the blocked domain object. - - - - - - - None - - - The `Set-CsBlockedDomain` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.BlockedDomain object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsBlockedDomain -Identity fabrikam.com -Comment "Block this domain pending legal review." - - The command shown in Example 1 modifies the Comment for the blocked domain with the Identity "fabrikam.com". In this example, the Comment parameter is included along with the parameter value, "Block this domain pending legal review." - - - - -------------------------- Example 2 -------------------------- - Get-CsBlockedDomain | Set-CsBlockedDomain -Comment "Block this domain pending legal review." - - In Example 2, the Comment property is updated for all the domains included on the blocked domains list. To do this, the command first calls the `Get-CsBlockedDomain` cmdlet, which returns a collection of all the domains currently on the blocked domain list. That collection is then piped to the `Set-CsBlockedDomain` cmdlet, which proceeds to modify the Comment property for each domain in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsBlockedDomain | Where-Object {$_.Comment -eq $Null} | Set-CsBlockedDomain -Comment "Block this domain pending legal review." - - In Example 3, a new comment ("Block this domain pending legal review.") is added to each domain on the blocked list that doesn't already have a value configured for the Comment property. To carry out this task, the command first uses the `Get-CsBlockedDomain` cmdlet to return a collection of all the domains currently on the blocked list. This collection is then piped to the `Where-Object` cmdlet, which picks out only those domains where the Comment property is equal to a null value. The filtered collection is then piped to the `Set-CsBlockedDomain` cmdlet, which assigns the same comment to the Comment property of each domain in the filtered collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csblockeddomain - - - Get-CsBlockedDomain - - - - New-CsBlockedDomain - - - - Remove-CsBlockedDomain - - - - Set-CsAccessEdgeConfiguration - - - - - - - Set-CsBroadcastMeetingConfiguration - Set - CsBroadcastMeetingConfiguration - - Use the `Set-CsBroadcastMeetingConfiguration` cmdlet to modify the settings of your global (and only) broadcast meeting configuration. - - - - Use the `Set-CsBroadcastMeetingConfiguration` cmdlet to modify the settings of your global (and only) broadcast meeting configuration. - To return a list of all the Role-Based Access Control (RBAC) roles a cmdlet has been assigned to (including any custom RBAC roles you have created), run the following command: - `Get-CsAdminRole | Where-Object {$_.Cmdlets -Match "<DesiredCmdletName>"}` - - - - Set-CsBroadcastMeetingConfiguration - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - BroadcastMeetingSupportUrl - - > Applicable: Skype for Business Online - Specifies a URL where broadcast meeting attendees can find support information or FAQs specific to that meeting. The URL will be displayed during the broadcast meeting. - - String - - String - - - None - - - EnableAnonymousBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies whether non-authenticated attendees are allowed to join and view the web-based portion of the meeting. Valid input for this parameter is $true or $false. The default value is $true. - - Boolean - - Boolean - - - None - - - EnableBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies whether broadcast meetings are enabled. Valid input for this parameter is $true or $false. The default value is $false. - - Boolean - - Boolean - - - None - - - EnableBroadcastMeetingRecording - - > Applicable: Skype for Business Online - Specifies whether broadcast meetings can be recorded at the server level. Valid input for this parameter is $true or $false. The default value is $true. - - Boolean - - Boolean - - - None - - - EnableOpenBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies if the organizer is allowed to create broadcast meetings that allows anyone in the organizer's organization to attend. The default and only setting is $true. - - Boolean - - Boolean - - - None - - - EnableSdnProviderForBroadcastMeeting - - > Applicable: Skype for Business Online - If set to $true, broadcast meeting streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. The default is $false. - - Boolean - - Boolean - - - None - - - EnableTechPreviewFeatures - - > Applicable: Skype for Business Online - Set to $true to enable use of features available in a technical preview program. Set to $false to disable the technical preview features. - - Boolean - - Boolean - - - None - - - EnforceBroadcastMeetingRecording - - > Applicable: Skype for Business Online - Specifies whether all meetings will be recorded. Valid input for this parameter is $true or $false. The default value is $false. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Skype for Business Online - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnAzureSubscriptionId - - > Applicable: Skype for Business Online - Specifies your Microsoft Azure subscription id which is required by some providers to access the Software Defined Network (SDN) provider's services. - The SdnAzureSubscriptionId parameter is not currently supported. - - String - - String - - - None - - - SdnFallbackAttendeeThresholdCountForBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies the number of broadcast meeting attendees that are allowed to fallback from a Software Defined Network (SDN) connection to the standard content delivery network. If this number is exceeded, additional meeting attendees who are not able to use the SDN service will not be allowed to join the meeting. - The SdnFallbackAttendeeThresholdCountForBroadcastMeeting parameter is not currently supported. - - String - - String - - - None - - - SdnLicenseId - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Skype for Business Online - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Online - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - BroadcastMeetingSupportUrl - - > Applicable: Skype for Business Online - Specifies a URL where broadcast meeting attendees can find support information or FAQs specific to that meeting. The URL will be displayed during the broadcast meeting. - - String - - String - - - None - - - EnableAnonymousBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies whether non-authenticated attendees are allowed to join and view the web-based portion of the meeting. Valid input for this parameter is $true or $false. The default value is $true. - - Boolean - - Boolean - - - None - - - EnableBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies whether broadcast meetings are enabled. Valid input for this parameter is $true or $false. The default value is $false. - - Boolean - - Boolean - - - None - - - EnableBroadcastMeetingRecording - - > Applicable: Skype for Business Online - Specifies whether broadcast meetings can be recorded at the server level. Valid input for this parameter is $true or $false. The default value is $true. - - Boolean - - Boolean - - - None - - - EnableOpenBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies if the organizer is allowed to create broadcast meetings that allows anyone in the organizer's organization to attend. The default and only setting is $true. - - Boolean - - Boolean - - - None - - - EnableSdnProviderForBroadcastMeeting - - > Applicable: Skype for Business Online - If set to $true, broadcast meeting streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. The default is $false. - - Boolean - - Boolean - - - None - - - EnableTechPreviewFeatures - - > Applicable: Skype for Business Online - Set to $true to enable use of features available in a technical preview program. Set to $false to disable the technical preview features. - - Boolean - - Boolean - - - None - - - EnforceBroadcastMeetingRecording - - > Applicable: Skype for Business Online - Specifies whether all meetings will be recorded. Valid input for this parameter is $true or $false. The default value is $false. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Skype for Business Online - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnAzureSubscriptionId - - > Applicable: Skype for Business Online - Specifies your Microsoft Azure subscription id which is required by some providers to access the Software Defined Network (SDN) provider's services. - The SdnAzureSubscriptionId parameter is not currently supported. - - String - - String - - - None - - - SdnFallbackAttendeeThresholdCountForBroadcastMeeting - - > Applicable: Skype for Business Online - Specifies the number of broadcast meeting attendees that are allowed to fallback from a Software Defined Network (SDN) connection to the standard content delivery network. If this number is exceeded, additional meeting attendees who are not able to use the SDN service will not be allowed to join the meeting. - The SdnFallbackAttendeeThresholdCountForBroadcastMeeting parameter is not currently supported. - - String - - String - - - None - - - SdnLicenseId - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - > Applicable: Skype for Business Online - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if EnableSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Skype for Business Online - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Skype for Business Online - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsBroadcastMeetingConfiguration -Identity Global -EnableAnonymousBroadcastMeeting $true -EnableBroadcastMeetingRecording $true - - This example sets the global configuration to enable unauthenticated attendees and recorded meetings. - - - - -------------------------- Example 2 -------------------------- - Set-CsBroadcastMeetingConfiguration -EnableSdnProviderForBroadcastMeeting $true -SdnProviderName "SDNCo" -SdnLicenseId 24030-38291-39042-2048-253904 -SdnApiTemplateUrl "https://api.SDNCo.com/template?auth={0}" -SdnFallbackAttendeeThresholdCountForBroadcastMeeting 1000 - - This example enables Software Defined Network (SDN) management of broadcast meetings and provides all the required and optional settings to enable SDN support. - - - - -------------------------- Example 3 -------------------------- - Set-CsBroadcastMeetingConfiguration -SdnFallbackAttendeeThresholdCountForBroadcastMeeting 500 - - This example adjusts the broadcast meeting configuration to set the number of meeting attendees who can fall back from a Software Defined Network (SDN) to the content delivery network to 500. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csbroadcastmeetingconfiguration - - - - - - Set-CsCallingLineIdentity - Set - CsCallingLineIdentity - - Use the `Set-CsCallingLineIdentity` cmdlet to modify a Caller ID policy in your organization. - - - - You can either change or block the Caller ID (also called a Calling Line ID) for a user. By default, the Microsoft Teams or Skype for Business Online user's phone number can be seen when that user makes a call to a PSTN phone, or when a call comes in. You can modify a Caller ID policy to provide an alternate displayed number, or to block any number from being displayed. - Note: - Identity must be unique. - - If CallerIdSubstitute is given as "Resource", then ResourceAccount cannot be empty. - - - - Set-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a Teams user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The possible values are Anonymous, LineUri and Resource. - - CallingIDSubstituteType - - CallingIDSubstituteType - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a Teams user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The possible values are Anonymous, LineUri and Resource. - - CallingIDSubstituteType - - CallingIDSubstituteType - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsCallingLineIdentity -Identity "MyBlockingPolicy" -BlockIncomingPstnCallerID $true - - This example blocks the incoming caller ID. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false -BlockIncomingPstnCallerID $true - - This example modifies the new Anonymous Caller ID policy to block the incoming Caller ID. - - - - -------------------------- Example 3 -------------------------- - $ObjId = (Get-CsOnlineApplicationInstance -Identity dkcq@contoso.com).ObjectId -Set-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -ResourceAccount $ObjId -CompanyName "Contoso" - - This example modifies the Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso - - - - -------------------------- Example 4 -------------------------- - Set-CsCallingLineIdentity -Identity AllowAnonymousForUsers -EnableUserOverride $true - - This example modifies the Caller ID policy and allows Teams users to make anonymous calls. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - - - - Set-CsConferencingPolicy - Set - CsConferencingPolicy - - Modifies an existing conferencing policy. Conferencing policies determine the features and capabilities that can be used in a conference; this includes everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. This cmdlet was introduced in Lync Server 2010. - - - - Conferencing is an important part of Skype for Business Server: conferencing enables groups of users to come together online to view slides and video, share applications, exchange files and otherwise communicate and collaborate. - It's important for administrators to maintain control over conferences and conference settings. In some cases, there might be security concerns: by default, anyone, including unauthenticated users, can participate in meetings and save any of the slides or handouts distributed during those meetings. In other cases, there might be bandwidth concerns: having a multitude of simultaneous meetings, each involving hundreds of participants and each featuring video feeds and file sharing, has the potential to cause problems with your network. In addition, there might be occasional legal concerns. For example, by default meeting participants are allowed to make annotations on shared content; however, these annotations are not saved when the meeting is archived. If your organization is required to keep a record of all electronic communication, you might want to disable annotations. - Of course, needing to manage conferencing settings is one thing; actually managing these settings is another. In Skype for Business Server conferences are managed by using conferencing policies. (In previous versions of the software, these were known as meeting policies.) As noted, conferencing policies determine the features and capabilities that can be used in a conference, including everything from whether or not the conference can include IP audio and video to the maximum number of people who can attend a meeting. Conferencing policies can be configured at the global scope; at the site scope; or at the per-user scope. This provides administrators with enormous flexibility when it comes to deciding which capabilities will be made available to which users. - Policy property values can be configured at the time a policy is created. In addition to that, you can, at any time, use the `Set-CsConferencingPolicy` cmdlet to modify the property values of an existing policy. - The following parameters are not applicable to Skype for Business Online: ApplicationSharingMode, AudioBitRateKb, Description, EnableMultiViewJoin, EnableOnlineMeetingPromptForLyncResources, EnableReliableConferenceDeletion, FileTransferBitRateKb, Force, Identity, Instance, MaxMeetingSize, MaxVideoConferenceResolution, PipelineVariable, Tenant, and TotalReceiveVideoBitRateKb - - - - Set-CsConferencingPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be modified. Conferencing policies can be configured at the global, site, or per-user scopes. To modify the global policy, use this syntax: `-Identity global`. To modify a site policy, use syntax similar to this: `-Identity site:Redmond`. To modify a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy`. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the `Set-CsConferencingPolicy` cmdlet will automatically modify the global conferencing policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowAnnotations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not participants are allowed to make on-screen annotations on any content shared during the meeting; in addition, this setting determines whether or not whiteboarding is allowed in the conference. The default value is True. - Note that annotations are not archived along with other meeting content. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will include annotations. However, the user can participate in other conferences where annotations are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousParticipantsInMeetings - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether anonymous users are allowed to participate in the meeting. If set to False then only authenticated users (that is, users logged on to your Active Directory Domain Services or the Active Directory of a federated partner) are allowed to attend the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants. However, the user can take part in other conferences where anonymous participants are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not anonymous users (for example, unauthenticated users) are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants to join the conference by dialing out; however, the user can take part in other conferences where anonymous users can join by dialing out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are allowed to record the meeting. The default value is False. - This setting applies to all users taking part in the conference. - - Boolean - - Boolean - - - None - - - AllowExternalUserControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated) are allowed to take control of shared applications or desktops. The default value is False. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to give up control of a shared application or desktop to an external user while other users might not be allowed to give up control. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToRecordMeeting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to record the meeting. The default value is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to record conferences. However, the user can take part in other conferences where external users are allowed to record meetings. - Note that this setting takes effect only if the AllowConferenceRecording property is set to True. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToSaveContent - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (that is, users not currently logged-on to your network) are allowed to save handouts, slides and other meeting content. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to save content. However, the user can take part in other conferences where external users are allowed to save content. - - Boolean - - Boolean - - - None - - - AllowFederatedParticipantJoinAsSameEnterprise - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether a federated user will be directly admitted into conference bypassing the lobby. The default value is False. - If set to False and AllowAnonymousParticipantsInMeetings parameter is also set to False, federated users will be treated as anonymous users and put into lobby. If set to True and conference admission policy is set to "Anyone from my organization" or openAuthenticated, federated users are treated as company users and admitted into conference directly. If set to True and conference admission policy is set to "People I Invite" or closedAuthenticated, federated users will be put into the lobby if they were not present in the pre-set invitee list. - - Boolean - - Boolean - - - False - - - AllowIPAudio - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer audio is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP audio. However, the user can take part in other conferences where IP audio is allowed. - - Boolean - - Boolean - - - None - - - AllowIPVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer video is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP video. However, the user can take part in other conferences where IP video is allowed. - - Boolean - - Boolean - - - None - - - AllowLargeMeetings - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, all online meetings are treated as "large meeting." With a large meeting, restrictions are placed on the number of notifications that are sent to participants as well as the size of the meeting roster that is transmitted by default. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowMultiView - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) enables users to schedule conferences that allow multiview; that is, clients can receive multiple video streams during a given conference. This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy can include multiview. However, the user can participate in other conferences where multiview is allowed. - - Boolean - - Boolean - - - None - - - AllowNonEnterpriseVoiceUsersToDialOut - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or users who have not been enabled for Enterprise Voice are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow users who have not been enabled for Enterprise Voice to join the conference via dial-out phoning. However, the user can take part in other conferences where users who have not been enabled for Enterprise Voice can join via dial out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowOfficeContent - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to False, prevents users from using Office content in their conferences. - - Boolean - - Boolean - - - None - - - AllowParticipantControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not meeting participants are allowed to take control of applications or desktops shared during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow participant control. However, the user can take part in other conferences where participant control is allowed. - - Boolean - - Boolean - - - None - - - AllowPolls - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to conduct online polls during a meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow polls. However, the user can take part in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowQandA - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) the user will be able to include the Questions and Answers Manager in any online conference that he or she organizes. When set to False, the user will be prohibited from including Questions and Answers Manager in any of his or her conferences. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow the use of the Questions and Answers Manager. However, the user can make use of the Questions and Answers Manager in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) any open OneNote notebooks linked to the conference will automatically be updated with information such as conference participants and details about content shared during the conference. - - Boolean - - Boolean - - - None - - - AllowUserToScheduleMeetingsWithAppSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to organize meetings that include application sharing. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow application sharing. However, the user can take part in other conferences where application sharing is allowed. - - Boolean - - Boolean - - - None - - - ApplicationSharingMode - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Determines the protocol used for screen sharing - VbSS vs RDP. This parameter is used only in SfB Server. To disable VbSS, use the value "RDP". - - String - - String - - - None - - - AppSharingBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for application sharing. The default value is 50000. - - Int64 - - Int64 - - - None - - - AudioBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for audio transmissions. The audio bit rate can be any whole number between 20 and 200, inclusive; the default value is 200. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. - - UInt32 - - UInt32 - - - None - - - CloudRecordingServiceSupport - - > Applicable: Skype for Business Online - PARAMVALUE: NotSupported | Supported | Required - - CloudRecordingServiceSupport - - CloudRecordingServiceSupport - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisablePowerPointAnnotations - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) users will not be able to add annotations to PowerPoint slides used in a conference. However (depending on the value of the AllowAnnotations property), users will still have access to other whiteboarding features. The default value is False, meaning that PowerPoint annotations are allowed. - - Boolean - - Boolean - - - None - - - EnableAppDesktopSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether participants are allowed to share applications (or their desktop) during the course of a meeting. Allowed values include: - Desktop. Users are allowed to share their entire desktop. - SingleApplication. Users are allowed to share a single application. - None. Users are not allowed to share applications or their desktop. - - - The default value is Desktop. - - EnableAppDesktopSharing - - EnableAppDesktopSharing - - - None - - - EnableDataCollaboration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users can organize meetings that include data collaboration activities such as whiteboarding and annotations. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow data collaboration. However, the user can take part in other conferences where data collaboration is allowed. - - Boolean - - Boolean - - - None - - - EnableDialInConferencing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are able to join the meeting by dialing in with a public switched telephone network (PSTN) telephone. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow dial-in conferencing. However, the user can take part in other conferences where dial-in conferencing is allowed. - - Boolean - - Boolean - - - None - - - EnableFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether file transfers to all the meeting participants are allowed during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow file transfers. However, the user can take part in other conferences where file transfers are allowed. - - Boolean - - Boolean - - - None - - - EnableMultiViewJoin - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) clients will attempt to join a conference using multiview (which allows the client to receive multiple video streams during the conference). This parameter will be ignored if multiview is not allowed in the conference being joined. This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to have multiple video streams while other users in the same conference might not. - - Boolean - - Boolean - - - None - - - EnableOnlineMeetingPromptForLyncResources - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, users will be prompted any time they schedule a meeting in Outlook that includes invitees (such as a meeting room) that would benefit from having the meeting held online. The default value is False. - - Boolean - - Boolean - - - None - - - EnableP2PFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether peer-to-peer file transfers (that is, file transfers that do not involve all participants) are allowed during the meeting. The default value is True ($True). - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to transfer files while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to record peer-to-peer communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to record the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to take part in peer-to-peer video communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to use video while the other user is not. - - Boolean - - Boolean - - - None - - - EnableReliableConferenceDeletion - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - When set to true, the conference state is removed from all replicas when the user deletes it, to provide instantaneous consistency of distributed conference state. If set to false, the deleted conference state is eventual and not instantaneous. - - Boolean - - Boolean - - - None - - - FileTransferBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for file transfers. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - MaxMeetingSize - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of people who are allowed to attend a meeting. After the maximum number of participants has been reached anyone else who tries to join the meeting will be turned away with the notice that the meeting is full. The number of participants specified in this value can be any 32-bit whole number (any value between 1 and 4,294,967,295), but the recommended size is between 2 and 250, inclusive; the default value is 250. - 250 is the maximum for shared pool deployments, based on Microsoft testing. For information about supporting meeting with more than 250 participants, see "Microsoft Lync Server 2010 Support for Large Meetings" at https://go.microsoft.com/fwlink/p/?linkId=242073 (https://go.microsoft.com/fwlink/p/?linkId=242073). - This setting applies to the user who organizes the conference: no conference created by a user affected by this policy will allow more than the specified number of participants. However, the user can take part in other conferences where additional participants are allowed. - - UInt32 - - UInt32 - - - None - - - MaxVideoConferenceResolution - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum resolution for meeting video. Allowed values are: - CIF. Common Intermediate Format (CIF) has a resolution of 352 pixels by 288 pixels. - VGA. VGA has a resolution of 640 pixels by 480 pixels. - The default value is VGA. - - MaxVideoConferenceResolution - - MaxVideoConferenceResolution - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the conferencing policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TotalReceiveVideoBitRateKb - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum allowed bitrate (in kilobytes per second) for all the video used in a conference; that is, the combined total for all the video streams. The default value is 50000 kilobits per second. - - Int64 - - Int64 - - - None - - - VideoBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for video transmissions. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsConferencingPolicy - - AllowAnnotations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not participants are allowed to make on-screen annotations on any content shared during the meeting; in addition, this setting determines whether or not whiteboarding is allowed in the conference. The default value is True. - Note that annotations are not archived along with other meeting content. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will include annotations. However, the user can participate in other conferences where annotations are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousParticipantsInMeetings - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether anonymous users are allowed to participate in the meeting. If set to False then only authenticated users (that is, users logged on to your Active Directory Domain Services or the Active Directory of a federated partner) are allowed to attend the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants. However, the user can take part in other conferences where anonymous participants are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not anonymous users (for example, unauthenticated users) are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants to join the conference by dialing out; however, the user can take part in other conferences where anonymous users can join by dialing out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are allowed to record the meeting. The default value is False. - This setting applies to all users taking part in the conference. - - Boolean - - Boolean - - - None - - - AllowExternalUserControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated) are allowed to take control of shared applications or desktops. The default value is False. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to give up control of a shared application or desktop to an external user while other users might not be allowed to give up control. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToRecordMeeting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to record the meeting. The default value is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to record conferences. However, the user can take part in other conferences where external users are allowed to record meetings. - Note that this setting takes effect only if the AllowConferenceRecording property is set to True. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToSaveContent - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (that is, users not currently logged-on to your network) are allowed to save handouts, slides and other meeting content. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to save content. However, the user can take part in other conferences where external users are allowed to save content. - - Boolean - - Boolean - - - None - - - AllowFederatedParticipantJoinAsSameEnterprise - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether a federated user will be directly admitted into conference bypassing the lobby. The default value is False. - If set to False and AllowAnonymousParticipantsInMeetings parameter is also set to False, federated users will be treated as anonymous users and put into lobby. If set to True and conference admission policy is set to "Anyone from my organization" or openAuthenticated, federated users are treated as company users and admitted into conference directly. If set to True and conference admission policy is set to "People I Invite" or closedAuthenticated, federated users will be put into the lobby if they were not present in the pre-set invitee list. - - Boolean - - Boolean - - - False - - - AllowIPAudio - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer audio is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP audio. However, the user can take part in other conferences where IP audio is allowed. - - Boolean - - Boolean - - - None - - - AllowIPVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer video is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP video. However, the user can take part in other conferences where IP video is allowed. - - Boolean - - Boolean - - - None - - - AllowLargeMeetings - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, all online meetings are treated as "large meeting." With a large meeting, restrictions are placed on the number of notifications that are sent to participants as well as the size of the meeting roster that is transmitted by default. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowMultiView - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) enables users to schedule conferences that allow multiview; that is, clients can receive multiple video streams during a given conference. This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy can include multiview. However, the user can participate in other conferences where multiview is allowed. - - Boolean - - Boolean - - - None - - - AllowNonEnterpriseVoiceUsersToDialOut - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or users who have not been enabled for Enterprise Voice are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow users who have not been enabled for Enterprise Voice to join the conference via dial-out phoning. However, the user can take part in other conferences where users who have not been enabled for Enterprise Voice can join via dial out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowOfficeContent - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to False, prevents users from using Office content in their conferences. - - Boolean - - Boolean - - - None - - - AllowParticipantControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not meeting participants are allowed to take control of applications or desktops shared during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow participant control. However, the user can take part in other conferences where participant control is allowed. - - Boolean - - Boolean - - - None - - - AllowPolls - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to conduct online polls during a meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow polls. However, the user can take part in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowQandA - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) the user will be able to include the Questions and Answers Manager in any online conference that he or she organizes. When set to False, the user will be prohibited from including Questions and Answers Manager in any of his or her conferences. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow the use of the Questions and Answers Manager. However, the user can make use of the Questions and Answers Manager in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) any open OneNote notebooks linked to the conference will automatically be updated with information such as conference participants and details about content shared during the conference. - - Boolean - - Boolean - - - None - - - AllowUserToScheduleMeetingsWithAppSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to organize meetings that include application sharing. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow application sharing. However, the user can take part in other conferences where application sharing is allowed. - - Boolean - - Boolean - - - None - - - ApplicationSharingMode - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Determines the protocol used for screen sharing - VbSS vs RDP. This parameter is used only in SfB Server. To disable VbSS, use the value "RDP". - - String - - String - - - None - - - AppSharingBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for application sharing. The default value is 50000. - - Int64 - - Int64 - - - None - - - AudioBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for audio transmissions. The audio bit rate can be any whole number between 20 and 200, inclusive; the default value is 200. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. - - UInt32 - - UInt32 - - - None - - - CloudRecordingServiceSupport - - > Applicable: Skype for Business Online - PARAMVALUE: NotSupported | Supported | Required - - CloudRecordingServiceSupport - - CloudRecordingServiceSupport - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisablePowerPointAnnotations - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) users will not be able to add annotations to PowerPoint slides used in a conference. However (depending on the value of the AllowAnnotations property), users will still have access to other whiteboarding features. The default value is False, meaning that PowerPoint annotations are allowed. - - Boolean - - Boolean - - - None - - - EnableAppDesktopSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether participants are allowed to share applications (or their desktop) during the course of a meeting. Allowed values include: - Desktop. Users are allowed to share their entire desktop. - SingleApplication. Users are allowed to share a single application. - None. Users are not allowed to share applications or their desktop. - - - The default value is Desktop. - - EnableAppDesktopSharing - - EnableAppDesktopSharing - - - None - - - EnableDataCollaboration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users can organize meetings that include data collaboration activities such as whiteboarding and annotations. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow data collaboration. However, the user can take part in other conferences where data collaboration is allowed. - - Boolean - - Boolean - - - None - - - EnableDialInConferencing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are able to join the meeting by dialing in with a public switched telephone network (PSTN) telephone. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow dial-in conferencing. However, the user can take part in other conferences where dial-in conferencing is allowed. - - Boolean - - Boolean - - - None - - - EnableFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether file transfers to all the meeting participants are allowed during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow file transfers. However, the user can take part in other conferences where file transfers are allowed. - - Boolean - - Boolean - - - None - - - EnableMultiViewJoin - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) clients will attempt to join a conference using multiview (which allows the client to receive multiple video streams during the conference). This parameter will be ignored if multiview is not allowed in the conference being joined. This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to have multiple video streams while other users in the same conference might not. - - Boolean - - Boolean - - - None - - - EnableOnlineMeetingPromptForLyncResources - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, users will be prompted any time they schedule a meeting in Outlook that includes invitees (such as a meeting room) that would benefit from having the meeting held online. The default value is False. - - Boolean - - Boolean - - - None - - - EnableP2PFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether peer-to-peer file transfers (that is, file transfers that do not involve all participants) are allowed during the meeting. The default value is True ($True). - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to transfer files while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to record peer-to-peer communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to record the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to take part in peer-to-peer video communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to use video while the other user is not. - - Boolean - - Boolean - - - None - - - EnableReliableConferenceDeletion - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - When set to true, the conference state is removed from all replicas when the user deletes it, to provide instantaneous consistency of distributed conference state. If set to false, the deleted conference state is eventual and not instantaneous. - - Boolean - - Boolean - - - None - - - FileTransferBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for file transfers. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaxMeetingSize - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of people who are allowed to attend a meeting. After the maximum number of participants has been reached anyone else who tries to join the meeting will be turned away with the notice that the meeting is full. The number of participants specified in this value can be any 32-bit whole number (any value between 1 and 4,294,967,295), but the recommended size is between 2 and 250, inclusive; the default value is 250. - 250 is the maximum for shared pool deployments, based on Microsoft testing. For information about supporting meeting with more than 250 participants, see "Microsoft Lync Server 2010 Support for Large Meetings" at https://go.microsoft.com/fwlink/p/?linkId=242073 (https://go.microsoft.com/fwlink/p/?linkId=242073). - This setting applies to the user who organizes the conference: no conference created by a user affected by this policy will allow more than the specified number of participants. However, the user can take part in other conferences where additional participants are allowed. - - UInt32 - - UInt32 - - - None - - - MaxVideoConferenceResolution - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum resolution for meeting video. Allowed values are: - CIF. Common Intermediate Format (CIF) has a resolution of 352 pixels by 288 pixels. - VGA. VGA has a resolution of 640 pixels by 480 pixels. - The default value is VGA. - - MaxVideoConferenceResolution - - MaxVideoConferenceResolution - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the conferencing policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TotalReceiveVideoBitRateKb - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum allowed bitrate (in kilobytes per second) for all the video used in a conference; that is, the combined total for all the video streams. The default value is 50000 kilobits per second. - - Int64 - - Int64 - - - None - - - VideoBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for video transmissions. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowAnnotations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not participants are allowed to make on-screen annotations on any content shared during the meeting; in addition, this setting determines whether or not whiteboarding is allowed in the conference. The default value is True. - Note that annotations are not archived along with other meeting content. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will include annotations. However, the user can participate in other conferences where annotations are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousParticipantsInMeetings - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether anonymous users are allowed to participate in the meeting. If set to False then only authenticated users (that is, users logged on to your Active Directory Domain Services or the Active Directory of a federated partner) are allowed to attend the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants. However, the user can take part in other conferences where anonymous participants are allowed. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not anonymous users (for example, unauthenticated users) are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow anonymous participants to join the conference by dialing out; however, the user can take part in other conferences where anonymous users can join by dialing out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users are allowed to record the meeting. The default value is False. - This setting applies to all users taking part in the conference. - - Boolean - - Boolean - - - None - - - AllowExternalUserControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated) are allowed to take control of shared applications or desktops. The default value is False. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to give up control of a shared application or desktop to an external user while other users might not be allowed to give up control. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToRecordMeeting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (either anonymous users or federated users) are allowed to record the meeting. The default value is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to record conferences. However, the user can take part in other conferences where external users are allowed to record meetings. - Note that this setting takes effect only if the AllowConferenceRecording property is set to True. - - Boolean - - Boolean - - - None - - - AllowExternalUsersToSaveContent - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether external users (that is, users not currently logged-on to your network) are allowed to save handouts, slides and other meeting content. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow external users to save content. However, the user can take part in other conferences where external users are allowed to save content. - - Boolean - - Boolean - - - None - - - AllowFederatedParticipantJoinAsSameEnterprise - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether a federated user will be directly admitted into conference bypassing the lobby. The default value is False. - If set to False and AllowAnonymousParticipantsInMeetings parameter is also set to False, federated users will be treated as anonymous users and put into lobby. If set to True and conference admission policy is set to "Anyone from my organization" or openAuthenticated, federated users are treated as company users and admitted into conference directly. If set to True and conference admission policy is set to "People I Invite" or closedAuthenticated, federated users will be put into the lobby if they were not present in the pre-set invitee list. - - Boolean - - Boolean - - - False - - - AllowIPAudio - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer audio is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP audio. However, the user can take part in other conferences where IP audio is allowed. - - Boolean - - Boolean - - - None - - - AllowIPVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not computer video is allowed in the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow IP video. However, the user can take part in other conferences where IP video is allowed. - - Boolean - - Boolean - - - None - - - AllowLargeMeetings - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, all online meetings are treated as "large meeting." With a large meeting, restrictions are placed on the number of notifications that are sent to participants as well as the size of the meeting roster that is transmitted by default. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowMultiView - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) enables users to schedule conferences that allow multiview; that is, clients can receive multiple video streams during a given conference. This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy can include multiview. However, the user can participate in other conferences where multiview is allowed. - - Boolean - - Boolean - - - None - - - AllowNonEnterpriseVoiceUsersToDialOut - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or users who have not been enabled for Enterprise Voice are allowed to join a conference using dial-out phoning. With dial-out phoning the conferencing server will telephone the user; when the user answers the phone, he or she will be joined to the conference. - Note that dial-in conferencing is allowed even when this setting is False. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow users who have not been enabled for Enterprise Voice to join the conference via dial-out phoning. However, the user can take part in other conferences where users who have not been enabled for Enterprise Voice can join via dial out. - The default value is False ($False). - - Boolean - - Boolean - - - None - - - AllowOfficeContent - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to False, prevents users from using Office content in their conferences. - - Boolean - - Boolean - - - None - - - AllowParticipantControl - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not meeting participants are allowed to take control of applications or desktops shared during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow participant control. However, the user can take part in other conferences where participant control is allowed. - - Boolean - - Boolean - - - None - - - AllowPolls - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to conduct online polls during a meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow polls. However, the user can take part in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowQandA - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) the user will be able to include the Questions and Answers Manager in any online conference that he or she organizes. When set to False, the user will be prohibited from including Questions and Answers Manager in any of his or her conferences. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow the use of the Questions and Answers Manager. However, the user can make use of the Questions and Answers Manager in other conferences where polls are allowed. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) any open OneNote notebooks linked to the conference will automatically be updated with information such as conference participants and details about content shared during the conference. - - Boolean - - Boolean - - - None - - - AllowUserToScheduleMeetingsWithAppSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not users are allowed to organize meetings that include application sharing. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow application sharing. However, the user can take part in other conferences where application sharing is allowed. - - Boolean - - Boolean - - - None - - - ApplicationSharingMode - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Determines the protocol used for screen sharing - VbSS vs RDP. This parameter is used only in SfB Server. To disable VbSS, use the value "RDP". - - String - - String - - - None - - - AppSharingBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for application sharing. The default value is 50000. - - Int64 - - Int64 - - - None - - - AudioBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for audio transmissions. The audio bit rate can be any whole number between 20 and 200, inclusive; the default value is 200. - This setting is enforced at the per-user level, and for both conferences and peer-to-peer communication sessions. - - UInt32 - - UInt32 - - - None - - - CloudRecordingServiceSupport - - > Applicable: Skype for Business Online - PARAMVALUE: NotSupported | Supported | Required - - CloudRecordingServiceSupport - - CloudRecordingServiceSupport - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisablePowerPointAnnotations - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) users will not be able to add annotations to PowerPoint slides used in a conference. However (depending on the value of the AllowAnnotations property), users will still have access to other whiteboarding features. The default value is False, meaning that PowerPoint annotations are allowed. - - Boolean - - Boolean - - - None - - - EnableAppDesktopSharing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether participants are allowed to share applications (or their desktop) during the course of a meeting. Allowed values include: - Desktop. Users are allowed to share their entire desktop. - SingleApplication. Users are allowed to share a single application. - None. Users are not allowed to share applications or their desktop. - - - The default value is Desktop. - - EnableAppDesktopSharing - - EnableAppDesktopSharing - - - None - - - EnableDataCollaboration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users can organize meetings that include data collaboration activities such as whiteboarding and annotations. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow data collaboration. However, the user can take part in other conferences where data collaboration is allowed. - - Boolean - - Boolean - - - None - - - EnableDialInConferencing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are able to join the meeting by dialing in with a public switched telephone network (PSTN) telephone. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow dial-in conferencing. However, the user can take part in other conferences where dial-in conferencing is allowed. - - Boolean - - Boolean - - - None - - - EnableFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether file transfers to all the meeting participants are allowed during the meeting. The default value is True. - This setting applies to the user who organizes the conference: if set to False, no conference created by a user affected by this policy will allow file transfers. However, the user can take part in other conferences where file transfers are allowed. - - Boolean - - Boolean - - - None - - - EnableMultiViewJoin - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True (the default value) clients will attempt to join a conference using multiview (which allows the client to receive multiple video streams during the conference). This parameter will be ignored if multiview is not allowed in the conference being joined. This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. That means that some users in a session might be allowed to have multiple video streams while other users in the same conference might not. - - Boolean - - Boolean - - - None - - - EnableOnlineMeetingPromptForLyncResources - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, users will be prompted any time they schedule a meeting in Outlook that includes invitees (such as a meeting room) that would benefit from having the meeting held online. The default value is False. - - Boolean - - Boolean - - - None - - - EnableP2PFileTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether peer-to-peer file transfers (that is, file transfers that do not involve all participants) are allowed during the meeting. The default value is True ($True). - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to transfer files while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to record peer-to-peer communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to record the session while the other user is not. - - Boolean - - Boolean - - - None - - - EnableP2PVideo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, users will be able to take part in peer-to-peer video communication sessions. The default value is False. - This setting is enforced at the per-user level. That means that one user in a peer-to-peer communication session might be allowed to use video while the other user is not. - - Boolean - - Boolean - - - None - - - EnableReliableConferenceDeletion - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - When set to true, the conference state is removed from all replicas when the user deletes it, to provide instantaneous consistency of distributed conference state. If set to false, the deleted conference state is eventual and not instantaneous. - - Boolean - - Boolean - - - None - - - FileTransferBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for file transfers. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the conferencing policy to be modified. Conferencing policies can be configured at the global, site, or per-user scopes. To modify the global policy, use this syntax: `-Identity global`. To modify a site policy, use syntax similar to this: `-Identity site:Redmond`. To modify a per-user policy, use syntax similar to this: `-Identity SalesConferencingPolicy`. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the `Set-CsConferencingPolicy` cmdlet will automatically modify the global conferencing policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaxMeetingSize - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of people who are allowed to attend a meeting. After the maximum number of participants has been reached anyone else who tries to join the meeting will be turned away with the notice that the meeting is full. The number of participants specified in this value can be any 32-bit whole number (any value between 1 and 4,294,967,295), but the recommended size is between 2 and 250, inclusive; the default value is 250. - 250 is the maximum for shared pool deployments, based on Microsoft testing. For information about supporting meeting with more than 250 participants, see "Microsoft Lync Server 2010 Support for Large Meetings" at https://go.microsoft.com/fwlink/p/?linkId=242073 (https://go.microsoft.com/fwlink/p/?linkId=242073). - This setting applies to the user who organizes the conference: no conference created by a user affected by this policy will allow more than the specified number of participants. However, the user can take part in other conferences where additional participants are allowed. - - UInt32 - - UInt32 - - - None - - - MaxVideoConferenceResolution - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum resolution for meeting video. Allowed values are: - CIF. Common Intermediate Format (CIF) has a resolution of 352 pixels by 288 pixels. - VGA. VGA has a resolution of 640 pixels by 480 pixels. - The default value is VGA. - - MaxVideoConferenceResolution - - MaxVideoConferenceResolution - - - None - - - Tenant - - > Applicable: Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the conferencing policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TotalReceiveVideoBitRateKb - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum allowed bitrate (in kilobytes per second) for all the video used in a conference; that is, the combined total for all the video streams. The default value is 50000 kilobits per second. - - Int64 - - Int64 - - - None - - - VideoBitRateKb - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Bit rate (in kilobits) used for video transmissions. The default value is 50000. - This setting is enforced at the per-user level and for both conferences and peer-to-peer communication sessions. - - Int64 - - Int64 - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy - - - The `Set-CsConferencingPolicy` cmdlet accepts pipelined instances of the meeting policy object. - - - - - - - None - - - The `Set-CsConferencingPolicy` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Meeting.MeetingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsConferencingPolicy -Identity SalesConferencingPolicy -AllowConferenceRecording $False - - The command shown in Example 1 modifies a property value of the conferencing policy SalesConferencingPolicy; in particular, the command sets the value of the AllowConferenceRecording property to False. To do this, the `Set-CsConferencingPolicy` cmdlet is called along with the Identity parameter and the AllowConferenceRecording parameter. - - - - -------------------------- Example 2 -------------------------- - Get-CsConferencingPolicy | Set-CsConferencingPolicy -AllowAnonymousParticipantsInMeetings $False -EnableDialInConferencing $False - - In Example 2, the same two property values -- AllowAnonymousParticipantsInMeetings and EnableDialInConferencing -- are modified for all the conferencing policies configured for use in the organization. To do this, the command first uses the `Get-CsConferencingPolicy` cmdlet to return a collection of all the available conferencing policies. That collection is then piped to the `Set-CsConferencingPolicy` cmdlet, which sets the value of both the AllowAnonymousParticipantsInMeetings and EnableDialInConferencing properties to False for each policy in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsConferencingPolicy -Filter "site:*" | Set-CsConferencingPolicy -MaxVideoConferenceResolution CIF - - The command shown in Example 3 modifies the MaxVideoConferenceResolution property for all the conferencing policies that have been configured at the site scope. To accomplish this task the command first calls the `Get-CsConferencingPolicy` cmdlet and the Filter parameter; the filter value "site:*" restricts the returned data to policies configured at the site scope. This filtered collection is then piped to the `Set-CsConferencingPolicy` cmdlet, which sets the MaxVideoConferenceResolution property for each policy in the collection to "CIF". - - - - -------------------------- Example 4 -------------------------- - Get-CsConferencingPolicy | Where-Object {$_.MaxMeetingSize -gt 100} | Set-CsConferencingPolicy -MaxMeetingSize 100 - - Example 4 retrieves all the policies where the maximum meeting size is greater than (-gt) 100 and then changes the value of the associated property (MaxMeetingSize) to 100. To do this the command first calls the `Get-CsConferencingPolicy` cmdlet to return a collection of all the conferencing policies configured for use in the organization. That collection is then piped to the `Where-Object` cmdlet, which picks out only those policies that have a MaxMeetingSize greater than 100. The filtered collection is then piped to the `Set-CsConferencingPolicy` cmdlet, which takes each policy in the collection and sets the MaxMeetingSize property to 100. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csconferencingpolicy - - - Get-CsConferencingPolicy - - - - Grant-CsConferencingPolicy - - - - New-CsConferencingPolicy - - - - Remove-CsConferencingPolicy - - - - - - - Set-CsDialInConferencingConfiguration - Set - CsDialInConferencingConfiguration - - Modifies settings that determine how Skype for Business Server responds when users join or leave a dial-in conference. This cmdlet was introduced in Lync Server 2010. - - - - When users join (or leave) a dial-in conference Skype for Business Server can respond in different ways. For example, participants might be asked to record their name before they can enter the conference itself. Likewise, administrators can decide whether they want to have Skype for Business Server announce that dial-in participants have either left or joined a conference. - These conference "join behaviors" are managed using dial-in conferencing configuration settings; these settings can be configured at the global scope or at the site scope. When you first install Skype for Business Server, the only dial-in conferencing configuration settings you will have are the ones at the global scope; however, you can create new settings at the site scope by using the `New-CsDialInConferencingConfiguration` cmdlet. In addition, you can modify any of these configuration settings (at either the global or site scopes) by using the `Set-CsDialInConferencingConfiguration` cmdlet. - - - - Set-CsDialInConferencingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be modified. To refer to the global settings, use this syntax: `-Identity global`. To refer to site settings, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - AllowAnonymousPstnActivation - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide a PIN when joining the meeting. $True to allow anonymous activation, otherwise $False. The default is $False. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not users are asked to record their name before entering the conference. Set to True to enable name recording; set to False to bypass name recording. The default value is True. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsEnabledByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True announcements will be played each time a participant enters or exits a conference. If set to False (the default value), entry and exit announcements will not be played. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the action taken by the system any time a participant enters or leaves a conference. (Announcements are made only if the EntryExitAnnouncementsEnabledByDefault is set to True.) Valid values are: - UseNames. The person's name is announced any time her or she enters or leaves a conference (for example, "Ken Myer is exiting the conference"). - ToneOnly. A tone is played any time a participant enters or leaves a conference. - The default value is UseNames. - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - PinAuthType - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies which users are allowed to use PIN authentication. Allowed values are: - Everyone - OrganizerOnly - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsDialInConferencingConfiguration - - AllowAnonymousPstnActivation - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide a PIN when joining the meeting. $True to allow anonymous activation, otherwise $False. The default is $False. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not users are asked to record their name before entering the conference. Set to True to enable name recording; set to False to bypass name recording. The default value is True. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsEnabledByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True announcements will be played each time a participant enters or exits a conference. If set to False (the default value), entry and exit announcements will not be played. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the action taken by the system any time a participant enters or leaves a conference. (Announcements are made only if the EntryExitAnnouncementsEnabledByDefault is set to True.) Valid values are: - UseNames. The person's name is announced any time her or she enters or leaves a conference (for example, "Ken Myer is exiting the conference"). - ToneOnly. A tone is played any time a participant enters or leaves a conference. - The default value is UseNames. - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - PinAuthType - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies which users are allowed to use PIN authentication. Allowed values are: - Everyone - OrganizerOnly - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowAnonymousPstnActivation - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide a PIN when joining the meeting. $True to allow anonymous activation, otherwise $False. The default is $False. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not users are asked to record their name before entering the conference. Set to True to enable name recording; set to False to bypass name recording. The default value is True. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsEnabledByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True announcements will be played each time a participant enters or exits a conference. If set to False (the default value), entry and exit announcements will not be played. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the action taken by the system any time a participant enters or leaves a conference. (Announcements are made only if the EntryExitAnnouncementsEnabledByDefault is set to True.) Valid values are: - UseNames. The person's name is announced any time her or she enters or leaves a conference (for example, "Ken Myer is exiting the conference"). - ToneOnly. A tone is played any time a participant enters or leaves a conference. - The default value is UseNames. - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the dial-in conferencing configuration settings to be modified. To refer to the global settings, use this syntax: `-Identity global`. To refer to site settings, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - PinAuthType - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Specifies which users are allowed to use PIN authentication. Allowed values are: - Everyone - OrganizerOnly - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration - - - The `Set-CSDialInConferencingConfiguration` cmdlet accepts pipelined instances of the dial-in conferencing configuration object. - - - - - - - None - - - The `Set-CsDialInConferencingConfiguration` cmdlet does not return any objects or values. Instead, the cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsDialInConferencingConfiguration -Identity site:Redmond -EntryExitAnnouncementsType "ToneOnly" - - The command shown in Example 1 modifies the EntryExitAnnoucements property for the dial-in configuration settings for the Redmond site. In this case, the EntryExitAnnouncementsType property is set to ToneOnly. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialInConferencingConfiguration | Set-CsDialInConferencingConfiguration -EnableNameRecording $True - - Example 2 modifies all the dial-in conferencing configurations settings in use in the organization. To do this, the command first uses the `Get-CsDialInConferencingConfiguration` cmdlet to return a collection of all dial-in conferencing settings. That collection is then piped to the `Set-CsDialInConferencingConfiguration` cmdlet, which sets the EnableNameRecording property for each item in the collection to True ($True). - - - - -------------------------- Example 3 -------------------------- - Get-CsDialInConferencingConfiguration -Filter "site:*" | Set-CsDialInConferencingConfiguration -EnableNameRecording $True -EntryExitAnnouncementsType "UseNames" - - Example 3 modifies all the dial-in conferencing settings that have been configured at the site scope. To carry out this task, the command first uses the `Get-CsDialInConferencingConfiguration` cmdlet and the Filter parameter to return a collection of all the settings configured at the site scope; the filter value "site:*" restricts returned data to settings that have an Identity beginning with the string value "site:". That filtered collection is then piped to the `Set-CsDialInConferencingConfiguration` cmdlet, which modifies the EnableNameRecording property and the EntryExitAnnouncementsType property for each item in the collection. When the command finishes running, all the dial-in conferencing settings configured at the site scope will have their EnableNameRecording property set to True and their EntryExitAnnoucements property set to "UseNames". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csdialinconferencingconfiguration - - - Get-CsDialInConferencingConfiguration - - - - New-CsDialInConferencingConfiguration - - - - Remove-CsDialInConferencingConfiguration - - - - - - - Set-CsDialInConferencingDtmfConfiguration - Set - CsDialInConferencingDtmfConfiguration - - Modifies the dual-tone multifrequency (DTMF) signaling settings used for dial-in conferencing. DTMF enables users who dial in to a conference to control conference settings (such as muting and unmuting themselves or locking and unlocking the conference) by using the keypad on their telephone. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server enables users to join conferences by dialing in over the telephone. Dial-in users are not able to view video or exchange instant messages with other conference attendees, but they are able to fully participate in the audio portion of the meeting. - In addition to being able to join a conference, users are also able to manage selected portions of that conference by using their telephone keypad. (The specific conference settings users can and cannot manage depend on whether or not the user is a presenter.) For example, by default users can press the 6 key on their keypad to mute or unmute themselves. Participants can privately play the names of all the other people attending the meeting, while presenters can do such things as mute and unmute all the meeting participants and enable or disable the announcement that is played any time someone joins or leaves a conference. - The ability to make selections like these using a telephone keypad is known as dual-tone multifrequency (DTMF) signaling: if you have ever dialed a phone number and been instructed to do something along the order of "Press 1 for English or press 2 for Spanish," then you have used DTMF signaling. - The `Set-CsDialInConferencingDtmfConfiguration` cmdlet enables you to modify the keys used to trigger the commands supported in a Skype for Business Server dial-in conference. - When modifying the DTMF commands keep two things in mind. First, you can only use the numeric keys 0 through 9; any other keys that might be found on your keypad (such as the # key) are not allowed. There is one exception to that rule: the CommandCharacter parameter allows you to use only the asterisk key (*), or the pound key (#); you cannot assign a numeric value to the CommandCharacter parameter. However, all the other command parameters will only accept numeric values. - Second, commands must be assigned unique keys; for example, the 4 key cannot be used both to mute and unmute yourself and to lock and unlock a conference. That means that, when modifying the keys assigned to a command, you might want to swap the keys used by two different commands. For example, if you want to assign the 4 key to EnableDisableAnnouncementsCommand (default value: 9) you should, in the same command, assign the 9 key to AudienceMuteCommand. - To disable a command, set its value to Null ($Null). - - - - Set-CsDialInConferencingDtmfConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of DTMF settings you want to modify. To refer to the global settings, use this syntax: `-Identity global`. To refer to a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - If this parameter is not specified, then the `Set-CsDialInConferencingDtmfConfiguration` cmdlet will modify the global DTMF settings. - - XdsIdentity - - XdsIdentity - - - None - - - AdmitAll - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to allow all the users in the lobby to immediately join the conference. The default value is 8. - - String - - String - - - None - - - AudienceMuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key a presenter can press to mute everyone else in the conference (that is, everyone other than the presenter will be muted). The default key is 4. - - String - - String - - - None - - - CommandCharacter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed at the beginning of a command. The default key is the asterisk (*); the only other allowed value is the pound key (#). - - String - - String - - - None - - - EnableDisableAnnouncementsCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to enable or disable announcements each time someone joins or leaves the conference. The default key is 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - HelpCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to privately play a description of all the DTMF commands. The default key is 1. - - String - - String - - - None - - - LockUnlockConferenceCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to lock or unlock a conference. If a conference is locked then no new participants will be allowed to join that conference, at least not until the conference has been unlocked. The default key is 7. - - String - - String - - - None - - - MuteUnmuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to mute or unmute yourself; the same key is used to toggle back and forth between muting and unmuting. The default key is 6. - - String - - String - - - None - - - OperatorLineUri - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Phone number that the dial-in conferencing auto-attendant will connect a PSTN user to any time that user presses *0 on their telephone keypad. Pressing *0 is designed to connect dial-in conferencing users to operator assistance. - - String - - String - - - None - - - PrivateRollCallCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to privately play the name of each conference participant. The default key is 3. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsDialInConferencingDtmfConfiguration - - AdmitAll - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to allow all the users in the lobby to immediately join the conference. The default value is 8. - - String - - String - - - None - - - AudienceMuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key a presenter can press to mute everyone else in the conference (that is, everyone other than the presenter will be muted). The default key is 4. - - String - - String - - - None - - - CommandCharacter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed at the beginning of a command. The default key is the asterisk (*); the only other allowed value is the pound key (#). - - String - - String - - - None - - - EnableDisableAnnouncementsCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to enable or disable announcements each time someone joins or leaves the conference. The default key is 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - HelpCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to privately play a description of all the DTMF commands. The default key is 1. - - String - - String - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LockUnlockConferenceCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to lock or unlock a conference. If a conference is locked then no new participants will be allowed to join that conference, at least not until the conference has been unlocked. The default key is 7. - - String - - String - - - None - - - MuteUnmuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to mute or unmute yourself; the same key is used to toggle back and forth between muting and unmuting. The default key is 6. - - String - - String - - - None - - - OperatorLineUri - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Phone number that the dial-in conferencing auto-attendant will connect a PSTN user to any time that user presses *0 on their telephone keypad. Pressing *0 is designed to connect dial-in conferencing users to operator assistance. - - String - - String - - - None - - - PrivateRollCallCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to privately play the name of each conference participant. The default key is 3. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AdmitAll - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to allow all the users in the lobby to immediately join the conference. The default value is 8. - - String - - String - - - None - - - AudienceMuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key a presenter can press to mute everyone else in the conference (that is, everyone other than the presenter will be muted). The default key is 4. - - String - - String - - - None - - - CommandCharacter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed at the beginning of a command. The default key is the asterisk (*); the only other allowed value is the pound key (#). - - String - - String - - - None - - - EnableDisableAnnouncementsCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to enable or disable announcements each time someone joins or leaves the conference. The default key is 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HelpCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed in order to privately play a description of all the DTMF commands. The default key is 1. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of DTMF settings you want to modify. To refer to the global settings, use this syntax: `-Identity global`. To refer to a collection configured at the site scope, use syntax similar to this: `-Identity site:Redmond`. Note that you cannot use wildcards when specifying an Identity. - If this parameter is not specified, then the `Set-CsDialInConferencingDtmfConfiguration` cmdlet will modify the global DTMF settings. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LockUnlockConferenceCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to lock or unlock a conference. If a conference is locked then no new participants will be allowed to join that conference, at least not until the conference has been unlocked. The default key is 7. - - String - - String - - - None - - - MuteUnmuteCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to mute or unmute yourself; the same key is used to toggle back and forth between muting and unmuting. The default key is 6. - - String - - String - - - None - - - OperatorLineUri - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Phone number that the dial-in conferencing auto-attendant will connect a PSTN user to any time that user presses *0 on their telephone keypad. Pressing *0 is designed to connect dial-in conferencing users to operator assistance. - - String - - String - - - None - - - PrivateRollCallCommand - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the key to be pressed to privately play the name of each conference participant. The default key is 3. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration - - - The `Set-CsDialInConferencingDtmfConfiguration` cmdlet accepts pipelined instances of the dial-in conference DTMF configuration object. - - - - - - - None - - - The `Set-CsDialInConferencingDtmfConfiguration` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Settings.DialInConferencingSettings.DialInConferencingDtmfConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsDialInConferencingDtmfConfiguration -Identity global -EnableDisableAnnouncementsCommand 4 -AudienceMuteCommand 9 - - The command shown in Example 1 swaps the keys assigned to the command for enabling and disabling announcements (default value: 9) and the command for muting and unmuting all participants (default value: 4) for the global DTMF settings. To do this two different parameters are used: EnableDisableAnnoucementsCommand, which is given the parameter value 4 and AudienceMuteCommand, which is given the value 9. Because no Identity is specified, these changes will affect the global DTMF settings. - - - - -------------------------- Example 2 -------------------------- - Set-CsDialInConferencingDtmfConfiguration -Identity site:Redmond -EnableDisableAnnouncementsCommand 4 -AudienceMuteCommand 9 - - The command shown in Example 2 is a variation of the command shown in the first example. In this case, however, the changes affect the DTMF settings that have the Identity site:Redmond. - - - - -------------------------- Example 3 -------------------------- - Set-CsDialInConferencingDtmfConfiguration -Identity "site:Redmond" -PrivateRollCallCommand $Null - - The command shown in Example 3 disables the roll call command (the ability to play back a list of all the people participating in the conference) for the Redmond site. To disable this command, the PrivateRollCallCommand parameter is included, with the parameter value set to $Null. This means that no keypad key will be associated with the command, which makes the command unavailable to users. - - - - -------------------------- Example 4 -------------------------- - Get-CsDialInConferencingDtmfConfiguration -Filter "site:*" | Set-CsDialInConferencingDtmfConfiguration -PrivateRollCallCommand $Null - - Example 4 is a variation on Example 3: in this example, the roll call command is disabled for all the DTMF settings configured at the site scope. To do this, the command first uses the `Get-CsDialInConferencingDtmfConfiguration` cmdlet and the Filter parameter to return a collection of all the settings configured at the site scope; the filter value "site:*" limits the returned data to those settings where the Identity begins with the characters "site:". This filtered collection is then piped to the `Set-CsDialInConferencingDtmfConfiguration` cmdlet, which sets the value of the PrivateRollCallCommand property to null ($Null). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csdialinconferencingdtmfconfiguration - - - Get-CsDialInConferencingDtmfConfiguration - - - - New-CsDialInConferencingDtmfConfiguration - - - - Remove-CsDialInConferencingDtmfConfiguration - - - - - - - Set-CsDialPlan - Set - CsDialPlan - - Modifies an existing dial plan. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet modifies an existing dial plan (also known as a location profile). Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Dial plans are also used by the Conferencing Attendant application for dial-in conferencing. A dial plan determines such things as which normalization rules are applied and whether a prefix must be dialed for external calls. - Note: While normalization rules of a dial plan can be modified with this cmdlet, it is recommended that the `New-CsVoiceNormalizationRule` cmdlet, the `Set-CsVoiceNormalizationRule` cmdlet, or the `Remove-CsVoiceNormalizationRule` cmdlet be used instead. The changes made with those cmdlets will be reflected in the corresponding dial plan. - - - - Set-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, or, for per-user plans, a name, to identify the dial plan you want to modify. For example, a site Identity will be in the format site:<sitename>, where sitename is the name of the site. A dial plan at the service scope will be a Registrar or PSTN gateway service, where the Identity value is formatted like this: Registrar:Redmond.litwareinc.com. A per-user Identity will be a unique string value. - - XdsIdentity - - XdsIdentity - - - None - - - City - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - CountryCode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of this dial plan--what it's for, what type of user it applies to, or any other information that will be helpful in identifying the purpose of the dial plan. - Maximum characters: 512 - - String - - String - - - None - - - DialinConferencingRegion - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the region associated with this dial plan. Specify a value for this parameter if the dial plan will be used for dial-in conferencing. This allows the correct access number to be assigned when the conference organizer sets up the conference. Available regions can be retrieved by calling the `Get-CsNetworkRegion` cmdlet. - Maximum characters: 512 - - String - - String - - - None - - - ExternalAccessPrefix - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number (or set of numbers) that designates the call as external to the organization. (For example, to dial an outside line, first press 9.) This prefix will be ignored by the normalization rules, although these rules will be applied to the rest of the number. - The OptimizeDeviceDialing parameter must be set to True for this value to take effect. - The value of this parameter must match the regular expression [0-9]{1,4}. This means it must be a value one to four digits in length, each digit being a number 0 through 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts before making changes. - - - SwitchParameter - - - False - - - NormalizationRules - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of normalization rules that are applied to this dial plan. - While this list and these rules can be modified directly with this cmdlet, it is recommended that you create normalization rules with the `New-CsVoiceNormalizationRule` cmdlet, which creates the rule and assigns it to the specified dial plan and modify them with the `Set-CsVoiceNormalizationRule` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - OptimizeDeviceDialing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Setting this parameter to True will apply the prefix in the ExternalAccessPrefix parameter to calls made outside the organization. This value can be set to True only if a value has been specified for the ExternalAccessPrefix parameter. - - Boolean - - Boolean - - - None - - - SimpleName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name for the dial plan. Dial plan names must be unique among all dial plans within a Skype for Business Server deployment. - This string can be up to 256 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), plus (+), underscore (_) and parentheses (()). - - String - - String - - - None - - - State - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsDialPlan - - City - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - CountryCode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of this dial plan--what it's for, what type of user it applies to, or any other information that will be helpful in identifying the purpose of the dial plan. - Maximum characters: 512 - - String - - String - - - None - - - DialinConferencingRegion - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the region associated with this dial plan. Specify a value for this parameter if the dial plan will be used for dial-in conferencing. This allows the correct access number to be assigned when the conference organizer sets up the conference. Available regions can be retrieved by calling the `Get-CsNetworkRegion` cmdlet. - Maximum characters: 512 - - String - - String - - - None - - - ExternalAccessPrefix - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number (or set of numbers) that designates the call as external to the organization. (For example, to dial an outside line, first press 9.) This prefix will be ignored by the normalization rules, although these rules will be applied to the rest of the number. - The OptimizeDeviceDialing parameter must be set to True for this value to take effect. - The value of this parameter must match the regular expression [0-9]{1,4}. This means it must be a value one to four digits in length, each digit being a number 0 through 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsDialPlan` cmdlet. - - PSObject - - PSObject - - - None - - - NormalizationRules - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of normalization rules that are applied to this dial plan. - While this list and these rules can be modified directly with this cmdlet, it is recommended that you create normalization rules with the `New-CsVoiceNormalizationRule` cmdlet, which creates the rule and assigns it to the specified dial plan and modify them with the `Set-CsVoiceNormalizationRule` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - OptimizeDeviceDialing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Setting this parameter to True will apply the prefix in the ExternalAccessPrefix parameter to calls made outside the organization. This value can be set to True only if a value has been specified for the ExternalAccessPrefix parameter. - - Boolean - - Boolean - - - None - - - SimpleName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name for the dial plan. Dial plan names must be unique among all dial plans within a Skype for Business Server deployment. - This string can be up to 256 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), plus (+), underscore (_) and parentheses (()). - - String - - String - - - None - - - State - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - CountryCode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of this dial plan--what it's for, what type of user it applies to, or any other information that will be helpful in identifying the purpose of the dial plan. - Maximum characters: 512 - - String - - String - - - None - - - DialinConferencingRegion - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the region associated with this dial plan. Specify a value for this parameter if the dial plan will be used for dial-in conferencing. This allows the correct access number to be assigned when the conference organizer sets up the conference. Available regions can be retrieved by calling the `Get-CsNetworkRegion` cmdlet. - Maximum characters: 512 - - String - - String - - - None - - - ExternalAccessPrefix - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number (or set of numbers) that designates the call as external to the organization. (For example, to dial an outside line, first press 9.) This prefix will be ignored by the normalization rules, although these rules will be applied to the rest of the number. - The OptimizeDeviceDialing parameter must be set to True for this value to take effect. - The value of this parameter must match the regular expression [0-9]{1,4}. This means it must be a value one to four digits in length, each digit being a number 0 through 9. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, or, for per-user plans, a name, to identify the dial plan you want to modify. For example, a site Identity will be in the format site:<sitename>, where sitename is the name of the site. A dial plan at the service scope will be a Registrar or PSTN gateway service, where the Identity value is formatted like this: Registrar:Redmond.litwareinc.com. A per-user Identity will be a unique string value. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsDialPlan` cmdlet. - - PSObject - - PSObject - - - None - - - NormalizationRules - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of normalization rules that are applied to this dial plan. - While this list and these rules can be modified directly with this cmdlet, it is recommended that you create normalization rules with the `New-CsVoiceNormalizationRule` cmdlet, which creates the rule and assigns it to the specified dial plan and modify them with the `Set-CsVoiceNormalizationRule` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - OptimizeDeviceDialing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Setting this parameter to True will apply the prefix in the ExternalAccessPrefix parameter to calls made outside the organization. This value can be set to True only if a value has been specified for the ExternalAccessPrefix parameter. - - Boolean - - Boolean - - - None - - - SimpleName - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name for the dial plan. Dial plan names must be unique among all dial plans within a Skype for Business Server deployment. - This string can be up to 256 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), plus (+), underscore (_) and parentheses (()). - - String - - String - - - None - - - State - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not used with this cmdlet. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - Accepts pipelined input of dial plan objects. - - - - - - - None - - - The `Set-CsDialPlan` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsDialPlan -Identity RedmondDialPlan -Description "This plan is for Redmond-based users only." - - In Example 1, the `Set-CsDialPlan` cmdlet is used to modify the dial plan with the Identity RedmondDialPlan. In this case, the only property being modified is the Description; this modification is performed by specifying the Description parameter followed by the text for the new description. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialPlan | Set-CsDialPlan -ExternalAccessPrefix 8 - - In this example, the `Set-CsDialPlan` cmdlet is used to change the value of the ExternalAccessPrefix property for all the dial plans configured for use in the organization. To do this, the command first uses the `Get-CsDialPlan` cmdlet to return a collection of all the dial plans in the organization. That collection is then piped to the `Set-CsDialPlan` cmdlet, which assigns the value 8 to the ExternalAccessPrefix property for each profile in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csdialplan - - - New-CsDialPlan - - - - Remove-CsDialPlan - - - - Get-CsDialPlan - - - - Grant-CsDialPlan - - - - Test-CsDialPlan - - - - New-CsVoiceNormalizationRule - - - - Set-CsVoiceNormalizationRule - - - - Remove-CsVoiceNormalizationRule - - - - Get-CsVoiceNormalizationRule - - - - - - - Set-CsExternalAccessPolicy - Set - CsExternalAccessPolicy - - Enables you to modify the properties of an existing external access policy. - - - - This cmdlet was introduced in Lync Server 2010. - When you install Skype for Business Server your users are only allowed to exchange instant messages and presence information among themselves: by default, they can only communicate with people who have SIP accounts in your Active Directory Domain Services. In addition, users are not allowed to access Skype for Business Server over the Internet; instead, they must be logged on to your internal network before they will be able to log on to Skype for Business Server. - That might be sufficient to meet your communication needs. If it doesn't meet your needs, you can use external access policies to extend the ability of your users to communicate and collaborate. External access policies can grant (or revoke) the ability of your users to do any or all of the following: - 1. Communicate with people who have SIP accounts with a federated organization. Note that enabling federation alone will not provide users with this capability. Instead, you must enable federation and then assign users an external access policy that gives them the right to communicate with federated users. - 2. (Microsoft Teams only) Communicate with users who are using custom applications built with Azure Communication Services (ACS) (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). this policy setting only applies if acs federation has been enabled at the tenant level using the [Set-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration)cmdlet. - 3. Access Skype for Business Server over the Internet, without having to first log on to your internal network. This enables your users to use Skype for Business and log on to Skype for Business Server from an Internet café or other remote location. - 4. Communicate with people who have SIP accounts with a public instant messaging service such as Skype. - The following parameters are not applicable to Skype for Business Online/Microsoft Teams: Description, EnableXmppAccess, Force, Identity, Instance, PipelineVariable, and Tenant - 5. (Microsoft Teams Only) Communicate with people who are using Teams with an account that's not managed by an organization. This policy only applies if Teams Consumer Federation has been enabled at the tenant level using the Set-CsTeamsAcsFederationConfiguration (https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration)cmdlet or Teams admin center under the External Access setting. - After an external access policy has been created, you can use the `Set-CsExternalAccessPolicy` cmdlet to change the property values of that policy. For example, by default the global policy does not allow users to communicate with people who have accounts with a federated organization. If you would like to grant this capability to all of your users you can call the `Set-CsExternalAccessPolicy` cmdlet and set the value of the global policy's EnableFederationAccess property to True. - > [!NOTE] > For the domain settings defined under `AllowFederatedUsers` to be applied, the value of the property `AllowedFederatedUsers` under `TenantFederationConfiguration` should be set to `True` for the Tenant. - - - - Set-CsExternalAccessPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the external access policy to be modified. External access policies can be configured at the global, site, or per-user scopes. To modify the global policy, use this syntax: `-Identity global`. To modify a site policy, use syntax similar to this: `-Identity site:Redmond`. To modify a per-user policy, use syntax similar to this: `-Identity SalesAccessPolicy`. If this parameter is not specified then the global policy will be modified. - Note that wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - AllowedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains allowed to communicate with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `AllowSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - BlockedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains blocked from communicating with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `BlockSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - CommunicationWithExternalOrgs - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how the users get assigned by this policy can communicate with the external orgs. There are 5 options: - - OrganizationDefault: users follow the federation settings specified in `TenantFederationConfiguration`. This is the default value. - - AllowAllExternalDomains: users are allowed to communicate with all domains. - - AllowSpecificExternalDomains: users can communicate with external domains listed in `AllowedExternalDomains`. - - BlockSpecificExternalDomains: users are blocked from communicating with domains listed in `BlockedExternalDomains`. - - BlockAllExternalDomains: users cannot communicate with any external domains. - - The setting is only applicable when `EnableFederationAccess` is set to true. This setting can only be modified in custom policies. In the Global (default) policy, it is fixed to `OrganizationDefault` and cannot be changed. - - String - - String - - - OrganizationDefault - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - EnableAcsFederationAccess - - > Applicable: Microsoft Teams - Indicates whether Teams meeting organized by the user can be joined by users of customer applications built using Azure Communication Services (ACS). This policy setting only applies if ACS Teams federation has been enabled at the tenant level using the cmdlet Set-CsTeamsAcsFederationConfiguration. - Additionally, Azure Communication Services users would be able to call Microsoft 365 users that have assigned policies with enabled federation. - To enable for all users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to True. It can be disabled for selected users by assigning them a policy with federation disabled. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - - Boolean - - Boolean - - - True - - - EnableFederationAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to communicate with people who have SIP accounts with a federated organization. Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - None - - - EnableOutsideAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to connect to Skype for Business Server over the Internet, without logging on to the organization's internal network. The default value is False. - - Boolean - - Boolean - - - None - - - EnablePublicCloudAudioVideoAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to conduct audio/video conversations with people who have SIP accounts with a public Internet connectivity provider such as MSN. When set to False, audio and video options in Skype for Business will be disabled any time a user is communicating with a public Internet connectivity contact. The default value is False. - - Boolean - - Boolean - - - None - - - EnableTeamsConsumerAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - (Microsoft Teams Only) Indicates whether the user is allowed to communicate with people who have who are using Teams with an account that's not managed by an organization. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsConsumerInbound - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - (Microsoft Teams Only) Indicates whether the user is allowed to be discoverable by people who are using Teams with an account that's not managed by an organization. It also controls if people who have who are using Teams with an account that's not managed by an organization can start the communication with the user. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsSmsAccess - - Allows you to control whether users can have SMS text messaging capabilities within Teams. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableXmppAccess - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to communicate with users who have SIP accounts with a federated XMPP (Extensible Messaging and Presence Protocol) partner. The default value is False. - - Boolean - - Boolean - - - None - - - FederatedBilateralChats - - This setting enables bi-lateral chats for the users included in the messaging policy. - Some organizations may want to restrict who users are able to message in Teams. While organizations have always been able to limit users' chats to only other internal users, organizations can now limit users' chat ability to only chat with other internal users and users in one other organization via the bilateral chat policy. - Once external access and bilateral policy is set up, users with the policy can be in external group chats only with a maximum of two organizations. When they try to create a new external chat with users from more than two tenants or add a user from a third tenant to an existing external chat, a system message will be shown preventing this action. - Users with bilateral policy applied are also removed from existing external group chats with more than two organizations. - This policy doesn't apply to meetings, meeting chats, or channels. - - Boolean - - Boolean - - - False - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - Defines if a user is restriced to collaboration with Teams Consumer (TFL) user only in Extended Directory Possible Values: True, False - - Boolean - - Boolean - - - None - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the external access policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains allowed to communicate with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `AllowSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - BlockedExternalDomains - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the external domains blocked from communicating with users assigned to this policy. This setting is applicable only when `CommunicationWithExternalOrgs` is configured to `BlockSpecificExternalDomains`. This setting can be modified only in custom policy. In Global (default) policy `CommunicationWithExternalOrgs` can only be set to `OrganizationDefault` and cannot be changed. - - List - - List - - - None - - - CommunicationWithExternalOrgs - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how the users get assigned by this policy can communicate with the external orgs. There are 5 options: - - OrganizationDefault: users follow the federation settings specified in `TenantFederationConfiguration`. This is the default value. - - AllowAllExternalDomains: users are allowed to communicate with all domains. - - AllowSpecificExternalDomains: users can communicate with external domains listed in `AllowedExternalDomains`. - - BlockSpecificExternalDomains: users are blocked from communicating with domains listed in `BlockedExternalDomains`. - - BlockAllExternalDomains: users cannot communicate with any external domains. - - The setting is only applicable when `EnableFederationAccess` is set to true. This setting can only be modified in custom policies. In the Global (default) policy, it is fixed to `OrganizationDefault` and cannot be changed. - - String - - String - - - OrganizationDefault - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - EnableAcsFederationAccess - - > Applicable: Microsoft Teams - Indicates whether Teams meeting organized by the user can be joined by users of customer applications built using Azure Communication Services (ACS). This policy setting only applies if ACS Teams federation has been enabled at the tenant level using the cmdlet Set-CsTeamsAcsFederationConfiguration. - Additionally, Azure Communication Services users would be able to call Microsoft 365 users that have assigned policies with enabled federation. - To enable for all users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to True. It can be disabled for selected users by assigning them a policy with federation disabled. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - - Boolean - - Boolean - - - True - - - EnableFederationAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to communicate with people who have SIP accounts with a federated organization. Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - None - - - EnableOutsideAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to connect to Skype for Business Server over the Internet, without logging on to the organization's internal network. The default value is False. - - Boolean - - Boolean - - - None - - - EnablePublicCloudAudioVideoAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to conduct audio/video conversations with people who have SIP accounts with a public Internet connectivity provider such as MSN. When set to False, audio and video options in Skype for Business will be disabled any time a user is communicating with a public Internet connectivity contact. The default value is False. - - Boolean - - Boolean - - - None - - - EnableTeamsConsumerAccess - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - (Microsoft Teams Only) Indicates whether the user is allowed to communicate with people who have who are using Teams with an account that's not managed by an organization. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsConsumerInbound - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - (Microsoft Teams Only) Indicates whether the user is allowed to be discoverable by people who are using Teams with an account that's not managed by an organization. It also controls if people who have who are using Teams with an account that's not managed by an organization can start the communication with the user. - To enable just for a selected set of users, use the Set-CsExternalAccessPolicy cmdlet to update the global policy, setting the value to False. Then assign selected users a policy with federation enabled. - Read Manage external access in Microsoft Teams (https://learn.microsoft.com/microsoftteams/manage-external-access)to get more information about the effect of this parameter in Microsoft Teams. The default value is True. - - Boolean - - Boolean - - - True - - - EnableTeamsSmsAccess - - Allows you to control whether users can have SMS text messaging capabilities within Teams. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableXmppAccess - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to communicate with users who have SIP accounts with a federated XMPP (Extensible Messaging and Presence Protocol) partner. The default value is False. - - Boolean - - Boolean - - - None - - - FederatedBilateralChats - - This setting enables bi-lateral chats for the users included in the messaging policy. - Some organizations may want to restrict who users are able to message in Teams. While organizations have always been able to limit users' chats to only other internal users, organizations can now limit users' chat ability to only chat with other internal users and users in one other organization via the bilateral chat policy. - Once external access and bilateral policy is set up, users with the policy can be in external group chats only with a maximum of two organizations. When they try to create a new external chat with users from more than two tenants or add a user from a third tenant to an existing external chat, a system message will be shown preventing this action. - Users with bilateral policy applied are also removed from existing external group chats with more than two organizations. - This policy doesn't apply to meetings, meeting chats, or channels. - - Boolean - - Boolean - - - False - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the external access policy to be modified. External access policies can be configured at the global, site, or per-user scopes. To modify the global policy, use this syntax: `-Identity global`. To modify a site policy, use syntax similar to this: `-Identity site:Redmond`. To modify a per-user policy, use syntax similar to this: `-Identity SalesAccessPolicy`. If this parameter is not specified then the global policy will be modified. - Note that wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerAccessToExternalUserProfiles - - Defines if a user is restriced to collaboration with Teams Consumer (TFL) user only in Extended Directory Possible Values: True, False - - Boolean - - Boolean - - - None - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the external access policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy object. The `Set-CsExternalAccessPolicy` cmdlet accepts pipelined input of the external access policy object. - - - - - - - Output types - - - The `Set-CsExternalAccessPolicy` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.ExternalAccess.ExternalAccessPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsExternalAccessPolicy -Identity RedmondExternalAccessPolicy -EnableFederationAccess $True - - The command shown in Example 1 modifies the per-user external access policy that has the Identity RedmondExternalAccessPolicy. In this example, the command changes the value of the EnableFederationAccess property to True. - - - - -------------------------- Example 2 -------------------------- - Get-CsExternalAccessPolicy | Set-CsExternalAccessPolicy -EnableFederationAccess $True - - In Example 2, federation access is enabled for all the external access policies configured for use in the organization. To do this, the command first calls the `Get-CsExternalAccessPolicy` cmdlet without any parameters; this returns a collection of all the external policies currently configured for use. That collection is then piped to the `Set-CsExternalAccessPolicy` cmdlet, which changes the value of the EnableFederationAccess property for each policy in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsExternalAccessPolicy -Filter tag:* | Set-CsExternalAccessPolicy -EnableFederationAccess $True - - Example 3 enables federation access for all the external access policies that have been configured at the per-user scope. To carry out this task, the first thing the command does is use the `Get-CsExternalAccessPolicy` cmdlet and the Filter parameter to return a collection of all the policies that have been configured at the per-user scope. (The filter value "tag:*" limits returned data to policies that have an Identity that begins with the string value "tag:". Any policy with an Identity that begins with "tag:" has been configured at the per-user scope.) The filtered collection is then piped to the `Set-CsExternalAccessPolicy` cmdlet, which modifies the EnableFederationAccess property for each policy in the collection. - - - - -------------------------- Example 4 -------------------------- - Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $false -New-CsExternalAccessPolicy -Identity AcsFederationAllowed -EnableAcsFederationAccess $true - - In this example, the Global policy is updated to disallow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation enabled and which can be assigned to selected users for which Team-ACS federation will be allowed. - - - - -------------------------- Example 5 -------------------------- - Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true -New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false - - In this example, the Global policy is updated to allow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation disabled and which can then be assigned to selected users for which Team-ACS federation will not be allowed. - - - - -------------------------- Example 6 -------------------------- - New-CsExternalAccessPolicy -Identity GranularFederationExample -CommunicationWithExternalOrgs "AllowSpecificExternalDomains" -AllowedExternalDomains @("example1.com", "example2.com") -Set-CsTenantFederationConfiguration -CustomizeFederation $true - - In this example, we create an ExternalAccessPolicy named "GranularFederationExample" that allows communication with specific external domains, namely `example1.com` and `example2.com`. The federation policy is set to restrict communication to only these allowed domains. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - Get-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Remove-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csexternalaccesspolicy - - - - - - Set-CsHostedVoicemailPolicy - Set - CsHostedVoicemailPolicy - - Modifies a hosted voice mail policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet modifies a policy that configures a user account enabled for Skype for Business Server to use an Exchange Unified Messaging (UM) hosted voice mail service. The policy determines how to route unanswered calls to the user to a hosted Exchange UM service. - A user must be enabled for Exchange UM hosted voice mail for this policy to take effect. You can call the `Get-CsUser` cmdlet and check the HostedVoiceMail property to determine whether a user is enabled for hosted voice mail. (A value of True means the user is enabled.) - - - - Set-CsHostedVoicemailPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the hosted voice mail policy you want to modify. This identifier includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly description of the policy. - - String - - String - - - None - - - Destination - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The value assigned to this parameter is the fully qualified domain name (FQDN) of the hosted Exchange UM service. Note that the chosen destination must be trusted for routing. - If you attempt to enable a user for hosted voice mail and the user's assigned policy does not have a Destination value, the enable will fail. - This value must be 255 characters or less and in a format matching the regular expression string ^[a-zA-Z0-9\- ]+(\.[a-zA-Z0-9\- ]+){0,}$. This just means it should be in the form of an FQDN, such as server.litwareinc.com. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Organization - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains a comma-separated list of the Exchange tenants that contain Skype for Business Server users. Each tenant must be specified as an FQDN of the tenant on the hosted Exchange Service. - - String - - String - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Server 2015 tenant account for which hosted voicemail policy being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - > [!NOTE] > In Skype for Business Server 2019, you can notice that you can use -TenantID in the same way as this parameter. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsHostedVoicemailPolicy - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly description of the policy. - - String - - String - - - None - - - Destination - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The value assigned to this parameter is the fully qualified domain name (FQDN) of the hosted Exchange UM service. Note that the chosen destination must be trusted for routing. - If you attempt to enable a user for hosted voice mail and the user's assigned policy does not have a Destination value, the enable will fail. - This value must be 255 characters or less and in a format matching the regular expression string ^[a-zA-Z0-9\- ]+(\.[a-zA-Z0-9\- ]+){0,}$. This just means it should be in the form of an FQDN, such as server.litwareinc.com. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. The object must be of type HostedVoicemailPolicy and can be retrieved by calling the `Get-CsHostedVoicemailPolicy` cmdlet. - - PSObject - - PSObject - - - None - - - Organization - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains a comma-separated list of the Exchange tenants that contain Skype for Business Server users. Each tenant must be specified as an FQDN of the tenant on the hosted Exchange Service. - - String - - String - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Server 2015 tenant account for which hosted voicemail policy being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - > [!NOTE] > In Skype for Business Server 2019, you can notice that you can use -TenantID in the same way as this parameter. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly description of the policy. - - String - - String - - - None - - - Destination - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The value assigned to this parameter is the fully qualified domain name (FQDN) of the hosted Exchange UM service. Note that the chosen destination must be trusted for routing. - If you attempt to enable a user for hosted voice mail and the user's assigned policy does not have a Destination value, the enable will fail. - This value must be 255 characters or less and in a format matching the regular expression string ^[a-zA-Z0-9\- ]+(\.[a-zA-Z0-9\- ]+){0,}$. This just means it should be in the form of an FQDN, such as server.litwareinc.com. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier for the hosted voice mail policy you want to modify. This identifier includes the scope (in the case of global), the scope and site (for a site policy, such as site:Redmond), or the policy name (for a per-user policy, such as HVUserPolicy). - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. The object must be of type HostedVoicemailPolicy and can be retrieved by calling the `Get-CsHostedVoicemailPolicy` cmdlet. - - PSObject - - PSObject - - - None - - - Organization - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter contains a comma-separated list of the Exchange tenants that contain Skype for Business Server users. Each tenant must be specified as an FQDN of the tenant on the hosted Exchange Service. - - String - - String - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Server 2015 tenant account for which hosted voicemail policy being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - > [!NOTE] > In Skype for Business Server 2019, you can notice that you can use -TenantID in the same way as this parameter. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - Accepts pipelined input of hosted voice mail policy objects. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - This cmdlet modifies an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.HostedVoicemailPolicy - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsHostedVoicemailPolicy -Identity ExRedmond -Destination ExUM.contoso.com - - This command modifies the Destination property of a hosted voice mail policy named ExRedmond. It sets the Exchange UM destination for this policy to be at FQDN ExUM.contoso.com. - - - - -------------------------- Example 2 -------------------------- - $a = (Get-CsHostedVoicemailPolicy -Identity ExRedmond).Organization - -$a += ",corp3.litwareinc.com" - -Set-CsHostedVoicemailPolicy -Identity ExRedmond -Organization $a - - This command adds an Exchange tenant to the comma-separated list of tenants (organizations) for the policy ExRedmond. The first line calls the `Get-CsHostedVoicemailPolicy` cmdlet to retrieve the policy with the Identity ExRedmond. This cmdlet call is in parentheses because we need to first retrieve this policy. We then use "dot notation" to retrieve the Organization property of the policy. We save the returned string in the variable $a. The next line uses the += operator to append the assigned string (,corp3.litwareinc.com) to the end of the string stored in variable $a. (Note the comma in the assigned string. Organization is a comma-separated list, so if there's already a value in the list any additional values need to be preceded by a comma.) Finally, in the last line we call the `Set-CsHostedVoicemailPolicy` cmdlet and assign the new Organization string by passing the variable $a to the parameter Organization. - - - - -------------------------- Example 3 -------------------------- - Set-CsHostedVoicemailPolicy -Tenant "73d355dd-ce5d-4ab9-bf49-7b822c18dd98" -Destination "ExUM.contoso.com" - - The command shown in Example 3 modifies the Destination property of the hosted voicemail policy assigned to the Skype for Business Online tenant with the tenant ID 73d355dd-ce5d-4ab9-bf49-7b822c18dd98. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-cshostedvoicemailpolicy - - - New-CsHostedVoicemailPolicy - - - - Remove-CsHostedVoicemailPolicy - - - - Get-CsHostedVoicemailPolicy - - - - Grant-CsHostedVoicemailPolicy - - - - - - - Set-CsInboundBlockedNumberPattern - Set - CsInboundBlockedNumberPattern - - Modifies one or more parameters of a blocked number pattern in the tenant list. - - - - This cmdlet modifies one or more parameters of a blocked number pattern in the tenant list. - - - - Set-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be modified. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be modified. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be modified. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - None - - - Identity - - A unique identifier specifying the blocked number pattern to be modified. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Set-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" -Pattern "^\+11234567890" - - This example modifies a blocked number pattern to block inbound calls from +11234567890 number. - - - - -------------------------- Example 2 -------------------------- - PS> Set-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" -ResourceAccount "d290f1ee-6c54-4b01-90e6-d701748f0851" - - This example modifies a blocked number pattern to redirect inbound calls from its pattern number to the specified resource account instead of blocking it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - Set-CsInboundExemptNumberPattern - Set - CsInboundExemptNumberPattern - - Modifies one or more parameters of an exempt number pattern in the tenant list. - - - - This cmdlet modifies one or more parameters of an exempt number pattern in the tenant list. - - - - Set-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be changed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - String - - String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - String - - String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Identity - - Unique identifier for the exempt number pattern to be changed. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your block and exempt phone number ranges. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" - - Sets the inbound exempt number pattern for AllowContoso1 - - - - -------------------------- EXAMPLE 2 -------------------------- - PS> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Enabled $False - - Disables the exempt number pattern from usage in call blocking - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Set-CsLocationPolicy - Set - CsLocationPolicy - - Modifies an existing location policy. This cmdlet was introduced in Lync Server 2010. - - - - The location policy is used to apply settings that relate to Enhanced 9-1-1 (E9-1-1) functionality and client location. The location policy determines whether a user is enabled for E9-1-1, and if so what the behavior is of an emergency call. For example, you can use the location policy to define what number constitutes an emergency call (911 in the United States), whether corporate security should be automatically notified, and how the call should be routed. This cmdlet modifies an existing location policy. - - - - Set-CsLocationPolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to modify. To modify the global location policy, use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - ConferenceMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If a value is specified for the ConferenceUri parameter, the ConferenceMode parameter determines whether a third party can participate in the call or can only listen in. Available values are: - Oneway: Third party can only listen to the conversation between the caller and the Public Safety Answering Point (PSAP) operator. - Twoway: Third party can listen in and participate in the call between the caller and the PSAP operator. - - ConferenceModeEnum - - ConferenceModeEnum - - - None - - - ConferenceUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The SIP Uniform Resource Identifier (URI), in this case the telephone number, of a third party that will be conferenced in to any emergency calls that are made. For example, the company security office could receive a call when an emergency call is made and listen in or participate in that call (depending on the value of the ConferenceMode property). - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A detailed description of this location. For example, "Building 30, 3rd Floor, Northeast corner". - - String - - String - - - None - - - EmergencyDialMask - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number that is dialed that will be translated into the value of the EmergencyDialString property. For example, if EmergencyDialMask has a value of "212" and EmergencyDialString has a value of "911", if a user dials 212 the call will be made to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country/region with a different emergency number attempts to dial that country/region's number rather than the number for the country/region they're currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, -EmergencyDialMask "212;414". - IMPORTANT. Ensure that the specified dial mask value is not the same as a number in a call park orbit range. Call park routing will take precedence over emergency dial string conversion. To see the existing call park orbit ranges, call the `Get-CsCallParkOrbit` cmdlet. - Maximum length of the string is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - EmergencyDialString - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The number that is dialed to reach emergency services. In the United States this value is "911". - The string must be made of the digits 0 through 9 and can be from 1 to 10 characters in length. - - String - - String - - - None - - - EmergencyNumbers - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EmergencyNumbers Description}} - - PSListModifier - - PSListModifier - - - None - - - EnhancedEmergencyServiceDisclaimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Text value containing information that will be displayed to users who are connected from locations that cannot be resolved by the location mapping (wiremap) who choose not to enter their location manually. To remove a service disclaimer from a location policy set this property to a null value: - `-EnhancedEmergencyServiceDisclaimer $Null` - Location policies, and the EnhancedEmergencyServiceDisclaimer property, should be used in Skype for Business Server to set disclaimers for the E9-1-1 service. By using location policies to set these disclaimers, you can create different disclaimers for different locales or different sets of users. - - String - - String - - - None - - - EnhancedEmergencyServicesEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether the users associated with this policy are enabled for E9-1-1. Set the value to True to enable E9-1-1, so Skype for Business Server clients will retrieve location information on registration and include that information when an emergency call is made. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - LocationRefreshInterval - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the amount of time (in hours) between client requests for Location Information service location update. The LocationRefreshInterval can be set to any value between 1 and 12; the default value is 4. - - Int64 - - Int64 - - - None - - - LocationRequired - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If the client was unable to retrieve a location from the location configuration database, the user can be prompted to manually enter a location. This parameter accepts the following values: - - no: The user will not be prompted for a location. When a call is made with no location information, the Emergency Service Provider will answer the call and ask for a location. - - yes: The user will be prompted to input location information when the client registers at a new location. The user can dismiss the prompt without entering any information. If information is entered, a call made to 911 will first be answered by the Emergency Service Provider to verify the location before being routed to the PSAP (that is, the 911 operator). - - disclaimer: This option is the same as yes except that if the user dismisses the prompt disclaimer text will be displayed that can alert the user to the consequences of declining to enter location information. (The disclaimer text must be set by calling the `Set-CsEnhancedEmergencyServiceDisclaimer` cmdlet.) - - This value is ignored if EnhancedEmergencyServicesEnabled is set to False (the default). Users will not be prompted for location information. - - LocationRequiredEnum - - LocationRequiredEnum - - - None - - - NotificationUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - One or more SIP Uniform Resource Identifiers (URIs) to be notified when an emergency call is made. For example, the company security office could be notified through an instant message whenever an emergency call is made. If the caller's location is available that location will be included in the notification. - Multiple SIP URIs can be included as a comma-separated list. For example, `-NotificationUri sip:security@litwareinc.com,sip:kmyer@litwareinc.com`. Note that, with the release of Skype for Business Server distribution lists can now be configured as a notification URI. - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - PstnUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The public switched telephone network (PSTN) usage that will be used to determine which voice route will be used to route 911 calls from clients using this profile. The route associated with this usage should point to a SIP trunk dedicated to emergency calls. - The usage must already exist in the global list of PSTN usages. Call the `Get-CsPstnUsage` cmdlet to retrieve a list of usages. To create a new usage, call the `Set-CsPstnUsage` cmdlet. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the location policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - UseLocationForE911Only - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Location information can be used by the Skype for Business Server client for various reasons (such as notifying teammates of current location). Set this value to True to ensure location information is available only for use with an emergency call. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsLocationPolicy - - ConferenceMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If a value is specified for the ConferenceUri parameter, the ConferenceMode parameter determines whether a third party can participate in the call or can only listen in. Available values are: - Oneway: Third party can only listen to the conversation between the caller and the Public Safety Answering Point (PSAP) operator. - Twoway: Third party can listen in and participate in the call between the caller and the PSAP operator. - - ConferenceModeEnum - - ConferenceModeEnum - - - None - - - ConferenceUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The SIP Uniform Resource Identifier (URI), in this case the telephone number, of a third party that will be conferenced in to any emergency calls that are made. For example, the company security office could receive a call when an emergency call is made and listen in or participate in that call (depending on the value of the ConferenceMode property). - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A detailed description of this location. For example, "Building 30, 3rd Floor, Northeast corner". - - String - - String - - - None - - - EmergencyDialMask - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number that is dialed that will be translated into the value of the EmergencyDialString property. For example, if EmergencyDialMask has a value of "212" and EmergencyDialString has a value of "911", if a user dials 212 the call will be made to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country/region with a different emergency number attempts to dial that country/region's number rather than the number for the country/region they're currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, -EmergencyDialMask "212;414". - IMPORTANT. Ensure that the specified dial mask value is not the same as a number in a call park orbit range. Call park routing will take precedence over emergency dial string conversion. To see the existing call park orbit ranges, call the `Get-CsCallParkOrbit` cmdlet. - Maximum length of the string is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - EmergencyDialString - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The number that is dialed to reach emergency services. In the United States this value is "911". - The string must be made of the digits 0 through 9 and can be from 1 to 10 characters in length. - - String - - String - - - None - - - EmergencyNumbers - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EmergencyNumbers Description}} - - PSListModifier - - PSListModifier - - - None - - - EnhancedEmergencyServiceDisclaimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Text value containing information that will be displayed to users who are connected from locations that cannot be resolved by the location mapping (wiremap) who choose not to enter their location manually. To remove a service disclaimer from a location policy set this property to a null value: - `-EnhancedEmergencyServiceDisclaimer $Null` - Location policies, and the EnhancedEmergencyServiceDisclaimer property, should be used in Skype for Business Server to set disclaimers for the E9-1-1 service. By using location policies to set these disclaimers, you can create different disclaimers for different locales or different sets of users. - - String - - String - - - None - - - EnhancedEmergencyServicesEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether the users associated with this policy are enabled for E9-1-1. Set the value to True to enable E9-1-1, so Skype for Business Server clients will retrieve location information on registration and include that information when an emergency call is made. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a location policy object. This object must be of type Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy, which can be retrieved by calling the `Get-CsLocationPolicy` cmdlet. Retrieve this object, change the properties in memory and then pass the object reference as a value to this parameter to update that location policy. - - PSObject - - PSObject - - - None - - - LocationRefreshInterval - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the amount of time (in hours) between client requests for Location Information service location update. The LocationRefreshInterval can be set to any value between 1 and 12; the default value is 4. - - Int64 - - Int64 - - - None - - - LocationRequired - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If the client was unable to retrieve a location from the location configuration database, the user can be prompted to manually enter a location. This parameter accepts the following values: - - no: The user will not be prompted for a location. When a call is made with no location information, the Emergency Service Provider will answer the call and ask for a location. - - yes: The user will be prompted to input location information when the client registers at a new location. The user can dismiss the prompt without entering any information. If information is entered, a call made to 911 will first be answered by the Emergency Service Provider to verify the location before being routed to the PSAP (that is, the 911 operator). - - disclaimer: This option is the same as yes except that if the user dismisses the prompt disclaimer text will be displayed that can alert the user to the consequences of declining to enter location information. (The disclaimer text must be set by calling the `Set-CsEnhancedEmergencyServiceDisclaimer` cmdlet.) - - This value is ignored if EnhancedEmergencyServicesEnabled is set to False (the default). Users will not be prompted for location information. - - LocationRequiredEnum - - LocationRequiredEnum - - - None - - - NotificationUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - One or more SIP Uniform Resource Identifiers (URIs) to be notified when an emergency call is made. For example, the company security office could be notified through an instant message whenever an emergency call is made. If the caller's location is available that location will be included in the notification. - Multiple SIP URIs can be included as a comma-separated list. For example, `-NotificationUri sip:security@litwareinc.com,sip:kmyer@litwareinc.com`. Note that, with the release of Skype for Business Server distribution lists can now be configured as a notification URI. - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - PstnUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The public switched telephone network (PSTN) usage that will be used to determine which voice route will be used to route 911 calls from clients using this profile. The route associated with this usage should point to a SIP trunk dedicated to emergency calls. - The usage must already exist in the global list of PSTN usages. Call the `Get-CsPstnUsage` cmdlet to retrieve a list of usages. To create a new usage, call the `Set-CsPstnUsage` cmdlet. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the location policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - UseLocationForE911Only - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Location information can be used by the Skype for Business Server client for various reasons (such as notifying teammates of current location). Set this value to True to ensure location information is available only for use with an emergency call. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - ConferenceMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If a value is specified for the ConferenceUri parameter, the ConferenceMode parameter determines whether a third party can participate in the call or can only listen in. Available values are: - Oneway: Third party can only listen to the conversation between the caller and the Public Safety Answering Point (PSAP) operator. - Twoway: Third party can listen in and participate in the call between the caller and the PSAP operator. - - ConferenceModeEnum - - ConferenceModeEnum - - - None - - - ConferenceUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The SIP Uniform Resource Identifier (URI), in this case the telephone number, of a third party that will be conferenced in to any emergency calls that are made. For example, the company security office could receive a call when an emergency call is made and listen in or participate in that call (depending on the value of the ConferenceMode property). - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A detailed description of this location. For example, "Building 30, 3rd Floor, Northeast corner". - - String - - String - - - None - - - EmergencyDialMask - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A number that is dialed that will be translated into the value of the EmergencyDialString property. For example, if EmergencyDialMask has a value of "212" and EmergencyDialString has a value of "911", if a user dials 212 the call will be made to 911. This allows for alternate emergency numbers to be dialed and still have the call reach emergency services (for example, if someone from a country/region with a different emergency number attempts to dial that country/region's number rather than the number for the country/region they're currently in). You can define multiple emergency dial masks by separating the values with semicolons. For example, -EmergencyDialMask "212;414". - IMPORTANT. Ensure that the specified dial mask value is not the same as a number in a call park orbit range. Call park routing will take precedence over emergency dial string conversion. To see the existing call park orbit ranges, call the `Get-CsCallParkOrbit` cmdlet. - Maximum length of the string is 100 characters. Each character must be a digit 0 through 9. - - String - - String - - - None - - - EmergencyDialString - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The number that is dialed to reach emergency services. In the United States this value is "911". - The string must be made of the digits 0 through 9 and can be from 1 to 10 characters in length. - - String - - String - - - None - - - EmergencyNumbers - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EmergencyNumbers Description}} - - PSListModifier - - PSListModifier - - - None - - - EnhancedEmergencyServiceDisclaimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Text value containing information that will be displayed to users who are connected from locations that cannot be resolved by the location mapping (wiremap) who choose not to enter their location manually. To remove a service disclaimer from a location policy set this property to a null value: - `-EnhancedEmergencyServiceDisclaimer $Null` - Location policies, and the EnhancedEmergencyServiceDisclaimer property, should be used in Skype for Business Server to set disclaimers for the E9-1-1 service. By using location policies to set these disclaimers, you can create different disclaimers for different locales or different sets of users. - - String - - String - - - None - - - EnhancedEmergencyServicesEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies whether the users associated with this policy are enabled for E9-1-1. Set the value to True to enable E9-1-1, so Skype for Business Server clients will retrieve location information on registration and include that information when an emergency call is made. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier of the location policy you want to modify. To modify the global location policy, use a value of Global. For a policy created at the site scope, this value will be in the form site:<site name>, where site name is the name of a site defined in the Skype for Business Server deployment (for example, site:Redmond). For a policy created at the per-user scope, this value will simply be the name of the policy, such as Reno. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a location policy object. This object must be of type Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy, which can be retrieved by calling the `Get-CsLocationPolicy` cmdlet. Retrieve this object, change the properties in memory and then pass the object reference as a value to this parameter to update that location policy. - - PSObject - - PSObject - - - None - - - LocationRefreshInterval - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the amount of time (in hours) between client requests for Location Information service location update. The LocationRefreshInterval can be set to any value between 1 and 12; the default value is 4. - - Int64 - - Int64 - - - None - - - LocationRequired - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If the client was unable to retrieve a location from the location configuration database, the user can be prompted to manually enter a location. This parameter accepts the following values: - - no: The user will not be prompted for a location. When a call is made with no location information, the Emergency Service Provider will answer the call and ask for a location. - - yes: The user will be prompted to input location information when the client registers at a new location. The user can dismiss the prompt without entering any information. If information is entered, a call made to 911 will first be answered by the Emergency Service Provider to verify the location before being routed to the PSAP (that is, the 911 operator). - - disclaimer: This option is the same as yes except that if the user dismisses the prompt disclaimer text will be displayed that can alert the user to the consequences of declining to enter location information. (The disclaimer text must be set by calling the `Set-CsEnhancedEmergencyServiceDisclaimer` cmdlet.) - - This value is ignored if EnhancedEmergencyServicesEnabled is set to False (the default). Users will not be prompted for location information. - - LocationRequiredEnum - - LocationRequiredEnum - - - None - - - NotificationUri - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - One or more SIP Uniform Resource Identifiers (URIs) to be notified when an emergency call is made. For example, the company security office could be notified through an instant message whenever an emergency call is made. If the caller's location is available that location will be included in the notification. - Multiple SIP URIs can be included as a comma-separated list. For example, `-NotificationUri sip:security@litwareinc.com,sip:kmyer@litwareinc.com`. Note that, with the release of Skype for Business Server distribution lists can now be configured as a notification URI. - The string must be from 1 to 256 characters in length and must begin with the prefix sip:. - - String - - String - - - None - - - PstnUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The public switched telephone network (PSTN) usage that will be used to determine which voice route will be used to route 911 calls from clients using this profile. The route associated with this usage should point to a SIP trunk dedicated to emergency calls. - The usage must already exist in the global list of PSTN usages. Call the `Get-CsPstnUsage` cmdlet to retrieve a list of usages. To create a new usage, call the `Set-CsPstnUsage` cmdlet. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account for whom the location policy is being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your Skype for Business Online tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - UseLocationForE911Only - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Location information can be used by the Skype for Business Server client for various reasons (such as notifying teammates of current location). Set this value to True to ensure location information is available only for use with an emergency call. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy - - - Accepts pipelined input of location policy objects. - - - - - - - None - - - This cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Location.LocationPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsLocationPolicy -Identity site:Redmond -EnhancedEmergencyServicesEnabled $True - - This command uses the `Set-CsLocationPolicy` cmdlet to modify the location policy with the Identity site:Redmond. (In other words, it modifies the location policy applied to the Redmond site.) In this case, the command sets the value of the EnhancedEmergencyServicesEnabled property to True, which will enable E9-1-1 functionality for all users connected to (in this case) the Redmond site. - - - - -------------------------- Example 2 -------------------------- - Get-CsLocationPolicy | Where-Object {$_.ConferenceUri -ne $null} | Set-CsLocationPolicy -ConferenceMode twoway - - Example 2 modifies all the location policies in use in the organization that have defined a conferencing URI to have a conferencing mode of two-way. To carry out this task, the command first uses the `Get-CsLocationPolicy` cmdlet to return a collection of all the location policies currently defined. This collection is then piped to the `Where-Object` cmdlet to narrow the collection down to only those location policies that have a ConferenceUri property that is not empty (not equal to Null). This results in a collection of location policies that have ConferenceUri values. This collection is then piped to the `Set-CsLocationPolicy` cmdlet, which then modifies the value of the ConferenceMode property for each policy in the collection by setting the value to twoway. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-cslocationpolicy - - - New-CsLocationPolicy - - - - Remove-CsLocationPolicy - - - - Get-CsLocationPolicy - - - - Grant-CsLocationPolicy - - - - Test-CsLocationPolicy - - - - Get-CsPstnUsage - - - - Get-CsVoiceRoute - - - - - - - Set-CsMeetingConfiguration - Set - CsMeetingConfiguration - - `Set-CsMeetingConfiguration` enables you to modify the meeting configuration settings currently in use in your organization. Meeting configuration settings help dictate the type of meetings (also called conferences) that users can create, and also control how (or even if) anonymous users and dial-in conferencing users can join these meetings. Note that these settings only affect scheduled meetings; they do not affect ad-hoc meetings created by clicking the Meet Now option in Skype for Business. This cmdlet was introduced in Lync Server 2010. - - - - Meetings (also called conferences) are an integral part of Skype for Business Server. The CsMeetingConfiguration cmdlets enable administrators to control the type of meetings that users can create and to determine how meetings deal with anonymous users and dial-in conferencing users. For example, you can configure meetings so that anyone dialing in over the public switched telephone network (PSTN) is automatically admitted to the meeting. Alternatively, you can configure meetings so that dial-in users are not automatically admitted the meeting, but are instead routed to the meeting lobby. These dial-in users remain on hold in the lobby until a presenter admits them to the meeting. - As noted previously, these settings only affect scheduled meetings; they do not affect ad-hoc meetings created by clicking Meet Now in Microsoft Lync. When you create a meeting by clicking Meet Now, participant access is automatically open to all everyone and anonymous users can join the meeting without having to wait in the lobby. This will occur regardless of how you have configured your meeting settings using the CsMeetingConfiguration cmdlets. - The `Set-CsMeetingConfiguration` cmdlet enables you to modify any of the meeting configuration settings currently in use in your organization. - - - - Set-CsMeetingConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of meeting configuration settings you want to modify. To refer to the global settings, use this syntax: -Identity global. To refer to a collection configured at the site scope, use syntax similar to this: -Identity "site:Redmond". Settings configured at the service scope can be referenced using syntax like this: -Identity "service:UserServer:atl-cs-001.litwareinc.com". - If this parameter is not specified, then the `Set-CsMeetingConfiguration` cmdlet will modify the global settings. - - XdsIdentity - - XdsIdentity - - - None - - - AdmitAnonymousUsersByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether meetings will, by default, allow attendance by anonymous users (that is, unauthenticated users). Set this value to True if you would like new meetings to allow for attendance by anonymous users by default. Set this value to False if you would prefer that, by default, new meetings do not allow for attendance by anonymous users. The default value is True. - - Boolean - - Boolean - - - None - - - AllowCloudRecordingService - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Skype for Business Online - Determines whether or not users are allowed to record conference proceedings. The default value is True. - - Boolean - - Boolean - - - None - - - AssignedConferenceTypeByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether new meetings will be configured, by default, as public meetings. Set this value to True to use public meetings by default; set this value to False to use private meetings by default. The default value is True. - - Boolean - - Boolean - - - None - - - CustomFooterText - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Text to be used on custom meeting invitations. Multiple lines are supported using the Enter key. - - String - - String - - - None - - - DesignateAsPresenter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates which users (besides the meeting organizer) are automatically designated as presenters when they join a meeting. Valid choices are: None; Company and Everyone. By default, DesignateAsPresenter is set to Company, meaning everyone in your organization will have presenter rights the moment they join a meeting. Note: When DesignateAsPresenter is set to Everyone, only dynamic meetings will comply with this setting. Static meetings do not allow Everyone to join as a Presenter. - - DesignateAsPresenter - - DesignateAsPresenter - - - Company - - - EnableAssignedConferenceType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are allowed to schedule public meetings. With a public meeting, the conference ID and the meeting link remain consistent each time the meeting is held. With a private meeting, the conference ID and meeting link change from meeting to meeting. The default value is True. - - Boolean - - Boolean - - - None - - - EnableMeetingReport - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - HelpURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website where users can obtain assistance on joining the meeting. - - String - - String - - - None - - - LegalURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website containing legal information and meeting disclaimers. - - String - - String - - - None - - - LogoURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL for the image to be used on custom meeting invitations. - - String - - String - - - None - - - PstnCallersBypassLobby - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users dialing in over a public switched telephone network (PSTN) phone line should automatically be admitted to a meeting. If set to True ($True), PSTN callers will automatically be admitted to the meeting. If set to False ($False), then PSTN callers will initially be routed to the conference lobby. At that point, they will have to wait, on hold, until a conference presenter grants them access to the meeting. The default value is True. - - Boolean - - Boolean - - - None - - - RequireRoomSystemsAuthorization - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) all users must be authenticated before they can join a meeting using the Skype for Business Room System. The default value is False ($False). - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose meeting configuration settings are being modified. - For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UserUriFormatForStUser - - > Applicable: Skype for Business Online - PARAMVALUE: String - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsMeetingConfiguration - - AdmitAnonymousUsersByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether meetings will, by default, allow attendance by anonymous users (that is, unauthenticated users). Set this value to True if you would like new meetings to allow for attendance by anonymous users by default. Set this value to False if you would prefer that, by default, new meetings do not allow for attendance by anonymous users. The default value is True. - - Boolean - - Boolean - - - None - - - AllowCloudRecordingService - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Skype for Business Online - Determines whether or not users are allowed to record conference proceedings. The default value is True. - - Boolean - - Boolean - - - None - - - AssignedConferenceTypeByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether new meetings will be configured, by default, as public meetings. Set this value to True to use public meetings by default; set this value to False to use private meetings by default. The default value is True. - - Boolean - - Boolean - - - None - - - CustomFooterText - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Text to be used on custom meeting invitations. Multiple lines are supported using the Enter key. - - String - - String - - - None - - - DesignateAsPresenter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates which users (besides the meeting organizer) are automatically designated as presenters when they join a meeting. Valid choices are: None; Company and Everyone. By default, DesignateAsPresenter is set to Company, meaning everyone in your organization will have presenter rights the moment they join a meeting. Note: When DesignateAsPresenter is set to Everyone, only dynamic meetings will comply with this setting. Static meetings do not allow Everyone to join as a Presenter. - - DesignateAsPresenter - - DesignateAsPresenter - - - Company - - - EnableAssignedConferenceType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are allowed to schedule public meetings. With a public meeting, the conference ID and the meeting link remain consistent each time the meeting is held. With a private meeting, the conference ID and meeting link change from meeting to meeting. The default value is True. - - Boolean - - Boolean - - - None - - - EnableMeetingReport - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - HelpURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website where users can obtain assistance on joining the meeting. - - String - - String - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LegalURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website containing legal information and meeting disclaimers. - - String - - String - - - None - - - LogoURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL for the image to be used on custom meeting invitations. - - String - - String - - - None - - - PstnCallersBypassLobby - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users dialing in over a public switched telephone network (PSTN) phone line should automatically be admitted to a meeting. If set to True ($True), PSTN callers will automatically be admitted to the meeting. If set to False ($False), then PSTN callers will initially be routed to the conference lobby. At that point, they will have to wait, on hold, until a conference presenter grants them access to the meeting. The default value is True. - - Boolean - - Boolean - - - None - - - RequireRoomSystemsAuthorization - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) all users must be authenticated before they can join a meeting using the Skype for Business Room System. The default value is False ($False). - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose meeting configuration settings are being modified. - For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UserUriFormatForStUser - - > Applicable: Skype for Business Online - PARAMVALUE: String - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AdmitAnonymousUsersByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether meetings will, by default, allow attendance by anonymous users (that is, unauthenticated users). Set this value to True if you would like new meetings to allow for attendance by anonymous users by default. Set this value to False if you would prefer that, by default, new meetings do not allow for attendance by anonymous users. The default value is True. - - Boolean - - Boolean - - - None - - - AllowCloudRecordingService - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AllowConferenceRecording - - > Applicable: Skype for Business Online - Determines whether or not users are allowed to record conference proceedings. The default value is True. - - Boolean - - Boolean - - - None - - - AssignedConferenceTypeByDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether new meetings will be configured, by default, as public meetings. Set this value to True to use public meetings by default; set this value to False to use private meetings by default. The default value is True. - - Boolean - - Boolean - - - None - - - CustomFooterText - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Text to be used on custom meeting invitations. Multiple lines are supported using the Enter key. - - String - - String - - - None - - - DesignateAsPresenter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates which users (besides the meeting organizer) are automatically designated as presenters when they join a meeting. Valid choices are: None; Company and Everyone. By default, DesignateAsPresenter is set to Company, meaning everyone in your organization will have presenter rights the moment they join a meeting. Note: When DesignateAsPresenter is set to Everyone, only dynamic meetings will comply with this setting. Static meetings do not allow Everyone to join as a Presenter. - - DesignateAsPresenter - - DesignateAsPresenter - - - Company - - - EnableAssignedConferenceType - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - This parameter is not available in Skype for Business Online. - Indicates whether users are allowed to schedule public meetings. With a public meeting, the conference ID and the meeting link remain consistent each time the meeting is held. With a private meeting, the conference ID and meeting link change from meeting to meeting. The default value is True. - - Boolean - - Boolean - - - None - - - EnableMeetingReport - - > Applicable: Skype for Business Online - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HelpURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website where users can obtain assistance on joining the meeting. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the unique identifier for the collection of meeting configuration settings you want to modify. To refer to the global settings, use this syntax: -Identity global. To refer to a collection configured at the site scope, use syntax similar to this: -Identity "site:Redmond". Settings configured at the service scope can be referenced using syntax like this: -Identity "service:UserServer:atl-cs-001.litwareinc.com". - If this parameter is not specified, then the `Set-CsMeetingConfiguration` cmdlet will modify the global settings. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LegalURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL to a website containing legal information and meeting disclaimers. - - String - - String - - - None - - - LogoURL - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - URL for the image to be used on custom meeting invitations. - - String - - String - - - None - - - PstnCallersBypassLobby - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether users dialing in over a public switched telephone network (PSTN) phone line should automatically be admitted to a meeting. If set to True ($True), PSTN callers will automatically be admitted to the meeting. If set to False ($False), then PSTN callers will initially be routed to the conference lobby. At that point, they will have to wait, on hold, until a conference presenter grants them access to the meeting. The default value is True. - - Boolean - - Boolean - - - None - - - RequireRoomSystemsAuthorization - - > Applicable: Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True ($True) all users must be authenticated before they can join a meeting using the Skype for Business Room System. The default value is False ($False). - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Office 365 tenant account whose meeting configuration settings are being modified. - For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return the tenant ID for each of your tenants by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UserUriFormatForStUser - - > Applicable: Skype for Business Online - PARAMVALUE: String - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.MeetingConfiguration - - - The `Set-CsMeetingConfiguration` cmdlet accepts pipelined instances of the meeting configuration object. - - - - - - - None - - - The `Set-CsMeetingConfiguration` cmdlet does not return any objects or values. Instead, the cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.MeetingConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsMeetingConfiguration -Identity site:Redmond -DesignateAsPresenter Everyone - - The command shown in Example 1 modifies the meeting configuration settings assigned to the Redmond site (-Identity site:Redmond). In this case, the value of the DesignateAsPresenter property is set to Everyone. - - - - -------------------------- Example 2 -------------------------- - Get-CsMeetingConfiguration | Set-CsMeetingConfiguration -DesignateAsPresenter Everyone - - The command shown in Example 2 is a variation of the command shown in Example 1. In this case, however, the value of the DesignateAsPresenter property is modified for all the meeting configuration settings in use in the organization. To do this, the `Get-CsMeetingConfiguration` cmdlet is called without any parameters in order to return a collection of all the meeting configuration settings currently in use. This collection is then piped to the `Set-CsMeetingConfiguration` cmdlet, which modifies the DesignateAsPresenter property for each item in the collection. - - - - -------------------------- Example 3 -------------------------- - Get-CsMeetingConfiguration | Where-Object {$_.AdmitAnonymousUsersByDefault -eq $False} | Set-CsMeetingConfiguration -PstnCallersBypassLobby $True - - In Example 3, all the meeting configuration settings that do not allow the default admission of anonymous users are modified. To perform this task, the command first calls the `Get-CsMeetingConfiguration` cmdlet to return a collection of all the meeting configuration settings currently in use. This collection is then piped to the `Where-Object` cmdlet, which picks out only those settings where the AdmitAnonymousUsersByDefault property is equal to False. In turn, this filtered collection is piped to the `Set-CsMeetingConfiguration` cmdlet, which takes each item in the collection and sets the PstnCallersBypassLobby property to True. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csmeetingconfiguration - - - Get-CsMeetingConfiguration - - - - New-CsMeetingConfiguration - - - - Remove-CsMeetingConfiguration - - - - Update-CsTenantMeetingUrl - - - - - - - Set-CsOnlineAudioConferencingRoutingPolicy - Set - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet sets the Online Audio Conferencing Routing Policy for users in the tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio conferencing routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio conferencing routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineAudioConferencingRoutingPolicy -Identity "Policy 1" -OnlinePstnUsages "US and Canada" - - Sets the Online Audio Conferencing Routing Policy "Policy 1" value of "OnlinePstnUsages" to "US and Canada". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Set-CsOnlineDialInConferencingTenantSettings - Set - CsOnlineDialInConferencingTenantSettings - - Use the `Set-CsOnlineDialInConferencingTenantSettings` to modify the tenant level settings of dial-in conferencing. Dial-in conferencing tenant settings control the conference experience of users and manage some conferencing administrative functions. - - - - Dial-in conferencing tenant settings control what functions are available during a conference call. For example, whether or not entries and exits from the call are announced. The settings also manage some of the administrative functions, such as when users get notification of administrative actions, like a PIN change. By contrast, the higher level dial-in conferencing configuration only maintains a flag for whether dial-in conferencing is enabled for your organization. For more information, see `Get-CsOnlineDialinConferencingTenantConfiguration`. - There is always a single instance of the dial-in conferencing settings per tenant. You can modify the settings using `Set-CsOnlineDialInConferencingTenantSettings` and revert those settings to their defaults by using `Remove-CsOnlineDialInConferencingTenantSettings`. - The following parameters are not applicable to Teams: EnableDialOutJoinConfirmation, IncludeTollFreeNumberInMeetingInvites, MigrateServiceNumbersOnCrossForestMove, and UseUniqueConferenceIds - - - - Set-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - AllowedDialOutExternalDomains - - Used to specify which external domains are allowed for dial-out conferencing. - - Object - - Object - - - None - - - AllowFederatedUsersToDialOutToSelf - - Meeting participants can call themselves when they join a meeting. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowFederatedUsersToDialOutToThirdParty - - Specifies at this scope if dial out to third party participants is allowed. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowPSTNOnlyMeetingsByDefault - - > Applicable: Microsoft Teams - 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. - When AllowPSTNOnlyMeetingsByDefault is changed, the value of the "AllowPSTNOnlyMeetings" setting of currently enabled users doesn't change. The new default value will only be applied to users that are subsequently enabled for dial-in conferencing, or whose provider is changed to Microsoft. - The "AllowPSTNOnlyMeetings" setting of a user defines if unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide the organizer PIN when joining the meeting. - For more information on the "AllowPSTNOnlyMeetings" user setting, see `Set-CsOnlineDialInConferencingUser`. - - Boolean - - Boolean - - - None - - - AutomaticallyMigrateUserMeetings - - > Applicable: Microsoft Teams - Specifies if meetings of users in the tenant should automatically be rescheduled via the Meeting Migration Service when there's a change in the users' Cloud PSTN Confernecing coordinates, e.g. when a user is provisioned, de-provisoned, assigned a new default service number etc. If this is false, users will need to manually migrate their conferences using the Meeting Migration tool. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallyReplaceAcpProvider - - > Applicable: Microsoft Teams - Specifies if a user already enabled for a 3rd party Audio Conferencing Provider (ACP) should automatically be converted to Microsoft's Online DialIn Conferencing service when a license for Microsoft's service is assigned to the user. If this is false, tenant admins will need to manually provision the user with the Enable-CsOnlineDialInConferencingUser cmdlet with the -ReplaceProvider switch present. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallySendEmailsToUsers - - > Applicable: Microsoft Teams - 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. - User is enabled or disabled for dial-in conferencing. - The dial-in conferencing provider is changed either to Microsoft, or from Microsoft to another provider, or none. - The dial-in conferencing PIN is reset by the tenant administrator. - Changes to either the user's conference ID, or the user's default dial-in conference number. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - EnableDialOutJoinConfirmation - - Specifies if the callees need to confirm to join the conference call. If true, the callees will hear prompts to ask for confirmation to join the conference call, otherwise callees will join the conference call directly. - - Boolean - - Boolean - - - None - - - EnableEntryExitNotifications - - > Applicable: Microsoft Teams - 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. - This setting can be overridden on a meeting by meeting basis when a user joins a meeting via a Skype for Business client and modifies the Announce when people enter or leave setting on the Skype Meeting Options menu of a meeting. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Microsoft Teams - 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. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Microsoft Teams - Specifies if the Entry and Exit Announcement Uses names or tones only. PARAMVALUE: UseNames | ToneOnly - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IncludeTollFreeNumberInMeetingInvites - - > Applicable: Microsoft Teams - This parameter is obsolete and not functional. - - Boolean - - Boolean - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaskPstnNumbersType - - 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 (masked to external users) - - MaskedForAllUsers (masked for everyone) - - NoMasking (visible to everyone) - - String - - String - - - MaskedForExternalUsers - - - MigrateServiceNumbersOnCrossForestMove - - > Applicable: Microsoft Teams - 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. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PinLength - - > Applicable: Microsoft Teams - 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. - A user's PIN will only authenticate them as leaders for a meeting they scheduled. The PIN of a user that did not schedule the meeting will not enable that user to lead the meeting. - - UInt32 - - UInt32 - - - None - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - Specifies the email address to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. The email address needs to be in the form <UserAlias>@<Domain>. For example, "KenMyer@Contoso.com" or "Admin@Contoso.com". - The SendEmailFromAddress value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - Specifies the display name to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. - The SendEmailFromDisplayName value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromOverride - - > Applicable: Microsoft Teams - Specifies if the contact information on dial-in conferencing notifications will be the default generated by Office 365, or administrator defined values. Setting SendEmailFromOverride to $true enables the system to use the SendEmailFromAddress and SendEmailFromDisplayName parameter inputs as the "From" contact information. Setting this parameter to $false will cause email notifications to be sent with the system generated default. The default is $false. - SendEmailFromOverride can't be $true if SendEmailFromAddress and SendEmailFromDisplayName aren't specified. - If you want to change the email address information, you need to make sure that your inbound email policies allow for emails that come from the address specified by the SendEmailFromAddress parameter. - Note: The parameter has been deprecated and may be removed in future versions. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - UseUniqueConferenceIds - - > Applicable: Microsoft Teams - Specifies if Private Meetings are enabled for the users in this tenant. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - AllowedDialOutExternalDomains - - Used to specify which external domains are allowed for dial-out conferencing. - - Object - - Object - - - None - - - AllowFederatedUsersToDialOutToSelf - - Meeting participants can call themselves when they join a meeting. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowFederatedUsersToDialOutToThirdParty - - Specifies at this scope if dial out to third party participants is allowed. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowPSTNOnlyMeetingsByDefault - - > Applicable: Microsoft Teams - 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. - When AllowPSTNOnlyMeetingsByDefault is changed, the value of the "AllowPSTNOnlyMeetings" setting of currently enabled users doesn't change. The new default value will only be applied to users that are subsequently enabled for dial-in conferencing, or whose provider is changed to Microsoft. - The "AllowPSTNOnlyMeetings" setting of a user defines if unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide the organizer PIN when joining the meeting. - For more information on the "AllowPSTNOnlyMeetings" user setting, see `Set-CsOnlineDialInConferencingUser`. - - Boolean - - Boolean - - - None - - - AutomaticallyMigrateUserMeetings - - > Applicable: Microsoft Teams - Specifies if meetings of users in the tenant should automatically be rescheduled via the Meeting Migration Service when there's a change in the users' Cloud PSTN Confernecing coordinates, e.g. when a user is provisioned, de-provisoned, assigned a new default service number etc. If this is false, users will need to manually migrate their conferences using the Meeting Migration tool. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallyReplaceAcpProvider - - > Applicable: Microsoft Teams - Specifies if a user already enabled for a 3rd party Audio Conferencing Provider (ACP) should automatically be converted to Microsoft's Online DialIn Conferencing service when a license for Microsoft's service is assigned to the user. If this is false, tenant admins will need to manually provision the user with the Enable-CsOnlineDialInConferencingUser cmdlet with the -ReplaceProvider switch present. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallySendEmailsToUsers - - > Applicable: Microsoft Teams - 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. - User is enabled or disabled for dial-in conferencing. - The dial-in conferencing provider is changed either to Microsoft, or from Microsoft to another provider, or none. - The dial-in conferencing PIN is reset by the tenant administrator. - Changes to either the user's conference ID, or the user's default dial-in conference number. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - EnableDialOutJoinConfirmation - - Specifies if the callees need to confirm to join the conference call. If true, the callees will hear prompts to ask for confirmation to join the conference call, otherwise callees will join the conference call directly. - - Boolean - - Boolean - - - None - - - EnableEntryExitNotifications - - > Applicable: Microsoft Teams - 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. - This setting can be overridden on a meeting by meeting basis when a user joins a meeting via a Skype for Business client and modifies the Announce when people enter or leave setting on the Skype Meeting Options menu of a meeting. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Microsoft Teams - 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. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Microsoft Teams - Specifies if the Entry and Exit Announcement Uses names or tones only. PARAMVALUE: UseNames | ToneOnly - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - IncludeTollFreeNumberInMeetingInvites - - > Applicable: Microsoft Teams - This parameter is obsolete and not functional. - - Boolean - - Boolean - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaskPstnNumbersType - - 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 (masked to external users) - - MaskedForAllUsers (masked for everyone) - - NoMasking (visible to everyone) - - String - - String - - - MaskedForExternalUsers - - - MigrateServiceNumbersOnCrossForestMove - - > Applicable: Microsoft Teams - 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. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PinLength - - > Applicable: Microsoft Teams - 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. - A user's PIN will only authenticate them as leaders for a meeting they scheduled. The PIN of a user that did not schedule the meeting will not enable that user to lead the meeting. - - UInt32 - - UInt32 - - - None - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - Specifies the email address to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. The email address needs to be in the form <UserAlias>@<Domain>. For example, "KenMyer@Contoso.com" or "Admin@Contoso.com". - The SendEmailFromAddress value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - Specifies the display name to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. - The SendEmailFromDisplayName value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromOverride - - > Applicable: Microsoft Teams - Specifies if the contact information on dial-in conferencing notifications will be the default generated by Office 365, or administrator defined values. Setting SendEmailFromOverride to $true enables the system to use the SendEmailFromAddress and SendEmailFromDisplayName parameter inputs as the "From" contact information. Setting this parameter to $false will cause email notifications to be sent with the system generated default. The default is $false. - SendEmailFromOverride can't be $true if SendEmailFromAddress and SendEmailFromDisplayName aren't specified. - If you want to change the email address information, you need to make sure that your inbound email policies allow for emails that come from the address specified by the SendEmailFromAddress parameter. - Note: The parameter has been deprecated and may be removed in future versions. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - UseUniqueConferenceIds - - > Applicable: Microsoft Teams - Specifies if Private Meetings are enabled for the users in this tenant. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineDialInConferencingTenantSettings -EnableEntryExitNotifications $True -EnableNameRecording $True -PinLength 7 - - This example sets the tenant's conferencing settings to enable entry and exit notifications supported by name recording. The PIN length is set to 7. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineDialInConferencingTenantSettings -SendEmailFromOverride $true -SendEmailFromAddress admin@contoso.com -SendEmailFromDisplayName "Conferencing Administrator" - - This example defines the contact information to be used in dial-in conferencing email notifications and enables the default address to be overridden. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencingtenantsettings - - - Get-CsOnlineDialInConferencingTenantSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantsettings - - - Remove-CsOnlineDialInConferencingTenantSettings - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinedialinconferencingtenantsettings - - - - - - Set-CsOnlinePstnUsage - Set - CsOnlinePstnUsage - - Modifies a set of strings that identify the allowed online public switched telephone network (PSTN) usages. This cmdlet can be used to add usages to the list of online PSTN usages or remove usages from the list. - - - - Online PSTN usages are string values that are used for call authorization. An online PSTN usage links an online voice policy to a route. The `Set-CsOnlinePstnUsage` cmdlet is used to add or remove phone usages to or from the usage list. This list is global so it can be used by policies and routes throughout the tenant. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Set-CsOnlinePstnUsage - - Identity - - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Usage - - Contains a list of allowable usage strings. These entries can be any string value. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - String - - String - - - None - - - Usage - - Contains a list of allowable usage strings. These entries can be any string value. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Identity global -Usage @{add="International"} - - This command adds the string "International" to the current list of available PSTN usages. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Identity global -Usage @{remove="Local"} - - This command removes the string "Local" from the list of available PSTN usages. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Usage @{remove="Local"} - - The command in this example performs the exact same action as the command in Example 2: it removes the "Local" PSTN usage. This example shows the command without the Identity parameter specified. The only Identity available to the Set-CsOnlinePstnUsage cmdlet is the Global identity; omitting the Identity parameter defaults to Global. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Usage @{replace="International","Restricted"} - - This command replaces everything in the usage list with the values International and Restricted. All previously existing usages are removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstnusage - - - Get-CsOnlinePstnUsage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstnusage - - - - - - Set-CsOnlineVoicemailPolicy - Set - CsOnlineVoicemailPolicy - - Modifies an existing Online Voicemail policy. - - - - Cloud Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation. - By default, users enabled for Phone System will be enabled for Cloud Voicemail. The Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify the voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages. - - Voicemail transcription is enabled by default - - Transcription profanity masking is disabled by default - - Transcription translation is enabled by default - - Editing call answer rule settings is enabled by default - - Voicemail maximum recording length is set to 5 minutes by default - - Primary and secondary system prompt languages are set to null by default and the user's voicemail language setting is used - - Tenant admin would be able to create a customized online voicemail policy to match the organization's requirements. - - - - Set-CsOnlineVoicemailPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnableEditingCallAnswerRulesSetting - - Controls if editing call answer rule settings are enabled or disabled for a user. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscription - - Allows you to disable or enable voicemail transcription. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionProfanityMasking - - Allows you to disable or enable profanity masking for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionTranslation - - Allows you to disable or enable translation for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - MaximumRecordingLength - - A duration of voicemail maximum recording length. The length should be between 30 seconds to 10 minutes. - - Duration - - Duration - - - None - - - PostambleAudioFile - - The audio file to play to the caller after the user's voicemail greeting has played and before the caller is allowed to leave a voicemail message. - - String - - String - - - None - - - PreambleAudioFile - - The audio file to play to the caller before the user's voicemail greeting is played. - - String - - String - - - None - - - PreamblePostambleMandatory - - Is playing the Pre- or Post-amble mandatory before the caller can leave a message. - - Boolean - - Boolean - - - False - - - PrimarySystemPromptLanguage - - The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. See Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - SecondarySystemPromptLanguage - - The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. See Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - ShareData - - Specifies whether voicemail and transcription data are shared with the service for training and improving accuracy. Possible values are Defer and Deny. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnableEditingCallAnswerRulesSetting - - Controls if editing call answer rule settings are enabled or disabled for a user. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscription - - Allows you to disable or enable voicemail transcription. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionProfanityMasking - - Allows you to disable or enable profanity masking for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - EnableTranscriptionTranslation - - Allows you to disable or enable translation for the voicemail transcriptions. Possible values are $true or $false. - - Boolean - - Boolean - - - None - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - MaximumRecordingLength - - A duration of voicemail maximum recording length. The length should be between 30 seconds to 10 minutes. - - Duration - - Duration - - - None - - - PostambleAudioFile - - The audio file to play to the caller after the user's voicemail greeting has played and before the caller is allowed to leave a voicemail message. - - String - - String - - - None - - - PreambleAudioFile - - The audio file to play to the caller before the user's voicemail greeting is played. - - String - - String - - - None - - - PreamblePostambleMandatory - - Is playing the Pre- or Post-amble mandatory before the caller can leave a message. - - Boolean - - Boolean - - - False - - - PrimarySystemPromptLanguage - - The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. See Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - SecondarySystemPromptLanguage - - The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. See Set-CsOnlineVoicemailUserSettings (https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings)-PromptLanguage for supported languages. - - String - - String - - - None - - - ShareData - - Specifies whether voicemail and transcription data are shared with the service for training and improving accuracy. Possible values are Defer and Deny. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineVoicemailPolicy -Identity "CustomOnlineVoicemailPolicy" -MaximumRecordingLength ([TimeSpan]::FromSeconds(60)) - - The command shown in Example 1 changes the MaximumRecordingLength to 60 seconds for the per-user online voicemail policy CustomOnlineVoicemailPolicy. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineVoicemailPolicy -EnableTranscriptionProfanityMasking $false - - The command shown in Example 2 changes the EnableTranscriptionProfanityMasking to false for tenant level global online voicemail policy when calling without Identity parameter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - Get-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - New-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Remove-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - Grant-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - - - - Set-CsOnlineVoiceRoute - Set - CsOnlineVoiceRoute - - Modifies an online voice route. Online voice routes contain instructions that tell Microsoft Teams how to route calls from Microsoft or Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - - - - Use this cmdlet to modify an existing online voice route. Online voice routes are associated with online voice policies through online public switched telephone network (PSTN) usages. A online voice route includes a regular expression that identifies which phone numbers will be routed through a given voice route: phone numbers matching the regular expression will be routed through this route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Set-CsOnlineVoiceRoute - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this phone route is for. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. For example, the default number pattern, [0-9]{10}, specifies a 10-digit number containing any digits 0 through 9. - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A description of what this phone route is for. - - String - - String - - - None - - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. For example, the default number pattern, [0-9]{10}, specifies a 10-digit number containing any digits 0 through 9. - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -Description "Test Route" - - This command sets the Description of the Route1 online voice route to "Test Route." - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add="Long Distance"} - - The command in this example modifies the online voice route with the identity Route1 to add the online PSTN usage Long Distance to the list of usages for this voice route. Long Distance must be in the list of global online PSTN usages (which can be retrieved with a call to the `Get-CsOnlinePstnUsage` cmdlet). - - - - -------------------------- Example 3 -------------------------- - PS C:\> $x = (Get-CsOnlinePstnUsage).Usage - -PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{replace=$x} - - This example modifies the online voice route named Route1 to populate that route's list of online PSTN usages with all the existing usages for the organization. The first command in this example retrieves the list of global online PSTN usages. Notice that the call to the `Get-CsOnlinePstnUsage` cmdlet is in parentheses; this means that we first retrieve an object containing PSTN usage information. (Because there is only one--global--PSTN usage, only one object will be retrieved.) The command then retrieves the Usage property of this object. That property, which contains a list of online PSTN usages, is assigned to the variable $x. In the second line of this example, the Set-CsOnlineVoiceRoute cmdlet is called to modify the online voice route with the identity Route1. Notice the value passed to the OnlinePstnUsages parameter: @{replace=$x}. This value says to replace everything in the OnlinePstnUsages list for this route with the contents of $x, which contain the online PSTN usages list retrieved in line 1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - Set-CsOnlineVoiceRoutingPolicy - Set - CsOnlineVoiceRoutingPolicy - - Modifies an existing online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Set-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. Online voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - If you do not specify an Identity, then the `Set-CsOnlineVoiceRoutingPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet.) - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. Online voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - If you do not specify an Identity, then the `Set-CsOnlineVoiceRoutingPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet.) - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages @{Add="Long Distance"} - - The command shown in Example 1 adds the online PSTN usage "Long Distance" to the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages @{Remove="Local"} - - In Example 2, the online PSTN usage "Local" is removed from the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Local"} | Set-CsOnlineVoiceRoutingPolicy -OnlinePstnUsages @{Remove="Local"} - - Example 3 removes the online PSTN usage "Local" from all the online voice routing policies that include that usage. In order to do this, the command first calls the `Get-CsOnlineVoiceRoutingPolicy` cmdlet without any parameters in order to return a collection of all the available online voice routing policies. That collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the "Local" usage. Those policies are then piped to the `Set-CsOnlineVoiceRoutingPolicy` cmdlet, which deletes the Local usage from each policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Set-CsPresenceProvider - Set - CsPresenceProvider - - Modifies a presence provider configured for use in the organization. Presence providers represent the PresenceProviders property of a collection of user services configuration settings. This cmdlet was introduced in Lync Server 2013. - - - - The CsPresenceProvider cmdlets are used to manage the PresenceProviders property found in the User Services configuration settings. Among other things, these settings are used to maintain presence information, including a collection of authorized presence providers. That collection is stored in the PresenceProviders property. - The `Set-CsPresenceProvider` cmdlet can be used to modify the FQDN of a presence provider currently configured for use in the organization. - Skype for Business Server Control Panel: The functions carried out by the `Set-CsPresenceProvider` cmdlet are not available in the Skype for Business Server Control Panel. - - - - Set-CsPresenceProvider - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the presence provider to be modified. The Identity of a presence provider is composed of two parts: the scope (Parent) where the rule has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider Fqdn. To modify a presence provider at the global scope use syntax similar to this: - `-Identity "global/fabrikam.com"` - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsPresenceProvider - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the presence provider to be modified. The Identity of a presence provider is composed of two parts: the scope (Parent) where the rule has been applied (for example, service:UserServer:atl-cs-001.litwareinc.com) and the provider Fqdn. To modify a presence provider at the global scope use syntax similar to this: - `-Identity "global/fabrikam.com"` - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated - - - The `Set-CsPresenceProvider` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated object. - - - - - - - None - - - Instead, the `Set-CsPresenceProvider` cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PresenceProvider#Decorated object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = Get-CsPresenceProvider -Identity "global/contoso.com" - -$x.Fqdn = "contoso2.com" - -Set-CsPresenceProvider -Instance $x - - The commands shown in Example 1 demonstrate how you can use the `Set-CsPresenceProvider` cmdlet to modify the FQDN of an existing presence provider. To do this, the first command in the example uses the `Get-CsPresenceProvider` cmdlet to create an object reference to the presence provider with the Identity "global/contoso.com". This object reference is stored in the variable $x. - In the second command, the FQDN property of the object reference is set to contoso2.com, the new FQDN for the presence provider. After the FQDN property has been configured, the `Set-CsPresenceProvider` cmdlet is used, along with the Instance property, to write these changes to the global collection of User Services configuration settings. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-cspresenceprovider - - - Get-CsPresenceProvider - - - - Get-CsUserServicesConfiguration - - - - New-CsPresenceProvider - - - - Remove-CsPresenceProvider - - - - - - - Set-CsPrivacyConfiguration - Set - CsPrivacyConfiguration - - Modifies an existing set of privacy configuration settings. Privacy configuration settings help determine how much information users make available to other users. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server gives users the opportunity to share a wealth of presence information with other people: they can publish a photograph of themselves; they can provide detailed location information; they can have presence information automatically made available to everyone in the organization (as opposed to having this information available only to people on their Contacts list). - Some users will welcome the opportunity to make this information available to their colleagues; other users might be more reluctant to share this data. (For example, many people might be hesitant about having their photo included in their presence data.) As a general rule, users have control over what information they will (or will not) share; for example, users can select or clear a check box in order to control whether or not their location information is shared with others. In addition, the privacy configuration cmdlets enable administrators to manage privacy settings for their users. In some cases, administrators can enable or disable settings; for example, if the property AutoInitiateContacts is set to True, then team members will automatically be added to each user's Contacts list; if set to False, team members will not be automatically be added to each user's Contacts list. - In other cases, administrators can configure the default values in Skype for Business while still giving users the right to change these values. For example, by default location data is published for users, although users do have the right to stop location publication. By setting the PublishLocationDataByDefault property to False, administrators can change this behavior: in that case, location data will not be published by default, although users will still have the right to publish this data if they choose. - Privacy configuration settings can be applied at the global scope, the site scope, and at the service scope (albeit only for the User Server service). The `Set-CsPrivacyConfiguration` cmdlet enables you to modify any of the privacy configuration settings currently in use in your organization. - - - - Set-CsPrivacyConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the privacy configuration settings to be modified. To modify the global settings, use this syntax: - `-Identity global` - To modify settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:Redmond-UserServices-1` - Note that privacy settings can only be applied to the User Server service. An error will occur if you try to apply these settings to any other service. - If this parameter is not specified then the global settings will be updated when you call the `Set-CsPrivacyConfiguration` cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - AutoInitiateContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, Skype for Business will automatically add your manager and your direct reports to your Contacts list. The default value is True. - - Boolean - - Boolean - - - None - - - DisplayPublishedPhotoDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, the user's photo will automatically be published in Skype for Business. If False, the user's photo will not be available unless he or she explicitly selects the option Let others see my photo. The default value is True. - - Boolean - - Boolean - - - None - - - EnablePrivacyMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, gives users the opportunity to enable the advanced privacy mode. In advanced privacy mode, only people on your Contacts list will be allowed to view your presence information. If False, your presence information will be available to anyone in your organization. The default value is False. - For information about privacy mode in Microsoft Teams, see User presence in Teams (/microsoftteams/presence-admins). - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - PublishLocationDataDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, location data will automatically be published in Skype for Business. If False, location data will not be available unless the user explicitly selects the option Show Contacts My Location. The default value is True. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsPrivacyConfiguration - - AutoInitiateContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, Skype for Business will automatically add your manager and your direct reports to your Contacts list. The default value is True. - - Boolean - - Boolean - - - None - - - DisplayPublishedPhotoDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, the user's photo will automatically be published in Skype for Business. If False, the user's photo will not be available unless he or she explicitly selects the option Let others see my photo. The default value is True. - - Boolean - - Boolean - - - None - - - EnablePrivacyMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, gives users the opportunity to enable the advanced privacy mode. In advanced privacy mode, only people on your Contacts list will be allowed to view your presence information. If False, your presence information will be available to anyone in your organization. The default value is False. - For information about privacy mode in Microsoft Teams, see User presence in Teams (/microsoftteams/presence-admins). - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - PublishLocationDataDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, location data will automatically be published in Skype for Business. If False, location data will not be available unless the user explicitly selects the option Show Contacts My Location. The default value is True. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AutoInitiateContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, Skype for Business will automatically add your manager and your direct reports to your Contacts list. The default value is True. - - Boolean - - Boolean - - - None - - - DisplayPublishedPhotoDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, the user's photo will automatically be published in Skype for Business. If False, the user's photo will not be available unless he or she explicitly selects the option Let others see my photo. The default value is True. - - Boolean - - Boolean - - - None - - - EnablePrivacyMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, gives users the opportunity to enable the advanced privacy mode. In advanced privacy mode, only people on your Contacts list will be allowed to view your presence information. If False, your presence information will be available to anyone in your organization. The default value is False. - For information about privacy mode in Microsoft Teams, see User presence in Teams (/microsoftteams/presence-admins). - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the privacy configuration settings to be modified. To modify the global settings, use this syntax: - `-Identity global` - To modify settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:Redmond-UserServices-1` - Note that privacy settings can only be applied to the User Server service. An error will occur if you try to apply these settings to any other service. - If this parameter is not specified then the global settings will be updated when you call the `Set-CsPrivacyConfiguration` cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - PublishLocationDataDefault - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - If True, location data will automatically be published in Skype for Business. If False, location data will not be available unless the user explicitly selects the option Show Contacts My Location. The default value is True. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PrivacyConfiguration - - - The `Set-CsPrivacyConfiguration` cmdlet accepts pipelined input of the privacy configuration object. - - - - - - - None - - - The `Set-CsPrivacyConfiguration` cmdlet does not return any objects or values. Instead, the cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.PrivacyConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsPrivacyConfiguration -Identity site:Redmond -EnablePrivacyMode $False -AutoInitiateContacts $True -PublishLocationDataDefault $True -DisplayPublishedPhotoDefault $True - - The command shown in Example 1 modifies three property values for the privacy configuration settings with the Identity site:Redmond. The three property values modified are AutoInitiateContacts, PublishLocationDataDefault and DisplayPublishedPhotoDefault. - - - - -------------------------- Example 2 -------------------------- - Get-CsPrivacyConfiguration | Set-CsPrivacyConfiguration -EnablePrivacyMode $True - - Example 2 enables privacy mode for all the privacy configuration settings currently in use in the organization. To do this, the command first calls the `Get-CsPrivacyConfiguration` cmdlet without any parameters; this returns the complete collection of privacy settings. This collection is then piped to the `Set-CsPrivacyConfiguration` cmdlet, which takes each item in the collection and sets the EnablePrivacyMode property to True. - - - - -------------------------- Example 3 -------------------------- - Get-CsPrivacyConfiguration | Where-Object {$_.EnablePrivacyMode -eq $False} | Set-CsPrivacyConfiguration -AutoInitiateContacts $True -PublishLocationDataDefault $True -DisplayPublishedPhotoDefault $True - - In Example 3, modifications are made to all the privacy configuration settings that are not currently using privacy mode. To carry out this task, the `Get-CsPrivacyConfiguration` cmdlet is first used in order to return a collection of all the privacy configuration settings. This collection is piped to the `Where-Object` cmdlet, which selects only those settings where the EnablePrivacyMode property is equal to False. The filtered collection is then piped to the `Set-CsPrivacyConfiguration` cmdlet, which assigns values to the AutoInitiateContacts, PublishLocationDataDefault, and DisplayPublishedPhotoDefault properties for each item in the collection. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csprivacyconfiguration - - - Get-CsPrivacyConfiguration - - - - New-CsPrivacyConfiguration - - - - Remove-CsPrivacyConfiguration - - - - - - - Set-CsPstnUsage - Set - CsPstnUsage - - Modifies a set of strings that identify the allowed public switched telephone network (PSTN) usages. This cmdlet can be used to add usages to the list of PSTN usages or remove usages from the list. This cmdlet was introduced in Lync Server 2010. - - - - PSTN usages are string values that are used for call authorization. A PSTN usage links a voice policy to a route. The `Set-CsPstnUsage` cmdlet is used to add or remove phone usages to or from the usage list. This list is global so it can be used by policies and routes throughout the Skype for Business Server deployment. - - - - Set-CsPstnUsage - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Usage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Contains a list of allowable usage strings. These entries can be any string value. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsPstnUsage - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a PSTN usage object. This object must be of type PstnUsages and can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - - PSObject - - PSObject - - - None - - - Usage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Contains a list of allowable usage strings. These entries can be any string value. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a PSTN usage object. This object must be of type PstnUsages and can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - - PSObject - - PSObject - - - None - - - Usage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Contains a list of allowable usage strings. These entries can be any string value. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.PstnUsages - - - Accepts pipelined input of PSTN usage objects. - - - - - - - None - - - This cmdlet does not return a value or object. Instead, it configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.PstnUsages object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsPstnUsage -Identity global -Usage @{add="International"} - - This command adds the string "International" to the current list of available PSTN usages. - - - - -------------------------- Example 2 -------------------------- - Set-CsPstnUsage -Identity global -Usage @{remove="Local"} - - This command removes the string "Local" from the list of available PSTN usages. - - - - -------------------------- Example 3 -------------------------- - Set-CsPstnUsage -Usage @{remove="Local"} - - The command in this example performs the exact same action as the command in Example 2: it removes the "Local" PSTN usage. This example shows the command without the Identity parameter specified. The only Identity available to the `Set-CsPstnUsage` cmdlet is the Global identity; omitting the Identity parameter defaults to Global. - - - - -------------------------- Example 4 -------------------------- - Set-CsPstnUsage -Usage @{replace="International","Restricted"} - - This command replaces everything in the usage list with the values International and Restricted. All previously existing usages are removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-cspstnusage - - - Get-CsPstnUsage - - - - - - - Set-CsTeamsAcsFederationConfiguration - Set - CsTeamsAcsFederationConfiguration - - This cmdlet is used to manage the federation configuration between Teams and Azure Communication Services. For more information, please see Azure Communication Services and Teams Interoperability (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). - - - - Federation between Teams and Azure Communication Services (ACS) allows external users from ACS to connect and communicate with Teams users over voice and video. These custom applications may be used by end users or by bots, and there is no differentiation in how they appear to Teams users unless the developer of the application explicitly indicates this as part of the communication. For more information, see Teams interoperability (https://learn.microsoft.com/azure/communication-services/concepts/teams-interop). - This cmdlet is used to enable or disable Teams and ACS federation for a Teams tenant, and to specify which ACS resources can connect to Teams. Only listed ACS resources can be allowed. - You must be a Teams service admin or a Teams communication admin for your organization to run the cmdlet. - - - - Set-CsTeamsAcsFederationConfiguration - - AllowedAcsResources - - The list of the ACS resources (at least one) for which federation is enabled, when EnableAcsUsers is set to true. If EnableAcsUsers is set to false, then this list is ignored and should be null/empty. - The ACS resources are listed using their immutable resource id, which is a guid that can be found on the Azure portal. - - String[] - - String[] - - - Empty/Null - - - EnableAcsUsers - - Set to True to enable federation between Teams and ACS. When set to False, all other parameters are ignored. - - Boolean - - Boolean - - - False - - - HideBannerForAllowedAcsUsers - - This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. Possible values are: True, False. Set to True to hide the banner for allowed ACS users in Teams meetings or calls. - - Boolean - - Boolean - - - False - - - Identity - - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter, you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - String - - String - - - None - - - LabelForAllowedAcsUsers - - This configuration controls the user label that is displayed for Azure Communication Services users when they join Teams meetings or calls. Possible values are: Unverified, External. When the value is set to Unverified, the ACS user label is displayed as 'Unverified' when an ACS user joins Teams meetings or calls. When the value is set to External, if an ACS user joins a Teams meeting or call from a resource listed in AllowAcsResources, their label should be displayed as 'External'. - - String - - String - - - Unverified - - - RequireAcsFederationForMeeting - - This configuration controls whether ACS Federation is required for meetings. Possible values are: True, False. - - Boolean - - Boolean - - - False - - - - - - AllowedAcsResources - - The list of the ACS resources (at least one) for which federation is enabled, when EnableAcsUsers is set to true. If EnableAcsUsers is set to false, then this list is ignored and should be null/empty. - The ACS resources are listed using their immutable resource id, which is a guid that can be found on the Azure portal. - - String[] - - String[] - - - Empty/Null - - - EnableAcsUsers - - Set to True to enable federation between Teams and ACS. When set to False, all other parameters are ignored. - - Boolean - - Boolean - - - False - - - HideBannerForAllowedAcsUsers - - This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. Possible values are: True, False. Set to True to hide the banner for allowed ACS users in Teams meetings or calls. - - Boolean - - Boolean - - - False - - - Identity - - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter, you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - String - - String - - - None - - - LabelForAllowedAcsUsers - - This configuration controls the user label that is displayed for Azure Communication Services users when they join Teams meetings or calls. Possible values are: Unverified, External. When the value is set to Unverified, the ACS user label is displayed as 'Unverified' when an ACS user joins Teams meetings or calls. When the value is set to External, if an ACS user joins a Teams meeting or call from a resource listed in AllowAcsResources, their label should be displayed as 'External'. - - String - - String - - - Unverified - - - RequireAcsFederationForMeeting - - This configuration controls whether ACS Federation is required for meetings. Possible values are: True, False. - - Boolean - - Boolean - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsAcsFederationConfiguration -EnableAcsUsers $False - - - - - - -------------------------- Example 2 -------------------------- - $allowlist = @('faced04c-2ced-433d-90db-063e424b87b1') -Set-CsTeamsAcsFederationConfiguration -EnableAcsUsers $True -AllowedAcsResources $allowlist - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsacsfederationconfiguration - - - Get-CsTeamsAcsFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsacsfederationconfiguration - - - New-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csexternalaccesspolicy - - - Set-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csexternalaccesspolicy - - - Grant-CsExternalAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csexternalaccesspolicy - - - - - - Set-CsTeamsAIPolicy - Set - CsTeamsAIPolicy - - This cmdlet sets Teams AI policy value for users in the tenant. - - - - The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice . These can be individually set to Enabled or Disabled, offering more granular control over the available biometric enrollment flows. Enabling these settings will allow your users in your organization the ability to enroll using active enrollment. - Starting May 2026, there will be a new setting - PassiveVoiceEnrollment , which will allow users in your organization the ability to enroll their voice profile using their in-meeting audio. This is known as Express voice enrollment. This setting can also be individually set to Enabled or Disabled and operates independently of EnrollVoice . This setting is typically enabled by default; however any organization that previously had EnrollVoice set to disabled will see a one-time manual state duplication so that both EnrollVoice and PassiveVoiceEnrollment will have the same state when launching this new functionality. As an organization, you have the option to Enable Active enrollment (via EnrollVoice ) and/or Express enrollment (via PassiveVoiceEnrollment ) for your users. To turn off voice enrollment completely, make sure to set both parameters to Disable. SpeakerAttributionBYOD , is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs. - This cmdlet sets the EnrollFace , EnrollVoice , PassiveVoiceEnrollment , and SpeakerAttributionBYOD values within the csTeamsAIPolicy. These policies can be assigned to users, and each setting can be configured as "Enabled" or "Disabled". - - - - Set-CsTeamsAIPolicy - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to active voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - PassiveVoiceEnrollment - - Policy value of the Teams AI PassiveVoiceEnrollment policy. PassiveVoiceEnrollment controls user access to express voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - Set-CsTeamsAIPolicy - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to active voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - PassiveVoiceEnrollment - - Policy value of the Teams AI PassiveVoiceEnrollment policy. PassiveVoiceEnrollment controls user access to express voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - - - Description - - Enables administrators to provide explanatory text about the Teams AI policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - EnrollFace - - Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings. - - String - - String - - - Enabled - - - EnrollVoice - - Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to active voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - PassiveVoiceEnrollment - - Policy value of the Teams AI PassiveVoiceEnrollment policy. PassiveVoiceEnrollment controls user access to express voice enrollment in the Teams app settings. - - String - - String - - - Enabled - - - Identity - - Identity of the Teams AI policy. - - String - - String - - - None - - - SpeakerAttributionBYOD - - Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function. - - String - - String - - - Enabled - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollFace Disabled - - Set Teams AI policy "EnrollFace" value to "Disabled" for global as default. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollVoice Disabled - - Set Teams AI policy "EnrollVoice" value to "Disabled" for global as default. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Global -SpeakerAttributionBYOD Disabled - - Set Teams AI policy "SpeakerAttributionBYOD" value to "Disabled" for global as default. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled - - Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test". - - - - -------------------------- Example 5 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled - - Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test". - - - - -------------------------- Example 6 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionBYOD Enabled - - Set Teams AI policy "SpeakerAttributionBYOD" value to "Enabled" for identity "Test". - - - - -------------------------- Example 7 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled - - Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test". - - - - -------------------------- Example 8 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled - - Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test". - - - - -------------------------- Example 9 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionBYOD Disabled - - Set Teams AI policy "SpeakerAttributionBYOD" value to "Disabled" for identity "Test". - - - - -------------------------- Example 10 -------------------------- - PS C:\> Set-CsTeamsAIPolicy -Identity Global -PassiveVoiceEnrollment Disabled - - Set Teams AI policy "PassiveVoiceEnrollment" value to "Disabled" for global as default. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsTeamsAIPolicy - - - New-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaipolicy - - - Remove-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaipolicy - - - Get-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaipolicy - - - Grant-CsTeamsAIPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaipolicy - - - - - - Set-CsTeamsAppPermissionPolicy - Set - CsTeamsAppPermissionPolicy - - Cmdlet to set the app permission policy for Teams. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app permission polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app permission policies to enable or block specific apps for your users. Learn more about the App Setup Policies: <https://learn.microsoft.com/microsoftteams/teams-app-permission-policies>. - - - - Set-CsTeamsAppPermissionPolicy - - Identity - - Name of App setup permission policy. If empty, all Identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DefaultCatalogApps - - Choose which Teams apps published by Microsoft or its partners can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - - None - - - DefaultCatalogAppsType - - Choose to allow or block the installation of Microsoft apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Description - - Description of app setup permission policy. - - String - - String - - - None - - - Force - - Do not use. - - - SwitchParameter - - - False - - - GlobalCatalogApps - - Choose which Teams apps published by a third party can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - - None - - - GlobalCatalogAppsType - - Choose to allow or block the installation of third-party apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - PrivateCatalogApps - - Choose to allow or block the installation of custom apps. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - - None - - - PrivateCatalogAppsType - - Choose which custom apps can be installed by your users. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsAppPermissionPolicy - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DefaultCatalogApps - - Choose which Teams apps published by Microsoft or its partners can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - - None - - - DefaultCatalogAppsType - - Choose to allow or block the installation of Microsoft apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Description - - Description of app setup permission policy. - - String - - String - - - None - - - Force - - Do not use. - - - SwitchParameter - - - False - - - GlobalCatalogApps - - Choose which Teams apps published by a third party can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - - None - - - GlobalCatalogAppsType - - Choose to allow or block the installation of third-party apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Instance - - Do not use. - - PSObject - - PSObject - - - None - - - PrivateCatalogApps - - Choose to allow or block the installation of custom apps. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - - None - - - PrivateCatalogAppsType - - Choose which custom apps can be installed by your users. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultCatalogApps - - Choose which Teams apps published by Microsoft or its partners can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp[] - - - None - - - DefaultCatalogAppsType - - Choose to allow or block the installation of Microsoft apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Description - - Description of app setup permission policy. - - String - - String - - - None - - - Force - - Do not use. - - SwitchParameter - - SwitchParameter - - - False - - - GlobalCatalogApps - - Choose which Teams apps published by a third party can be installed by your users. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[] - - - None - - - GlobalCatalogAppsType - - Choose to allow or block the installation of third-party apps. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Identity - - Name of App setup permission policy. If empty, all Identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Do not use. - - PSObject - - PSObject - - - None - - - PrivateCatalogApps - - Choose to allow or block the installation of custom apps. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp[] - - - None - - - PrivateCatalogAppsType - - Choose which custom apps can be installed by your users. Values that can be used: AllowedAppList, BlockedAppList. - - String - - String - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $identity = "TestTeamsAppPermissionPolicy" + (Get-Date -Format FileDateTimeUniversal) -New-CsTeamsAppPermissionPolicy -Identity Set-$identity -Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType BlockedAppList -DefaultCatalogApps @()-GlobalCatalogAppsType -GlobalCatalogApps @() BlockedAppList -PrivateCatalogAppsType BlockedAppList -PrivateCatalogApps @() - - This example allows all Microsoft apps, third-party apps, and custom apps. No apps are blocked. - - - - -------------------------- Example 2 -------------------------- - $identity = "TestTeamsAppPermissionPolicy" + (Get-Date -Format FileDateTimeUniversal) -New-CsTeamsAppPermissionPolicy -Identity Set-$identity -Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -DefaultCatalogApps @() -GlobalCatalogAppsType AllowedAppList -GlobalCatalogApps @() -PrivateCatalogAppsType AllowedAppList -PrivateCatalogApps @() - - This example blocks all Microsoft apps, third-party apps, and custom apps. No apps are allowed. - - - - -------------------------- Example 3 -------------------------- - $identity = "TestTeamsAppPermissionPolicy" + (Get-Date -Format FileDateTimeUniversal) -# create a new Teams app permission policy and block all apps -New-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -GlobalCatalogAppsType AllowedAppList -PrivateCatalogAppsType AllowedAppList -DefaultCatalogApps @() -GlobalCatalogApps @() -PrivateCatalogApps @() - -$ListsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp -Property @{Id="0d820ecd-def2-4297-adad-78056cde7c78"} -$OneNoteApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp -Property @{Id="26bc2873-6023-480c-a11b-76b66605ce8c"} -$DefaultCatalogAppList = @($ListsApp,$OneNoteApp) -# set allow Lists and OneNote apps and block other Microsoft apps -Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -DefaultCatalogApps $DefaultCatalogAppList - - This example allows Microsoft Lists and OneNote apps and blocks other Microsoft apps. Microsoft Lists and OneNote can be installed by your users. - - - - -------------------------- Example 4 -------------------------- - $identity = "TestTeamsAppPermissionPolicy" + (Get-Date -Format FileDateTimeUniversal) -# create a new Teams app permission policy and block all apps -New-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -GlobalCatalogAppsType AllowedAppList -PrivateCatalogAppsType AllowedAppList -DefaultCatalogApps @() -GlobalCatalogApps @() -PrivateCatalogApps @() -$TaskListApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp -Property @{Id="57c81e84-9b7b-4783-be4e-0b7ffc0719af"} -$OnePlanApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp -Property @{Id="ca0540bf-6b61-3027-6313-a7cb4470bf1b"} -$GlobalCatalogAppList = @($TaskListApp,$OnePlanApp) -# set allow TaskList and OnePlan apps and block other Third-party apps -Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -GlobalCatalogAppsType AllowedAppList -GlobalCatalogApps $GlobalCatalogAppList - - This example allows third-party TaskList and OnePlan apps and blocks other third-party apps. TaskList and OnePlan can be installed by your users. - - - - -------------------------- Example 5 -------------------------- - $identity = "TestTeamsAppPermissionPolicy" + (Get-Date -Format FileDateTimeUniversal) -# create a new Teams app permission policy and block all apps -New-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType BlockedAppList -GlobalCatalogAppsType BlockedAppList -PrivateCatalogAppsType BlockedAppList -DefaultCatalogApps @() -GlobalCatalogApps @() -PrivateCatalogApps @() -$GetStartApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp -Property @{Id="f8374f94-b179-4cd2-8343-9514dc5ea377"} -$TestBotApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp -Property @{Id="47fa3584-9366-4ce7-b1eb-07326c6ba799"} -$PrivateCatalogAppList = @($GetStartApp,$TestBotApp) -# set allow TaskList and OnePlan apps and block other custom apps -Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -PrivateCatalogAppsType AllowedAppList -PrivateCatalogApps $PrivateCatalogAppList - - This example allows custom GetStartApp and TestBotApp apps and blocks other custom apps. GetStartApp and TestBotApp can be installed by your users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsapppermissionpolicy - - - - - - Set-CsTeamsAppSetupPolicy - Set - CsTeamsAppSetupPolicy - - Cmdlet to set the app setup policy for Teams. - - - - NOTE : The existence of this cmdlet is being documented for completeness, but do not use this cmdlet. We require that all creation and modification of app setup polices (not including the assignment or removal of policies from users) happens in the Microsoft Teams & Skype for Business Admin Center to ensure that the policy matches your expectations for the end user experience. - As an admin, you can use app setup policies to customize Microsoft Teams to highlight the apps that are most important for your users. You choose the apps to pin and set the order that they appear. App setup policies let you showcase apps that users in your organization need, including ones built by third parties or by developers in your organization. You can also use app setup policies to manage how built-in features appear. - Apps are pinned to the app bar. This is the bar on the side of the Teams desktop client and at the bottom of the Teams mobile clients (iOS and Android). Learn more about the App Setup Policies: <https://learn.microsoft.com/MicrosoftTeams/teams-app-setup-policies>. - - - - Set-CsTeamsAppSetupPolicy - - Identity - - Name of app setup policy. If empty, all identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - AdditionalCustomizationApps - - This parameter allows IT admins to create multiple customized versions of their apps and assign these customized versions to users and groups via setup policies. It enables customization of app icons and names for supportive first-party (1P) and third-party (3P) apps, enhancing corporate connections to employees through brand expression and stimulating app awareness and usage. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - - None - - - AllowSideLoading - - This is also known as side loading. This setting determines if a user can upload a custom app package in the Teams app. Turning it on lets you create or develop a custom app to be used personally or across your organization without having to submit it to the Teams app store. Uploading a custom app also lets you test an app before you distribute it more widely by only assigning it to a single user or group of users. - - Boolean - - Boolean - - - None - - - AllowUserPinning - - If you turn this on, the user's existing app pins will be added to the list of pinned apps set in this policy. Users can rearrange, add, and remove pins as they choose. If you turn this off, the user's existing app pins will be removed and replaced with the apps defined in this policy. - - Boolean - - Boolean - - - None - - - AppPresetList - - Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - - None - - - AppPresetMeetingList - - This parameter is used to manage the list of preset apps that are available during meetings. It allows admins to control which apps are pinned and set the order in which they appear, ensuring that users have quick access to the relevant apps during meetings. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of App setup policy. - - String - - String - - - None - - - Force - - Do not use. - - - SwitchParameter - - - False - - - PinnedAppBarApps - - Pinning an app displays the app in the app bar in Teams client. Admins can pin apps and they can allow users to pin apps. Pinning is used to highlight apps that users need the most and promote ease of access. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - - None - - - PinnedCallingBarApps - - Determines the list of apps that are pre pinned for a participant in Calls. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - - None - - - PinnedMessageBarApps - - Apps will be pinned in messaging extensions and into the ellipsis menu. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsAppSetupPolicy - - AdditionalCustomizationApps - - This parameter allows IT admins to create multiple customized versions of their apps and assign these customized versions to users and groups via setup policies. It enables customization of app icons and names for supportive first-party (1P) and third-party (3P) apps, enhancing corporate connections to employees through brand expression and stimulating app awareness and usage. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - - None - - - AllowSideLoading - - This is also known as side loading. This setting determines if a user can upload a custom app package in the Teams app. Turning it on lets you create or develop a custom app to be used personally or across your organization without having to submit it to the Teams app store. Uploading a custom app also lets you test an app before you distribute it more widely by only assigning it to a single user or group of users. - - Boolean - - Boolean - - - None - - - AllowUserPinning - - If you turn this on, the user's existing app pins will be added to the list of pinned apps set in this policy. Users can rearrange, add, and remove pins as they choose. If you turn this off, the user's existing app pins will be removed and replaced with the apps defined in this policy. - - Boolean - - Boolean - - - None - - - AppPresetList - - Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - - None - - - AppPresetMeetingList - - This parameter is used to manage the list of preset apps that are available during meetings. It allows admins to control which apps are pinned and set the order in which they appear, ensuring that users have quick access to the relevant apps during meetings. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of App setup policy. - - String - - String - - - None - - - Force - - Do not use. - - - SwitchParameter - - - False - - - Instance - - Do not use. - - PSObject - - PSObject - - - None - - - PinnedAppBarApps - - Pinning an app displays the app in the app bar in Teams client. Admins can pin apps and they can allow users to pin apps. Pinning is used to highlight apps that users need the most and promote ease of access. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - - None - - - PinnedCallingBarApps - - Determines the list of apps that are pre pinned for a participant in Calls. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - - None - - - PinnedMessageBarApps - - Apps will be pinned in messaging extensions and into the ellipsis menu. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AdditionalCustomizationApps - - This parameter allows IT admins to create multiple customized versions of their apps and assign these customized versions to users and groups via setup policies. It enables customization of app icons and names for supportive first-party (1P) and third-party (3P) apps, enhancing corporate connections to employees through brand expression and stimulating app awareness and usage. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AdditionalCustomizationApp] - - - None - - - AllowSideLoading - - This is also known as side loading. This setting determines if a user can upload a custom app package in the Teams app. Turning it on lets you create or develop a custom app to be used personally or across your organization without having to submit it to the Teams app store. Uploading a custom app also lets you test an app before you distribute it more widely by only assigning it to a single user or group of users. - - Boolean - - Boolean - - - None - - - AllowUserPinning - - If you turn this on, the user's existing app pins will be added to the list of pinned apps set in this policy. Users can rearrange, add, and remove pins as they choose. If you turn this off, the user's existing app pins will be removed and replaced with the apps defined in this policy. - - Boolean - - Boolean - - - None - - - AppPresetList - - Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[] - - - None - - - AppPresetMeetingList - - This parameter is used to manage the list of preset apps that are available during meetings. It allows admins to control which apps are pinned and set the order in which they appear, ensuring that users have quick access to the relevant apps during meetings. - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPresetMeeting] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of App setup policy. - - String - - String - - - None - - - Force - - Do not use. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of app setup policy. If empty, all identities will be used by default. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Do not use. - - PSObject - - PSObject - - - None - - - PinnedAppBarApps - - Pinning an app displays the app in the app bar in Teams client. Admins can pin apps and they can allow users to pin apps. Pinning is used to highlight apps that users need the most and promote ease of access. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp[] - - - None - - - PinnedCallingBarApps - - Determines the list of apps that are pre pinned for a participant in Calls. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedCallingBarApp[] - - - None - - - PinnedMessageBarApps - - Apps will be pinned in messaging extensions and into the ellipsis menu. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp[] - - - None - - - Tenant - - Do not use. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp - - - - - - - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - # Create new teams app setup policy named "Set-Test". -New-CsTeamsAppSetupPolicy -Identity 'Set-Test' -Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -AllowUserPinning $true -AllowSideLoading $false - - Step 1: Create a new Teams app setup policy named "Set-Test". Step 2: Set AllowUserPinning as true, AllowSideLoading as false. - - - - -------------------------- Example 2 -------------------------- - New-CsTeamsAppSetupPolicy -Identity 'Set-Test' -$ActivityApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="14d6962d-6eeb-4f48-8890-de55454bb136"} -$ChatApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="86fcd49b-61a2-4701-b771-54728cd291fb"} -$TeamsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedApp -Property @{Id="2a84919f-59d8-4441-a975-2a8c2643b741"} -$PinnedAppBarApps = @($ActivityApp,$ChatApp,$TeamsApp) -Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -PinnedAppBarApps $PinnedAppBarApps - - Step 1: Create new teams app setup policy named "Set-Test". Step 2: Set ActivityApp, ChatApp, TeamsApp as PinnedAppBarApps. Step 3: Settings to pin these apps to the app bar in Teams client. - - - - -------------------------- Example 3 -------------------------- - New-CsTeamsAppSetupPolicy -Identity 'Set-Test' -$VivaConnectionsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.PinnedMessageBarApp -Property @{Id="d2c6f111-ffad-42a0-b65e-ee00425598aa"} -$PinnedMessageBarApps = @($VivaConnectionsApp) -Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -PinnedMessageBarApps $PinnedMessageBarApps - - Step 1: Create new teams app setup policy named "Set-Test". Step 2: Set VivaConnectionsApp as PinnedAppBarApps. Step 3: Settings to pin these apps to the messaging extension in Teams client. - - - - -------------------------- Example 4 -------------------------- - New-CsTeamsAppSetupPolicy -Identity 'Set-Test' -$VivaConnectionsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset -Property @{Id="d2c6f111-ffad-42a0-b65e-ee00425598aa"} -$AppPresetList = @($VivaConnectionsApp) -Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -AppPresetList $AppPresetList - - Step 1: Create new teams app setup policy named "Set-Test". Step 2: Set VivaConnectionsApp as AppPresetList Step 3: Settings to install these apps in your users' personal Teams environment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsappsetuppolicy - - - - - - Set-CsTeamsAudioConferencingPolicy - Set - CsTeamsAudioConferencingPolicy - - Audio conferencing policies can be used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - The Set-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. The Set-CsTeamsAudioConferencingPolicy can be used to update an audio-conferencing policy that has been configured for use in your organization. - - - - Set-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity "Emea Users". If this parameter is not included, the Set-CsTeamsAudioConferencingPolicy cmdlet will modify the Global policy. - - String - - String - - - None - - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsAudioConferencingPolicy - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity "Emea Users". If this parameter is not included, the Set-CsTeamsAudioConferencingPolicy cmdlet will modify the Global policy. - - String - - String - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - PSObject - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $False - - In this example, AllowTollFreeDialin is set to false. All other policy properties will be left as previously assigned. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" - - In this example, two different property values are configured: AllowTollFreeDialIn is set to True and -MeetingInvitePhoneNumbers is set to include the following Toll and Toll free numbers - "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" other policy properties will be left as previously assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - New-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Set-CsTeamsCallHoldPolicy - Set - CsTeamsCallHoldPolicy - - Modifies an existing Teams call hold policy in your tenant. The Teams call hold policy is used to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. - When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a Teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - Set-CsTeamsCallHoldPolicy - - Identity - - Unique identifier of the Teams call hold policy being modified. - - String - - String - - - None - - - AudioFileId - - A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams call hold policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - StreamingSourceAuthType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StreamingSourceUrl - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AudioFileId - - A string representing the ID referencing an audio file uploaded via the Import-CsOnlineAudioFile cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams call hold policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the Teams call hold policy being modified. - - String - - String - - - None - - - StreamingSourceAuthType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StreamingSourceUrl - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -AudioFileId "c65233-ac2a27-98701b-123ccc" - - The command shown in Example 1 modifies an existing per-user Teams call hold policy with the Identity ContosoPartnerTeamsCallHoldPolicy. - This policy is re-assigned the audio file ID to be used to: c65233-ac2a27-98701b-123ccc, which is the ID referencing an audio file that was uploaded using the Import-CsOnlineAudioFile cmdlet. - Any Microsoft Teams users who are assigned this policy will have their call holds customized such that the user being held will hear the audio file specified by AudioFileId. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -Description "country music" - - The command shown in Example 2 modifies an existing per-user Teams call hold policy with the Identity ContosoPartnerTeamsCallHoldPolicy. - This policy is re-assigned the description from its existing value to "country music". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Get-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - New-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Grant-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - Remove-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - - - - Set-CsTeamsCallingPolicy - Set - CsTeamsCallingPolicy - - Use this cmdlet to update values in existing Teams Calling Policies. - - - - The Teams Calling Policy controls which calling and call forwarding features are available to users in Microsoft Teams. This cmdlet allows admins to set values in a given Calling Policy instance. - Only the parameters specified are changed. Other parameters keep their existing values. - - - - Set-CsTeamsCallingPolicy - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - AIInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowCallForwardingToPhone - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number. - - Boolean - - Boolean - - - None - - - AllowCallForwardingToUser - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to other users in your tenant. - - Boolean - - Boolean - - - None - - - AllowCallGroups - - > Applicable: Microsoft Teams - Enables the user to configure call groups in the Microsoft Teams client and that inbound calls should be routed to call groups. - - Boolean - - Boolean - - - None - - - AllowCallRedirect - - > Applicable: Microsoft Teams - Setting this parameter enables local call redirection for SIP devices connecting via the Microsoft Teams SIP gateway. - Valid options are: - - Enabled: Enables the user to redirect an incoming call. - - Disabled: The user is not enabled to redirect an incoming call. - - UserOverride: This option is not available for use. - - String - - String - - - None - - - AllowCloudRecordingForCalls - - > Applicable: Microsoft Teams - Determines whether cloud recording is allowed in a user's 1:1 Teams or PSTN calls. Set this to True to allow the user to be able to record 1:1 calls. Set this to False to prohibit the user from recording 1:1 calls. - - Boolean - - Boolean - - - None - - - AllowDelegation - - > Applicable: Microsoft Teams - Enables the user to configure delegation in the Microsoft Teams client and that inbound calls to be routed to delegates; allows delegates to make outbound calls on behalf of the users for whom they have delegated permissions. - - Boolean - - Boolean - - - None - - - AllowPrivateCalling - - > Applicable: Microsoft Teams - Controls all calling capabilities in Teams. Turning this off will turn off all calling functionality in Teams. If you use Skype for Business for calling, this policy will not affect calling functionality in Skype for Business. - - Boolean - - Boolean - - - None - - - AllowSIPDevicesCalling - - > Applicable: Microsoft Teams - Determines whether the user is allowed to use a SIP device for calling on behalf of a Teams client. - - Boolean - - Boolean - - - None - - - AllowTranscriptionForCalling - - > Applicable: Microsoft Teams - Determines whether post-call transcriptions are allowed. Set this to True to allow. Set this to False to prohibit. - - Boolean - - Boolean - - - None - - - AllowVoicemail - - > Applicable: Microsoft Teams - Enables inbound calls to be routed to voicemail. - Valid options are: - - AlwaysEnabled: Calls are always forwarded to voicemail on unanswered after ringing for thirty seconds, and the Teams call settings will not display the option for managing unanswered calls. - - AlwaysDisabled: Calls are never routed to voicemail. Voicemail isn't available as a call forwarding or unanswered setting in Teams. If user is not Enterprise Voice enabled and voicemail is disabled, then the Teams call settings will not display the option for managing unanswered calls as no targets for redirection will be available. - - UserOverride: Calls are forwarded to voicemail based on the call forwarding and/or unanswered settings for the user. - - String - - String - - - None - - - AllowWebPSTNCalling - - > Applicable: Microsoft Teams - Allows PSTN calling from the Teams web client. - - Object - - Object - - - None - - - AutoAnswerEnabledType - - Allow admins to enable or disable Auto-answer settings for users. - - String - - String - - - None - - - BusyOnBusyEnabledType - - > Applicable: Microsoft Teams - Setting this parameter lets you configure how incoming calls are handled when a user is already in a call or conference or has a call placed on hold. - Valid options are: - - Enabled: New or incoming calls will be rejected with a busy signal. - - Unanswered: The user's unanswered settings will take effect, such as routing to voicemail or forwarding to another user. - - Disabled: New or incoming calls will be presented to the user. - - UserOverride: Users can set their busy options directly from call settings in Teams app. - - String - - String - - - None - - - CallingSpendUserLimit - - > Applicable: Microsoft Teams - The maximum amount a user can spend on outgoing PSTN calls, including all calls made through Pay-as-you-go Calling Plans and any overages on plans with bundled minutes. - Possible values: any positive integer - - Long - - Long - - - None - - - CallRecordingExpirationDays - - > Applicable: Microsoft Teams - Sets the expiration of the recorded 1:1 calls. Default is 60 days. - - Long - - Long - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Copilot - - > Applicable: Microsoft Teams - Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call. - Valid options are: - Enabled: Copilot can work with or without transcription during calls. This is the default value. - - EnabledWithTranscript: Copilot will only work when transcription is enabled during calls. - - Disabled: Copilot is disabled for calls. - - String - - String - - - Enabled - - - Description - - > Applicable: Microsoft Teams - Enables administrators to provide explanatory text about the calling policy. For example, the Description might indicate the users to whom the policy should be assigned. - - String - - String - - - None - - - EnableSpendLimits - - > Applicable: Microsoft Teams - This setting allows an admin to enable or disable spend limits on PSTN calls for their user base. - Possible values: - - True - - False - - Boolean - - Boolean - - - False - - - EnableWebPstnMediaBypass - - Determines if MediaBypass is enabled for PSTN calls on specified Web platforms. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InboundFederatedCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound federated calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound federated call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound federated call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - InboundPstnCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound PSTN calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound PSTN call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound PSTN call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - UserOverride: Users can determine their PSTN call routing choice from call settings in the Teams app. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - LiveCaptionsEnabledTypeForCalling - - > Applicable: Microsoft Teams - Determines whether real-time captions are available for the user in Teams calls. - Valid options are: - - DisabledUserOverride: Allows the user to turn on live captions. - - Disabled: Prohibits the user from turning on live captions. - - String - - String - - - None - - - MusicOnHoldEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to turn on or turn off the music on hold when a caller is placed on hold. - Valid options are: - - Enabled: Music on hold is enabled. This is the default. - - Disabled: Music on hold is disabled. - - UserOverride: For now, setting the value to UserOverride is the same as Enabled. - - String - - String - - - Enabled - - - PopoutAppPathForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to set the PopoutForIncomingPstnCalls setting's URL path of the website to launch upon receiving incoming PSTN calls. This parameter accepts an HTTPS URL with less than 1024 characters. The URL can contain a `{phone}` placeholder that is replaced with the caller's PSTN number in E.164 format when launched. - - String - - String - - - "" - - - PopoutForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to control the tenant users' ability to launch an external website URL automatically in the browser window upon incoming PSTN calls for specific users or user groups. Valid options are Enabled and Disabled. - - String - - String - - - Disabled - - - PreventTollBypass - - > Applicable: Microsoft Teams - Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - > [!NOTE] > Do not set this parameter to True for Calling Plan or Operator Connect users as it will prevent successful call routing. This setting only works with Direct Routing which is configured to handle location-based routing restrictions. - - Boolean - - Boolean - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a call, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - SpamFilteringEnabledType - - > Applicable: Microsoft Teams - Determines if spam detection is enabled for inbound PSTN calls. - Possible values: - - Enabled: Spam detection is enabled. In case the inbound call is considered spam, the user will get a "Spam Likely" label in Teams. - - Disabled: Spam detection is disabled. - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - This setting controls whether users must provide or obtain explicit consent before recording a 1:1 PSTN or Teams call. When enabled, both parties will receive a notification, and consent must be given before recording starts. - Possible values: - - Enabled : Requires users to give and obtain explicit consent before starting a call recording. - Disabled : Users are not required to obtain explicit consent before recording starts. - - String - - String - - - Disabled - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams Calls. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription calling message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AIInterpreter - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowCallForwardingToPhone - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number. - - Boolean - - Boolean - - - None - - - AllowCallForwardingToUser - - > Applicable: Microsoft Teams - Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to other users in your tenant. - - Boolean - - Boolean - - - None - - - AllowCallGroups - - > Applicable: Microsoft Teams - Enables the user to configure call groups in the Microsoft Teams client and that inbound calls should be routed to call groups. - - Boolean - - Boolean - - - None - - - AllowCallRedirect - - > Applicable: Microsoft Teams - Setting this parameter enables local call redirection for SIP devices connecting via the Microsoft Teams SIP gateway. - Valid options are: - - Enabled: Enables the user to redirect an incoming call. - - Disabled: The user is not enabled to redirect an incoming call. - - UserOverride: This option is not available for use. - - String - - String - - - None - - - AllowCloudRecordingForCalls - - > Applicable: Microsoft Teams - Determines whether cloud recording is allowed in a user's 1:1 Teams or PSTN calls. Set this to True to allow the user to be able to record 1:1 calls. Set this to False to prohibit the user from recording 1:1 calls. - - Boolean - - Boolean - - - None - - - AllowDelegation - - > Applicable: Microsoft Teams - Enables the user to configure delegation in the Microsoft Teams client and that inbound calls to be routed to delegates; allows delegates to make outbound calls on behalf of the users for whom they have delegated permissions. - - Boolean - - Boolean - - - None - - - AllowPrivateCalling - - > Applicable: Microsoft Teams - Controls all calling capabilities in Teams. Turning this off will turn off all calling functionality in Teams. If you use Skype for Business for calling, this policy will not affect calling functionality in Skype for Business. - - Boolean - - Boolean - - - None - - - AllowSIPDevicesCalling - - > Applicable: Microsoft Teams - Determines whether the user is allowed to use a SIP device for calling on behalf of a Teams client. - - Boolean - - Boolean - - - None - - - AllowTranscriptionForCalling - - > Applicable: Microsoft Teams - Determines whether post-call transcriptions are allowed. Set this to True to allow. Set this to False to prohibit. - - Boolean - - Boolean - - - None - - - AllowVoicemail - - > Applicable: Microsoft Teams - Enables inbound calls to be routed to voicemail. - Valid options are: - - AlwaysEnabled: Calls are always forwarded to voicemail on unanswered after ringing for thirty seconds, and the Teams call settings will not display the option for managing unanswered calls. - - AlwaysDisabled: Calls are never routed to voicemail. Voicemail isn't available as a call forwarding or unanswered setting in Teams. If user is not Enterprise Voice enabled and voicemail is disabled, then the Teams call settings will not display the option for managing unanswered calls as no targets for redirection will be available. - - UserOverride: Calls are forwarded to voicemail based on the call forwarding and/or unanswered settings for the user. - - String - - String - - - None - - - AllowWebPSTNCalling - - > Applicable: Microsoft Teams - Allows PSTN calling from the Teams web client. - - Object - - Object - - - None - - - AutoAnswerEnabledType - - Allow admins to enable or disable Auto-answer settings for users. - - String - - String - - - None - - - BusyOnBusyEnabledType - - > Applicable: Microsoft Teams - Setting this parameter lets you configure how incoming calls are handled when a user is already in a call or conference or has a call placed on hold. - Valid options are: - - Enabled: New or incoming calls will be rejected with a busy signal. - - Unanswered: The user's unanswered settings will take effect, such as routing to voicemail or forwarding to another user. - - Disabled: New or incoming calls will be presented to the user. - - UserOverride: Users can set their busy options directly from call settings in Teams app. - - String - - String - - - None - - - CallingSpendUserLimit - - > Applicable: Microsoft Teams - The maximum amount a user can spend on outgoing PSTN calls, including all calls made through Pay-as-you-go Calling Plans and any overages on plans with bundled minutes. - Possible values: any positive integer - - Long - - Long - - - None - - - CallRecordingExpirationDays - - > Applicable: Microsoft Teams - Sets the expiration of the recorded 1:1 calls. Default is 60 days. - - Long - - Long - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Copilot - - > Applicable: Microsoft Teams - Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call. - Valid options are: - Enabled: Copilot can work with or without transcription during calls. This is the default value. - - EnabledWithTranscript: Copilot will only work when transcription is enabled during calls. - - Disabled: Copilot is disabled for calls. - - String - - String - - - Enabled - - - Description - - > Applicable: Microsoft Teams - Enables administrators to provide explanatory text about the calling policy. For example, the Description might indicate the users to whom the policy should be assigned. - - String - - String - - - None - - - EnableSpendLimits - - > Applicable: Microsoft Teams - This setting allows an admin to enable or disable spend limits on PSTN calls for their user base. - Possible values: - - True - - False - - Boolean - - Boolean - - - False - - - EnableWebPstnMediaBypass - - Determines if MediaBypass is enabled for PSTN calls on specified Web platforms. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - InboundFederatedCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound federated calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound federated call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound federated call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - InboundPstnCallRoutingTreatment - - > Applicable: Microsoft Teams - Setting this parameter lets you control how inbound PSTN calls should be routed. - Valid options are: - - RegularIncoming: No changes are made to default inbound routing. This is the default setting. - - Unanswered: The inbound PSTN call will be routed according to the called user's unanswered call settings and the call will not be presented to the called user. The called user will see a missed call notification. If the called user has not enabled unanswered call settings the call will be disconnected. - - Voicemail: The inbound PSTN call will be routed directly to the called user's voicemail and the call will not be presented to the user. If the called user does not have voicemail enabled the call will be disconnected. - - UserOverride: Users can determine their PSTN call routing choice from call settings in the Teams app. - - Setting this parameter to Unanswered or Voicemail will have precedence over other call forwarding settings like call forward/simultaneous ringing to delegate, call groups, or call forwarding. - - String - - String - - - RegularIncoming - - - LiveCaptionsEnabledTypeForCalling - - > Applicable: Microsoft Teams - Determines whether real-time captions are available for the user in Teams calls. - Valid options are: - - DisabledUserOverride: Allows the user to turn on live captions. - - Disabled: Prohibits the user from turning on live captions. - - String - - String - - - None - - - MusicOnHoldEnabledType - - > Applicable: Microsoft Teams - Setting this parameter allows you to turn on or turn off the music on hold when a caller is placed on hold. - Valid options are: - - Enabled: Music on hold is enabled. This is the default. - - Disabled: Music on hold is disabled. - - UserOverride: For now, setting the value to UserOverride is the same as Enabled. - - String - - String - - - Enabled - - - PopoutAppPathForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to set the PopoutForIncomingPstnCalls setting's URL path of the website to launch upon receiving incoming PSTN calls. This parameter accepts an HTTPS URL with less than 1024 characters. The URL can contain a `{phone}` placeholder that is replaced with the caller's PSTN number in E.164 format when launched. - - String - - String - - - "" - - - PopoutForIncomingPstnCalls - - > Applicable: Microsoft Teams - Setting this parameter allows you to control the tenant users' ability to launch an external website URL automatically in the browser window upon incoming PSTN calls for specific users or user groups. Valid options are Enabled and Disabled. - - String - - String - - - Disabled - - - PreventTollBypass - - > Applicable: Microsoft Teams - Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - > [!NOTE] > Do not set this parameter to True for Calling Plan or Operator Connect users as it will prevent successful call routing. This setting only works with Direct Routing which is configured to handle location-based routing restrictions. - - Boolean - - Boolean - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a call, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - SpamFilteringEnabledType - - > Applicable: Microsoft Teams - Determines if spam detection is enabled for inbound PSTN calls. - Possible values: - - Enabled: Spam detection is enabled. In case the inbound call is considered spam, the user will get a "Spam Likely" label in Teams. - - Disabled: Spam detection is disabled. - - String - - String - - - None - - - VoiceSimulationInInterpreter - - > Applicable: Microsoft Teams - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - This setting controls whether users must provide or obtain explicit consent before recording a 1:1 PSTN or Teams call. When enabled, both parties will receive a notification, and consent must be given before recording starts. - Possible values: - - Enabled : Requires users to give and obtain explicit consent before starting a call recording. - Disabled : Users are not required to obtain explicit consent before recording starts. - - String - - String - - - Disabled - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams Calls. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription calling message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCallingPolicy -Identity Global -AllowPrivateCalling $true - - Sets the value of the parameter AllowPrivateCalling in the Global (default) Teams Calling Policy instance. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsCallingPolicy -Identity HRPolicy -LiveCaptionsEnabledTypeForCalling Disabled - - Sets the value of the parameter LiveCaptionsEnabledTypeForCalling to Disabled in the Teams Calling Policy instance called HRPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallingpolicy - - - Get-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallingpolicy - - - Remove-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallingpolicy - - - Grant-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallingpolicy - - - New-CsTeamsCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallingpolicy - - - - - - Set-CsTeamsCallParkPolicy - Set - CsTeamsCallParkPolicy - - The Set-CsTeamsCallParkPolicy cmdlet lets you update a policy that has already been created for your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: The call park feature is currently available in desktop, mobile, and web clients. Supported with TeamsOnly mode. - - - - Set-CsTeamsCallParkPolicy - - - Set-CsTeamsCallParkPolicy - - - Set-CsTeamsCallParkPolicy - - Identity - - The unique identifier of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsCallParkPolicy - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - Instance - - This parameter is used when piping a specific policy retrieved from Get-CsTeamsCallParkPolicy that you then want to update. - - PSObject - - PSObject - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - This parameter is used when piping a specific policy retrieved from Get-CsTeamsCallParkPolicy that you then want to update. - - PSObject - - PSObject - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCallParkPolicy -Identity SalesPolicy -AllowCallPark $true - - Update the existing policy "SalesPolicy" to enable the call park feature. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsCallParkPolicy -Identity "SalesPolicy" -PickupRangeStart 500 -PickupRangeEnd 1500 - - Update the existing policy "SalesPolicy" to generate pickup numbers starting from 500 and up until 1500. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -ParkTimeoutSeconds 600 - - Update the existing policy "SalesPolicy" to ring back the parker after 600 seconds if the parked call is unanswered - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallparkpolicy - - - - - - Set-CsTeamsChannelsPolicy - Set - CsTeamsChannelsPolicy - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams and Channels experience within the Teams application. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - This cmdlet allows you to update existing policies of this type. - - - - Set-CsTeamsChannelsPolicy - - Identity - - Use this parameter to specify the name of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - AllowChannelSharingToExternalUser - - Owners of a shared channel can invite external users to join the channel if Microsoft Entra external sharing policies are configured. If the channel has been shared with an external member or team, they will continue to have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - AllowOrgWideTeamCreation - - Determines whether a user is allowed to create an org-wide team. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateChannelCreation - - Determines whether a user is allowed to create a private channel. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSharedChannelCreation - - Team owners can create shared channels for people within and outside the organization. Only people added to the shared channel can read and write messages. - - Boolean - - Boolean - - - None - - - AllowUserToParticipateInExternalSharedChannel - - Users and teams can be invited to external shared channels if Microsoft Entra external sharing policies are configured. If a team in your organization is part of an external shared channel, new team members will have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnablePrivateTeamDiscovery - - Determines whether a user is allowed to discover private teams in suggestions and search results. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - ThreadedChannelCreation - - > [!NOTE] > This parameter is reserved for internal Microsoft use. - This setting enables/disables Threaded Channel creation and editing. - Possible Values: - Enabled: Users are allowed to create and edit Threaded Channels. - - Disabled: Users are not allowed to create and edit Threaded Channels. - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsChannelsPolicy - - AllowChannelSharingToExternalUser - - Owners of a shared channel can invite external users to join the channel if Microsoft Entra external sharing policies are configured. If the channel has been shared with an external member or team, they will continue to have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - AllowOrgWideTeamCreation - - Determines whether a user is allowed to create an org-wide team. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateChannelCreation - - Determines whether a user is allowed to create a private channel. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSharedChannelCreation - - Team owners can create shared channels for people within and outside the organization. Only people added to the shared channel can read and write messages. - - Boolean - - Boolean - - - None - - - AllowUserToParticipateInExternalSharedChannel - - Users and teams can be invited to external shared channels if Microsoft Entra external sharing policies are configured. If a team in your organization is part of an external shared channel, new team members will have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnablePrivateTeamDiscovery - - Determines whether a user is allowed to discover private teams in suggestions and search results. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Use this parameter to pass the policy object output of Get-CsTeamsChannelsPolicy to update that policy. - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - ThreadedChannelCreation - - > [!NOTE] > This parameter is reserved for internal Microsoft use. - This setting enables/disables Threaded Channel creation and editing. - Possible Values: - Enabled: Users are allowed to create and edit Threaded Channels. - - Disabled: Users are not allowed to create and edit Threaded Channels. - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowChannelSharingToExternalUser - - Owners of a shared channel can invite external users to join the channel if Microsoft Entra external sharing policies are configured. If the channel has been shared with an external member or team, they will continue to have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - AllowOrgWideTeamCreation - - Determines whether a user is allowed to create an org-wide team. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateChannelCreation - - Determines whether a user is allowed to create a private channel. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSharedChannelCreation - - Team owners can create shared channels for people within and outside the organization. Only people added to the shared channel can read and write messages. - - Boolean - - Boolean - - - None - - - AllowUserToParticipateInExternalSharedChannel - - Users and teams can be invited to external shared channels if Microsoft Entra external sharing policies are configured. If a team in your organization is part of an external shared channel, new team members will have access to the channel even if this parameter is set to FALSE. For more information, see Manage channel policies in Microsoft Teams (https://learn.microsoft.com/microsoftteams/teams-policies). - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnablePrivateTeamDiscovery - - Determines whether a user is allowed to discover private teams in suggestions and search results. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Force - - Bypass all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Use this parameter to specify the name of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Use this parameter to pass the policy object output of Get-CsTeamsChannelsPolicy to update that policy. - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - ThreadedChannelCreation - - > [!NOTE] > This parameter is reserved for internal Microsoft use. - This setting enables/disables Threaded Channel creation and editing. - Possible Values: - Enabled: Users are allowed to create and edit Threaded Channels. - - Disabled: Users are not allowed to create and edit Threaded Channels. - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsChannelsPolicy -Identity StudentPolicy -EnablePrivateTeamDiscovery $true - - This example shows updating an existing policy with name "StudentPolicy" and enabling Private Team Discovery. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamschannelspolicy - - - New-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamschannelspolicy - - - Remove-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamschannelspolicy - - - Grant-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamschannelspolicy - - - Get-CsTeamsChannelsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamschannelspolicy - - - - - - Set-CsTeamsClientConfiguration - Set - CsTeamsClientConfiguration - - Changes the Teams client configuration settings for the specified tenant. - - - - The TeamsClientConfiguration allows IT admins to control the settings that can be accessed via Teams clients across their organization. This configuration includes settings like which third party cloud storage your organization allows, whether or not guest users can access the teams client, and whether or not meeting room devices running teams are can display content from user accounts. The parameter descriptions below describe what settings are managed by this configuration and how they are enforced. - An organization can have only one effective Teams Client Configuration - these settings will apply across the entire organization for the particular features they control. - Note that three of these settings (ContentPin, ResourceAccountContentAccess, and AllowResourceAccountSendMessage) control resource account behavior for Surface Hub devices attending Skype for Business meetings, and are not used in Microsoft Teams. - - - - Set-CsTeamsClientConfiguration - - Identity - - The only valid input is Global - the tenant wide configuration. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBox - - Designates whether users are able to leverage Box as a third party storage solution in Microsoft Teams. If $true, users will be able to add Box in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowDropBox - - Designates whether users are able to leverage DropBox as a third party storage solution in Microsoft Teams. If $true, users will be able to add DropBox in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEgnyte - - Designates whether users are able to leverage Egnyte as a third party storage solution in Microsoft Teams. If $true, users will be able to add Egnyte in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEmailIntoChannel - - When set to $true, mail hooks are enabled, and users can post messages to a channel by sending an email to the email address of Teams channel. - To find the email address for a channel, click the More options menu for the channel and then select Get email address. - - Boolean - - Boolean - - - None - - - AllowGoogleDrive - - Designates whether users are able to leverage GoogleDrive as a third party storage solution in Microsoft Teams. If $true, users will be able to add Google Drive in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowGuestUser - - Designates whether or not guest users in your organization will have access to the Teams client. If $true, guests in your tenant will be able to access the Teams client. Note that this setting has a core dependency on Guest Access being enabled in your Office 365 tenant. For more information on this topic, read Authorize Guest Access in Microsoft Teams: https://learn.microsoft.com/microsoftteams/teams-dependencies - - Boolean - - Boolean - - - None - - - AllowOrganizationTab - - When set to $true, users will be able to see the organizational chart icon other users' contact cards, and when clicked, this icon will display the detailed organizational chart. - - Boolean - - Boolean - - - None - - - AllowResourceAccountSendMessage - - Surface Hub uses a device account to provide email and collaboration services (IM, video, voice). This device account is used as the originating identity (the "from" party) when sending email, IM, and placing calls. As this account is not coming from an individual, identifiable user, it is deemed "anonymous" because it originated from the Surface Hub's device account. If set to $true, these device accounts will be able to send chat messages in Skype for Business Online (does not apply to Microsoft Teams). - - Boolean - - Boolean - - - None - - - AllowRoleBasedChatPermissions - - When set to True, Supervised Chat is enabled for the tenant. - - Boolean - - Boolean - - - False - - - AllowScopedPeopleSearchandAccess - - If set to $true, the Exchange address book policy (ABP) will be used to provide customized view of the global address book for each user. This is only a virtual separation and not a legal separation. - - Boolean - - Boolean - - - None - - - AllowShareFile - - Designates whether users are able to leverage Citrix ShareFile as a third party storage solution in Microsoft Teams. If $true, users will be able to add Citrix ShareFile in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowSkypeBusinessInterop - - When set to $true, Teams conversations automatically show up in Skype for Business for users that aren't enabled for Teams. - - Boolean - - Boolean - - - None - - - AllowTBotProactiveMessaging - - Deprecated, do not use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ContentPin - - This setting applies only to Skype for Business Online (not Microsoft Teams) and defines whether the user must provide a secondary form of authentication to access the meeting content from a resource device account . Meeting content is defined as files that are shared to the "Content Bin" - files that have been attached to the meeting. - Possible Values: NotRequired, RequiredOutsideScheduleMeeting, AlwaysRequired . Default Value: RequiredOutsideScheduleMeeting - - String - - String - - - None - - - Force - - Bypass any verification checks and non-fatal errors. - - - SwitchParameter - - - False - - - ResourceAccountContentAccess - - Require a secondary form of authentication to access meeting content. - Possible values: NoAccess, PartialAccess and FullAccess - - String - - String - - - None - - - RestrictedSenderList - - Senders domains can be further restricted to ensure that only allowed SMTP domains can send emails to the Teams channels. This is a semicolon-separated string of the domains you'd like to allow to send emails to Teams channels. - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - UseUnifiedDomain - - This setting controls whether users are redirected from teams.microsoft.com to the unified domain teams.cloud.microsoft. Possible values are: - MicrosoftDefault , Microsoft will manage redirection behavior. If no explicit admin configuration is set, users may be redirected automatically. - Disabled , Users will remain on teams.microsoft.com. Use this if your organization's apps are incompatible with the unified domain. - - String - - String - - - None - - - WhatIf - - The WhatIf switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - - Set-CsTeamsClientConfiguration - - AllowBox - - Designates whether users are able to leverage Box as a third party storage solution in Microsoft Teams. If $true, users will be able to add Box in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowDropBox - - Designates whether users are able to leverage DropBox as a third party storage solution in Microsoft Teams. If $true, users will be able to add DropBox in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEgnyte - - Designates whether users are able to leverage Egnyte as a third party storage solution in Microsoft Teams. If $true, users will be able to add Egnyte in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEmailIntoChannel - - When set to $true, mail hooks are enabled, and users can post messages to a channel by sending an email to the email address of Teams channel. - To find the email address for a channel, click the More options menu for the channel and then select Get email address. - - Boolean - - Boolean - - - None - - - AllowGoogleDrive - - Designates whether users are able to leverage GoogleDrive as a third party storage solution in Microsoft Teams. If $true, users will be able to add Google Drive in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowGuestUser - - Designates whether or not guest users in your organization will have access to the Teams client. If $true, guests in your tenant will be able to access the Teams client. Note that this setting has a core dependency on Guest Access being enabled in your Office 365 tenant. For more information on this topic, read Authorize Guest Access in Microsoft Teams: https://learn.microsoft.com/microsoftteams/teams-dependencies - - Boolean - - Boolean - - - None - - - AllowOrganizationTab - - When set to $true, users will be able to see the organizational chart icon other users' contact cards, and when clicked, this icon will display the detailed organizational chart. - - Boolean - - Boolean - - - None - - - AllowResourceAccountSendMessage - - Surface Hub uses a device account to provide email and collaboration services (IM, video, voice). This device account is used as the originating identity (the "from" party) when sending email, IM, and placing calls. As this account is not coming from an individual, identifiable user, it is deemed "anonymous" because it originated from the Surface Hub's device account. If set to $true, these device accounts will be able to send chat messages in Skype for Business Online (does not apply to Microsoft Teams). - - Boolean - - Boolean - - - None - - - AllowRoleBasedChatPermissions - - When set to True, Supervised Chat is enabled for the tenant. - - Boolean - - Boolean - - - False - - - AllowScopedPeopleSearchandAccess - - If set to $true, the Exchange address book policy (ABP) will be used to provide customized view of the global address book for each user. This is only a virtual separation and not a legal separation. - - Boolean - - Boolean - - - None - - - AllowShareFile - - Designates whether users are able to leverage Citrix ShareFile as a third party storage solution in Microsoft Teams. If $true, users will be able to add Citrix ShareFile in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowSkypeBusinessInterop - - When set to $true, Teams conversations automatically show up in Skype for Business for users that aren't enabled for Teams. - - Boolean - - Boolean - - - None - - - AllowTBotProactiveMessaging - - Deprecated, do not use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ContentPin - - This setting applies only to Skype for Business Online (not Microsoft Teams) and defines whether the user must provide a secondary form of authentication to access the meeting content from a resource device account . Meeting content is defined as files that are shared to the "Content Bin" - files that have been attached to the meeting. - Possible Values: NotRequired, RequiredOutsideScheduleMeeting, AlwaysRequired . Default Value: RequiredOutsideScheduleMeeting - - String - - String - - - None - - - Force - - Bypass any verification checks and non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - You can use this to pass the results from Get-CsTeamsClientConfiguration into the Set-CsTeamsClientConfiguration rather than specifying the "-Identity Global" parameter. - - PSObject - - PSObject - - - None - - - ResourceAccountContentAccess - - Require a secondary form of authentication to access meeting content. - Possible values: NoAccess, PartialAccess and FullAccess - - String - - String - - - None - - - RestrictedSenderList - - Senders domains can be further restricted to ensure that only allowed SMTP domains can send emails to the Teams channels. This is a semicolon-separated string of the domains you'd like to allow to send emails to Teams channels. - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - UseUnifiedDomain - - This setting controls whether users are redirected from teams.microsoft.com to the unified domain teams.cloud.microsoft. Possible values are: - MicrosoftDefault , Microsoft will manage redirection behavior. If no explicit admin configuration is set, users may be redirected automatically. - Disabled , Users will remain on teams.microsoft.com. Use this if your organization's apps are incompatible with the unified domain. - - String - - String - - - None - - - WhatIf - - The WhatIf switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - - - - AllowBox - - Designates whether users are able to leverage Box as a third party storage solution in Microsoft Teams. If $true, users will be able to add Box in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowDropBox - - Designates whether users are able to leverage DropBox as a third party storage solution in Microsoft Teams. If $true, users will be able to add DropBox in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEgnyte - - Designates whether users are able to leverage Egnyte as a third party storage solution in Microsoft Teams. If $true, users will be able to add Egnyte in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowEmailIntoChannel - - When set to $true, mail hooks are enabled, and users can post messages to a channel by sending an email to the email address of Teams channel. - To find the email address for a channel, click the More options menu for the channel and then select Get email address. - - Boolean - - Boolean - - - None - - - AllowGoogleDrive - - Designates whether users are able to leverage GoogleDrive as a third party storage solution in Microsoft Teams. If $true, users will be able to add Google Drive in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowGuestUser - - Designates whether or not guest users in your organization will have access to the Teams client. If $true, guests in your tenant will be able to access the Teams client. Note that this setting has a core dependency on Guest Access being enabled in your Office 365 tenant. For more information on this topic, read Authorize Guest Access in Microsoft Teams: https://learn.microsoft.com/microsoftteams/teams-dependencies - - Boolean - - Boolean - - - None - - - AllowOrganizationTab - - When set to $true, users will be able to see the organizational chart icon other users' contact cards, and when clicked, this icon will display the detailed organizational chart. - - Boolean - - Boolean - - - None - - - AllowResourceAccountSendMessage - - Surface Hub uses a device account to provide email and collaboration services (IM, video, voice). This device account is used as the originating identity (the "from" party) when sending email, IM, and placing calls. As this account is not coming from an individual, identifiable user, it is deemed "anonymous" because it originated from the Surface Hub's device account. If set to $true, these device accounts will be able to send chat messages in Skype for Business Online (does not apply to Microsoft Teams). - - Boolean - - Boolean - - - None - - - AllowRoleBasedChatPermissions - - When set to True, Supervised Chat is enabled for the tenant. - - Boolean - - Boolean - - - False - - - AllowScopedPeopleSearchandAccess - - If set to $true, the Exchange address book policy (ABP) will be used to provide customized view of the global address book for each user. This is only a virtual separation and not a legal separation. - - Boolean - - Boolean - - - None - - - AllowShareFile - - Designates whether users are able to leverage Citrix ShareFile as a third party storage solution in Microsoft Teams. If $true, users will be able to add Citrix ShareFile in the client and interact with the files stored there. - - Boolean - - Boolean - - - None - - - AllowSkypeBusinessInterop - - When set to $true, Teams conversations automatically show up in Skype for Business for users that aren't enabled for Teams. - - Boolean - - Boolean - - - None - - - AllowTBotProactiveMessaging - - Deprecated, do not use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ContentPin - - This setting applies only to Skype for Business Online (not Microsoft Teams) and defines whether the user must provide a secondary form of authentication to access the meeting content from a resource device account . Meeting content is defined as files that are shared to the "Content Bin" - files that have been attached to the meeting. - Possible Values: NotRequired, RequiredOutsideScheduleMeeting, AlwaysRequired . Default Value: RequiredOutsideScheduleMeeting - - String - - String - - - None - - - Force - - Bypass any verification checks and non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only valid input is Global - the tenant wide configuration. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - You can use this to pass the results from Get-CsTeamsClientConfiguration into the Set-CsTeamsClientConfiguration rather than specifying the "-Identity Global" parameter. - - PSObject - - PSObject - - - None - - - ResourceAccountContentAccess - - Require a secondary form of authentication to access meeting content. - Possible values: NoAccess, PartialAccess and FullAccess - - String - - String - - - None - - - RestrictedSenderList - - Senders domains can be further restricted to ensure that only allowed SMTP domains can send emails to the Teams channels. This is a semicolon-separated string of the domains you'd like to allow to send emails to Teams channels. - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - UseUnifiedDomain - - This setting controls whether users are redirected from teams.microsoft.com to the unified domain teams.cloud.microsoft. Possible values are: - MicrosoftDefault , Microsoft will manage redirection behavior. If no explicit admin configuration is set, users may be redirected automatically. - Disabled , Users will remain on teams.microsoft.com. Use this if your organization's apps are incompatible with the unified domain. - - String - - String - - - None - - - WhatIf - - The WhatIf switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsClientConfiguration -Identity Global -AllowDropBox $false - - In this example, the client configuration effective for the organization (Global) is being updated to disable the use of DropBox in the organization. All other settings in the configuration remain the same. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsclientconfiguration - - - - - - Set-CsTeamsComplianceRecordingApplication - Set - CsTeamsComplianceRecordingApplication - - Modifies an existing association between an application instance of a policy-based recording application and a Teams recording policy for administering automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Policy-based recording applications are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to enforce compliance with the administrative set policy. - Instances of these applications are created using CsOnlineApplicationInstance cmdlets and are then associated with Teams recording policies. - Note that application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. Once the association is done, the Identity of these application instances becomes <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. Please also refer to the documentation of CsTeamsComplianceRecordingPolicy cmdlets for further information. - - - - Set-CsTeamsComplianceRecordingApplication - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsComplianceRecordingApplication - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ComplianceRecordingPairedApplications - - Determines the other policy-based recording applications to pair with this application to achieve application resiliency. Can only have one paired application. - In situations where application resiliency is a necessity, invites can be sent to separate paired applications for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - ComplianceRecordingPairedApplication[] - - ComplianceRecordingPairedApplication[] - - - None - - - ConcurrentInvitationCount - - Determines the number of invites to send out to the application instance of the policy-based recording application. Can be set to 1 or 2 only. - In situations where application resiliency is a necessity, multiple invites can be sent to the same application for the same call or meeting. If multiple such invites are accepted, then it means that multiple instances of this application are in the call or meeting and each of those instances can record independent of the others. - If all of the invites are rejected, the application invitation process is deemed a failure and the other flags for this application control what happens next. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredBeforeCallEstablishment parameters. - If at least one of the invites is accepted and the others are rejected, the application invitation process is still deemed a success. - If multiple invites are accepted and all of the instances leave or get dropped from the call or meeting, then the application is no longer in the call or meeting and the other flags for this application control what happens next. Please refer to the documentation of the RequiredDuringMeeting and RequiredDuringCall parameters. - If multiple invites are accepted and at least one of the instances remains in the call or meeting, then the application is in the call or meeting. - Note that application resiliency can be achieved either by sending multiple invites to the same application using ConcurrentInvitationCount or by sending invites to separate paired applications using ComplianceRecordingPairedApplications. However, you cannot do both. Please work with your Microsoft certified policy-based recording application provider to determine if application resiliency is needed for your workflows and how best to achieve application resiliency. - - UInt32 - - UInt32 - - - 1 - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A name that uniquely identifies the application instance of the policy-based recording application. - Application instances of policy-based recording applications must be associated with a Teams recording policy using the CsTeamsComplianceRecordingApplication cmdlets. To do this association correctly, the Identity of these application instances must be <Identity of the associated Teams recording policy>/<ObjectId of the application instance>. For example, the Identity of an application instance can be \"Tag:ContosoPartnerComplianceRecordingPolicy/39dc3ede-c80e-4f19-9153-417a65a1f144\", which indicates that the application instance with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144 is associated with the Teams recording policy with Identity ContosoPartnerComplianceRecordingPolicy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Priority - - This priority determines the order in which the policy-based recording applications are displayed in the output of the Get-CsTeamsComplianceRecordingPolicy cmdlet. - All policy-based recording applications are invited in parallel to ensure low call setup and meeting join latencies. So this parameter does not affect the order of invitations to the applications, or any other routing. - - Int32 - - Int32 - - - None - - - RequiredBeforeCallEstablishment - - Indicates whether the policy-based recording application must be in the call before the call is allowed to establish. - If this is set to True, the call will be cancelled if the policy-based recording application fails to join the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application fails to join the call. - - Boolean - - Boolean - - - True - - - RequiredBeforeMeetingJoin - - Indicates whether the policy-based recording application must be in the meeting before the user is allowed to join the meeting. - If this is set to True, the user will not be allowed to join the meeting if the policy-based recording application fails to join the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will be allowed to join the meeting even if the policy-based recording application fails to join the meeting. - - Boolean - - Boolean - - - True - - - RequiredDuringCall - - Indicates whether the policy-based recording application must be in the call while the call is active. - If this is set to True, the call will be cancelled if the policy-based recording application leaves the call or is dropped from the call. - If this is set to False, call establishment will proceed normally if the policy-based recording application leaves the call or is dropped from the call. - - Boolean - - Boolean - - - True - - - RequiredDuringMeeting - - Indicates whether the policy-based recording application must be in the meeting while the user is in the meeting. - If this is set to True, the user will be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. The meeting will still continue for users who are in the meeting. - If this is set to False, the user will not be ejected from the meeting if the policy-based recording application leaves the meeting or is dropped from the meeting. - - Boolean - - Boolean - - - True - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' -RequiredBeforeMeetingJoin $false -RequiredDuringMeeting $false - - The command shown in Example 1 modifies an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made optional for meetings. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredDuringMeeting parameters for more information. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' -RequiredBeforeCallEstablishment $false -RequiredDuringCall $false - - The command shown in Example 2 modifies an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made optional for calls. Please refer to the documentation of the RequiredBeforeCallEstablishment and RequiredDuringCall parameters for more information. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' -ConcurrentInvitationCount 2 - - The command shown in Example 3 modifies an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made resilient by specifying that two invites must be sent to the same application for the same call or meeting. Please refer to the documentation of the ConcurrentInvitationCount parameter for more information. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' -ComplianceRecordingPairedApplications @(New-CsTeamsComplianceRecordingPairedApplication -Id '39dc3ede-c80e-4f19-9153-417a65a1f144') - - The command shown in Example 4 modifies an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application is made resilient by pairing it with another application instance of a policy-based recording application with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. Separate invites are sent to the paired applications for the same call or meeting. Please refer to the documentation of the ComplianceRecordingPairedApplications parameter for more information. - - - - -------------------------- Example 5 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingApplication -Identity 'Tag:ContosoPartnerComplianceRecordingPolicy/d93fefc7-93cc-4d44-9a5d-344b0fff2899' -ComplianceRecordingPairedApplications $null - - The command shown in Example 5 modifies an existing association between an application instance of a policy-based recording application with ObjectId d93fefc7-93cc-4d44-9a5d-344b0fff2899 and a Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. - In this example, the application's resiliency is removed by removing the pairing it had with the application instance of a policy-based recording application with ObjectId 39dc3ede-c80e-4f19-9153-417a65a1f144. Please refer to the documentation of the ComplianceRecordingPairedApplications parameter for more information. - - - - -------------------------- Example 6 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingApplication | Set-CsTeamsComplianceRecordingApplication -RequiredBeforeMeetingJoin $false -RequiredDuringMeeting $false - - The command shown in Example 6 modifies all existing associations between application instances of policy-based recording applications and their corresponding Teams recording policy. - In this example, all applications are made optional for meetings. Please refer to the documentation of the RequiredBeforeMeetingJoin and RequiredDuringMeeting parameters for more information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Set-CsTeamsComplianceRecordingPolicy - Set - CsTeamsComplianceRecordingPolicy - - Modifies an existing Teams recording policy for governing automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - Set-CsTeamsComplianceRecordingPolicy - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - ComplianceRecordingApplications - - A list of application instances of policy-based recording applications to assign to this policy. The Id of each of these application instances must be the ObjectId of the application instance as obtained by the Get-CsOnlineApplicationInstance cmdlet. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - - ComplianceRecordingApplication[] - - ComplianceRecordingApplication[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams recording policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording - - Boolean - - Boolean - - - False - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording. - - Boolean - - Boolean - - - False - - - Enabled - - Controls whether this Teams recording policy is active or not. - Setting this to True and having the right set of ComplianceRecordingApplications will initiate automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - Setting this to False will stop automatic policy-based recording for any new calls or meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - CustomBanner - - References the Custom Banner text in the storage. - - Guid - - Guid - - - None - - - RecordReroutedCalls - - Setting this attribute to true enables compliance recording for calls that have been re-routed from a compliance recording-enabled user. Supported call scenarios include forward, transfer, delegation, call groups, and simultaneous ring. - - Boolean - - Boolean - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WarnUserOnRemoval - - This parameter is reserved for future use. - - Boolean - - Boolean - - - True - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsComplianceRecordingPolicy - - ComplianceRecordingApplications - - A list of application instances of policy-based recording applications to assign to this policy. The Id of each of these application instances must be the ObjectId of the application instance as obtained by the Get-CsOnlineApplicationInstance cmdlet. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - - ComplianceRecordingApplication[] - - ComplianceRecordingApplication[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams recording policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording - - Boolean - - Boolean - - - False - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording. - - Boolean - - Boolean - - - False - - - Enabled - - Controls whether this Teams recording policy is active or not. - Setting this to True and having the right set of ComplianceRecordingApplications will initiate automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - Setting this to False will stop automatic policy-based recording for any new calls or meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - CustomBanner - - References the Custom Banner text in the storage. - - Guid - - Guid - - - None - - - RecordReroutedCalls - - Setting this attribute to true enables compliance recording for calls that have been re-routed from a compliance recording-enabled user. Supported call scenarios include forward, transfer, delegation, call groups, and simultaneous ring. - - Boolean - - Boolean - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WarnUserOnRemoval - - This parameter is reserved for future use. - - Boolean - - Boolean - - - True - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ComplianceRecordingApplications - - A list of application instances of policy-based recording applications to assign to this policy. The Id of each of these application instances must be the ObjectId of the application instance as obtained by the Get-CsOnlineApplicationInstance cmdlet. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - - ComplianceRecordingApplication[] - - ComplianceRecordingApplication[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams recording policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording - - Boolean - - Boolean - - - False - - - DisableComplianceRecordingAudioNotificationForCalls - - Setting this attribute to true disables recording audio notifications for 1:1 calls that are under compliance recording. - - Boolean - - Boolean - - - False - - - Enabled - - Controls whether this Teams recording policy is active or not. - Setting this to True and having the right set of ComplianceRecordingApplications will initiate automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - Setting this to False will stop automatic policy-based recording for any new calls or meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier to be assigned to the new Teams recording policy. - Use the "Global" Identity if you wish to assign this policy to the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - CustomBanner - - References the Custom Banner text in the storage. - - Guid - - Guid - - - None - - - RecordReroutedCalls - - Setting this attribute to true enables compliance recording for calls that have been re-routed from a compliance recording-enabled user. Supported call scenarios include forward, transfer, delegation, call groups, and simultaneous ring. - - Boolean - - Boolean - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WarnUserOnRemoval - - This parameter is reserved for future use. - - Boolean - - Boolean - - - True - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -ComplianceRecordingApplications @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899') - - The command shown in Example 1 modifies an existing per-user Teams recording policy with the Identity ContosoPartnerComplianceRecordingPolicy. This policy is re-assigned a single application instance of a policy-based recording application: d93fefc7-93cc-4d44-9a5d-344b0fff2899, which is the ObjectId of the application instance as obtained from the Get-CsOnlineApplicationInstance cmdlet. - Any Microsoft Teams users who are assigned this policy will have their calls and meetings recorded by that application instance. Existing calls and meetings are unaffected. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -ComplianceRecordingApplications @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id 'd93fefc7-93cc-4d44-9a5d-344b0fff2899'), @(New-CsTeamsComplianceRecordingApplication -Parent 'ContosoPartnerComplianceRecordingPolicy' -Id '39dc3ede-c80e-4f19-9153-417a65a1f144') - - Example 2 is a variation of Example 1. In this case, the Teams recording policy is re-assigned two application instances of policy-based recording applications. - Any Microsoft Teams users who are assigned this policy will have their calls and meetings recorded by both those application instances. Existing calls and meetings are unaffected. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -Enabled $false - - The command shown in Example 3 stops automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Set-CsTeamsComplianceRecordingPolicy -Identity 'ContosoPartnerComplianceRecordingPolicy' -Enabled $true - - The command shown in Example 4 causes automatic policy-based recording to occur for all new calls and meetings of all Microsoft Teams users who are assigned this policy. Existing calls and meetings are unaffected. - - - - -------------------------- Example 5 -------------------------- - PS C:\> Get-CsTeamsComplianceRecordingPolicy | Set-CsTeamsComplianceRecordingPolicy -Enabled $false - - The command shown in Example 5 stops automatic policy-based recording for all Teams recording policies. This effectively stops automatic policy-based recording for all new calls and meetings of all Microsoft Teams users who are assigned any Teams recording policy. Existing calls and meetings are unaffected. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Grant-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Set-CsTeamsCortanaPolicy - Set - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - - - Set-CsTeamsCortanaPolicy - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsCortanaPolicy - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCortanaPolicy -Identity MyCortanaPolicy -CortanaVoiceInvocationMode Disabled - - In this example, Cortana voice assistant is set to disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Set-CsTeamsEducationAssignmentsAppPolicy - Set - CsTeamsEducationAssignmentsAppPolicy - - This policy is controlled by Global and Teams Service Administrators, and is used to turn on/off certain features only related to the Assignments Service, which runs for tenants with EDU licenses. - - - - This policy is controlled by Global and Teams Service Administrators, and is used to turn on/off certain features only related to the Assignments Service, which runs for tenants with EDU licenses. This cmdlet allows you to retrieve the current values of your Education Assignments App Policy. At this time, you can only modify your global policy - this policy type does not support user-level custom policies. - - - - Set-CsTeamsEducationAssignmentsAppPolicy - - Identity - - The identity of the policy being modified. The only value supported is "Global", as you cannot create user level policies of this type. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - MakeCodeEnabledType - - Block-based coding activities to introduce computer science concepts. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - ParentDigestEnabledType - - Send digest emails to parents/guardians. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - TurnItInApiKey - - The api key in order to enable TurnItIn. - - String - - String - - - None - - - TurnItInApiUrl - - The api url in order to enable TurnItIn - - String - - String - - - None - - - TurnItInEnabledType - - A service that detects plagiarism in student writing. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsEducationAssignmentsAppPolicy - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Pass in the policy fetched from Get-CsTeamsEducationAssignmentsAppPolicy. - - PSObject - - PSObject - - - None - - - MakeCodeEnabledType - - Block-based coding activities to introduce computer science concepts. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - ParentDigestEnabledType - - Send digest emails to parents/guardians. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - TurnItInApiKey - - The api key in order to enable TurnItIn. - - String - - String - - - None - - - TurnItInApiUrl - - The api url in order to enable TurnItIn - - String - - String - - - None - - - TurnItInEnabledType - - A service that detects plagiarism in student writing. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy being modified. The only value supported is "Global", as you cannot create user level policies of this type. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Pass in the policy fetched from Get-CsTeamsEducationAssignmentsAppPolicy. - - PSObject - - PSObject - - - None - - - MakeCodeEnabledType - - Block-based coding activities to introduce computer science concepts. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - ParentDigestEnabledType - - Send digest emails to parents/guardians. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - Tenant - - Internal use only. - - System.Guid - - System.Guid - - - None - - - TurnItInApiKey - - The api key in order to enable TurnItIn. - - String - - String - - - None - - - TurnItInApiUrl - - The api url in order to enable TurnItIn - - String - - String - - - None - - - TurnItInEnabledType - - A service that detects plagiarism in student writing. Possible values are "Enabled" or "Disabled" - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsEducationAssignmentsAppPolicy -TurnItInEnabledType "Enabled" - - Enables the TurnItIn app for the organization - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamseducationassignmentsapppolicy - - - - - - Set-CsTeamsEducationConfiguration - Set - CsTeamsEducationConfiguration - - This cmdlet is used to manage the organization-wide education configuration for Teams. - - - - This cmdlet is used to manage the organization-wide education configuration for Teams which contains settings that are applicable to education organizations. - You must be a Teams Service Administrator for your organization to run the cmdlet. - - - - Set-CsTeamsEducationConfiguration - - ParentGuardianPreferredContactMethod - - Indicates whether Email or SMS is the preferred contact method used for parent communication invitations. Possible values are 'Email' and 'SMS'. - - System.String - - System.String - - - Email - - - UpdateParentInformation - - Indicates whether updating parents contact information is Enabled/Disabled by educators. Possible values are 'Enabled' and 'Disabled'. - - System.String - - System.String - - - Enabled - - - EduGenerativeAIEnhancements - - Controls whether generative AI enhancements are enabled in the education environment. - Possible values: - - `Enabled`: Generative AI features are available to educators and students. - - `Disabled`: Generative AI features are disabled across the tenant. - - System.String - - System.String - - - Enabled - - - Identity - - Specifies the identity of the education configuration to set. - - System.String - - System.String - - - Global - - - - - - ParentGuardianPreferredContactMethod - - Indicates whether Email or SMS is the preferred contact method used for parent communication invitations. Possible values are 'Email' and 'SMS'. - - System.String - - System.String - - - Email - - - UpdateParentInformation - - Indicates whether updating parents contact information is Enabled/Disabled by educators. Possible values are 'Enabled' and 'Disabled'. - - System.String - - System.String - - - Enabled - - - EduGenerativeAIEnhancements - - Controls whether generative AI enhancements are enabled in the education environment. - Possible values: - - `Enabled`: Generative AI features are available to educators and students. - - `Disabled`: Generative AI features are disabled across the tenant. - - System.String - - System.String - - - Enabled - - - Identity - - Specifies the identity of the education configuration to set. - - System.String - - System.String - - - Global - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEducationConfiguration -ParentGuardianPreferredContactMethod Email - - - - - - -------------------------- Example 2 -------------------------- - Set-CsTeamsEducationConfiguration -ParentGuardianPreferredContactMethod SMS - - - - - - -------------------------- Example 3 -------------------------- - Set-CsTeamsEducationConfiguration -UpdateParentInformation Enabled - - - - - - -------------------------- Example 4 -------------------------- - Set-CsTeamsEducationConfiguration -UpdateParentInformation Disabled - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamseducationconfiguration - - - Get-CsTeamsEducationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamseducationconfiguration - - - - - - Set-CsTeamsEmergencyCallingPolicy - Set - CsTeamsEmergencyCallingPolicy - - - - - - This cmdlet modifies an existing Teams Emergency Calling policy. Emergency calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. - - - - Set-CsTeamsEmergencyCallingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Calling policy to identify the purpose of setting it. - - String - - String - - - None - - - EnhancedEmergencyServiceDisclaimer - - Allows the tenant administrator to configure a text string, which is shown at the top of the Calls app. The user can acknowledge the string by selecting OK. The string will be shown on client restart. The disclaimer can be up to 350 characters. - - String - - String - - - None - - - ExtendedNotifications - - A list of one or more instances of TeamsEmergencyCallingExtendedNotification. Each TeamsEmergencyCallingExtendedNotification should use a unique EmergencyDialString. - If an extended notification is found for an emergency phone number based on the EmergencyDialString parameter the extended notification will be controlling the notification. If no extended notification is found the notification settings on the policy instance itself will be used. - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - - None - - - ExternalLocationLookupMode - - Enables ExternalLocationLookupMode. This mode allows users to set Emergency addresses for remote locations. - - - Disabled - Enabled - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. Possible values are NotificationOnly, ConferenceMuted, and ConferenceUnMuted. - - - NotificationOnly - ConferenceMuted - ConferenceUnMuted - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Calling policy to identify the purpose of setting it. - - String - - String - - - None - - - EnhancedEmergencyServiceDisclaimer - - Allows the tenant administrator to configure a text string, which is shown at the top of the Calls app. The user can acknowledge the string by selecting OK. The string will be shown on client restart. The disclaimer can be up to 350 characters. - - String - - String - - - None - - - ExtendedNotifications - - A list of one or more instances of TeamsEmergencyCallingExtendedNotification. Each TeamsEmergencyCallingExtendedNotification should use a unique EmergencyDialString. - If an extended notification is found for an emergency phone number based on the EmergencyDialString parameter the extended notification will be controlling the notification. If no extended notification is found the notification settings on the policy instance itself will be used. - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - System.Management.Automation.PSListModifier[Microsoft.Teams.Policy.Administration.Cmdlets.Core.TeamsEmergencyCallingExtendedNotification] - - - None - - - ExternalLocationLookupMode - - Enables ExternalLocationLookupMode. This mode allows users to set Emergency addresses for remote locations. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.ExternalLocationLookupMode - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy - - String - - String - - - None - - - NotificationDialOutNumber - - This parameter represents the PSTN number which can be dialed out if NotificationMode is set to either of the two Conference values. The PSTN phone cannot be unmuted even when the NotificationMode is set to ConferenceUnMuted. - - String - - String - - - None - - - NotificationGroup - - NotificationGroup is an email list of users and groups to be notified of an emergency call via Teams chat. Individual users or groups are separated by ";", for instance, "group1@contoso.com;group2@contoso.com". A maximum of 10 e-mail addresses can be specified and a maximum of 50 users in total can be notified. Both UPN and SMTP address are accepted when adding users directly. - - String - - String - - - None - - - NotificationMode - - The type of conference experience for security desk notification. Possible values are NotificationOnly, ConferenceMuted, and ConferenceUnMuted. - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - Microsoft.Teams.Policy.Administration.Cmdlets.Core.NotificationMode - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEmergencyCallingPolicy -Identity "TestECP" -NotificationGroup "123@contoso.com;567@contoso.com" - - This example modifies NotificationGroup of an existing policy instance with identity TestECP. - - - - -------------------------- Example 2 -------------------------- - $en1 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "911" -NotificationGroup "alert2@contoso.com" -NotificationMode ConferenceUnMuted -Set-CsTeamsEmergencyCallingPolicy -Identity "TestECP" -ExtendedNotifications @{remove=$en1} - - This example first creates a new Teams Emergency Calling Extended Notification object and then removes that Teams Emergency Calling Extended Notification from an existing Teams Emergency Calling policy. - - - - -------------------------- Example 3 -------------------------- - $en1 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "911" -NotificationGroup "alert@contoso.com" -NotificationDialOutNumber "+14255551234" -NotificationMode ConferenceUnMuted -$en2 = New-CsTeamsEmergencyCallingExtendedNotification -EmergencyDialString "933" -Set-CsTeamsEmergencyCallingPolicy -Identity "TestECP" -ExtendedNotifications @{add=$en1,$en2} - - This example first creates two new Teams Emergency Calling Extended Notification objects and then adds them to an existing Teams Emergency Calling policy with identity TestECP. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Get-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - Remove-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - Grant-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingExtendedNotification - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingextendednotification - - - - - - Set-CsTeamsEmergencyCallRoutingPolicy - Set - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet modifies an existing Teams Emergency Call Routing Policy. - - - - This cmdlet modifies an existing Teams Emergency Call Routing Policy. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration - - - - Set-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Call Routing policy to identify the purpose of setting it. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Call Routing policy to identify the purpose of setting it. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -AllowEnhancedEmergencyServices:$false -Description "test" - - This example modifies an existing Teams Emergency Call Routing Policy. - - - - -------------------------- Example 2 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -$en2 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "9112" -OnlinePSTNUsage "DKE911" -Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$en1,$en2} - - This example first creates new Teams emergency number objects and then adds these Teams emergency numbers to an existing Teams Emergency Call Routing policy. - - - - -------------------------- Example 3 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "9112" -OnlinePSTNUsage "DKE911" -Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{remove=$en1} - - This example first creates a new Teams emergency number object and then removes that Teams emergency number from an existing Teams Emergency Call Routing policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - - - - Set-CsTeamsEnhancedEncryptionPolicy - Set - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to update values in existing Teams enhanced encryption policy. - - - - Use this cmdlet to update values in existing Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Set-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish modify the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Use this to pipe a specific enhanced encryption policy to be set. You can only modify the global policy, so can only pass the global instance of the enhanced encryption policy. - - Object - - Object - - - None - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish modify the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Use this to pipe a specific enhanced encryption policy to be set. You can only modify the global policy, so can only pass the global instance of the enhanced encryption policy. - - Object - - Object - - - None - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -CallingEndtoEndEncryptionEnabledType DisabledUserOverride - - The command shown in Example 1 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy is re-assigned CallingEndtoEndEncryptionEnabledType to be DisabledUserOverride. - Any Microsoft Teams users who are assigned this policy will have their enhanced encryption policy customized such that the user can use the enhanced encryption setting in Teams. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -MeetingEndToEndEncryption DisabledUserOverride - - The command shown in Example 2 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy has re-assigned MeetingEndToEndEncryption to be DisabledUserOverride. - Any Microsoft Teams users who are assigned this policy and have a Teams Premium license will have the option to create end-to-end encrypted meetings. Learn more about end-to-end encryption for Teams meetings (https://support.microsoft.com/en-us/office/use-end-to-end-encryption-for-teams-meetings-a8326d15-d187-49c4-ac99-14c17dbd617c). - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -Description "allow useroverride" - - The command shown in Example 2 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy is re-assigned the description from its existing value to "allow useroverride". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Set-CsTeamsEventsPolicy - Set - CsTeamsEventsPolicy - - This cmdlet allows you to configure options for customizing Teams events experiences. Note that this policy is currently still in preview. - - - - User-level policy for tenant admin to configure options for customizing Teams events experiences. Use this cmdlet to update an existing policy. - - - - Set-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting describes how IT admins can control which types of Town Hall attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting describes how IT admins can control which types of webinar attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - None - - - AllowEventIntegrations - - This setting governs access to the integrations tab in the event creation workflow. - Possible values true, false. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town halls. - - String - - String - - - None - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - None - - - BroadcastPremiumApps - - This setting governs if an organizer of a broadcast style event (including town halls) may add an app that is accessible by everyone, including attendees, to the event. This does not include control over apps (such as the AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Please note, only certain apps, such as Polls, are supported for everyone in broadcast style events. - Possible values are: - Enabled : An organizer of a broadcast style event can add Apps such as Polls - Disabled : An organizer of a broadcast style event CANNOT add Apps as Polls - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - > [!NOTE] > Currently, webinar and town hall event access is managed together via EventAccessType. - This setting governs which users can access the event registration page or the event site to register. It also governs which user type is allowed to join the session/s in the event. Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - EveryoneInCompanyExcludingGuests : Enables creating events to allow only in-tenant users to register and join the event. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. - Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. - Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs whether the user can enable the Comment Stream chat experience for Town Halls. - Possible values are: Optimized, None. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. - Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. - Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - Boolean - - Boolean - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting describes how IT admins can control which types of Town Hall attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting describes how IT admins can control which types of webinar attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - None - - - AllowEventIntegrations - - This setting governs access to the integrations tab in the event creation workflow. - Possible values true, false. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town halls. - - String - - String - - - None - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - None - - - BroadcastPremiumApps - - This setting governs if an organizer of a broadcast style event (including town halls) may add an app that is accessible by everyone, including attendees, to the event. This does not include control over apps (such as the AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Please note, only certain apps, such as Polls, are supported for everyone in broadcast style events. - Possible values are: - Enabled : An organizer of a broadcast style event can add Apps such as Polls - Disabled : An organizer of a broadcast style event CANNOT add Apps as Polls - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - > [!NOTE] > Currently, webinar and town hall event access is managed together via EventAccessType. - This setting governs which users can access the event registration page or the event site to register. It also governs which user type is allowed to join the session/s in the event. Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - EveryoneInCompanyExcludingGuests : Enables creating events to allow only in-tenant users to register and join the event. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. - Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. - Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs whether the user can enable the Comment Stream chat experience for Town Halls. - Possible values are: Optimized, None. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. - Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. - Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - Boolean - - Boolean - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEventsPolicy -Identity Global -AllowWebinars Disabled - - The command shown in Example 1 sets the value of the Default (Global) Events Policy in the organization to disable webinars, and leaves all other parameters the same. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamseventspolicy - - - - - - Set-CsTeamsExternalAccessConfiguration - Set - CsTeamsExternalAccessConfiguration - - - - - - Allows admins to set values in the TeamsExternalAccessConfiguration, which specifies configs that can be used to improve entire org security. This configuration primarily allows admins to block malicious external users from the organization. - - - - Set-CsTeamsExternalAccessConfiguration - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - BlockedUsers - - You can specify blocked users using a List object that contains either the user email or the MRI from the external user you want to block. The user in the list will not able to communicate with the internal users in your organization. - - List - - List - - - None - - - BlockExternalAccessUserAccess - - Designates whether BlockedUsers list is taking effect or not. $true means BlockedUsers are blocked and can't communicate with internal users. - - Boolean - - Boolean - - - False - - - Force - - Bypass confirmation - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BlockedUsers - - You can specify blocked users using a List object that contains either the user email or the MRI from the external user you want to block. The user in the list will not able to communicate with the internal users in your organization. - - List - - List - - - None - - - BlockExternalAccessUserAccess - - Designates whether BlockedUsers list is taking effect or not. $true means BlockedUsers are blocked and can't communicate with internal users. - - Boolean - - Boolean - - - False - - - Force - - Bypass confirmation - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsExternalAccessConfiguration -Identity Global -BlockExternalAccessUserAccess $true - - In this example, the admin has enabled the BlockExternalUserAccess. The users in the BlockedUsers will be blocked from communicating with the internal users. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsExternalAccessConfiguration -Identity Global -BlockedUsers @("user1@malicious.com", "user2@malicious.com") - - In this example, the admin has added two malicious users into the blocked list. These blocked users can't communicate with internal users anymore. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsexternalaccessconfiguration - - - - - - Set-CsTeamsFeedbackPolicy - Set - CsTeamsFeedbackPolicy - - Use this cmdlet to modify a Teams feedback policy (the ability to send feedback about Teams to Microsoft and whether they receive the survey). - - - - Modifies a Teams feedback policy (the ability to send feedback about Teams to Microsoft and whether they receive the survey). - - - - Set-CsTeamsFeedbackPolicy - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - AllowEmailCollection - - Set this to TRUE to enable Email collection. - - Boolean - - Boolean - - - None - - - AllowLogCollection - - Set this to TRUE to enable log collection. - - Boolean - - Boolean - - - None - - - AllowScreenshotCollection - - Set this to TRUE to enable Screenshot collection. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableFeatureSuggestions - - This setting will enable Tenant Admins to hide or show the Teams menu item "Help | Suggest a Feature". Possible Values: True, False - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - Internal Microsoft use. - - Object - - Object - - - None - - - ReceiveSurveysMode - - Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey. Set it to EnabledUserOverride to have users receive the survey and allow them to opt out. - Possible values: - Enabled - Disabled - EnabledUserOverride - - String - - String - - - Enabled - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - UserInitiatedMode - - Set the userInitiatedMode parameter to enabled to allow users who are assigned the policy to give feedback. Setting the parameter to disabled turns off the feature and users who are assigned the policy don't have the option to give feedback. - Possible values: - Enabled - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEmailCollection - - Set this to TRUE to enable Email collection. - - Boolean - - Boolean - - - None - - - AllowLogCollection - - Set this to TRUE to enable log collection. - - Boolean - - Boolean - - - None - - - AllowScreenshotCollection - - Set this to TRUE to enable Screenshot collection. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableFeatureSuggestions - - This setting will enable Tenant Admins to hide or show the Teams menu item "Help | Suggest a Feature". Possible Values: True, False - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - Instance - - Internal Microsoft use. - - Object - - Object - - - None - - - ReceiveSurveysMode - - Set the receiveSurveysMode parameter to enabled to allow users who are assigned the policy to receive the survey. Set it to EnabledUserOverride to have users receive the survey and allow them to opt out. - Possible values: - Enabled - Disabled - EnabledUserOverride - - String - - String - - - Enabled - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - UserInitiatedMode - - Set the userInitiatedMode parameter to enabled to allow users who are assigned the policy to give feedback. Setting the parameter to disabled turns off the feature and users who are assigned the policy don't have the option to give feedback. - Possible values: - Enabled - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsFeedbackPolicy -identity "New Hire Feedback Policy" -userInitiatedMode enabled -receiveSurveysMode disabled - - In this example, the policy "New Hire Feedback Policy" is modified, sets the userInitiatedMode parameter to enabled and the receiveSurveysMode parameter to disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsfeedbackpolicy - - - - - - Set-CsTeamsFilesPolicy - Set - CsTeamsFilesPolicy - - Creates a new teams files policy. Teams files policies determine whether or not files entry points to SharePoint enabled for a user. The policies also specify third-party app ID to allow file storage (e.g., Box). - - - - If your organization chooses a third-party for content storage, you can turn off the NativeFileEntryPoints parameter in the Teams Files policy. This parameter is enabled by default, which shows option to attach OneDrive / SharePoint content from Teams chats or channels. When this parameter is disabled, users won't see access points for OneDrive and SharePoint in Teams. Please note that OneDrive app in the left navigation pane in Teams isn't affected by this policy. Teams administrators can also choose which file service will be used by default when users upload files from their local devices by dragging and dropping them in a chat or channel. OneDrive and SharePoint are the existing defaults, but admins can now change it to a third-party app. Teams administrators would be able to create a customized teams files policy to match the organization's requirements. - - - - Set-CsTeamsFilesPolicy - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - DefaultFileUploadAppId - - This can be used by the 3p apps to configure their app, so when the files will be dragged and dropped in compose, it will get uploaded in that 3P app. - - String - - String - - - None - - - FileSharingInChatswithExternalUsers - - Indicates if file sharing in chats with external users is enabled. It is by default disabled, to enable admins can run following command. - - Set-CsTeamsFilesPolicy -Identity Global -FileSharingInChatswithExternalUsers Enabled - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - NativeFileEntryPoints - - This parameter is enabled by default, which shows the option to upload content from ODSP to Teams chats or channels. . Possible values are Enabled or Disabled. - - String - - String - - - None - - - SPChannelFilesTab - - Indicates whether Iframe channel files tab is enabled, if not, integrated channel files tab will be enabled. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultFileUploadAppId - - This can be used by the 3p apps to configure their app, so when the files will be dragged and dropped in compose, it will get uploaded in that 3P app. - - String - - String - - - None - - - FileSharingInChatswithExternalUsers - - Indicates if file sharing in chats with external users is enabled. It is by default disabled, to enable admins can run following command. - - Set-CsTeamsFilesPolicy -Identity Global -FileSharingInChatswithExternalUsers Enabled - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier specifying the scope, and in some cases the name, of the policy. - - String - - String - - - None - - - NativeFileEntryPoints - - This parameter is enabled by default, which shows the option to upload content from ODSP to Teams chats or channels. . Possible values are Enabled or Disabled. - - String - - String - - - None - - - SPChannelFilesTab - - Indicates whether Iframe channel files tab is enabled, if not, integrated channel files tab will be enabled. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsFilesPolicy -Identity "CustomOnlineVoicemailPolicy" -NativeFileEntryPoints Disabled/Enabled - - The command shown in Example 1 changes the teams files policy CustomTeamsFilesPolicy with NativeFileEntryPoints set to Disabled/Enabled. - - - - -------------------------- Example 2 -------------------------- - Set-CsTeamsFilesPolicy -DefaultFileUploadAppId GUID_appId - - The command shown in Example 2 changes the DefaultFileUploadAppId to AppId_GUID for tenant level global teams files policy when calling without Identity parameter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsfilespolicy - - - Get-CsTeamsFilesPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfilespolicy - - - - - - Set-CsTeamsGuestCallingConfiguration - Set - CsTeamsGuestCallingConfiguration - - Allows admins to set values in the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. - - - - Allows admins to set values in the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. This policy primarily allows admins to disable calling for guest users within Teams. - - - - Set-CsTeamsGuestCallingConfiguration - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - AllowPrivateCalling - - Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass confirmation - - - SwitchParameter - - - False - - - Instance - - Internal Microsoft use - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowPrivateCalling - - Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass confirmation - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Internal Microsoft use - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsGuestCallingConfiguration -Identity Global -AllowPrivateCalling $false - - In this example, the admin has disabled private calling for guests in his organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestcallingconfiguration - - - - - - Set-CsTeamsGuestMeetingConfiguration - Set - CsTeamsGuestMeetingConfiguration - - Designates what meeting features guests using Microsoft Teams will have available. Use this cmdlet to set the configuration. - - - - The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Set-CsTeamsGuestMeetingConfiguration cmdlet to designate what values are set for your organization. - - - - Set-CsTeamsGuestMeetingConfiguration - - Identity - - The only input allowed is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow guests to share their video. Set this to FALSE to prohibit guests from sharing their video - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether guests can start ad-hoc meetings. Set this to TRUE to allow guests to start ad-hoc meetings. Set this to FALSE to prohibit guests from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non fatal errors. - - - SwitchParameter - - - False - - - Instance - - Pipe the existing configuration from a Get- call. - - PSObject - - PSObject - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for guests in Teams meetings. Set this to DisabledUserOverride to allow guests to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - ScreenSharingMode - - Determines the mode in which guests can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow guests to share their video. Set this to FALSE to prohibit guests from sharing their video - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether guests can start ad-hoc meetings. Set this to TRUE to allow guests to start ad-hoc meetings. Set this to FALSE to prohibit guests from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only input allowed is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Pipe the existing configuration from a Get- call. - - PSObject - - PSObject - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for guests in Teams meetings. Set this to DisabledUserOverride to allow guests to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - ScreenSharingMode - - Determines the mode in which guests can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsGuestMeetingConfiguration -Identity Global -AllowMeetNow $false -AllowIPVideo $false - - Disables Guests' usage of MeetNow and Video calling in the organization; all other values of the configuration are left as is. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestmeetingconfiguration - - - - - - Set-CsTeamsGuestMessagingConfiguration - Set - CsTeamsGuestMessagingConfiguration - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. - - - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. This cmdlet lets you update the guest messaging options you'd like to enable in your organization. - - - - Set-CsTeamsGuestMessagingConfiguration - - Identity - - {{ Fill Identity Description }} - - XdsIdentity - - XdsIdentity - - - None - - - AllowGiphy - - Determines if Giphy images are available. - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines if immersive reader for viewing messages is enabled. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines if memes are available for use. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines if stickers are available for use. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines if a user is allowed to chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their one-on-one chat, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines if a user is allowed to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines if a user is allowed to edit their own messages. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - GiphyRatingType - - Determines Giphy content restrictions. Default value is "Moderate", other options are "NoRestriction" and "Strict" - - String - - String - - - None - - - Instance - - {{ Fill Instance Description }} - - PSObject - - PSObject - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowGiphy - - Determines if Giphy images are available. - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines if immersive reader for viewing messages is enabled. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines if memes are available for use. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines if stickers are available for use. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines if a user is allowed to chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their one-on-one chat, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines if a user is allowed to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines if a user is allowed to edit their own messages. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - GiphyRatingType - - Determines Giphy content restrictions. Default value is "Moderate", other options are "NoRestriction" and "Strict" - - String - - String - - - None - - - Identity - - {{ Fill Identity Description }} - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - {{ Fill Instance Description }} - - PSObject - - PSObject - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsGuestMessagingConfiguration -AllowMemes $False - - The command shown in Example 1 disables memes usage by guests within Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestmessagingconfiguration - - - - - - Set-CsTeamsIPPhonePolicy - Set - CsTeamsIPPhonePolicy - - Set-CsTeamsIPPhonePolicy enables you to modify the properties of an existing Teams phone policy settings. - - - - Set-CsTeamsIPPhonePolicy enables you to modify the properties of an existing TeamsIPPhonePolicy. - - - - Set-CsTeamsIPPhonePolicy - - Identity - - The identity of the policy. To specify the global policy for the organization, use "global". To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines if the hot desking feature is enabled or not. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - Int - - Int - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can look up contacts from the tenant's global address book when the phone is signed into the Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - String - - String - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines if the hot desking feature is enabled or not. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - Int - - Int - - - None - - - Identity - - The identity of the policy. To specify the global policy for the organization, use "global". To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can look up contacts from the tenant's global address book when the phone is signed into the Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - String - - String - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsIPPhonePolicy -Identity CommonAreaPhone -SignInMode CommonAreaPhoneSignin - - This example shows the SignInMode "CommonAreaPhoneSignIn" being set against the policy named "CommonAreaPhone". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsipphonepolicy - - - - - - Set-CsTeamsMediaConnectivityPolicy - Set - CsTeamsMediaConnectivityPolicy - - This cmdlet Set Teams media connectivity policy value for current tenant. - - - - This cmdlet Set Teams media connectivity policy DirectConnection value for current tenant. The value can be "Enabled" or "Disabled" - - - - Set-CsTeamsMediaConnectivityPolicy - - DirectConnection - - Policy value of the Teams media connectivity DirectConnection policy. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - Set-CsTeamsMediaConnectivityPolicy - - DirectConnection - - Policy value of the Teams media connectivity DirectConnection policy. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - DirectConnection - - Policy value of the Teams media connectivity DirectConnection policy. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams media connectivity policy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMediaConnectivityPolicy -Identity Test -DirectConnection Disabled - -Identity DirectConnection --------- ---------------- -Global Enabled -Tag:Test Disabled - - Set Teams media connectivity policy "DirectConnection" value to "Disabled" for identity "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsTeamsMediaConnectivityPolicy - - - New-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmediaconnectivitypolicy - - - Remove-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmediaconnectivitypolicy - - - Get-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmediaconnectivitypolicy - - - Grant-CsTeamsMediaConnectivityPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmediaconnectivitypolicy - - - - - - Set-CsTeamsMeetingBrandingPolicy - Set - CsTeamsMeetingBrandingPolicy - - The CsTeamsMeetingBrandingPolicy cmdlet enables administrators to control the appearance in meetings by defining custom backgrounds, logos, and colors. - - - - The `Set-CsTeamsMeetingBrandingPolicy` cmdlet allows administrators to update existing meeting branding policies. However, it cannot be used to upload the images. If you want to upload the images, you should use Teams Admin Center. - - - - Set-CsTeamsMeetingBrandingPolicy - - Identity - - Identity of meeting branding policy that will be updated. To refer to the global policy, use this syntax: `-Identity global`. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DefaultTheme - - This parameter is reserved for Microsoft internal use only. Identity of default meeting theme. - - String - - String - - - None - - - EnableMeetingBackgroundImages - - Enables custom meeting backgrounds. - - Boolean - - Boolean - - - None - - - EnableMeetingOptionsThemeOverride - - Allows organizers to control meeting themes. - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - MeetingBackgroundImages - - This parameter is reserved for Microsoft internal use only. List of meeting background images. It is not possible to add or remove background images using cmdlets. You should use Teams Admin Center for that purpose. - - PSListModifier - - PSListModifier - - - None - - - MeetingBrandingThemes - - List of meeting branding themes. You can alter the list returned by the `Get-CsTeamsMeetingBrandingPolicy` cmdlet and pass it to this parameter. It is not possible to add or remove meeting branding themes using cmdlets. You should use Teams Admin Center for that purpose. - - PSListModifier - - PSListModifier - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultTheme - - This parameter is reserved for Microsoft internal use only. Identity of default meeting theme. - - String - - String - - - None - - - EnableMeetingBackgroundImages - - Enables custom meeting backgrounds. - - Boolean - - Boolean - - - None - - - EnableMeetingOptionsThemeOverride - - Allows organizers to control meeting themes. - - Boolean - - Boolean - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity of meeting branding policy that will be updated. To refer to the global policy, use this syntax: `-Identity global`. - - String - - String - - - None - - - MeetingBackgroundImages - - This parameter is reserved for Microsoft internal use only. List of meeting background images. It is not possible to add or remove background images using cmdlets. You should use Teams Admin Center for that purpose. - - PSListModifier - - PSListModifier - - - None - - - MeetingBrandingThemes - - List of meeting branding themes. You can alter the list returned by the `Get-CsTeamsMeetingBrandingPolicy` cmdlet and pass it to this parameter. It is not possible to add or remove meeting branding themes using cmdlets. You should use Teams Admin Center for that purpose. - - PSListModifier - - PSListModifier - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Available in Teams PowerShell Module 4.9.3 and later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMeetingBrandingPolicy -PS C:\> $brandingPolicy = Get-CsTeamsMeetingBrandingPolicy -Identity "demo branding" -PS C:\> $brandingPolicy.MeetingBrandingThemes[0].BrandAccentColor = "#FF0000" -PS C:\> Set-CsTeamsMeetingBrandingPolicy -Identity "demo branding" -MeetingBrandingThemes $brandingPolicy.MeetingBrandingThemes - - In this example, the commands will change the brand accent color of the theme inside the `demo branding` meeting branding policy to `#FF0000` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - Get-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbrandingpolicy - - - Grant-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbrandingpolicy - - - New-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbrandingpolicy - - - Remove-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbrandingpolicy - - - Set-CsTeamsMeetingBrandingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbrandingpolicy - - - - - - Set-CsTeamsMeetingBroadcastConfiguration - Set - CsTeamsMeetingBroadcastConfiguration - - Changes the Teams meeting broadcast configuration settings for the specified tenant. - - - - Tenant level configuration for broadcast events in Teams - - - - Set-CsTeamsMeetingBroadcastConfiguration - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - AllowSdnProviderForBroadcastMeeting - - If set to $true, Teams meeting broadcast streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - Instance - - You can pass in the output from Get-CsTeamsMeetingBroadcastConfiguration as input to this cmdlet (instead of Identity) - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnLicenseId - - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnRuntimeConfiguration - - Specifies connection parameters used to connect with a 3rd party eCDN provider. These parameters should be obtained from the SDN provider to be used. - - String - - String - - - None - - - SupportURL - - Specifies a URL where broadcast event attendees can find support information or FAQs specific to that event. The URL will be displayed to the attendees during the broadcast. - - String - - String - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowSdnProviderForBroadcastMeeting - - If set to $true, Teams meeting broadcast streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - You can pass in the output from Get-CsTeamsMeetingBroadcastConfiguration as input to this cmdlet (instead of Identity) - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnLicenseId - - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnRuntimeConfiguration - - Specifies connection parameters used to connect with a 3rd party eCDN provider. These parameters should be obtained from the SDN provider to be used. - - String - - String - - - None - - - SupportURL - - Specifies a URL where broadcast event attendees can find support information or FAQs specific to that event. The URL will be displayed to the attendees during the broadcast. - - String - - String - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbroadcastconfiguration - - - - - - Set-CsTeamsMeetingBroadcastPolicy - Set - CsTeamsMeetingBroadcastPolicy - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. Use this cmdlet to update an existing policy. - - - - Set-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be modified. Policies can be configured at the global or per-user scopes. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - Everyone - - EveryoneInCompany - - InvitedUsersInCompany - - EveryoneInCompanyAndExternal - - InvitedUsersInCompanyAndExternal - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded (AlwaysEnabled), never recorded (AlwaysDisabled) or user can choose whether to record or not (UserOverride). - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - AlwaysEnabled - - AlwaysDisabled - - UserOverride - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - Everyone - - EveryoneInCompany - - InvitedUsersInCompany - - EveryoneInCompanyAndExternal - - InvitedUsersInCompanyAndExternal - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded (AlwaysEnabled), never recorded (AlwaysDisabled) or user can choose whether to record or not (UserOverride). - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - AlwaysEnabled - - AlwaysDisabled - - UserOverride - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be modified. Policies can be configured at the global or per-user scopes. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMeetingBroadcastPolicy -Identity Global -AllowBroadcastScheduling $false - - Sets the value of the Default (Global) Broadcast Policy in the organization to disable broadcast scheduling, and leaves all other parameters the same. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbroadcastpolicy - - - - - - Set-CsTeamsMeetingConfiguration - Set - CsTeamsMeetingConfiguration - - The CsTeamsMeetingConfiguration cmdlets enable administrators to control the meetings configurations in their tenants. - - - - The CsTeamsMeetingConfiguration cmdlets enable administrators to control the meetings configurations in their tenants. Use this cmdlet to set the configuration for your organization. - - - - Set-CsTeamsMeetingConfiguration - - Identity - - The only valid input is Global - - XdsIdentity - - XdsIdentity - - - None - - - ClientAppSharingPort - - Determines the starting port number for client screen sharing or application sharing. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50040 - - UInt32 - - UInt32 - - - None - - - ClientAppSharingPortRange - - Determines the total number of ports available for client sharing or application sharing. Default value is 20 - - UInt32 - - UInt32 - - - None - - - ClientAudioPort - - Determines the starting port number for client audio. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50000 - - UInt32 - - UInt32 - - - None - - - ClientAudioPortRange - - Determines the total number of ports available for client audio. Default value is 20 - - UInt32 - - UInt32 - - - None - - - ClientMediaPortRangeEnabled - - Determines whether custom media port and range selections need to be enforced. When set to True, clients will use the specified port range for media traffic. When set to False (the default value) for any available port (from port 1024 through port 65535) will be used to accommodate media traffic. - - Boolean - - Boolean - - - None - - - ClientVideoPort - - Determines the starting port number for client video. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50020 - - UInt32 - - UInt32 - - - None - - - ClientVideoPortRange - - Determines the total number of ports available for client video. Default value is 20 - - UInt32 - - UInt32 - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CustomFooterText - - Text to be used on custom meeting invitations - - String - - String - - - None - - - DisableAnonymousJoin - - Determines whether anonymous users are blocked from joining meetings in the tenant. Set this to TRUE to block anonymous users from joining. Set this to FALSE to allow anonymous users to join meetings. - - Boolean - - Boolean - - - None - - - DisableAppInteractionForAnonymousUsers - - Determines if anonymous users can interact with apps in meetings. Set to TRUE to disable App interaction. Possible values: - - True - - False - - Boolean - - Boolean - - - None - - - EnableQoS - - Determines whether Quality of Service Marking for real-time media (audio, video, screen/app sharing) is enabled in the tenant. Set this to TRUE to enable and FALSE to disable - - Boolean - - Boolean - - - None - - - FeedbackSurveyForAnonymousUsers - - Determines if anonymous participants receive surveys to provide feedback about their meeting experience. Set to Disabled to disable anonymous meeting participants to receive surveys. Set to Enabled to allow anonymous meeting participants to receive surveys. Possible values: - - Enabled - - Disabled - - String - - String - - - Enabled - - - Force - - {{Fill Force Description}} - - - SwitchParameter - - - False - - - HelpURL - - URL to a website where users can obtain assistance on joining the meeting.This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - Instance - - Use this parameter to update a saved configuration instance - - PSObject - - PSObject - - - None - - - LegalURL - - URL to a website containing legal information and meeting disclaimers. This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - LimitPresenterRolePermissions - - When set to True, users within the Tenant will have their presenter role capabilities limited. When set to False, the presenter role capabilities will not be impacted and will remain as is. - - Boolean - - Boolean - - - None - - - LogoURL - - URL to a logo image. This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ClientAppSharingPort - - Determines the starting port number for client screen sharing or application sharing. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50040 - - UInt32 - - UInt32 - - - None - - - ClientAppSharingPortRange - - Determines the total number of ports available for client sharing or application sharing. Default value is 20 - - UInt32 - - UInt32 - - - None - - - ClientAudioPort - - Determines the starting port number for client audio. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50000 - - UInt32 - - UInt32 - - - None - - - ClientAudioPortRange - - Determines the total number of ports available for client audio. Default value is 20 - - UInt32 - - UInt32 - - - None - - - ClientMediaPortRangeEnabled - - Determines whether custom media port and range selections need to be enforced. When set to True, clients will use the specified port range for media traffic. When set to False (the default value) for any available port (from port 1024 through port 65535) will be used to accommodate media traffic. - - Boolean - - Boolean - - - None - - - ClientVideoPort - - Determines the starting port number for client video. Minimum allowed value: 1024 Maximum allowed value: 65535 Default value: 50020 - - UInt32 - - UInt32 - - - None - - - ClientVideoPortRange - - Determines the total number of ports available for client video. Default value is 20 - - UInt32 - - UInt32 - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CustomFooterText - - Text to be used on custom meeting invitations - - String - - String - - - None - - - DisableAnonymousJoin - - Determines whether anonymous users are blocked from joining meetings in the tenant. Set this to TRUE to block anonymous users from joining. Set this to FALSE to allow anonymous users to join meetings. - - Boolean - - Boolean - - - None - - - DisableAppInteractionForAnonymousUsers - - Determines if anonymous users can interact with apps in meetings. Set to TRUE to disable App interaction. Possible values: - - True - - False - - Boolean - - Boolean - - - None - - - EnableQoS - - Determines whether Quality of Service Marking for real-time media (audio, video, screen/app sharing) is enabled in the tenant. Set this to TRUE to enable and FALSE to disable - - Boolean - - Boolean - - - None - - - FeedbackSurveyForAnonymousUsers - - Determines if anonymous participants receive surveys to provide feedback about their meeting experience. Set to Disabled to disable anonymous meeting participants to receive surveys. Set to Enabled to allow anonymous meeting participants to receive surveys. Possible values: - - Enabled - - Disabled - - String - - String - - - Enabled - - - Force - - {{Fill Force Description}} - - SwitchParameter - - SwitchParameter - - - False - - - HelpURL - - URL to a website where users can obtain assistance on joining the meeting.This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - Identity - - The only valid input is Global - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Use this parameter to update a saved configuration instance - - PSObject - - PSObject - - - None - - - LegalURL - - URL to a website containing legal information and meeting disclaimers. This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - LimitPresenterRolePermissions - - When set to True, users within the Tenant will have their presenter role capabilities limited. When set to False, the presenter role capabilities will not be impacted and will remain as is. - - Boolean - - Boolean - - - None - - - LogoURL - - URL to a logo image. This would be included in the meeting invite. Please ensure this URL is publicly accessible for invites that go beyond your federation boundaries - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMeetingConfiguration -EnableQoS $true -ClientVideoPort 10000 -Identity Global - - In this example, the user is enabling collection of QoS data in his organization and lowering the video stream quality to accommodate low bandwidth networks. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingconfiguration - - - - - - Set-CsTeamsMeetingPolicy - Set - CsTeamsMeetingPolicy - - The `CsTeamsMeetingPolicy` cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users. - - - - The `CsTeamsMeetingPolicy` cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users. - The Set-CsTeamsMeetingPolicy cmdlet allows administrators to update existing meeting policies that can be assigned to particular users to control Teams features related to meetings. - > [!NOTE] > The `AllowCarbonSummary` parameter is no longer supported and blocked by the service, though it may appear in older documentation or scripts. It can no longer be set using this cmdlet. - - - - Set-CsTeamsMeetingPolicy - - Identity - - Specify the name of the policy being created. - - XdsIdentity - - XdsIdentity - - - None - - - AIInterpreter - - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowAnnotations - - This setting will allow admins to choose which users will be able to use the Annotation feature. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - Determines whether anonymous users are allowed to dial out to a PSTN number. Set this to TRUE to allow anonymous users to dial out. Set this to FALSE to prohibit anonymous users from dialing out. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToJoinMeeting - - > [!NOTE] > The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check <https://learn.microsoft.com/microsoftteams/meeting-settings-in-teams> for details. - Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting. - - Boolean - - Boolean - - - True - - - AllowAnonymousUsersToStartMeeting - - Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting. - - Boolean - - Boolean - - - None - - - AllowAvatarsInGallery - - If admins disable avatars in 2D meetings, then users cannot represent themselves as avatars in the Gallery view. This does not disable avatars in Immersive view. - - Boolean - - Boolean - - - None - - - AllowBreakoutRooms - - Set to true to enable Breakout Rooms, set to false to disable the Breakout Rooms functionality. - - Boolean - - Boolean - - - True - - - AllowCartCaptionsScheduling - - Determines whether a user can add a URL for captions from a Communications Access Real-Time Translation (CART) captioner for providing real time captions in meetings. Possible values are: - - EnabledUserOverride , CART captions is available by default but a user can disable. - DisabledUserOverride , if you would like users to be able to use CART captions in meetings but by default it is disabled. - Disabled , if you'd like to not allow CART captions in meeting. - - String - - String - - - DisabledUserOverride - - - AllowChannelMeetingScheduling - - Determines whether a user can schedule channel meetings. Set this to TRUE to allow a user to schedule channel meetings. Set this to FALSE to prohibit the user from scheduling channel meetings. - > [!NOTE] > This only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowCloudRecording - - Determines whether cloud recording is allowed in a user's meetings. Set this to TRUE to allow the user to be able to record meetings. Set this to FALSE to prohibit the user from recording meetings. - - Boolean - - Boolean - - - None - - - AllowDocumentCollaboration - - This setting will allow admins to choose which users will be able to use the Document Collaboration feature. - - String - - String - - - None - - - AllowedStreamingMediaInput - - Enables the use of RTMP-In in Teams meetings. - Possible values are: - - <blank> - - RTMP - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingDetails - - Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely. - Possible Values: - UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details. - - Everyone: All meeting participants can see the meeting info details. - - String - - String - - - UsersAllowedToByPassTheLobby - - - AllowEngagementReport - - Determines whether meeting organizers are allowed to download the attendee engagement report. Possible values are: - - Enabled: allow the meeting organizer to download the report. - - Disabled: disable attendee report generation and prohibit meeting organizer from downloading it. - - ForceEnabled: enable attendee report generation and prohibit meeting organizer from disabling it. - - If set to Enabled or ForceEnabled, only meeting organizers and co-organizers will get a link to download the report in Teams. Regular attendees will have no access to it. - - String - - String - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non-trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalParticipantGiveRequestControl - - Determines whether external participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit an external user from giving or requesting control in a meeting. - - Boolean - - Boolean - - - None - - - AllowImmersiveView - - If admins have disabled avatars, this does not disable using avatars in Immersive view on Teams desktop or web. Additionally, it does not prevent users from joining the Teams meeting on VR headsets. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - Determines whether audio is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their audio. Set this to FALSE to prohibit the user from sharing their audio. - - Boolean - - Boolean - - - True - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - None - - - AllowLocalRecording - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowMeetingCoach - - This setting will allow admins to allow users the option of turning on Meeting Coach during meetings, which provides users with private personalized feedback on their communication and inclusivity. If set to True, then users will see and be able to click the option for turning on Meeting Coach during calls. If set to False, then users will not have the option to turn on Meeting Coach during calls. - - Boolean - - Boolean - - - None - - - AllowMeetingReactions - - Set to false to disable Meeting Reactions. - - Boolean - - Boolean - - - True - - - AllowMeetingRegistration - - Controls if a user can create a webinar meeting. The default value is True. - Possible values: - - True - - False - - Boolean - - Boolean - - - True - - - AllowMeetNow - - Determines whether a user can start ad-hoc meetings. Set this to TRUE to allow a user to start ad-hoc meetings. Set this to FALSE to prohibit the user from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowNDIStreaming - - This parameter enables the use of NDI technology to capture and deliver broadcast-quality audio and video over your network. - - Boolean - - Boolean - - - None - - - AllowNetworkConfigurationSettingsLookup - - Determines whether network configuration setting lookup can be made for users who are not Enterprise Voice enabled. It is used to enable Network Roaming policy. - - Boolean - - Boolean - - - False - - - AllowOrganizersToOverrideLobbySettings - - This parameter has been deprecated and currently has no effect. - - Boolean - - Boolean - - - False - - - AllowOutlookAddIn - - Determines whether a user can schedule Teams Meetings in Outlook desktop client. Set this to TRUE to allow the user to be able to schedule Teams meetings in Outlook client. Set this to FALSE to prohibit a user from scheduling Teams meeting in Outlook client. - - Boolean - - Boolean - - - None - - - AllowParticipantGiveRequestControl - - Determines whether participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit the user from giving, requesting control in a meeting. - - Boolean - - Boolean - - - None - - - AllowPowerPointSharing - - Determines whether Powerpoint sharing is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetingScheduling - - Determines whether a user can schedule private meetings. Set this to TRUE to allow a user to schedule private meetings. Set this to FALSE to prohibit the user from scheduling private meetings. - > [!NOTE] > This only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetNow - - This setting controls whether a user can start an ad hoc private meeting. - - Boolean - - Boolean - - - None - - - AllowPSTNUsersToBypassLobby - - Determines whether a PSTN user joining the meeting is allowed or not to bypass the lobby. If you set this parameter to True , PSTN users are allowed to bypass the lobby as long as an authenticated user is joined to the meeting. - - Boolean - - Boolean - - - None - - - AllowRecordingStorageOutsideRegion - - Allows storing recordings outside of the region. All meeting recordings will be permanently stored in another region, and can't be migrated. This does not apply to recordings saved in OneDrive or SharePoint. - - Boolean - - Boolean - - - False - - - AllowScreenContentDigitization - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - Determines whether users are allowed to take shared Meeting notes. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowTasksFromTranscript - - This policy setting allows for the extraction of AI-Assisted Action Items/Tasks from the Meeting Transcript. - - String - - String - - - None - - - AllowTrackingInReport - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserToJoinExternalMeeting - - Currently, this parameter has no effect. - Possible values are: - - Enabled - - FederatedOnly - - Disabled - - String - - String - - - Disabled - - - AllowWatermarkForCameraVideo - - This setting allows scheduling meetings with watermarking for video enabled. - - Boolean - - Boolean - - - False - - - AllowWatermarkForScreenSharing - - This setting allows scheduling meetings with watermarking for screen sharing enabled. - - Boolean - - Boolean - - - False - - - AllowWhiteboard - - Determines whether whiteboard is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AnonymousUserAuthenticationMethod - - Determines how anonymous users will be authenticated when joining a meeting. Possible values are: - - OneTimePasscode , if you would like anonymous users to be sent a one time passcode to their email when joining a meeting - None , if you would like to disable authentication for anonymous users joining a meeting - - String - - String - - - OneTimePasscode - - - AttendeeIdentityMasking - - This setting will allow admins to enable or disable Masked Attendee mode in Meetings. Masked Attendee meetings will hide attendees' identifying information (e.g., name, contact information, profile photo). - Possible Values: Enabled: Hides attendees' identifying information in meetings. Disabled: Does not allow attendees' to hide identifying information in meetings - - String - - String - - - None - - - AudibleRecordingNotification - - The setting controls whether recording notification is played to all attendees or just PSTN users. - - String - - String - - - None - - - AutoAdmittedUsers - - Determines what types of participants will automatically be added to meetings organized by this user. Possible values are: - - EveryoneInCompany , if you would like meetings to place every external user in the lobby but allow all users in the company to join the meeting immediately. - EveryoneInSameAndFederatedCompany , if you would like meetings to allow federated users to join like your company's users, but place all other external users in a lobby. - Everyone , if you'd like to admit anonymous users by default. - OrganizerOnly , if you would like that only meeting organizers can bypass the lobby. - EveryoneInCompanyExcludingGuests , if you would like meetings to place every external and guest users in the lobby but allow all other users in the company to join the meeting immediately. - InvitedUsers , if you would like that only meeting organizers and invited users can bypass the lobby. - This setting also applies to participants joining via a PSTN device (i.e. a traditional phone). - - String - - String - - - None - - - AutomaticallyStartCopilot - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - This setting gives admins the ability to auto-start Copilot. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - AutoRecording - - This setting allows admins to control the visibility of the auto recording feature in the organizer's Meeting options . If the you enable this setting, the Record and transcribe automatically setting appears in Meeting options with the default value set to Off (except for webinars and townhalls). Organizers need to manually toggle this setting to On to for their meetings to be automatically recorded. If you disable this setting, Record and transcribe automatically is hidden, preventing organizers from setting any meetings to be auto-recorded. - - String - - String - - - None - - - BlockedAnonymousJoinClientTypes - - A user can join a Teams meeting anonymously using a Teams client (https://support.microsoft.com/office/join-a-meeting-without-a-teams-account-c6efc38f-4e03-4e79-b28f-e65a4c039508) or using a [custom application built using Azure Communication Services](https://learn.microsoft.com/azure/communication-services/concepts/join-teams-meeting). When anonymous meeting join is enabled, both types of clients may be used by default. This optional parameter can be used to block one of the client types that can be used. - The allowed values are ACS (to block the use of Azure Communication Services clients) or Teams (to block the use of Teams clients). Both can also be specified, separated by a comma, but this is equivalent to disabling anonymous join completely. - - List - - List - - - Empty List - - - CaptchaVerificationForMeetingJoin - - Require a verification check for meeting join. - Possible values: - NotRequired , CAPTCHA not required to join the meeting - AnonymousUsersAndUntrustedOrganizations , Anonymous users and people from untrusted organizations must complete a CAPTCHA challenge to join the meeting. - - String - - String - - - None - - - ChannelRecordingDownload - - Controls how channel meeting recordings are saved, permissioned, and who can download them. - Possible values: - - Allow - Saves channel meeting recordings to a "Recordings" folder in the channel. The permissions on the recording files will be based on the Channel SharePoint permissions. This is the same as any other file uploaded for the channel. - - Block - Saves channel meeting recordings to a "Recordings\View only" folder in the channel. Channel owners will have full rights to the recordings in this folder, but channel members will have read access without the ability to download. - - String - - String - - - Allow - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectToMeetingControls - - Allows external connections of thirdparty apps to Microsoft Teams - Possible values are: - Enabled - - Disabled - - String - - String - - - Enabled - - - ContentSharingInExternalMeetings - - This policy allows admins to determine whether the user can share content in meetings organized by external organizations. The user should have a Teams Premium license to be protected under this policy. - - String - - String - - - None - - - Copilot - - This setting allows the admin to choose whether Copilot will be enabled with a persisted transcript or a non-persisted transcript. - Possible values are: - - Enabled - - EnabledWithTranscript - - String - - String - - - None - - - CopyRestriction - - This parameter enables a setting that controls a meeting option which allows users to disable right-click or Ctrl+C to copy, Copy link, Forward message, and Share to Outlook for meeting chat messages. - - Boolean - - Boolean - - - TRUE - - - Description - - Enables administrators to provide explanatory text about the meeting policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DesignatedPresenterRoleMode - - Determines if users can change the default value of the Who can present? setting in Meeting options in the Teams client. This policy setting affects all meetings, including Meet Now meetings. - Possible values are: - - EveryoneUserOverride: All meeting participants can be presenters. This is the default value. This parameter corresponds to the Everyone setting in Teams. - EveryoneInCompanyUserOverride: Authenticated users in the organization, including guest users, can be presenters. This parameter corresponds to the People in my organization setting in Teams. - EveryoneInSameAndFederatedCompanyUserOverride: Authenticated users in the organization, including guest users and users from federated organizations, can be presenters. This parameter corresponds to the People in my organization and trusted organizations setting in Teams. - OrganizerOnlyUserOverride: Only the meeting organizer can be a presenter and all meeting participants are designated as attendees. This parameter corresponds to the Only me setting in Teams. - - String - - String - - - None - - - DetectSensitiveContentDuringScreenSharing - - Allows the admin to enable sensitive content detection during screen share. - - Boolean - - Boolean - - - None - - - EnrollUserOverride - - Turn on/off Biometric enrollment Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - Set participant agreement and notification for Recording, Transcript, Copilot in Teams meetings. - Possible Values: - - Enabled: Explicit consent, requires participant agreement. - - Disabled: Implicit consent, does not require participant agreement. - - LegitimateInterest: Legitimate interest, less restrictive consent to meet legitimate interest without requiring explicit agreement from participants. - - String - - String - - - None - - - ExternalMeetingJoin - - Determines whether the user is allowed to join external meetings. - Possible values are: - - EnabledForAnyone - - EnabledForTrustedOrgs - - Disabled - - String - - String - - - EnabledForAnyone - - - ExternalBotAccessMode - - Controls how external third-party automated bots and meeting assistants are handled when they attempt to join meetings. This policy provides predictable behavior and helps organizers apply intentional control for bot participation. - Possible Values: - AllowAllBots : Don't detect bots; allow them to join meetings directly. - RequireApprovalWhenDetected : When detected, require approval before joining by routing detected bots to the meeting lobby. This is the default value. - BlockDetectedBots : Block detected bots from joining meetings. - - String - - String - - - RequireApprovalWhenDetected - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InfoShownInReportMode - - This policy controls what kind of information get shown for the user's attendance in attendance report/dashboard. - - String - - String - - - None - - - IPAudioMode - - Determines whether audio can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming audio in the meeting. Set this to DISABLED to prohibit outgoing and incoming audio in the meeting. - - String - - String - - - None - - - IPVideoMode - - Determines whether video can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming video in the meeting. Set this to DISABLED to prohibit outgoing and incoming video in the meeting. - - String - - String - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for the user in Teams meetings. Set this to DisabledUserOverride to allow user to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - LiveInterpretationEnabledType - - Allows meeting organizers to configure a meeting for language interpretation, selecting attendees of the meeting to become interpreters that other attendees can select and listen to the real-time translation they provide. Possible values are: - - DisabledUserOverride , if you would like users to be able to use interpretation in meetings but by default it is disabled. - Disabled , prevents the option to be enabled in Meeting Options. - - String - - String - - - DisabledUserOverride - - - LiveStreamingMode - - Determines whether you provide support for your users to stream their Teams meetings to large audiences through Real-Time Messaging Protocol (RTMP). - Possible values are: - - Disabled - - Enabled - - String - - String - - - None - - - LobbyChat - - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether chat messages are allowed in the lobby. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - UInt32 - - UInt32 - - - None - - - MeetingChatEnabledType - - Specifies if users will be able to chat in meetings. Possible values are: Disabled, Enabled, and EnabledExceptAnonymous. - > [!NOTE] > Due to a new feature rollout, in order to set the value of MeetingChatEnabledType to Disabled, you will need to also set the value of LobbyChat to disabled. e.g., > Install-Module MicrosoftTeams -RequiredVersion 6.6.1-preview -Force -AllowClobber -AllowPrereleaseConnect-MicrosoftTeams Set-CsTeamsMeetingPolicy -Identity Global -MeetingChatEnabledType Disabled -LobbyChat Disabled - - String - - String - - - None - - - MeetingInviteLanguages - - > Applicable: Microsoft Teams - Controls how the join information in meeting invitations is displayed by enforcing a common language or enabling up to two languages to be displayed. - > [!NOTE] > All Teams supported languages can be specified using language codes. For more information about its delivery date, see the roadmap (Feature ID: 81521) (https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=81521). - The preliminary list of available languages is shown below: - `ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW`. - - String - - String - - - None - - - NewMeetingRecordingExpirationDays - - Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days. Value can also be -1 to set meeting recordings to never expire. - > [!NOTE] > You may opt to set Meeting Recordings to never expire by entering the value -1. - - Int32 - - Int32 - - - None - - - NoiseSuppressionForDialInParticipants - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Control Noises Suppression Feature for PST legs joining a meeting. - Possible Values: - - MicrosoftDefault - - Enabled - - Disabled - - String - - String - - - None - - - ParticipantNameChange - - This setting will enable Tenant Admins to turn on/off participant renaming feature. - Possible Values: Enabled: Turns on the Participant Renaming feature. Disabled: Turns off the Participant Renaming feature. - - String - - String - - - None - - - ParticipantSlideControl - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting. - Possible Values: - Everyone: Anyone in the meeting can give or take control - - EveryoneInOrganization: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control - - EveryoneInOrganizationAndGuests: Only those who are Guests to the tenant, MTO users, and internal AAD users can give or take control - - None: No one in the meeting can give or take control - - String - - String - - - Enabled - - - PasscodeComplexity - - > Applicable: Microsoft Teams - Controls whether meeting passcodes use the system‑default complexity or a reduced complexity using numeric‑only digits. When enabled, meetings scheduled by users to whom this policy applies will use 8‑digit numeric‑only passcodes . Changes apply only to meetings scheduled after the setting is enabled . Existing meetings are not affected. This setting is disabled by default . - Possible Values: - Default : Alphanumeric passcodes with 8 characters (system default). - NumericOnly : 8‑digit numeric‑only passcodes with lower complexity for meetings scheduled by users to whom this policy applies. Numeric‑only passcodes increase the risk of unauthorized access compared to the default setting and do not align with Microsoft’s recommended meeting security best practices . - - String - - String - - - Default - - - PreferredMeetingProviderForIslandsMode - - Determines the Outlook meeting add-in available to users on Islands mode. By default, this is set to TeamsAndSfb, and the users sees both the Skype for Business and Teams add-ins. Set this to Teams to remove the Skype for Business add-in and only show the Teams add-in. - - String - - String - - - TeamsAndSfb - - - QnAEngagementMode - - This setting enables Microsoft 365 Tenant Admins to Enable or Disable the Questions and Answers experience (Q+A). When Enabled, Organizers can turn on Q+A for their meetings. When Disabled, Organizers cannot turn on Q+A in their meetings. The setting is enforced when a meeting is created or is updated by Organizers. Attendees can use Q+A in meetings where it was previously added. Organizers can remove Q+A for those meetings through Teams and Outlook Meeting Options. Possible values: Enabled, Disabled - - String - - String - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - RecordingStorageMode - - This parameter can take two possible values: - - Stream - - OneDriveForBusiness - - > [!NOTE] > The change of storing Teams meeting recordings from Classic Stream to OneDrive and SharePoint (ODSP) has been completed as of August 30th, 2021. All recordings are now stored in ODSP. This change overrides the RecordingStorageMode parameter, and modifying the setting in PowerShell no longer has any impact. - - String - - String - - - None - - - RoomAttributeUserOverride - - Possible values: - - Off - - Distinguish - - Attribute - - String - - String - - - None - - - RoomPeopleNameUserOverride - - Enabling people recognition requires the tenant CsTeamsMeetingPolicy roomPeopleNameUserOverride to be "On" and roomAttributeUserOverride to be Attribute for allowing individual voice and face profiles to be used for recognition in meetings. - > [!NOTE] > In some locations, people recognition can't be used due to local laws or regulations. Possible values: > > - Off: No People Recognition option on Microsoft Teams Room (Default). > - On: Policy value allows People recognition option on Microsoft Teams Rooms under call control bar. - - String - - String - - - None - - - ScreenSharingMode - - Determines the mode in which a user can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens. - - String - - String - - - None - - - SetRecordingAndTranscriptOwnership - - This setting allows admins to control the visibility of "Allow meeting organizers to choose who keeps recording and transcript" feature in the organizer's Meeting options . If you enable this setting, the Allow meeting organizers to choose who keeps recording and transcript setting appears in Meeting options . Organizers need to manually select a people from meeting attendees as the recording and transcript owner. If you disable this setting, Allow meeting organizers to choose who keeps recording and transcript is hidden, the default value of this setting is disabled. - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - SmsNotifications - - Participants can sign up for text message meeting reminders. - - String - - String - - - None - - - SpeakerAttributionMode - - Determines if users are identified in transcriptions and if they can change the value of the Automatically identify me in meeting captions and transcripts setting. - Possible values: - - Enabled : Speakers are identified in transcription. - EnabledUserOverride : Speakers are identified in transcription. If enabled, users can override this setting and choose not to be identified in their Teams profile settings. - DisabledUserOverride : Speakers are not identified in transcription. If enabled, users can override this setting and choose to be identified in their Teams profile settings. - Disabled : Speakers are not identified in transcription. - - String - - String - - - None - - - StreamingAttendeeMode - - Controls if Teams uses overflow capability once a meeting reaches its capacity (1,000 users with full functionality). - Possible values are: - - Disabled - - Enabled - - Set this to Enabled to allow up to 10,000 extra view-only attendees to join. - - String - - String - - - Disabled - - - TeamsCameraFarEndPTZMode - - Possible values are: - - Disabled - - AutoAcceptInTenant - - AutoAcceptAll - - String - - String - - - Disabled - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanAdmitFromLobby - - This policy controls who can admit from the lobby. - - String - - String - - - None - - - VideoFiltersMode - - Determines the background effects that a user can configure in the Teams client. Possible values are: - - NoFilters: No filters are available. - - BlurOnly: Background blur is the only option available (requires a processor with AVX2 support, see Hardware requirements for Microsoft Teams (https://learn.microsoft.com/microsoftteams/hardware-requirements-for-the-teams-app) for more information). - BlurAndDefaultBackgrounds: Background blur and a list of pre-selected images are available. - - AllFilters: All filters are available, including custom images. - - String - - String - - - None - - - VoiceIsolation - - Determines whether you provide support for your users to enable voice isolation in Teams meeting calls. - Possible values are: - Enabled (default) - - Disabled - - String - - String - - - None - - - VoiceSimulationInInterpreter - - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - WatermarkForAnonymousUsers - - Determines the meeting experience and watermark content of an anonymous user. - - String - - String - - - None - - - WatermarkForCameraVideoOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForCameraVideoPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WatermarkForScreenSharingOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForScreenSharingPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - WhoCanRegister - - Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts set the value to 'EveryoneInCompany'. - Possible values: - - Everyone - - EveryoneInCompany - - String - - String - - - Everyone - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams meetings. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription meeting message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - AIInterpreter - - Enables the user to use the AI Interpreter related features - Possible values: - - Disabled - - Enabled - - String - - String - - - Enabled - - - AllowAnnotations - - This setting will allow admins to choose which users will be able to use the Annotation feature. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToDialOut - - Determines whether anonymous users are allowed to dial out to a PSTN number. Set this to TRUE to allow anonymous users to dial out. Set this to FALSE to prohibit anonymous users from dialing out. - - Boolean - - Boolean - - - None - - - AllowAnonymousUsersToJoinMeeting - - > [!NOTE] > The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check <https://learn.microsoft.com/microsoftteams/meeting-settings-in-teams> for details. - Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting. - - Boolean - - Boolean - - - True - - - AllowAnonymousUsersToStartMeeting - - Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting. - - Boolean - - Boolean - - - None - - - AllowAvatarsInGallery - - If admins disable avatars in 2D meetings, then users cannot represent themselves as avatars in the Gallery view. This does not disable avatars in Immersive view. - - Boolean - - Boolean - - - None - - - AllowBreakoutRooms - - Set to true to enable Breakout Rooms, set to false to disable the Breakout Rooms functionality. - - Boolean - - Boolean - - - True - - - AllowCartCaptionsScheduling - - Determines whether a user can add a URL for captions from a Communications Access Real-Time Translation (CART) captioner for providing real time captions in meetings. Possible values are: - - EnabledUserOverride , CART captions is available by default but a user can disable. - DisabledUserOverride , if you would like users to be able to use CART captions in meetings but by default it is disabled. - Disabled , if you'd like to not allow CART captions in meeting. - - String - - String - - - DisabledUserOverride - - - AllowChannelMeetingScheduling - - Determines whether a user can schedule channel meetings. Set this to TRUE to allow a user to schedule channel meetings. Set this to FALSE to prohibit the user from scheduling channel meetings. - > [!NOTE] > This only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowCloudRecording - - Determines whether cloud recording is allowed in a user's meetings. Set this to TRUE to allow the user to be able to record meetings. Set this to FALSE to prohibit the user from recording meetings. - - Boolean - - Boolean - - - None - - - AllowDocumentCollaboration - - This setting will allow admins to choose which users will be able to use the Document Collaboration feature. - - String - - String - - - None - - - AllowedStreamingMediaInput - - Enables the use of RTMP-In in Teams meetings. - Possible values are: - - <blank> - - RTMP - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingContext - - This policy controls which users should have the ability to see the meeting info details on the join screen. 'None' option should disable the feature completely. - - String - - String - - - None - - - AllowedUsersForMeetingDetails - - Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely. - Possible Values: - UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details. - - Everyone: All meeting participants can see the meeting info details. - - String - - String - - - UsersAllowedToByPassTheLobby - - - AllowEngagementReport - - Determines whether meeting organizers are allowed to download the attendee engagement report. Possible values are: - - Enabled: allow the meeting organizer to download the report. - - Disabled: disable attendee report generation and prohibit meeting organizer from downloading it. - - ForceEnabled: enable attendee report generation and prohibit meeting organizer from disabling it. - - If set to Enabled or ForceEnabled, only meeting organizers and co-organizers will get a link to download the report in Teams. Regular attendees will have no access to it. - - String - - String - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalNonTrustedMeetingChat - - This field controls whether a user is allowed to chat in external meetings with users from non-trusted organizations. - - Boolean - - Boolean - - - None - - - AllowExternalParticipantGiveRequestControl - - Determines whether external participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit an external user from giving or requesting control in a meeting. - - Boolean - - Boolean - - - None - - - AllowImmersiveView - - If admins have disabled avatars, this does not disable using avatars in Immersive view on Teams desktop or web. Additionally, it does not prevent users from joining the Teams meeting on VR headsets. - - Boolean - - Boolean - - - None - - - AllowIPAudio - - Determines whether audio is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their audio. Set this to FALSE to prohibit the user from sharing their audio. - - Boolean - - Boolean - - - True - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - None - - - AllowLocalRecording - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowMeetingCoach - - This setting will allow admins to allow users the option of turning on Meeting Coach during meetings, which provides users with private personalized feedback on their communication and inclusivity. If set to True, then users will see and be able to click the option for turning on Meeting Coach during calls. If set to False, then users will not have the option to turn on Meeting Coach during calls. - - Boolean - - Boolean - - - None - - - AllowMeetingReactions - - Set to false to disable Meeting Reactions. - - Boolean - - Boolean - - - True - - - AllowMeetingRegistration - - Controls if a user can create a webinar meeting. The default value is True. - Possible values: - - True - - False - - Boolean - - Boolean - - - True - - - AllowMeetNow - - Determines whether a user can start ad-hoc meetings. Set this to TRUE to allow a user to start ad-hoc meetings. Set this to FALSE to prohibit the user from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowNDIStreaming - - This parameter enables the use of NDI technology to capture and deliver broadcast-quality audio and video over your network. - - Boolean - - Boolean - - - None - - - AllowNetworkConfigurationSettingsLookup - - Determines whether network configuration setting lookup can be made for users who are not Enterprise Voice enabled. It is used to enable Network Roaming policy. - - Boolean - - Boolean - - - False - - - AllowOrganizersToOverrideLobbySettings - - This parameter has been deprecated and currently has no effect. - - Boolean - - Boolean - - - False - - - AllowOutlookAddIn - - Determines whether a user can schedule Teams Meetings in Outlook desktop client. Set this to TRUE to allow the user to be able to schedule Teams meetings in Outlook client. Set this to FALSE to prohibit a user from scheduling Teams meeting in Outlook client. - - Boolean - - Boolean - - - None - - - AllowParticipantGiveRequestControl - - Determines whether participants can request or give control of screen sharing during meetings scheduled by this user. Set this to TRUE to allow the user to be able to give or request control. Set this to FALSE to prohibit the user from giving, requesting control in a meeting. - - Boolean - - Boolean - - - None - - - AllowPowerPointSharing - - Determines whether Powerpoint sharing is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetingScheduling - - Determines whether a user can schedule private meetings. Set this to TRUE to allow a user to schedule private meetings. Set this to FALSE to prohibit the user from scheduling private meetings. - > [!NOTE] > This only restricts from scheduling and not from joining a meeting scheduled by another user. - - Boolean - - Boolean - - - None - - - AllowPrivateMeetNow - - This setting controls whether a user can start an ad hoc private meeting. - - Boolean - - Boolean - - - None - - - AllowPSTNUsersToBypassLobby - - Determines whether a PSTN user joining the meeting is allowed or not to bypass the lobby. If you set this parameter to True , PSTN users are allowed to bypass the lobby as long as an authenticated user is joined to the meeting. - - Boolean - - Boolean - - - None - - - AllowRecordingStorageOutsideRegion - - Allows storing recordings outside of the region. All meeting recordings will be permanently stored in another region, and can't be migrated. This does not apply to recordings saved in OneDrive or SharePoint. - - Boolean - - Boolean - - - False - - - AllowScreenContentDigitization - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowSharedNotes - - Determines whether users are allowed to take shared Meeting notes. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowTasksFromTranscript - - This policy setting allows for the extraction of AI-Assisted Action Items/Tasks from the Meeting Transcript. - - String - - String - - - None - - - AllowTrackingInReport - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserToJoinExternalMeeting - - Currently, this parameter has no effect. - Possible values are: - - Enabled - - FederatedOnly - - Disabled - - String - - String - - - Disabled - - - AllowWatermarkForCameraVideo - - This setting allows scheduling meetings with watermarking for video enabled. - - Boolean - - Boolean - - - False - - - AllowWatermarkForScreenSharing - - This setting allows scheduling meetings with watermarking for screen sharing enabled. - - Boolean - - Boolean - - - False - - - AllowWhiteboard - - Determines whether whiteboard is allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AnonymousUserAuthenticationMethod - - Determines how anonymous users will be authenticated when joining a meeting. Possible values are: - - OneTimePasscode , if you would like anonymous users to be sent a one time passcode to their email when joining a meeting - None , if you would like to disable authentication for anonymous users joining a meeting - - String - - String - - - OneTimePasscode - - - AttendeeIdentityMasking - - This setting will allow admins to enable or disable Masked Attendee mode in Meetings. Masked Attendee meetings will hide attendees' identifying information (e.g., name, contact information, profile photo). - Possible Values: Enabled: Hides attendees' identifying information in meetings. Disabled: Does not allow attendees' to hide identifying information in meetings - - String - - String - - - None - - - AudibleRecordingNotification - - The setting controls whether recording notification is played to all attendees or just PSTN users. - - String - - String - - - None - - - AutoAdmittedUsers - - Determines what types of participants will automatically be added to meetings organized by this user. Possible values are: - - EveryoneInCompany , if you would like meetings to place every external user in the lobby but allow all users in the company to join the meeting immediately. - EveryoneInSameAndFederatedCompany , if you would like meetings to allow federated users to join like your company's users, but place all other external users in a lobby. - Everyone , if you'd like to admit anonymous users by default. - OrganizerOnly , if you would like that only meeting organizers can bypass the lobby. - EveryoneInCompanyExcludingGuests , if you would like meetings to place every external and guest users in the lobby but allow all other users in the company to join the meeting immediately. - InvitedUsers , if you would like that only meeting organizers and invited users can bypass the lobby. - This setting also applies to participants joining via a PSTN device (i.e. a traditional phone). - - String - - String - - - None - - - AutomaticallyStartCopilot - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - This setting gives admins the ability to auto-start Copilot. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - AutoRecording - - This setting allows admins to control the visibility of the auto recording feature in the organizer's Meeting options . If the you enable this setting, the Record and transcribe automatically setting appears in Meeting options with the default value set to Off (except for webinars and townhalls). Organizers need to manually toggle this setting to On to for their meetings to be automatically recorded. If you disable this setting, Record and transcribe automatically is hidden, preventing organizers from setting any meetings to be auto-recorded. - - String - - String - - - None - - - BlockedAnonymousJoinClientTypes - - A user can join a Teams meeting anonymously using a Teams client (https://support.microsoft.com/office/join-a-meeting-without-a-teams-account-c6efc38f-4e03-4e79-b28f-e65a4c039508) or using a [custom application built using Azure Communication Services](https://learn.microsoft.com/azure/communication-services/concepts/join-teams-meeting). When anonymous meeting join is enabled, both types of clients may be used by default. This optional parameter can be used to block one of the client types that can be used. - The allowed values are ACS (to block the use of Azure Communication Services clients) or Teams (to block the use of Teams clients). Both can also be specified, separated by a comma, but this is equivalent to disabling anonymous join completely. - - List - - List - - - Empty List - - - CaptchaVerificationForMeetingJoin - - Require a verification check for meeting join. - Possible values: - NotRequired , CAPTCHA not required to join the meeting - AnonymousUsersAndUntrustedOrganizations , Anonymous users and people from untrusted organizations must complete a CAPTCHA challenge to join the meeting. - - String - - String - - - None - - - ChannelRecordingDownload - - Controls how channel meeting recordings are saved, permissioned, and who can download them. - Possible values: - - Allow - Saves channel meeting recordings to a "Recordings" folder in the channel. The permissions on the recording files will be based on the Channel SharePoint permissions. This is the same as any other file uploaded for the channel. - - Block - Saves channel meeting recordings to a "Recordings\View only" folder in the channel. Channel owners will have full rights to the recordings in this folder, but channel members will have read access without the ability to download. - - String - - String - - - Allow - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectToMeetingControls - - Allows external connections of thirdparty apps to Microsoft Teams - Possible values are: - Enabled - - Disabled - - String - - String - - - Enabled - - - ContentSharingInExternalMeetings - - This policy allows admins to determine whether the user can share content in meetings organized by external organizations. The user should have a Teams Premium license to be protected under this policy. - - String - - String - - - None - - - Copilot - - This setting allows the admin to choose whether Copilot will be enabled with a persisted transcript or a non-persisted transcript. - Possible values are: - - Enabled - - EnabledWithTranscript - - String - - String - - - None - - - CopyRestriction - - This parameter enables a setting that controls a meeting option which allows users to disable right-click or Ctrl+C to copy, Copy link, Forward message, and Share to Outlook for meeting chat messages. - - Boolean - - Boolean - - - TRUE - - - Description - - Enables administrators to provide explanatory text about the meeting policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DesignatedPresenterRoleMode - - Determines if users can change the default value of the Who can present? setting in Meeting options in the Teams client. This policy setting affects all meetings, including Meet Now meetings. - Possible values are: - - EveryoneUserOverride: All meeting participants can be presenters. This is the default value. This parameter corresponds to the Everyone setting in Teams. - EveryoneInCompanyUserOverride: Authenticated users in the organization, including guest users, can be presenters. This parameter corresponds to the People in my organization setting in Teams. - EveryoneInSameAndFederatedCompanyUserOverride: Authenticated users in the organization, including guest users and users from federated organizations, can be presenters. This parameter corresponds to the People in my organization and trusted organizations setting in Teams. - OrganizerOnlyUserOverride: Only the meeting organizer can be a presenter and all meeting participants are designated as attendees. This parameter corresponds to the Only me setting in Teams. - - String - - String - - - None - - - DetectSensitiveContentDuringScreenSharing - - Allows the admin to enable sensitive content detection during screen share. - - Boolean - - Boolean - - - None - - - EnrollUserOverride - - Turn on/off Biometric enrollment Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - ExplicitRecordingConsent - - Set participant agreement and notification for Recording, Transcript, Copilot in Teams meetings. - Possible Values: - - Enabled: Explicit consent, requires participant agreement. - - Disabled: Implicit consent, does not require participant agreement. - - LegitimateInterest: Legitimate interest, less restrictive consent to meet legitimate interest without requiring explicit agreement from participants. - - String - - String - - - None - - - ExternalMeetingJoin - - Determines whether the user is allowed to join external meetings. - Possible values are: - - EnabledForAnyone - - EnabledForTrustedOrgs - - Disabled - - String - - String - - - EnabledForAnyone - - - ExternalBotAccessMode - - Controls how external third-party automated bots and meeting assistants are handled when they attempt to join meetings. This policy provides predictable behavior and helps organizers apply intentional control for bot participation. - Possible Values: - AllowAllBots : Don't detect bots; allow them to join meetings directly. - RequireApprovalWhenDetected : When detected, require approval before joining by routing detected bots to the meeting lobby. This is the default value. - BlockDetectedBots : Block detected bots from joining meetings. - - String - - String - - - RequireApprovalWhenDetected - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy being created. - - XdsIdentity - - XdsIdentity - - - None - - - InfoShownInReportMode - - This policy controls what kind of information get shown for the user's attendance in attendance report/dashboard. - - String - - String - - - None - - - IPAudioMode - - Determines whether audio can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming audio in the meeting. Set this to DISABLED to prohibit outgoing and incoming audio in the meeting. - - String - - String - - - None - - - IPVideoMode - - Determines whether video can be turned on in meetings and group calls. Set this to ENABLEDOUTGOINGINCOMING to allow outgoing and incoming video in the meeting. Set this to DISABLED to prohibit outgoing and incoming video in the meeting. - - String - - String - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for the user in Teams meetings. Set this to DisabledUserOverride to allow user to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - LiveInterpretationEnabledType - - Allows meeting organizers to configure a meeting for language interpretation, selecting attendees of the meeting to become interpreters that other attendees can select and listen to the real-time translation they provide. Possible values are: - - DisabledUserOverride , if you would like users to be able to use interpretation in meetings but by default it is disabled. - Disabled , prevents the option to be enabled in Meeting Options. - - String - - String - - - DisabledUserOverride - - - LiveStreamingMode - - Determines whether you provide support for your users to stream their Teams meetings to large audiences through Real-Time Messaging Protocol (RTMP). - Possible values are: - - Disabled - - Enabled - - String - - String - - - None - - - LobbyChat - - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether chat messages are allowed in the lobby. - Possible values are: - - Enabled - - Disabled - - String - - String - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - UInt32 - - UInt32 - - - None - - - MeetingChatEnabledType - - Specifies if users will be able to chat in meetings. Possible values are: Disabled, Enabled, and EnabledExceptAnonymous. - > [!NOTE] > Due to a new feature rollout, in order to set the value of MeetingChatEnabledType to Disabled, you will need to also set the value of LobbyChat to disabled. e.g., > Install-Module MicrosoftTeams -RequiredVersion 6.6.1-preview -Force -AllowClobber -AllowPrereleaseConnect-MicrosoftTeams Set-CsTeamsMeetingPolicy -Identity Global -MeetingChatEnabledType Disabled -LobbyChat Disabled - - String - - String - - - None - - - MeetingInviteLanguages - - > Applicable: Microsoft Teams - Controls how the join information in meeting invitations is displayed by enforcing a common language or enabling up to two languages to be displayed. - > [!NOTE] > All Teams supported languages can be specified using language codes. For more information about its delivery date, see the roadmap (Feature ID: 81521) (https://www.microsoft.com/microsoft-365/roadmap?filters=&searchterms=81521). - The preliminary list of available languages is shown below: - `ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW`. - - String - - String - - - None - - - NewMeetingRecordingExpirationDays - - Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days. Value can also be -1 to set meeting recordings to never expire. - > [!NOTE] > You may opt to set Meeting Recordings to never expire by entering the value -1. - - Int32 - - Int32 - - - None - - - NoiseSuppressionForDialInParticipants - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Control Noises Suppression Feature for PST legs joining a meeting. - Possible Values: - - MicrosoftDefault - - Enabled - - Disabled - - String - - String - - - None - - - ParticipantNameChange - - This setting will enable Tenant Admins to turn on/off participant renaming feature. - Possible Values: Enabled: Turns on the Participant Renaming feature. Disabled: Turns off the Participant Renaming feature. - - String - - String - - - None - - - ParticipantSlideControl - - > Applicable: Microsoft Teams - >[!NOTE] >This feature has not been released yet and will have no changes if it is enabled or disabled. - Determines whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting. - Possible Values: - Everyone: Anyone in the meeting can give or take control - - EveryoneInOrganization: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control - - EveryoneInOrganizationAndGuests: Only those who are Guests to the tenant, MTO users, and internal AAD users can give or take control - - None: No one in the meeting can give or take control - - String - - String - - - Enabled - - - PasscodeComplexity - - > Applicable: Microsoft Teams - Controls whether meeting passcodes use the system‑default complexity or a reduced complexity using numeric‑only digits. When enabled, meetings scheduled by users to whom this policy applies will use 8‑digit numeric‑only passcodes . Changes apply only to meetings scheduled after the setting is enabled . Existing meetings are not affected. This setting is disabled by default . - Possible Values: - Default : Alphanumeric passcodes with 8 characters (system default). - NumericOnly : 8‑digit numeric‑only passcodes with lower complexity for meetings scheduled by users to whom this policy applies. Numeric‑only passcodes increase the risk of unauthorized access compared to the default setting and do not align with Microsoft’s recommended meeting security best practices . - - String - - String - - - Default - - - PreferredMeetingProviderForIslandsMode - - Determines the Outlook meeting add-in available to users on Islands mode. By default, this is set to TeamsAndSfb, and the users sees both the Skype for Business and Teams add-ins. Set this to Teams to remove the Skype for Business add-in and only show the Teams add-in. - - String - - String - - - TeamsAndSfb - - - QnAEngagementMode - - This setting enables Microsoft 365 Tenant Admins to Enable or Disable the Questions and Answers experience (Q+A). When Enabled, Organizers can turn on Q+A for their meetings. When Disabled, Organizers cannot turn on Q+A in their meetings. The setting is enforced when a meeting is created or is updated by Organizers. Attendees can use Q+A in meetings where it was previously added. Organizers can remove Q+A for those meetings through Teams and Outlook Meeting Options. Possible values: Enabled, Disabled - - String - - String - - - None - - - RealTimeText - - > Applicable: Microsoft Teams - Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time. - Possible Values: - Enabled: User is allowed to turn on real time text. - - Disabled: User is not allowed to turn on real time text. - - String - - String - - - Enabled - - - RecordingStorageMode - - This parameter can take two possible values: - - Stream - - OneDriveForBusiness - - > [!NOTE] > The change of storing Teams meeting recordings from Classic Stream to OneDrive and SharePoint (ODSP) has been completed as of August 30th, 2021. All recordings are now stored in ODSP. This change overrides the RecordingStorageMode parameter, and modifying the setting in PowerShell no longer has any impact. - - String - - String - - - None - - - RoomAttributeUserOverride - - Possible values: - - Off - - Distinguish - - Attribute - - String - - String - - - None - - - RoomPeopleNameUserOverride - - Enabling people recognition requires the tenant CsTeamsMeetingPolicy roomPeopleNameUserOverride to be "On" and roomAttributeUserOverride to be Attribute for allowing individual voice and face profiles to be used for recognition in meetings. - > [!NOTE] > In some locations, people recognition can't be used due to local laws or regulations. Possible values: > > - Off: No People Recognition option on Microsoft Teams Room (Default). > - On: Policy value allows People recognition option on Microsoft Teams Rooms under call control bar. - - String - - String - - - None - - - ScreenSharingMode - - Determines the mode in which a user can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens. - - String - - String - - - None - - - SetRecordingAndTranscriptOwnership - - This setting allows admins to control the visibility of "Allow meeting organizers to choose who keeps recording and transcript" feature in the organizer's Meeting options . If you enable this setting, the Allow meeting organizers to choose who keeps recording and transcript setting appears in Meeting options . Organizers need to manually select a people from meeting attendees as the recording and transcript owner. If you disable this setting, Allow meeting organizers to choose who keeps recording and transcript is hidden, the default value of this setting is disabled. - > [!NOTE] > This feature has not been released yet and will have no changes if it is enabled or disabled. - Possible values are: - - Disabled - - Enabled - - String - - String - - - Disabled - - - SmsNotifications - - Participants can sign up for text message meeting reminders. - - String - - String - - - None - - - SpeakerAttributionMode - - Determines if users are identified in transcriptions and if they can change the value of the Automatically identify me in meeting captions and transcripts setting. - Possible values: - - Enabled : Speakers are identified in transcription. - EnabledUserOverride : Speakers are identified in transcription. If enabled, users can override this setting and choose not to be identified in their Teams profile settings. - DisabledUserOverride : Speakers are not identified in transcription. If enabled, users can override this setting and choose to be identified in their Teams profile settings. - Disabled : Speakers are not identified in transcription. - - String - - String - - - None - - - StreamingAttendeeMode - - Controls if Teams uses overflow capability once a meeting reaches its capacity (1,000 users with full functionality). - Possible values are: - - Disabled - - Enabled - - Set this to Enabled to allow up to 10,000 extra view-only attendees to join. - - String - - String - - - Disabled - - - TeamsCameraFarEndPTZMode - - Possible values are: - - Disabled - - AutoAcceptInTenant - - AutoAcceptAll - - String - - String - - - Disabled - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanAdmitFromLobby - - This policy controls who can admit from the lobby. - - String - - String - - - None - - - VideoFiltersMode - - Determines the background effects that a user can configure in the Teams client. Possible values are: - - NoFilters: No filters are available. - - BlurOnly: Background blur is the only option available (requires a processor with AVX2 support, see Hardware requirements for Microsoft Teams (https://learn.microsoft.com/microsoftteams/hardware-requirements-for-the-teams-app) for more information). - BlurAndDefaultBackgrounds: Background blur and a list of pre-selected images are available. - - AllFilters: All filters are available, including custom images. - - String - - String - - - None - - - VoiceIsolation - - Determines whether you provide support for your users to enable voice isolation in Teams meeting calls. - Possible values are: - Enabled (default) - - Disabled - - String - - String - - - None - - - VoiceSimulationInInterpreter - - Enables the user to use the voice simulation feature while being AI interpreted. - Possible Values: - - Disabled - - Enabled - - String - - String - - - Disabled - - - WatermarkForAnonymousUsers - - Determines the meeting experience and watermark content of an anonymous user. - - String - - String - - - None - - - WatermarkForCameraVideoOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForCameraVideoPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WatermarkForScreenSharingOpacity - - Allows the transparency of watermark to be customizable. - - Int64 - - Int64 - - - None - - - WatermarkForScreenSharingPattern - - Allows the pattern design of watermark to be customizable. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - WhoCanRegister - - Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts set the value to 'EveryoneInCompany'. - Possible values: - - Everyone - - EveryoneInCompany - - String - - String - - - Everyone - - - EnableRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This policy controls whether custom strings can be shown for recording and transcription in user's Teams meetings. It need to work with RecordingAndTranscriptionCustomMessageIdentifier. - - Boolean - - Boolean - - - None - - - RecordingAndTranscriptionCustomMessageIdentifier - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. This attribute holds the unique identifier for the custom recording and transcription meeting message. It stores a GUID that points to the CustomMessage in TeamsCustomMessageConfiguration. - - Guid - - Guid - - - None - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Set-CsTeamsMeetingPolicy -Identity SalesMeetingPolicy -AllowTranscription $True - - The command shown in Example 1 uses the Set-CsTeamsMeetingPolicy cmdlet to update an existing meeting policy with the Identity SalesMeetingPolicy. This policy will use all the existing values except one: AllowTranscription; in this example, meetings for users with this policy can include real time or post meeting captions and transcriptions. - - - - -------------------------- EXAMPLE 2 -------------------------- - Set-CsTeamsMeetingPolicy -Identity HrMeetingPolicy -AutoAdmittedUsers "Everyone" -AllowMeetNow $False - - In Example 2, the Set-CsTeamsMeetingPolicy cmdlet is used to update a meeting policy with the Identity HrMeetingPolicy. In this example two different property values are configured: AutoAdmittedUsers is set to Everyone and AllowMeetNow is set to False. All other policy properties will use the existing values. - - - - -------------------------- EXAMPLE 3 -------------------------- - Set-CsTeamsMeetingPolicy -Identity NonEVNetworkRoamingPolicy -AllowNetworkConfigurationSettingsLookup $True - - In Example 3, the Set-CsTeamsMeetingPolicy cmdlet is used to update an existing meeting policy with the Identity NonEVNetworkRoamingPolicy. This policy will use all the existing values except one: AllowNetworkConfigurationSettingsLookup; in this example, we will fetch network roaming policy for the non-EV user with NonEVNetworkRoamingPolicy based on his current network location. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingpolicy - - - - - - Set-CsTeamsMeetingTemplatePermissionPolicy - Set - CsTeamsMeetingTemplatePermissionPolicy - - This cmdlet updates an existing TeamsMeetingTemplatePermissionPolicy. - - - - Update any of the properties of an existing instance of the TeamsMeetingTemplatePermissionPolicy. - - - - Set-CsTeamsMeetingTemplatePermissionPolicy - - Description - - > Applicable: Microsoft Teams - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - HiddenMeetingTemplates - - > Applicable: Microsoft Teams - The updated list of meeting template IDs to hide. The HiddenMeetingTemplate objects are created with New-CsTeamsHiddenMeetingTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddenmeetingtemplate). - - HiddenMeetingTemplate[] - - HiddenMeetingTemplate[] - - - None - - - Identity - - > Applicable: Microsoft Teams - Name of the policy instance to be updated. - - String - - String - - - None - - - - - - Description - - > Applicable: Microsoft Teams - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - HiddenMeetingTemplates - - > Applicable: Microsoft Teams - The updated list of meeting template IDs to hide. The HiddenMeetingTemplate objects are created with New-CsTeamsHiddenMeetingTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddenmeetingtemplate). - - HiddenMeetingTemplate[] - - HiddenMeetingTemplate[] - - - None - - - Identity - - > Applicable: Microsoft Teams - Name of the policy instance to be updated. - - String - - String - - - None - - - - - - - - - - - - -- Example 1 - Updating the description of an existing policy -- - PS> Set-CsTeamsMeetingTemplatePermissionPolicy -Identity Foobar -Description "updated description" - - Updates the description field of a policy. - - - - Example 2 - Updating the hidden meeting template list of an existing policy - PS> Set-CsTeamsMeetingTemplatePermissionPolicy -Identity Foobar -HiddenMeetingTemplates @($hiddentemplate_1, $hiddentemplate_2) - - Updates the hidden meeting templates array. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsTeamsMeetingTemplatePermissionPolicy - - - Get-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingtemplatepermissionpolicy - - - New-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingtemplatepermissionpolicy - - - Remove-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingtemplatepermissionpolicy - - - Grant-CsTeamsMeetingTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingtemplatepermissionpolicy - - - - - - Set-CsTeamsMessagingConfiguration - Set - CsTeamsMessagingConfiguration - - The TeamsMessagingConfiguration determines the messaging settings for users in your tenant. - - - - TeamsMessagingConfiguration determines the messaging settings for the users in your tenant. This cmdlet lets you update the user messaging options you'd like to enable in your organization. - - - - Set-CsTeamsMessagingConfiguration - - Identity - - Specifies the collection of tenant messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ContentBasedPhishingCheck - - > [!NOTE] > This feature has not been released. - This setting enables content-based phishing detection for Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - CustomEmojis - - This setting enables/disables the use of custom emojis and reactions across the whole tenant. Upon enablement, admins and/or users can define a user group that is allowed. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableInOrganizationChatControl - - This setting determines if chat regulation for internal communication in tenant is allowed. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableVideoMessageCaptions - - This setting determines if closed captions will be displayed, for Teams Video Clips, during playback. Possible values: True, False - - Boolean - - Boolean - - - None - - - FileTypeCheck - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables weaponizable file detection in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MessagingNotes - - This setting enables/disables MessagingNotes integration across the whole tenant. Possible Values: Disabled, Enabled - - String - - String - - - Enabled - - - ReportIncorrectSecurityDetections - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables the end users to Report incorrect security detections in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - UrlReputationCheck - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables malicious URL detection in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ContentBasedPhishingCheck - - > [!NOTE] > This feature has not been released. - This setting enables content-based phishing detection for Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - CustomEmojis - - This setting enables/disables the use of custom emojis and reactions across the whole tenant. Upon enablement, admins and/or users can define a user group that is allowed. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableInOrganizationChatControl - - This setting determines if chat regulation for internal communication in tenant is allowed. Possible Values: True, False - - Boolean - - Boolean - - - None - - - EnableVideoMessageCaptions - - This setting determines if closed captions will be displayed, for Teams Video Clips, during playback. Possible values: True, False - - Boolean - - Boolean - - - None - - - FileTypeCheck - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables weaponizable file detection in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specifies the collection of tenant messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - String - - String - - - None - - - MessagingNotes - - This setting enables/disables MessagingNotes integration across the whole tenant. Possible Values: Disabled, Enabled - - String - - String - - - Enabled - - - ReportIncorrectSecurityDetections - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables the end users to Report incorrect security detections in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - UrlReputationCheck - - > [!NOTE] > This cmdlet is not available in GCC, GCCH and DOD. - This setting enables malicious URL detection in Teams messages in the tenant. - Possible Values: - Enabled - - Disabled - - String - - String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMessagingConfiguration -CustomEmojis $False - - The command shown in example 1 disables custom emojis within Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsTeamsMessagingConfiguration - - - Get-CsTeamsMessagingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingconfiguration - - - - - - Set-CsTeamsMessagingPolicy - Set - CsTeamsMessagingPolicy - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. These also help determine the type of messages users can create and modify. - - - - The CsTeamsMessagingPolicy cmdlets enable administrators to control if a user is enabled to exchange messages. These also help determine the type of messages users can create and modify. This cmdlet updates a Teams messaging policy. Custom policies can then be assigned to users using the Grant-CsTeamsMessagingPolicy cmdlet. - - - - Set-CsTeamsMessagingPolicy - - Identity - - Identity for the teams messaging policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: `-Identity TeamsMessagingPolicy`. - If you do not specify an Identity the Set-CsTeamsMessagingPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowSmartCompose - - Turn on this setting to let a user get text predictions for chat messages. - - Boolean - - Boolean - - - None - - - AllowChatWithGroup - - This setting determines if users can chat with groups (Distribution, M365 and Security groups). Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowCommunicationComplianceEndUserReporting - - This setting determines if users can report offensive messages to their admin for Communication Compliance. Possible Values: True, False - - Boolean - - Boolean - - - None - - - AllowCustomGroupChatAvatars - - These settings enables, disables updating or fetching custom group chat avatars for the users included in the messaging policy. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowExtendedWorkInfoInSearch - - This setting enables/disables showing company name and department name in search results for MTO users. - - Boolean - - Boolean - - - None - - - AllowFluidCollaborate - - This field enables or disables Fluid Collaborate feature for users. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowFullChatPermissionUserToDeleteAnyMessage - - This setting determines if users with the 'Full permissions' role can delete any group or meeting chat message within their tenant. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGiphy - - Determines whether a user is allowed to access and post Giphys. Set this to TRUE to allow. Set this FALSE to prohibit. Note : Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for Giphys to be allowed. - - Boolean - - Boolean - - - None - - - AllowGiphyDisplay - - Determines if Giphy images should be displayed that had been already sent or received in chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGroupChatJoinLinks - - This setting determines if users in a group chat can create and share join links for other users within the organization to join that chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines whether a user is allowed to use Immersive Reader for reading conversation messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines whether a user is allowed to access and post memes. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessage - - Determines whether owners are allowed to delete all the messages in their team. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPasteInternetImage - - Determines if a user is allowed to paste internet-based images in compose. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowPriorityMessages - - Determines whether a user is allowed to send priority messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowRemoveUser - - Determines whether a user is allowed to remove a user from a conversation. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSecurityEndUserReporting - - This setting determines if users can report any security concern posted in message to their admin. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowSmartReply - - Turn this setting on to enable suggested replies for chat messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines whether a user is allowed to access and post stickers. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUrlPreviews - - Use this setting to turn automatic URL previewing on or off in messages. Set this to TRUE to turn on. Set this to FALSE to turn off. - Note that Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for URL previews to be allowed. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their 1:1, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines whether a user is allowed to delete their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. If this value is set to FALSE, the team owner will not be able to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines whether a user is allowed to edit their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserTranslation - - Determines whether a user is allowed to translate messages to their client languages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowVideoMessages - - This setting determines if users can create and send video messages. Possible values: True, False - - Boolean - - Boolean - - - None - - - AudioMessageEnabledType - - Determines whether a user is allowed to send audio messages. Possible values are: ChatsAndChannels, ChatsOnly, Disabled. - - AudioMessageEnabledTypeEnum - - AudioMessageEnabledTypeEnum - - - None - - - ChannelsInChatListEnabledType - - On mobile devices, enable to display favorite channels above recent chats. - Possible values are: DisabledUserOverride, EnabledUserOverride. - - ChannelsInChatListEnabledTypeEnum - - ChannelsInChatListEnabledTypeEnum - - - None - - - ChatPermissionRole - - Determines the Supervised Chat role of the user. Set this to Full to allow the user to supervise chats. Supervisors have the ability to initiate chats with and invite any user within the environment. Set this to Limited to allow the user to initiate conversations with Full and Limited permissioned users, but not Restricted. Set this to Restricted to block chat creation with anyone other than Full permissioned users. - - String - - String - - - Restricted - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CreateCustomEmojis - - This setting enables the creation of custom emojis and reactions within an organization for the specified policy users. - - Boolean - - Boolean - - - None - - - DeleteCustomEmojis - - These settings enable and disable the editing and deletion of custom emojis and reactions for the users included in the messaging policy. - - Boolean - - Boolean - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - DesignerForBackgroundsAndImages - - This setting determines whether a user is allowed to create custom AI-powered backgrounds and images with MS Designer. - Possible values are: Enabled, Disabled. - - DesignerForBackgroundsAndImagesTypeEnum - - DesignerForBackgroundsAndImagesTypeEnum - - - Enabled - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - GiphyRatingType - - Determines the Giphy content restrictions applicable to a user. Set this to STRICT, MODERATE or NORESTRICTION. - - String - - String - - - None - - - InOrganizationChatControl - - This setting determines if chat regulation for internal communication in the tenant is allowed. - - String - - String - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - ReadReceiptsEnabledType - - Use this setting to specify whether read receipts are user controlled, enabled for everyone, or disabled. Set this to UserPreference, Everyone or None. - - String - - String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - UseB2BInvitesToAddExternalUsers - - Indicates whether B2B invites should be used to add external users when necessary. - Possible values: - - True: External users will be added using B2B invites. - - False: External users will not be added using B2B invites. - - Boolean - - Boolean - - - True - - - AutoShareFilesInExternalChats - - Determines whether files are automatically shared in external chats. - Possible values: - - `Enabled`: Files are automatically shared in external chats. - - `Disabled`: Files are not automatically shared in external chats. - - System.String - - System.String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowChatWithGroup - - This setting determines if users can chat with groups (Distribution, M365 and Security groups). Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowCommunicationComplianceEndUserReporting - - This setting determines if users can report offensive messages to their admin for Communication Compliance. Possible Values: True, False - - Boolean - - Boolean - - - None - - - AllowCustomGroupChatAvatars - - These settings enables, disables updating or fetching custom group chat avatars for the users included in the messaging policy. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowExtendedWorkInfoInSearch - - This setting enables/disables showing company name and department name in search results for MTO users. - - Boolean - - Boolean - - - None - - - AllowFluidCollaborate - - This field enables or disables Fluid Collaborate feature for users. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowFullChatPermissionUserToDeleteAnyMessage - - This setting determines if users with the 'Full permissions' role can delete any group or meeting chat message within their tenant. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGiphy - - Determines whether a user is allowed to access and post Giphys. Set this to TRUE to allow. Set this FALSE to prohibit. Note : Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for Giphys to be allowed. - - Boolean - - Boolean - - - None - - - AllowGiphyDisplay - - Determines if Giphy images should be displayed that had been already sent or received in chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowGroupChatJoinLinks - - This setting determines if users in a group chat can create and share join links for other users within the organization to join that chat. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines whether a user is allowed to use Immersive Reader for reading conversation messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines whether a user is allowed to access and post memes. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessage - - Determines whether owners are allowed to delete all the messages in their team. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowPasteInternetImage - - Determines if a user is allowed to paste internet-based images in compose. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowPriorityMessages - - Determines whether a user is allowed to send priority messages. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowRemoveUser - - Determines whether a user is allowed to remove a user from a conversation. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowSecurityEndUserReporting - - This setting determines if users can report any security concern posted in message to their admin. Possible values: True, False - - Boolean - - Boolean - - - None - - - AllowSmartCompose - - Turn on this setting to let a user get text predictions for chat messages. - - Boolean - - Boolean - - - None - - - AllowSmartReply - - Turn this setting on to enable suggested replies for chat messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines whether a user is allowed to access and post stickers. Set this to TRUE to allow. Set this FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUrlPreviews - - Use this setting to turn automatic URL previewing on or off in messages. Set this to TRUE to turn on. Set this to FALSE to turn off. - Note that Optional Connected Experiences (https://learn.microsoft.com/deployoffice/privacy/manage-privacy-controls#policy-setting-for-optional-connected-experiences)must be also enabled for URL previews to be allowed. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines whether a user is allowed to chat. Set this to TRUE to allow a user to chat across private chat, group chat and in meetings. Set this to FALSE to prohibit all chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their 1:1, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines whether a user is allowed to delete their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. If this value is set to FALSE, the team owner will not be able to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines whether a user is allowed to edit their own messages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowUserTranslation - - Determines whether a user is allowed to translate messages to their client languages. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - AllowVideoMessages - - This setting determines if users can create and send video messages. Possible values: True, False - - Boolean - - Boolean - - - None - - - AudioMessageEnabledType - - Determines whether a user is allowed to send audio messages. Possible values are: ChatsAndChannels, ChatsOnly, Disabled. - - AudioMessageEnabledTypeEnum - - AudioMessageEnabledTypeEnum - - - None - - - ChannelsInChatListEnabledType - - On mobile devices, enable to display favorite channels above recent chats. - Possible values are: DisabledUserOverride, EnabledUserOverride. - - ChannelsInChatListEnabledTypeEnum - - ChannelsInChatListEnabledTypeEnum - - - None - - - ChatPermissionRole - - Determines the Supervised Chat role of the user. Set this to Full to allow the user to supervise chats. Supervisors have the ability to initiate chats with and invite any user within the environment. Set this to Limited to allow the user to initiate conversations with Full and Limited permissioned users, but not Restricted. Set this to Restricted to block chat creation with anyone other than Full permissioned users. - - String - - String - - - Restricted - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CreateCustomEmojis - - This setting enables the creation of custom emojis and reactions within an organization for the specified policy users. - - Boolean - - Boolean - - - None - - - DeleteCustomEmojis - - These settings enable and disable the editing and deletion of custom emojis and reactions for the users included in the messaging policy. - - Boolean - - Boolean - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - DesignerForBackgroundsAndImages - - This setting determines whether a user is allowed to create custom AI-powered backgrounds and images with MS Designer. - Possible values are: Enabled, Disabled. - - DesignerForBackgroundsAndImagesTypeEnum - - DesignerForBackgroundsAndImagesTypeEnum - - - Enabled - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - GiphyRatingType - - Determines the Giphy content restrictions applicable to a user. Set this to STRICT, MODERATE or NORESTRICTION. - - String - - String - - - None - - - Identity - - Identity for the teams messaging policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: `-Identity TeamsMessagingPolicy`. - If you do not specify an Identity the Set-CsTeamsMessagingPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - InOrganizationChatControl - - This setting determines if chat regulation for internal communication in the tenant is allowed. - - String - - String - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - ReadReceiptsEnabledType - - Use this setting to specify whether read receipts are user controlled, enabled for everyone, or disabled. Set this to UserPreference, Everyone or None. - - String - - String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - UseB2BInvitesToAddExternalUsers - - Indicates whether B2B invites should be used to add external users when necessary. - Possible values: - - True: External users will be added using B2B invites. - - False: External users will not be added using B2B invites. - - Boolean - - Boolean - - - True - - - AutoShareFilesInExternalChats - - Determines whether files are automatically shared in external chats. - Possible values: - - `Enabled`: Files are automatically shared in external chats. - - `Disabled`: Files are not automatically shared in external chats. - - System.String - - System.String - - - Enabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMessagingPolicy -Identity StudentMessagingPolicy -AllowGiphy $false -AllowMemes $false - - In this example two different property values are configured: AllowGiphy is set to false and AllowMemes is set to False. All other policy properties will be left as previously assigned. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsMessagingPolicy -Identity StudentMessagingPolicy | Set-CsTeamsMessagingPolicy -AllowGiphy $false -AllowMemes $false - - In this example two different property values are configured for all teams messaging policies in the organization: AllowGiphy is set to false and AllowMemes is set to False. All other policy properties will be left as previously assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmessagingpolicy - - - - - - Set-CsTeamsMobilityPolicy - Set - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Set-CsTeamsMobilityPolicy cmdlet allows administrators to update teams mobility policies. - - - - Set-CsTeamsMobilityPolicy - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Bypasses all non-fatal errors. - - - SwitchParameter - - - False - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making, receiving calls or joining meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making, receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Bypasses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making, receiving calls or joining meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making, receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMobilityPolicy -Identity SalesPolicy -IPVideoMobileMode "WifiOnly" - - The command shown in Example 1 uses the Set-CsTeamsMobilityPolicy cmdlet to update an existing teams mobility policy with the Identity SalesPolicy. This SalesPolicy will not have IPVideoMobileMode equal to "WifiOnly". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmobilitypolicy - - - - - - Set-CsTeamsMultiTenantOrganizationConfiguration - Set - CsTeamsMultiTenantOrganizationConfiguration - - This cmdlet configures the Multi-tenant Organization settings for the tenant. - - - - The Set-CsTeamsMultiTenantOrganizationConfiguration cmdlet configures tenant settings for Multi-tenant Organizations. This includes the CopilotFromHomeTenant parameter, which determines if users in a Multi-Tenant Organization can use their Copilot license from their home tenant during cross-tenant meetings - - - - Set-CsTeamsMultiTenantOrganizationConfiguration - - CopilotFromHomeTenant - - Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams Multi-tenant Organization Setting. - - String - - String - - - None - - - - Set-CsTeamsMultiTenantOrganizationConfiguration - - CopilotFromHomeTenant - - Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams Multi-tenant Organization Setting. - - String - - String - - - None - - - - - - CopilotFromHomeTenant - - Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings. - - Boolean - - Boolean - - - Enabled - - - Identity - - Identity of the Teams Multi-tenant Organization Setting. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Disabled - - Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Disabled" for global as default. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsMultiTenantOrganizationConfiguration -Identity Global -CopilotFromHomeTenant Enabled - - Set Teams Multi-tenant Organization Setting "CopilotFromHomeTenant" value to "Enabled" for global as default. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmultitenantorganizationconfiguration - - - Get-CsTeamsMultiTenantOrganizationConfiguration - - - - - - - Set-CsTeamsNetworkRoamingPolicy - Set - CsTeamsNetworkRoamingPolicy - - Set-CsTeamsNetworkRoamingPolicy allows IT Admins to create or update policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Updates or creates new Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - Set-CsTeamsNetworkRoamingPolicy - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the policy to be edited. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be modified. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the policy to be edited. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be modified. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsNetworkRoamingPolicy -Identity "RedmondRoaming" -AllowIPVideo $true -MediaBitRateKb 2000 -Description "Redmond campus roaming policy" - - The command shown in Example 1 updates the teams network roaming policy with Identity "RedmondRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 2000 Kbps. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsnetworkroamingpolicy - - - - - - Set-CsTeamsNotificationAndFeedsPolicy - Set - CsTeamsNotificationAndFeedsPolicy - - Modifies an existing Teams Notifications and Feeds Policy - - - - The Microsoft Teams notifications and feeds policy allows administrators to manage how notifications and activity feeds are handled within Teams. This policy includes settings that control the types of notifications users receive, how they are delivered, and which activities are highlighted in their feeds. - - - - Set-CsTeamsNotificationAndFeedsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - SuggestedFeedsEnabledType - - The SuggestedFeedsEnabledType parameter in the Microsoft Teams notifications and feeds policy controls whether users receive notifications about suggested activities and content within their Teams environment. When enabled, this parameter ensures that users are notified about recommended or relevant activities, helping them stay informed and engaged with important updates and interactions. - - String - - String - - - None - - - TrendingFeedsEnabledType - - The TrendingFeedsEnabledType parameter in the Microsoft Teams notifications and feeds policy controls whether users receive notifications about trending activities within their Teams environment. When enabled, this parameter ensures that users are notified about popular or important activities, helping them stay informed about significant updates and interactions. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free format text - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - SuggestedFeedsEnabledType - - The SuggestedFeedsEnabledType parameter in the Microsoft Teams notifications and feeds policy controls whether users receive notifications about suggested activities and content within their Teams environment. When enabled, this parameter ensures that users are notified about recommended or relevant activities, helping them stay informed and engaged with important updates and interactions. - - String - - String - - - None - - - TrendingFeedsEnabledType - - The TrendingFeedsEnabledType parameter in the Microsoft Teams notifications and feeds policy controls whether users receive notifications about trending activities within their Teams environment. When enabled, this parameter ensures that users are notified about popular or important activities, helping them stay informed about significant updates and interactions. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsNotificationAndFeedsPolicy Global -SuggestedFeedsEnabledType EnabledUserOverride - - Change settings on an existing Notifications and Feeds Policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsnotificationandfeedspolicy - - - - - - Set-CsTeamsPersonalAttendantPolicy - Set - CsTeamsPersonalAttendantPolicy - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - Use this cmdlet to update values in existing Teams Personal Attendant Policies. - When policy modifications are temporarily blocked, only AutomaticTranscription and AutomaticRecording can be updated. The following parameters are not available for changes during this period: `PersonalAttendant`, `CallScreening`, `CalendarBookings`, `InboundInternalCalls`, `InboundFederatedCalls`, `InboundPSTNCalls`. - - - - The Teams Personal Attendant Policy controls personal attendant and its functionalities available to users in Microsoft Teams. This cmdlet allows admins to set values in a given Personal Attendant Policy instance. - Only the parameters specified are changed. Other parameters keep their existing values. - - - - Set-CsTeamsPersonalAttendantPolicy - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - PersonalAttendant - - Enables the user to use the personal attendant - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CallScreening - - Enables the user to use the personal attendant call context evaluation features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CalendarBookings - - Enables the user to use the personal attendant calendar related features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundInternalCalls - - Enables the user to use the personal attendant for incoming domain calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundFederatedCalls - - Enables the user to use the personal attendant for incoming calls from other domains - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundPSTNCalls - - Enables the user to use the personal attendant for incoming PSTN calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticTranscription - - Enables the user to use the automatic storing of personal attendant call transcriptions - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticRecording - - Enables the user to use the automatic storing of personal attendant call recordings - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Identity - - Name of the policy instance being created. - - String - - String - - - None - - - PersonalAttendant - - Enables the user to use the personal attendant - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CallScreening - - Enables the user to use the personal attendant call context evaluation features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - CalendarBookings - - Enables the user to use the personal attendant calendar related features - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundInternalCalls - - Enables the user to use the personal attendant for incoming domain calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundFederatedCalls - - Enables the user to use the personal attendant for incoming calls from other domains - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - InboundPSTNCalls - - Enables the user to use the personal attendant for incoming PSTN calls - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticTranscription - - Enables the user to use the automatic storing of personal attendant call transcriptions - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - AutomaticRecording - - Enables the user to use the automatic storing of personal attendant call recordings - Possible values: - - EnabledUserOverride: Users can set their preferences from personal attendant settings in the Teams app. - - Enabled: Enables the user to use this functionality. - - Disabled: The user is not enabled to use this functionality. - - String - - String - - - EnabledUserOverride - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.2.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsPersonalAttendantPolicy -Identity Global -CallScreening Disabled - - Sets the value of the parameter CallScreening in the Global (default) Teams Personal Attendant Policy instance. - - - - -------------------------- Example 2 -------------------------- - Set-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy -CalendarBookings Disabled - - Sets the value of the parameter CalendarBookings to Disabled in the Teams Personal Attendant Policy instance called SalesPersonalAttendantPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamspersonalattendantpolicy - - - New-CsTeamsPersonalAttendantPolicy - - - - Get-CsTeamsPersonalAttendantPolicy - - - - Grant-CsTeamsPersonalAttendantPolicy - - - - Remove-CsTeamsPersonalAttendantPolicy - - - - - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - Set - CsTeamsRecordingAndTranscriptionCustomMessage - - > [!NOTE] > This feature has not been fully released yet, so the setting will have no effect. - Modifies an existing TeamsRecordingAndTranscriptionCustomMessage settings in your tenant, It will affect the RecordingAndTranscriptionCustomMessageIdentifier policy that has already been applied, thereby modifying the prompt messages seen by users and user groups assigned to this policy after recording or transcription is started. - - - - This command modifies the custom recording and transcription prompt messages created using the New-CsTeamsRecordingAndTranscriptionCustomMessage command. Please refer directly to the documentation for New-CsTeamsRecordingAndTranscriptionCustomMessage to learn how to use this command. The only difference is that when using the Set command, you must specify the Id to indicate which specific TeamsRecordingAndTranscriptionCustomMessage setting you want to modify. - - - - Set-CsTeamsRecordingAndTranscriptionCustomMessage - - Id - - The ObjectId of the CsTeamsRecordingAndTranscriptionCustomMessage setting, By assigning the ID to the RecordingAndTranscriptionCustomMessageIdentifier field in the meeting policy or calling policy, you can associate the current custom prompt message configuration with a user group or individual users. - At the same time, when creating CsTeamsRecordingAndTranscriptionCustomMessage, it is not necessary to explicitly specify the ID; a GUID will be automatically generated and stored as the Id. - - Guid - - Guid - - - None - - - DESCRIPTION - - Add a description for CsTeamsRecordingAndTranscriptionCustomMessage. - - String - - String - - - None - - - RecordingAndTranscriptionLocalizationCustomMessage - - Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage. - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - - None - - - - - - Id - - The ObjectId of the CsTeamsRecordingAndTranscriptionCustomMessage setting, By assigning the ID to the RecordingAndTranscriptionCustomMessageIdentifier field in the meeting policy or calling policy, you can associate the current custom prompt message configuration with a user group or individual users. - At the same time, when creating CsTeamsRecordingAndTranscriptionCustomMessage, it is not necessary to explicitly specify the ID; a GUID will be automatically generated and stored as the Id. - - Guid - - Guid - - - None - - - DESCRIPTION - - Add a description for CsTeamsRecordingAndTranscriptionCustomMessage. - - String - - String - - - None - - - RecordingAndTranscriptionLocalizationCustomMessage - - Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage. - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - TeamsRecordingAndTranscriptionLocalizationCustomMessage[] - - - None - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsRecordingAndTranscriptionCustomMessage -Id "39dc3ede-c80e-4f19-9153-417a65a1f144" -Description "Updated recording message policy" - - The command shown in Example 1 updates the description of an existing TeamsRecordingAndTranscriptionCustomMessage with the specified Id. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage - - - Remove-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-CsTeamsRecordingAndTranscriptionCustomMessage - - - Get-CsTeamsRecordingAndTranscriptionCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/get-CsTeamsRecordingAndTranscriptionCustomMessage - - - New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage - - - - - - Set-CsTeamsRemoteLogCollectionDevice - Set - CsTeamsRemoteLogCollectionDevice - - This cmdlet allows you to edit the properties of an existing TeamsRemoteLogCollectionDevice instance. - - - - This cmdlet allows you to edit a TeamsRemoteLogCollectionDevice instance. - Remote log collection is a feature in Microsoft Teams that allows IT administrators to remotely trigger the collection of diagnostic logs from user devices through the Teams Admin Center (TAC). Instead of relying on manual user intervention, admins can initiate log collection for troubleshooting directly from the TAC portal. - TeamsRemoteLogCollectionConfiguration is updated with a list of devices when an administrator wants to initiate a request for remote log collection for a user's device. Each device has a unique GUID identity, userId, deviceId and expiry date. - - - - Set-CsTeamsRemoteLogCollectionDevice - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - Guid - - Guid - - - None - - - UserId - - > Applicable: Microsoft Teams - Indicates the userId of the user for which an admin is requesting logs for. This userId must be a valid GUID. - - String - - String - - - None - - - DeviceId - - > Applicable: Microsoft Teams - Indicates the deviceId of the device for which an admin is requesting logs for. This deviceId must be a valid GUID. - - String - - String - - - None - - - ExpireAfter - - > Applicable: Microsoft Teams - Indicates the expiry date after which the remote log collection request will expire. This expire after date should be set to now() + 3 days. This expiry date should be in ISO 8601 UTC format. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - UserId - - > Applicable: Microsoft Teams - Indicates the userId of the user for which an admin is requesting logs for. This userId must be a valid GUID. - - String - - String - - - None - - - DeviceId - - > Applicable: Microsoft Teams - Indicates the deviceId of the device for which an admin is requesting logs for. This deviceId must be a valid GUID. - - String - - String - - - None - - - ExpireAfter - - > Applicable: Microsoft Teams - Indicates the expiry date after which the remote log collection request will expire. This expire after date should be set to now() + 3 days. This expiry date should be in ISO 8601 UTC format. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - --------------------------- Example --------------------------- - PS C:\> New-CsTeamsRemoteLogCollectionDevice -ExpireAfter "06/07/2025 15:30:45" - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csTeamsRemoteLogCollectionDevice - - - Get-CsTeamsRemoteLogCollectionConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionConfiguration - - - Get-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/get-csTeamsRemoteLogCollectionDevice - - - New-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/new-csTeamsRemoteLogCollectionDevice - - - Remove-CsTeamsRemoteLogCollectionDevice - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csTeamsRemoteLogCollectionDevice - - - - - - Set-CsTeamsRoomVideoTeleConferencingPolicy - Set - CsTeamsRoomVideoTeleConferencingPolicy - - Modifies the property of an existing TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Set-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsroomvideoteleconferencingpolicy - - - - - - Set-CsTeamsSharedCallingRoutingPolicy - Set - CsTeamsSharedCallingRoutingPolicy - - Use the Set-CsTeamsSharedCallingRoutingPolicy cmdlet to change a shared calling routing policy instance. - - - - The Teams shared calling routing policy configures the caller ID for normal outbound PSTN and emergency calls made by users enabled for shared calling using this policy instance. - The caller ID for normal outbound PSTN calls is the phone number assigned to the resource account specified in the policy instance. Typically this is the organization's main auto attendant phone number. Callbacks will go to the auto attendant and the PSTN caller can use the auto attendant to be transferred to the shared calling user. - When a shared calling user makes an emergency call, the emergency services need to be able to make a direct callback to the user who placed the emergency call. One of the defined emergency numbers is used for this purpose as caller ID for the emergency call. It will be reserved for the next 60 minutes and any inbound call to that number will directly ring the shared calling user who made the emergency call. If no emergency numbers are defined, the phone number of the resource account will be used as caller ID. If no free emergency numbers are available, the first number in the list will be reused. - The emergency call will contain the location of the shared calling user. The location will either be the dynamic emergency location obtained by the Teams client or if that is not available the static location assigned to the phone number of the resource account used in the shared calling policy instance. - - - - Set-CsTeamsSharedCallingRoutingPolicy - - Identity - - Unique identifier of the Teams shared calling routing policy to be created. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The description of the new policy instance. - - String - - String - - - None - - - EmergencyNumbers - - An array of phone numbers used as caller ID on emergency calls. - The emergency numbers must be routable for inbound PSTN calls, and for Calling Plan and Operator Connect phone numbers, must be available within the organization. - The emergency numbers specified must all be of the same phone number type and country as the phone number assigned to the specified resource account. If the resource account has a Calling Plan service number assigned, the emergency numbers need to be Calling Plan subscriber numbers. - The emergency numbers must be unique and can't be reused in other shared calling policy instances. The emergency numbers can't be assigned to any user or resource account. - If no emergency numbers are configured, the phone number of the resource account will be used as Caller ID for the emergency call. - - System.Management.Automation.PSListModifier[String] - - System.Management.Automation.PSListModifier[String] - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - ResourceAccount - - The Identity of the resource account. Can only be specified using the Identity or ObjectId of the resource account. - The phone number assigned to the resource account must: - Have the same phone number type and country as the emergency numbers configured in this policy instance. - - Must have an emergency location assigned. You can use the Teams PowerShell Module Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and the -LocationId parameter to set the location. - If the resource account is using a Calling Plan service number, you must have a Pay-As-You-Go Calling Plan, and assign it to the resource account. In addition, you need to assign a Communications credits license to the resource account and fund it to support outbound shared calling calls via the Pay-As-You-Go Calling Plan. - The same resource account can be used in multiple shared calling policy instances. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The description of the new policy instance. - - String - - String - - - None - - - EmergencyNumbers - - An array of phone numbers used as caller ID on emergency calls. - The emergency numbers must be routable for inbound PSTN calls, and for Calling Plan and Operator Connect phone numbers, must be available within the organization. - The emergency numbers specified must all be of the same phone number type and country as the phone number assigned to the specified resource account. If the resource account has a Calling Plan service number assigned, the emergency numbers need to be Calling Plan subscriber numbers. - The emergency numbers must be unique and can't be reused in other shared calling policy instances. The emergency numbers can't be assigned to any user or resource account. - If no emergency numbers are configured, the phone number of the resource account will be used as Caller ID for the emergency call. - - System.Management.Automation.PSListModifier[String] - - System.Management.Automation.PSListModifier[String] - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the Teams shared calling routing policy to be created. - - String - - String - - - None - - - ResourceAccount - - The Identity of the resource account. Can only be specified using the Identity or ObjectId of the resource account. - The phone number assigned to the resource account must: - Have the same phone number type and country as the emergency numbers configured in this policy instance. - - Must have an emergency location assigned. You can use the Teams PowerShell Module Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and the -LocationId parameter to set the location. - If the resource account is using a Calling Plan service number, you must have a Pay-As-You-Go Calling Plan, and assign it to the resource account. In addition, you need to assign a Communications credits license to the resource account and fund it to support outbound shared calling calls via the Pay-As-You-Go Calling Plan. - The same resource account can be used in multiple shared calling policy instances. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - In some Calling Plan markets, you are not allowed to set the location on service numbers. In this instance, kindly contact the Telephone Number Services service desk (https://learn.microsoft.com/microsoftteams/phone-reference/manage-numbers/contact-tns-service-desk). - If you are attempting to use a resource account with an Operator Connect phone number assigned, kindly confirm support for Shared Calling with your operator. - Shared Calling is not supported for Calling Plan service phone numbers in Romania, the Czech Republic, Hungary, Singapore, New Zealand, Australia, and Japan. A limited number of existing Calling Plan service phone numbers in other countries are also not supported for Shared Calling. For such service phone numbers, you should contact the Telephone Number Services service desk (https://learn.microsoft.com/microsoftteams/phone-reference/manage-numbers/contact-tns-service-desk). - This cmdlet was introduced in Teams PowerShell Module 5.5.0. - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsSharedCallingRoutingPolicy -Identity Seattle -EmergencyNumbers @{remove='+14255556677'} - - The command shown in Example 1 removes the emergency callback number +14255556677 from the policy called Seattle. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssharedcallingroutingpolicy - - - New-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssharedcallingroutingpolicy - - - Grant-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssharedcallingroutingpolicy - - - Remove-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssharedcallingroutingpolicy - - - Get-CsTeamsSharedCallingRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssharedcallingroutingpolicy - - - Set-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment - - - - - - Set-CsTeamsShiftsAppPolicy - Set - CsTeamsShiftsAppPolicy - - Allows you to set or update properties of a Teams Shifts App Policy instance. - - - - The Teams Shifts app is designed to help frontline workers and their managers manage schedules and communicate effectively. - - - - Set-CsTeamsShiftsAppPolicy - - Identity - - Policy instance name. - - String - - String - - - None - - - AllowTimeClockLocationDetection - - Turns on the location detection. The time report will indicate whether workers are "on location" when they clocked in and out. Workers are considered as "on location" if they clock in or out within a 200-meter radius of the set location. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTimeClockLocationDetection - - Turns on the location detection. The time report will indicate whether workers are "on location" when they clocked in and out. Workers are considered as "on location" if they clock in or out within a 200-meter radius of the set location. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Policy instance name. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsShiftsAppPolicy 'Default' -AllowTimeClockLocationDetection $False - - Change Settings on a Teams Shift App Policy (only works on Global policy) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsapppolicy - - - - - - Set-CsTeamsShiftsPolicy - Set - CsTeamsShiftsPolicy - - This cmdlet allows you to set or update properties of a TeamsShiftPolicy instance, including Teams off shift warning message-specific settings. - - - - This cmdlet allows you to set or update properties of a TeamsShiftPolicy instance. Use this to set the policy name and Teams off shift warning message-specific settings (ShiftNoticeMessageType, ShiftNoticeMessageCustom, ShiftNoticeFrequency, AccessGracePeriodMinutes). - - - - Set-CsTeamsShiftsPolicy - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - AccessGracePeriodMinutes - - > Applicable: Microsoft Teams - Indicates the grace period time in minutes between when the first shift starts, or last shift ends and when access is blocked. - - Int64 - - Int64 - - - None - - - AccessType - - > Applicable: Microsoft Teams - Indicates the Teams access type granted to the user. Today, only unrestricted access to Teams app is supported. Use 'UnrestrictedAccess_TeamsApp' as the value for this setting, or is set by default. For Teams Off Shift Access Control, the option to show the user a blocking dialog message is supported. Once the user accepts this message, it is audit logged and the user has usual access to Teams. Set other off shift warning message-specific settings to configure off shift access controls for the user. - - String - - String - - - UnrestrictedAccess_TeamsApp - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableScheduleOwnerPermissions - - > Applicable: Microsoft Teams - Indicates whether a user can manage a Shifts schedule as a team member. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - ShiftNoticeFrequency - - > Applicable: Microsoft Teams - Frequency of warning dialog displayed when user opens Teams. Set one of Always, ShowOnceOnChange, Never. - - String - - String - - - Always - - - ShiftNoticeMessageCustom - - > Applicable: Microsoft Teams - Provide a custom message. Must set ShiftNoticeMessageType to 'CustomMessage' to enforce this. - - String - - String - - - None - - - ShiftNoticeMessageType - - > Applicable: Microsoft Teams - The warning message is shown in the blocking dialog when a user access Teams off shift hours. Select one of 7 Microsoft provided messages, a default message or a custom message. 'Message1' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. By accepting, you acknowledge that your use of Teams while off shift is not authorized and you will not be compensated. 'Message2' - Accessing this app outside working hours is voluntary. You won't be compensated for time spent on Teams. Refer to your employer's guidelines on using this app outside working hours. By accepting, you acknowledge that you understand the statement above. 'Message3' - You won't be compensated for time using Teams. By accepting, you acknowledge that you understand the statement above. 'Message4' - You're not authorized to use Teams while off shift. By accepting, you acknowledge your use of Teams is against your employer's policy. 'Message5' - Access to Teams is turned off during non-working hours. You will be able to access the app when your next shift starts. 'Message6' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. Access to corporate resources are only allowed during approved working hours and should be recorded as hours worked in your employer's timekeeping system. 'Message7' - Your employer has turned off access to Teams during non-working hours. Refer to your employer's guidelines on using this app outside working hours. 'DefaultMessage' - You aren't authorized to use Microsoft Teams during non-working hours and will only be compensated for using it during approved working hours. 'CustomMessage' - - String - - String - - - DefaultMessage - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AccessGracePeriodMinutes - - > Applicable: Microsoft Teams - Indicates the grace period time in minutes between when the first shift starts, or last shift ends and when access is blocked. - - Int64 - - Int64 - - - None - - - AccessType - - > Applicable: Microsoft Teams - Indicates the Teams access type granted to the user. Today, only unrestricted access to Teams app is supported. Use 'UnrestrictedAccess_TeamsApp' as the value for this setting, or is set by default. For Teams Off Shift Access Control, the option to show the user a blocking dialog message is supported. Once the user accepts this message, it is audit logged and the user has usual access to Teams. Set other off shift warning message-specific settings to configure off shift access controls for the user. - - String - - String - - - UnrestrictedAccess_TeamsApp - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableScheduleOwnerPermissions - - > Applicable: Microsoft Teams - Indicates whether a user can manage a Shifts schedule as a team member. - - Boolean - - Boolean - - - False - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Policy instance name. - - XdsIdentity - - XdsIdentity - - - None - - - ShiftNoticeFrequency - - > Applicable: Microsoft Teams - Frequency of warning dialog displayed when user opens Teams. Set one of Always, ShowOnceOnChange, Never. - - String - - String - - - Always - - - ShiftNoticeMessageCustom - - > Applicable: Microsoft Teams - Provide a custom message. Must set ShiftNoticeMessageType to 'CustomMessage' to enforce this. - - String - - String - - - None - - - ShiftNoticeMessageType - - > Applicable: Microsoft Teams - The warning message is shown in the blocking dialog when a user access Teams off shift hours. Select one of 7 Microsoft provided messages, a default message or a custom message. 'Message1' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. By accepting, you acknowledge that your use of Teams while off shift is not authorized and you will not be compensated. 'Message2' - Accessing this app outside working hours is voluntary. You won't be compensated for time spent on Teams. Refer to your employer's guidelines on using this app outside working hours. By accepting, you acknowledge that you understand the statement above. 'Message3' - You won't be compensated for time using Teams. By accepting, you acknowledge that you understand the statement above. 'Message4' - You're not authorized to use Teams while off shift. By accepting, you acknowledge your use of Teams is against your employer's policy. 'Message5' - Access to Teams is turned off during non-working hours. You will be able to access the app when your next shift starts. 'Message6' - Your employer does not authorize or approve of the use of its network, applications, systems, or tools by non-exempt or hourly employees during their non-working hours. Access to corporate resources are only allowed during approved working hours and should be recorded as hours worked in your employer's timekeeping system. 'Message7' - Your employer has turned off access to Teams during non-working hours. Refer to your employer's guidelines on using this app outside working hours. 'DefaultMessage' - You aren't authorized to use Microsoft Teams during non-working hours and will only be compensated for using it during approved working hours. 'CustomMessage' - - String - - String - - - DefaultMessage - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsShiftsPolicy -Identity OffShiftAccess_WarningMessage1_AlwaysShowMessage -ShiftNoticeMessageType Message1 -ShiftNoticeFrequency always -AccessGracePeriodMinutes 5 - - In this example, the policy instance is called "OffShiftAccess_WarningMessage1_AlwaysShowMessage", a warning message (Message 1) will always be displayed to the user on opening Teams during off shift hours. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamsshiftspolicy - - - Get-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftspolicy - - - New-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftspolicy - - - Remove-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftspolicy - - - Grant-CsTeamsShiftsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsshiftspolicy - - - - - - Set-CsTeamsSipDevicesConfiguration - Set - CsTeamsSipDevicesConfiguration - - This cmdlet is used to manage the organization-wide Teams SIP devices configuration. - - - - This cmdlet is used to manage the organization-wide Teams SIP devices configuration which contains settings that are applicable to SIP devices connected to Teams using Teams Sip Gateway. - To execute the cmdlet, you need to hold a role within your organization such as Teams Administrator or Teams Communication Administrator. - - - - Set-CsTeamsSipDevicesConfiguration - - BulkSignIn - - Indicates whether Bulk SingIn into Teams SIP devices is enabled or disabled for the common area phone (CAP) accounts across the organization. Possible values are Enabled and ' Disabled . - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BulkSignIn - - Indicates whether Bulk SingIn into Teams SIP devices is enabled or disabled for the common area phone (CAP) accounts across the organization. Possible values are Enabled and ' Disabled . - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsSipDevicesConfiguration -BulkSignIn "Enabled" - - In this example, Bulk SignIn is set to Enabled across the organization. - - - - -------------------------- Example 2 -------------------------- - Set-CsTeamsSipDevicesConfiguration -BulkSignIn "Disabled" - - In this example, Bulk SignIn is set to Disabled across the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssipdevicesconfiguration - - - Get-CsTeamsSipDevicesConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssipdevicesconfiguration - - - - - - Set-CsTeamsSurvivableBranchAppliance - Set - CsTeamsSurvivableBranchAppliance - - Changes the Survivable Branch Appliance (SBA) configuration settings for the specified tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Set-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssurvivablebranchappliance - - - - - - Set-CsTeamsSurvivableBranchAppliancePolicy - Set - CsTeamsSurvivableBranchAppliancePolicy - - Changes the Survivable Branch Appliance (SBA) Policy configuration settings for the specified tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Set-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The identity of the policy. - - String - - String - - - None - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssurvivablebranchappliancepolicy - - - - - - Set-CsTeamsTargetingPolicy - Set - CsTeamsTargetingPolicy - - The Set-CsTeamsTargetingPolicy cmdlet allows administrators to update existing Tenant tag settings that can be assigned to particular teams to control Team features related to tags. - - - - The CsTeamsTargetingPolicy cmdlets enable administrators to control the type of tags that users can create or the features that they can access in Teams. It also helps determine how tags deal with Teams members or guest users. - - - - Set-CsTeamsTargetingPolicy - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CustomTagsMode - - Determine whether Teams users can create tags in team. Set this to Enabled to allow users to create new tags. Set this to Disabled to prohibit them from creating new tags. - - String - - String - - - None - - - Description - - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - ManageTagsPermissionMode - - Determine whether team users can manage tag settings in Teams. Set this to EnabledTeamOwner to only allow Teams owners to manage tag settings in current Teams. Set this to EnabledTeamOwnerMember to allow Teams owners and Teams members to manage tag settings in current Teams. Set this to EnabledTeamOwnerMemberGuest to allow Teams owners, Teams members and guest users to manage tag settings in current Teams. Set this to MicrosoftDefault to user default setting in current Teams, which will be the same as EnabledTeamOwner. Set this to Disabled to prohibit all users from managing tag settings in current Teams. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ShiftBackedTagsMode - - Determine whether Teams can have tags created by Shift App. Set this to Enabled to allow tags created by Shift App. Set this to Disabled to prohibit tags from Shift App. - - String - - String - - - None - - - TeamOwnersEditWhoCanManageTagsMode - - Determine whether Teams owners can change Tenant tag settings. Set this to Enabled to allow Teams owners to change Tenant tag settings for current Teams. Set this to Disabled to prohibit them from changing Tenant tag settings. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CustomTagsMode - - Determine whether Teams users can create tags in team. Set this to Enabled to allow users to create new tags. Set this to Disabled to prohibit them from creating new tags. - - String - - String - - - None - - - Description - - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - ManageTagsPermissionMode - - Determine whether team users can manage tag settings in Teams. Set this to EnabledTeamOwner to only allow Teams owners to manage tag settings in current Teams. Set this to EnabledTeamOwnerMember to allow Teams owners and Teams members to manage tag settings in current Teams. Set this to EnabledTeamOwnerMemberGuest to allow Teams owners, Teams members and guest users to manage tag settings in current Teams. Set this to MicrosoftDefault to user default setting in current Teams, which will be the same as EnabledTeamOwner. Set this to Disabled to prohibit all users from managing tag settings in current Teams. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ShiftBackedTagsMode - - Determine whether Teams can have tags created by Shift App. Set this to Enabled to allow tags created by Shift App. Set this to Disabled to prohibit tags from Shift App. - - String - - String - - - None - - - TeamOwnersEditWhoCanManageTagsMode - - Determine whether Teams owners can change Tenant tag settings. Set this to Enabled to allow Teams owners to change Tenant tag settings for current Teams. Set this to Disabled to prohibit them from changing Tenant tag settings. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsTargetingPolicy -Identity NewTagPolicy -CustomTagsMode Enabled - - The command shown in Example 1 uses the Set-CsTeamsTargetingPolicy cmdlet to update an existing Tenant tag setting with the CustomTagsMode Enabled. This flag will enable Teams users to create tags. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - Get-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Remove-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - - - - Set-CsTeamsTemplatePermissionPolicy - Set - CsTeamsTemplatePermissionPolicy - - This cmdlet updates an existing TeamsTemplatePermissionPolicy. - - - - Updates any of the properties of an existing instance of the TeamsTemplatePermissionPolicy. - - - - Set-CsTeamsTemplatePermissionPolicy - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Adds a new description if that field needs to be updated. - - String - - String - - - None - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - - SwitchParameter - - - False - - - HiddenTemplates - - The updated list of Teams template IDs to hide. The HiddenTemplate objects are created with New-CsTeamsHiddenTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddentemplate). - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Adds a new description if that field needs to be updated. - - String - - String - - - None - - - Force - - The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch. - You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. - - SwitchParameter - - SwitchParameter - - - False - - - HiddenTemplates - - The updated list of Teams template IDs to hide. The HiddenTemplate objects are created with New-CsTeamsHiddenTemplate (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamshiddentemplate). - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.HiddenTemplate] - - - None - - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS >$manageEventTemplate = New-CsTeamsHiddenTemplate -Id com.microsoft.teams.template.ManageAnEvent -PS >$manageProjectTemplate = New-CsTeamsHiddenTemplate -Id com.microsoft.teams.template.ManageAProject -PS >$HiddenList = @($manageProjectTemplate, $manageEventTemplate) -PS >Set-CsTeamsTemplatePermissionPolicy -Identity Global -HiddenTemplates $HiddenList - - Updates the hidden templates array. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstemplatepermissionpolicy - - - Get-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstemplatepermissionpolicy - - - New-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstemplatepermissionpolicy - - - Remove-CsTeamsTemplatePermissionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstemplatepermissionpolicy - - - - - - Set-CsTeamsUnassignedNumberTreatment - Set - CsTeamsUnassignedNumberTreatment - - Changes a treatment for how calls to an unassigned number range should be routed. The call can be routed to a user, an application or to an announcement service where a custom message will be played to the caller. - - - - This cmdlet changes a treatment for how calls to an unassigned number range should be routed. - - - - Set-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the specific treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - Both inbound calls to Microsoft Teams and outbound calls from Microsoft Teams will have the called number checked against the unassigned number range. - To route calls to unassigned Microsoft Calling Plan subscriber numbers, your tenant needs to have available Communications Credits. - To route calls to unassigned Microsoft Calling Plan service numbers, your tenant needs to have at least one Microsoft Teams Phone Resource Account license. - If a specified pattern/range contains phone numbers that are assigned to a user or resource account in the tenant, calls to these phone numbers will be routed to the appropriate target and not routed to the specified unassigned number treatment. There are no other checks of the numbers in the range. If the range contains a valid external phone number, outbound calls from Microsoft Teams to that phone number will be routed according to the treatment. - - - - - -------------------------- Example 1 -------------------------- - $RAObjectId = (Get-CsOnlineApplicationInstance -Identity aa2@contoso.com).ObjectId -Set-CsTeamsUnassignedNumberTreatment -Identity MainAA -Target $RAObjectId - - This example changes the treatment MainAA to route the calls to the resource account aa2@contoso.com. - - - - -------------------------- Example 2 -------------------------- - $UserObjectId = (Get-CsOnlineUser -Identity user2@contoso.com).Identity -Set-CsTeamsUnassignedNumberTreatment -Identity User2PSTN -TargetType User -Target $UserObjectId - - This example changes the treatment User2PSTN to route the calls to the user user2@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - Set-CsTeamsUpdateManagementPolicy - Set - CsTeamsUpdateManagementPolicy - - Use this cmdlet to modify a Teams Update Management policy. - - - - The Teams Update Management Policy allows admins to specify if a given user is enabled to preview features in Teams. - - - - Set-CsTeamsUpdateManagementPolicy - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - AllowManagedUpdates - - Enables/Disables managed updates for the user. - - Boolean - - Boolean - - - None - - - AllowPreview - - Indicates whether all feature flags are switched on or off. Can be set only when AllowManagedUpdates is set to True. - - Boolean - - Boolean - - - None - - - AllowPrivatePreview - - This setting will allow admins to allow users in their tenant to opt in to Private Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is Forced, then users will be switched to Private Preview. - - AllowPrivatePreview - - AllowPrivatePreview - - - None - - - AllowPublicPreview - - This setting will allow admins to allow users in their tenant to opt in to Public Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is FollowOfficePreview, then users will not be able to opt in and instead follow their Office channel, and be switched to Public Preview if their Office channel is CC (Preview). The ring switcher UI will be hidden in the Desktop Client. This is not applicable to the Web Client. If it is Forced, then users will be switched to Public Preview. - - String - - String - - - None - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisabledInProductMessages - - List of IDs of the categories of the in-product messages that will be disabled. You can choose one of the categories from this table: - | ID | Campaign Category | | -- | -- | | 91382d07-8b89-444c-bbcb-cfe43133af33 | What's New | | edf2633e-9827-44de-b34c-8b8b9717e84c | Conferences | - - System.Management.Automation.PSListModifier`1[System.String] - - System.Management.Automation.PSListModifier`1[System.String] - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - UpdateDayOfWeek - - Machine local day. 0-6(Sun-Sat) Can be set only when AllowManagedUpdates is set to True. - - Int64 - - Int64 - - - None - - - UpdateTime - - Machine local time in HH:MM format. Can be set only when AllowManagedUpdates is set to True. - - String - - String - - - None - - - UpdateTimeOfDay - - Machine local time. Can be set only when AllowManagedUpdates is set to True - - DateTime - - DateTime - - - None - - - UseNewTeamsClient - - This setting will enable admins to show or hide which users see the Teams preview toggle on the current Teams client. If it is AdminDisabled, then users will not be able to see the Teams preview toggle in the Desktop Client. If it is UserChoice, then users will be able to see the Teams preview toggle in the Desktop Client. If it is MicrosoftChoice, then Microsoft will configure/ manage whether user sees or does not see this feature if the admin has set nothing. If it is NewTeamsAsDefault, then New Teams will be default for users, and they will be able to switch back to Classic Teams via the toggle in the Desktop Client. If it is NewTeamsOnly, then New Teams will be the only Teams client installed for users. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowManagedUpdates - - Enables/Disables managed updates for the user. - - Boolean - - Boolean - - - None - - - AllowPreview - - Indicates whether all feature flags are switched on or off. Can be set only when AllowManagedUpdates is set to True. - - Boolean - - Boolean - - - None - - - AllowPrivatePreview - - This setting will allow admins to allow users in their tenant to opt in to Private Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is Forced, then users will be switched to Private Preview. - - AllowPrivatePreview - - AllowPrivatePreview - - - None - - - AllowPublicPreview - - This setting will allow admins to allow users in their tenant to opt in to Public Preview. If it is Disabled, then users will not be able to opt in and the ring switcher UI will be hidden in the Desktop Client. If it is Enabled, then users will be able to opt in and the ring switcher UI will be available in the Desktop Client. If it is FollowOfficePreview, then users will not be able to opt in and instead follow their Office channel, and be switched to Public Preview if their Office channel is CC (Preview). The ring switcher UI will be hidden in the Desktop Client. This is not applicable to the Web Client. If it is Forced, then users will be switched to Public Preview. - - String - - String - - - None - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - DisabledInProductMessages - - List of IDs of the categories of the in-product messages that will be disabled. You can choose one of the categories from this table: - | ID | Campaign Category | | -- | -- | | 91382d07-8b89-444c-bbcb-cfe43133af33 | What's New | | edf2633e-9827-44de-b34c-8b8b9717e84c | Conferences | - - System.Management.Automation.PSListModifier`1[System.String] - - System.Management.Automation.PSListModifier`1[System.String] - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier of the policy. - - String - - String - - - None - - - UpdateDayOfWeek - - Machine local day. 0-6(Sun-Sat) Can be set only when AllowManagedUpdates is set to True. - - Int64 - - Int64 - - - None - - - UpdateTime - - Machine local time in HH:MM format. Can be set only when AllowManagedUpdates is set to True. - - String - - String - - - None - - - UpdateTimeOfDay - - Machine local time. Can be set only when AllowManagedUpdates is set to True - - DateTime - - DateTime - - - None - - - UseNewTeamsClient - - This setting will enable admins to show or hide which users see the Teams preview toggle on the current Teams client. If it is AdminDisabled, then users will not be able to see the Teams preview toggle in the Desktop Client. If it is UserChoice, then users will be able to see the Teams preview toggle in the Desktop Client. If it is MicrosoftChoice, then Microsoft will configure/ manage whether user sees or does not see this feature if the admin has set nothing. If it is NewTeamsAsDefault, then New Teams will be default for users, and they will be able to switch back to Classic Teams via the toggle in the Desktop Client. If it is NewTeamsOnly, then New Teams will be the only Teams client installed for users. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsUpdateManagementPolicy -Identity "Campaign Policy" -DisabledInProductMessages @("91382d07-8b89-444c-bbcb-cfe43133af33") - - In this example, the policy "Campaign Policy" is modified, disabling the in-product messages with the category "What's New". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupdatemanagementpolicy - - - - - - Set-CsTeamsUpgradeConfiguration - Set - CsTeamsUpgradeConfiguration - - Manage certain aspects of client behavior for users being upgraded from Skype for Business to Teams. - - - - TeamsUpgradeConfiguration is used in conjunction with TeamsUpgradePolicy. The settings in TeamsUpgradeConfiguration allow administrators to configure whether users subject to upgrade and who are running on Windows clients should automatically download Teams. It allows administrators to determine which application end users should use to join Skype for Business meetings. - The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download Teams in the background. This setting is only honored on Windows clients, and only for certain values of the user's TeamsUpgradePolicy. If NotifySfbUser=true or if Mode=TeamsOnly in TeamsUpgradePolicy, this setting is honored. Otherwise it is ignored. - The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: SkypeMeetingsApp and NativeLimitedClient. "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers. - - - - Set-CsTeamsUpgradeConfiguration - - Identity - - > Applicable: Microsoft Teams - For internal use only. - - XdsIdentity - - XdsIdentity - - - None - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DownloadTeams - - > Applicable: Microsoft Teams - The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download Teams in the background. This Boolean setting is only honored on Windows clients, and only for certain values of the user's TeamsUpgradePolicy. If NotifySfbUser=true or if Mode=TeamsOnly in TeamsUpgradePolicy, this setting is honored. Otherwise it is ignored. - - Boolean - - Boolean - - - True - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - SfBMeetingJoinUx - - > Applicable: Microsoft Teams - The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: "SkypeMeetingsApp" and "NativeLimitedClient". "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers. - - string - - string - - - NativeLimitedClient - - - Tenant - - > Applicable: Microsoft Teams - For internal use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BlockLegacyAuthorization - - This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios. If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users. If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DownloadTeams - - > Applicable: Microsoft Teams - The DownloadTeams property allows admins to control whether the Skype for Business client should automatically download Teams in the background. This Boolean setting is only honored on Windows clients, and only for certain values of the user's TeamsUpgradePolicy. If NotifySfbUser=true or if Mode=TeamsOnly in TeamsUpgradePolicy, this setting is honored. Otherwise it is ignored. - - Boolean - - Boolean - - - True - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - For internal use only. - - XdsIdentity - - XdsIdentity - - - None - - - SfBMeetingJoinUx - - > Applicable: Microsoft Teams - The SfBMeetingJoinUx property allows admins to specify which app is used to join Skype for Business meetings, even after the user has been upgraded to Teams. Allowed values are: "SkypeMeetingsApp" and "NativeLimitedClient". "NativeLimitedClient" means the existing Skype for Business rich client will be used, but since the user is upgraded, only meeting functionality is available. Calling and Messaging are done via Teams. "SkypeMeetingsApp" means use the web-downloadable app. This setting can be useful for organizations that have upgraded to Teams and no longer want to install Skype for Business on their users' computers. - - string - - string - - - NativeLimitedClient - - - Tenant - - > Applicable: Microsoft Teams - For internal use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - These settings are only honored by newer versions of Skype for Business clients. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsUpgradeConfiguration -DownloadTeams $true -SfBMeetingJoinUx SkypeMeetingsApp - - The above cmdlet specifies that users subject to upgrade should download Teams in the background, and that they should use the Skype For Business Meetings app to join Skype for Business meetings. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Get-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradeconfiguration - - - Get-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradepolicy - - - Grant-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - - - - Set-CsTeamsUpgradePolicy - Set - CsTeamsUpgradePolicy - - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification in their Skype for Business client of a pending upgrade to Teams. In addition, when this policy is assigned to a user, administrators can optionally have Win32 versions of Skype for Business clients silently download the Teams app based on the value of TeamsUpgradeConfiguration. - - - - NOTE : This cmdlet is only relevant for Skype for Business Server 2019. It does not apply for Skype for Business Online. - In on-premises deployments of Skype for Business Server, TeamsUpgradePolicy enables administrators to control whether users see a notification of a pending upgrade to Teams in their Skype for Business client. The Set-CsTeamsUpgradePolicy lets the administrator modify an existing instance of TeamsUpgradePolicy for users homed in Skype for Business on-premises. Notifications are enabled by the boolean parameter NotifySfBUsers. - For users with Win32 versions of Skype for Business, if DownloadTeams=true in TeamsUpgradeConfiguration, users who are assigned an instance of TeamsUpgradePolicy with NotifySfBUsers=true will have Teams automatically downloaded in the background. - Notes: - - Instances of TeamsUpgradePolicy created in on-premises will not apply to any users that are already homed online. - - Office 365 already provides built-in instances of TeamsUpgradePolicy, so there is no Set-CsTeamsUpgradePolicy cmdlet for the online environment by design. - - - - Set-CsTeamsUpgradePolicy - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Skype for Business Server 2019 - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - NotifySfbUsers - - > Applicable: Skype for Business Server 2019 - If true, users with this policy see a notification in their Skype for Business client indicating that Teams is coming soon. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Skype for Business Server 2019 - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Description - - > Applicable: Skype for Business Server 2019 - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Identity - - > Applicable: Skype for Business Server 2019 - The identity of the policy. To specify the global policy for the organization, use "global". To specify a specific site, use "site:<name>" where <name> is the name of the site. To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - NotifySfbUsers - - > Applicable: Skype for Business Server 2019 - If true, users with this policy see a notification in their Skype for Business client indicating that Teams is coming soon. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Skype for Business Server 2019 - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsUpgradePolicy -Identity Site:Redmond1 -NotifySfbUsers $false - - This disables notifications for users in the Redmond1 site. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - Grant-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradePolicy - - - - New-CsTeamsUpgradePolicy - - - - Remove-CsTeamsUpgradePolicy - - - - Set-CsTeamsUpgradePolicy - - - - Get-CsTeamsUpgradeConfiguration - - - - Set-CsTeamsUpgradeConfiguration - - - - - - - Set-CsTeamsVdiPolicy - Set - CsTeamsVdiPolicy - - The SetCsTeamsVdiPolicy cmdlet allows administrators to update existing Vdi policies that can be assigned to particular users to control Teams features related to Vdi. - - - - The CsTeamsVdiPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting specifically on an unoptimized VDI environment. It also controls whether a user can be in VDI 2.0 optimization mode. - - - - Set-CsTeamsVdiPolicy - - Identity - - Specify the name of the policy being created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DisableAudioVideoInCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can hold person-to-person audio and video calls. Set this to TRUE to disallow a non-optimized user to hold person-to-person audio and video calls. Set this to FALSE to allow a non-optimized user to hold person-to-person audio and video calls. A user can still join a meeting and share screen from chat and join a meeting and share a screen and move their audio to a phone. - - Boolean - - Boolean - - - None - - - DisableCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can make all types of calls. Set this to TRUE to disallow a non-optimized user to make calls, join meetings, and screen share from chat. Set this to FALSE to allow a non-optimized user to make calls, join meetings, and screen share from chat. - - Boolean - - Boolean - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - VDI2Optimization - - Determines whether a user can be VDI 2.0 optimized. * Enabled - allow a user to be VDI 2.0 optimized. - * Disabled - disallow a user to be VDI 2.0 optimized. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DisableAudioVideoInCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can hold person-to-person audio and video calls. Set this to TRUE to disallow a non-optimized user to hold person-to-person audio and video calls. Set this to FALSE to allow a non-optimized user to hold person-to-person audio and video calls. A user can still join a meeting and share screen from chat and join a meeting and share a screen and move their audio to a phone. - - Boolean - - Boolean - - - None - - - DisableCallsAndMeetings - - Determines whether a user on a non-optimized Vdi environment can make all types of calls. Set this to TRUE to disallow a non-optimized user to make calls, join meetings, and screen share from chat. Set this to FALSE to allow a non-optimized user to make calls, join meetings, and screen share from chat. - - Boolean - - Boolean - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy being created. - - String - - String - - - None - - - VDI2Optimization - - Determines whether a user can be VDI 2.0 optimized. * Enabled - allow a user to be VDI 2.0 optimized. - * Disabled - disallow a user to be VDI 2.0 optimized. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsVdiPolicy -Identity RestrictedUserPolicy -VDI2Optimization "Disabled" - - The command shown in Example 1 uses the Set-CsTeamsVdiPolicy cmdlet to update an existing vdi policy with the Identity RestrictedUserPolicy. This policy will use all the existing values except one: VDI2Optimization; in this example, users with this policy can not be in VDI 2.0 optimized. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsVdiPolicy -Identity OnlyOptimizedPolicy -DisableAudioVideoInCallsAndMeetings $True -DisableCallsAndMeetings $True - - In Example 2, the Set-CsTeamsVdiPolicy cmdlet is used to update a Vdi policy with the Identity OnlyOptimizedPolicy. In this example two different property values are configured: DisableAudioVideoInCallsAndMeetings is set to True and DisableCallsAndMeetings is set to True. All other policy properties will use the existing values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cteamsvdipolicy - - - - - - Set-CsTeamsVirtualAppointmentsPolicy - Set - CsTeamsVirtualAppointmentsPolicy - - This cmdlet is used to update an instance of TeamsVirtualAppointmentsPolicy. - - - - Updates any of the properties of an existing instance of TeamsVirtualAppointmentsPolicy. - - - - Set-CsTeamsVirtualAppointmentsPolicy - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableSmsNotifications - - > Applicable: Microsoft Teams - This property specifies whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using a virtual appointment template meeting. - - Boolean - - Boolean - - - True - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableSmsNotifications - - > Applicable: Microsoft Teams - This property specifies whether your users can choose to send SMS text notifications to external guests in meetings that they schedule using a virtual appointment template meeting. - - Boolean - - Boolean - - - True - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Set-CsTeamsVirtualAppointmentsPolicy -Identity ExistingPolicyInstance -EnableSmsNotifications $false - - Updates the `EnableSmsNotifications` field of a given policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvirtualappointmentspolicy - - - Get-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvirtualappointmentspolicy - - - New-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvirtualappointmentspolicy - - - Remove-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvirtualappointmentspolicy - - - Grant-CsTeamsVirtualAppointmentsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvirtualappointmentspolicy - - - - - - Set-CsTeamsVoiceApplicationsPolicy - Set - CsTeamsVoiceApplicationsPolicy - - Modifies an existing Teams voice applications policy. - - - - `TeamsVoiceApplicationsPolicy` is used for Supervisor Delegated Administration which allows admins in the organization to permit certain users to make changes to auto attendant and call queue configurations. - - - - Set-CsTeamsVoiceApplicationsPolicy - - Identity - - Unique identifier assigned to the policy when it was created. Teams voice applications policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "SDA-Allow-All" - If you do not specify an Identity, then the `Set-CsTeamsVoiceApplicationsPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - AllowAutoAttendantAfterHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantAfterHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours schedule. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours schedule. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday call flows. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday call flows. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidaysChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday schedules. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday schedules. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's language. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantTimeZoneChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's time zone. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's time zone. - - Boolean - - Boolean - - - False - - - AllowCallQueueAgentOptChange - - When set to `True`, users affected by the policy will be allowed to change an agent's opt-in status in the call queue. When set to `False` (the default value), users affected by the policy won't be allowed to change an agent's opt-in status in the call queue. - - Boolean - - Boolean - - - False - - - AllowCallQueueConferenceModeChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's conference mode. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's conference mode. - - Boolean - - Boolean - - - False - - - AllowCallQueueLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's language. - - Boolean - - Boolean - - - False - - - AllowCallQueueMembershipChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's users. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's users. - - Boolean - - Boolean - - - False - - - AllowCallQueueMusicOnHoldChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's music on hold information. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's music on hold. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentSharedVoicemailGreetingChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's no agent shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no agent shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentsRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's no-agent handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no-agent handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOptOutChange - - When set to `True`, users affected by the policy will be allowed to change the call queue opt-out setting that allows agents to opt out of receiving calls. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue opt-out setting. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueuePresenceBasedRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's presence-based routing option. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's presence-based routing option. - - Boolean - - Boolean - - - False - - - AllowCallQueueRoutingMethodChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's routing method. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's routing method. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueWelcomeGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's welcome greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's welcome greeting. - - Boolean - - Boolean - - - False - - - CallQueueAgentMonitorMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Monitor | Whisper | Barge | Takeover - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor call sessions. - When set to `Monitor`, users affected by the policy will be allowed to monitor and listen to call sessions. - When set to `Whisper`, users affected by the policy will be allowed to monitor call sessions and whisper to an agent in the call. - When set to `Barge`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, or join the call session. - When set to `Takeover`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, join the call session, or take over the call from an agent. - - Object - - Object - - - Disabled - - - CallQueueAgentMonitorNotificationMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Agent - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor agents during call sessions. - When set to `Agent`, users affected by the policy will be allowed to monitor agents during call sessions. - - Object - - Object - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HistoricalAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for agents who are members in the call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all agents in all call queues in the organization. - - Object - - Object - - - None - - - HistoricalAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for auto attendants they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all auto attendants in the organization. - - Object - - Object - - - None - - - HistoricalCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all call queues in the organization. - - Object - - Object - - - None - - - RealTimeAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for agents who are members in the call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeAgentMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for auto attendants they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeAutoAttendantMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeCallQueueMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowAutoAttendantAfterHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantAfterHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's after-hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's after-hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours schedule. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours schedule. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantBusinessHoursRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's business hours call flow. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's business hours call flow. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday greeting. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidayRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday call flows. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday call flows. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantHolidaysChange - - When set to `True`, users affected by the policy will be allowed to change the auto attendant's holiday schedules. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's holiday schedules. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's language. - - Boolean - - Boolean - - - False - - - AllowAutoAttendantTimeZoneChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the auto attendant's time zone. When set to `False` (the default value), users affected by the policy won't be allowed to change the auto attendant's time zone. - - Boolean - - Boolean - - - False - - - AllowCallQueueAgentOptChange - - When set to `True`, users affected by the policy will be allowed to change an agent's opt-in status in the call queue. When set to `False` (the default value), users affected by the policy won't be allowed to change an agent's opt-in status in the call queue. - - Boolean - - Boolean - - - False - - - AllowCallQueueConferenceModeChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's conference mode. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's conference mode. - - Boolean - - Boolean - - - False - - - AllowCallQueueLanguageChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's language. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's language. - - Boolean - - Boolean - - - False - - - AllowCallQueueMembershipChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's users. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's users. - - Boolean - - Boolean - - - False - - - AllowCallQueueMusicOnHoldChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's music on hold information. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's music on hold. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentSharedVoicemailGreetingChange - - This feature is not currently available to authorized users. When set to `True`, users affected by the policy will be allowed to change the call queue's no agent shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no agent shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueNoAgentsRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's no-agent handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's no-agent handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOptOutChange - - When set to `True`, users affected by the policy will be allowed to change the call queue opt-out setting that allows agents to opt out of receiving calls. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue opt-out setting. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueOverflowSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's overflow shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's overflow shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueuePresenceBasedRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's presence-based routing option. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's presence-based routing option. - - Boolean - - Boolean - - - False - - - AllowCallQueueRoutingMethodChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's routing method. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's routing method. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutRoutingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout handling properties. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout handling properties. - - Boolean - - Boolean - - - False - - - AllowCallQueueTimeoutSharedVoicemailGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's timeout shared voicemail greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's timeout shared voicemail greeting. - - Boolean - - Boolean - - - False - - - AllowCallQueueWelcomeGreetingChange - - When set to `True`, users affected by the policy will be allowed to change the call queue's welcome greeting. When set to `False` (the default value), users affected by the policy won't be allowed to change the call queue's welcome greeting. - - Boolean - - Boolean - - - False - - - CallQueueAgentMonitorMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Monitor | Whisper | Barge | Takeover - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor call sessions. - When set to `Monitor`, users affected by the policy will be allowed to monitor and listen to call sessions. - When set to `Whisper`, users affected by the policy will be allowed to monitor call sessions and whisper to an agent in the call. - When set to `Barge`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, or join the call session. - When set to `Takeover`, users affected by the policy will be allowed to monitor call sessions, whisper to an agent in the call, join the call session, or take over the call from an agent. - - Object - - Object - - - Disabled - - - CallQueueAgentMonitorNotificationMode - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | Agent - When set to `Disabled` (the default value), users affected by the policy won't be allowed to monitor agents during call sessions. - When set to `Agent`, users affected by the policy will be allowed to monitor agents during call sessions. - - Object - - Object - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - HistoricalAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for agents who are members in the call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all agents in all call queues in the organization. - - Object - - Object - - - None - - - HistoricalAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for auto attendants they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all auto attendants in the organization. - - Object - - Object - - - None - - - HistoricalCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive historical metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive historical metrics for call queues they are authorized for. - When set to `All`, users affected by the policy will receive historical metrics for all call queues in the organization. - - Object - - Object - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. Teams voice applications policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "SDA-Allow-All" - If you do not specify an Identity, then the `Set-CsTeamsVoiceApplicationsPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - RealTimeAgentMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for agents. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for agents who are members in the call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeAgentMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeAutoAttendantMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for auto attendants. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for auto attendants they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeAutoAttendantMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - RealTimeCallQueueMetricsPermission - - > Applicable: Microsoft Teams - PARAMVALUE: Disabled | AuthorizedOnly | All - When set to `Disabled` (the default value), users affected by the policy won't receive real-time metrics for call queues. - When set to `AuthorizedOnly`, users affected by the policy will receive real-time metrics for call queues they are authorized for. - > [!IMPORTANT] > The `All` option is no longer supported. The parameter will be accepted and saved however any user assigned a policy with RealTimeCallQueueMetricsPermission set to `All` will not be able to access real-time metrics. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Set-CsTeamsVoiceApplicationsPolicy -Identity "SDA-CQ-OverflowGreeting" -AllowCallQueueOverflowSharedVoicemailGreetingChange $true - - The command shown in Example 1 sets allowing CQ overflow shared voicemail greeting changes to per-user Teams voice applications policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - Get-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Grant-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Remove-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - New-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - - - - Set-CsTeamsWorkLoadPolicy - Set - CsTeamsWorkLoadPolicy - - This cmdlet sets the Teams Workload Policy value for current tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Set-CsTeamsWorkLoadPolicy - - Identity - - The identity of the Teams Work Load Policy. - - String - - String - - - None - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The description of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The description of the policy. - - String - - String - - - None - - - Identity - - The identity of the Teams Work Load Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsWorkLoadPolicy -Identity Global -AllowCalling Disabled - - This sets the Teams Workload Policy Global value of AllowCalling to disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Set-CsTeamsWorkLocationDetectionPolicy - Set - CsTeamsWorkLocationDetectionPolicy - - This cmdlet is used to update an instance of TeamsWorkLocationDetectionPolicy. This policy can be used to tailor the Automatic Update of work location (https://learn.microsoft.com/microsoft-365/places/configure-auto-detect-work-location) experience in Microsoft Teams. When the EnableWorkLocationDetection parameter is enabled, a user’s work location is updated based on their interaction with organization‑managed networks and devices, such as desks or peripherals configured by IT administrators. To learn how to configure desks to certain work location, please see [Configure buildings and floors - Microsoft Places | Microsoft Learn](https://learn.microsoft.com/en-us/microsoft-365/places/get-started/quick-setup-buildings-floors). - Microsoft processes this information in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839)to provide a consistent location‑based experience and support hybrid work scenarios in Microsoft 365. - - - - Updates any of the properties of an existing instance of TeamsWorkLocationDetectionPolicy. - - - - Set-CsTeamsWorkLocationDetectionPolicy - - Identity - - Name of the new policy instance to be updated. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EnableWorkLocationDetection - - This parameter specifies whether Microsoft Teams determines a user’s work location based on interaction with organization‑managed networks and devices. When enabled, users' work location gets updated using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users’ personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/p/?LinkId=521839). - - Boolean - - Boolean - - - None - - - UserSettingsDefault - - This parameter specifies the default user consent behavior when automatic update of work location is enabled and only applies to WiFi, and has no impact on device-based detection. - - `Disabled` (default): Users must explicitly opt in (Ask mode). - - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - - Learn more about the admin configuration modes (https://learn.microsoft.com/microsoft-365/places/configure-auto-detect-work-location). - The combination of these settings determines whether automatic update runs, which signals are active, and how users are informed. - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EnableWorkLocationDetection - - This parameter specifies whether Microsoft Teams determines a user’s work location based on interaction with organization‑managed networks and devices. When enabled, users' work location gets updated using signals from administrator‑configured resources, such as desks or peripherals managed by the organization. This parameter does not collect or use geographic location data from users’ personal or mobile devices. Location information is used to support consistent location‑based experiences in Microsoft Teams and Microsoft 365 and is processed in accordance with the Microsoft Privacy Statement (https://go.microsoft.com/fwlink/p/?LinkId=521839). - - Boolean - - Boolean - - - None - - - UserSettingsDefault - - This parameter specifies the default user consent behavior when automatic update of work location is enabled and only applies to WiFi, and has no impact on device-based detection. - - `Disabled` (default): Users must explicitly opt in (Ask mode). - - `Enabled`: Automatic update is enabled by default, and users can opt out (Inform mode). - - Learn more about the admin configuration modes (https://learn.microsoft.com/microsoft-365/places/configure-auto-detect-work-location). - The combination of these settings determines whether automatic update runs, which signals are active, and how users are informed. - - String - - String - - - Disabled - - - Force - - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Name of the new policy instance to be updated. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Set-CsTeamsWorkLocationDetectionPolicy -Identity ExistingPolicyInstance -EnableWorkLocationDetection $true - - Updates the `EnableWorkLocationDetection` field of a given policy. - - - - -------------------------- Example 2 -------------------------- - PS> Set-CsTeamsWorkLocationDetectionPolicy -Identity ExistingPolicyInstance -UserSettingsDefault Enabled - - Updates the `UserSettingsDefault` field of a given policy to `Enabled`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworklocationdetectionpolicy - - - Get-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworklocationdetectionpolicy - - - New-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworklocationdetectionpolicy - - - Remove-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworklocationdetectionpolicy - - - Grant-CsTeamsWorkLocationDetectionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworklocationdetectionpolicy - - - - - - Set-CsTenantBlockedCallingNumbers - Set - CsTenantBlockedCallingNumbers - - Use the Set-CsTenantBlockedCallingNumbers cmdlet to set tenant blocked calling numbers setting. - - - - Microsoft Direct Routing, Operator Connect and Calling Plans supports blocking of inbound calls from the public switched telephone network (PSTN). This feature allows a tenant-global list of number patterns to be defined so that the caller ID of every incoming PSTN call to the tenant can be checked against the list for a match. If a match is made, an incoming call is rejected. - The tenant blocked calling numbers includes a list of inbound blocked number patterns. Number patterns are managed through the CsInboundBlockedNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - The tenant blocked calling numbers also includes a list of number patterns exempt from call blocking. Exempt number patterns are managed through the CsInboundExemptNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - You can test your number blocking by using the Test-CsInboundBlockedNumberPattern command. - The scope of tenant blocked calling numbers is global across the given tenant. This command-let can also turn on/off the blocked calling numbers setting at the tenant level. - To get the current tenant blocked calling numbers setting, use Get-CsTenantBlockedCallingNumbers - - - - Set-CsTenantBlockedCallingNumbers - - Identity - - The Identity parameter is a unique identifier which identifies the TenantBlockedCallingNumbers to set. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Enabled - - The switch to turn on or turn off the blocked calling numbers setting. - - Object - - Object - - - None - - - Force - - The Force switch overrides the confirmation prompt displayed. - - - SwitchParameter - - - False - - - InboundBlockedNumberPatterns - - The InboundBlockedNumberPatterns parameter contains the list of InboundBlockedNumberPatterns. - - Object - - Object - - - None - - - InboundExemptNumberPatterns - - The InboundExemptNumberPatterns parameter contains the list of InboundExemptNumberPatterns. - - Object - - Object - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet. - - Object - - Object - - - None - - - Name - - This parameter allows you to provide a name to the TenantBlockedCallingNumbers setting. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Enabled - - The switch to turn on or turn off the blocked calling numbers setting. - - Object - - Object - - - None - - - Force - - The Force switch overrides the confirmation prompt displayed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is a unique identifier which identifies the TenantBlockedCallingNumbers to set. - - String - - String - - - None - - - InboundBlockedNumberPatterns - - The InboundBlockedNumberPatterns parameter contains the list of InboundBlockedNumberPatterns. - - Object - - Object - - - None - - - InboundExemptNumberPatterns - - The InboundExemptNumberPatterns parameter contains the list of InboundExemptNumberPatterns. - - Object - - Object - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet. - - Object - - Object - - - None - - - Name - - This parameter allows you to provide a name to the TenantBlockedCallingNumbers setting. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTenantBlockedCallingNumbers -Enabled $false - - This example turns off the tenant blocked calling numbers setting. No inbound number will be blocked from this feature. - - - - -------------------------- Example 2 -------------------------- - Set-CsTenantBlockedCallingNumbers -Enabled $true - - This example turns on the tenant blocked calling numbers setting. Inbound calls will be blocked based on the list of blocked number patterns. - - - - -------------------------- Example 3 -------------------------- - Set-CsTenantBlockedCallingNumbers -Name "MyCustomBlockedCallingNumbersName" - - This example renames the current blocked calling numbers with "MyCustomBlockedCallingNumbersName". No change is made besides the Name field change. - - - - -------------------------- Example 4 -------------------------- - Set-CsTenantBlockedCallingNumbers -InboundBlockedNumberPatterns @((New-CsInboundBlockedNumberPattern -Name "AnonymousBlockedPattern" -Enabled $true -Pattern "^(?!)Anonymous")) - - This example sets the tenant blocked calling numbers with a new list of inbound blocked number patterns. There is a new InboundBlockedNumberPattern being created. The pattern name is "AnonymousBlockedPattern". The pattern is turned on. The pattern is a normalization rule which contains "Anonymous". - Note that if the current InboundBlockedNumberPatterns already contains a list of patterns while a new pattern needs to be created, this example will wipe out the existing patterns and only add the new one. Please save the current InboundBlockedNumberPatterns list before adding new patterns. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantblockedcallingnumbers - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - - - - Set-CsTenantDialPlan - Set - CsTenantDialPlan - - Use the `Set-CsTenantDialPlan` cmdlet to modify an existing tenant dial plan. - - - - The `Set-CsTenantDialPlan` cmdlet modifies an existing tenant dial plan. A tenant dial plan determines such things as which normalization rules are applied. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. - - - - Set-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to modify. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to or any other information that helps to identify the purpose of the tenant dial plan. Maximum characters is 1040. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet, which creates the rule and assigns it to the specified tenant dial plan. - The number of normalization rules cannot exceed 50 per TenantDialPlan. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), and parentheses (()). - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to or any other information that helps to identify the purpose of the tenant dial plan. Maximum characters is 1040. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to modify. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet, which creates the rule and assigns it to the specified tenant dial plan. - The number of normalization rules cannot exceed 50 per TenantDialPlan. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), and parentheses (()). - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - $nr2 = Get-CsVoiceNormalizationRule -Identity "US/US Long Distance" -Set-CsTenantDialPlan -Identity vt1tenantDialPlan9 -NormalizationRules @{Add=$nr2} - - This example updates the vt1tenantDialPlan9 tenant dial plan to use the US/US Long Distance normalization rules. - - - - -------------------------- Example 2 -------------------------- - $DP = Get-CsTenantDialPlan -Identity Global -$NR = $DP.NormalizationRules | Where Name -eq "RedmondFourDigit") -$NR.Name = "RedmondRule" -Set-CsTenantDialPlan -Identity Global -NormalizationRules $DP.NormalizationRules - - This example changes the name of a normalization rule. Keep in mind that changing the name also changes the name portion of the Identity. The `Set-CsVoiceNormalizationRule` cmdlet doesn't have a Name parameter, so in order to change the name, we first call the `Get-CsTenantDialPlan` cmdlet to retrieve the Dial Plan with the Identity Global and assign the returned object to the variable $DP. Then we filter the NormalizationRules Object for the rule RedmondFourDigit and assign the returned object to the variable $NR. We then assign the string RedmondRule to the Name property of the object. Finally, we pass the variable back to the NormalizationRules parameter of the `Set-CsTenantDialPlan` cmdlet to make the change permanent. - - - - -------------------------- Example 3 -------------------------- - $DP = Get-CsTenantDialPlan -Identity Global -$NR = $DP.NormalizationRules | Where Name -eq "RedmondFourDigit") -$DP.NormalizationRules.Remove($NR) -Set-CsTenantDialPlan -Identity Global -NormalizationRules $DP.NormalizationRules - - This example removes a normalization rule. We utilize the same functionality as for Example 3 to manipulate the Normalization Rule Object and update it with the `Set-CsTenantDialPlan` cmdlet. We first call the `Get-CsTenantDialPlan` cmdlet to retrieve the Dial Plan with the Identity Global and assign the returned object to the variable $DP. Then we filter the NormalizationRules Object for the rule RedmondFourDigit and assign it to the variable $NR. Next, we remove this Object with the Remove Method from $DP.NormalizationRules. Finally, we pass the variable back to the NormalizationRules parameter of the `Set-CsTenantDialPlan` cmdlet to make the change permanent. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - Set-CsTenantFederationConfiguration - Set - CsTenantFederationConfiguration - - Manages federation configuration settings for your Skype for Business Online tenants. - - - - > [!NOTE] > Starting May 5, 2025, Skype Consumer Interoperability with Teams is no longer supported and the parameter AllowPublicUsers can no longer be used. - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, Skype, or people using Microsoft Teams with an account that's not managed by an organization. - Administrators can use the `Set-CsTenantFederationConfiguration` cmdlet to enable and disable federation with other domains and federation with public providers. In addition, this cmdlet can be used to expressly indicate the domains that users can communicate with and/or the domains that users are not allowed to communicate with. However, administrators must use the `Set-CsTenantPublicProvider` cmdlet in order to indicate the public IM and presence providers that users can and cannot communicate with. - - - - Set-CsTenantFederationConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need to include this parameter when calling the `Set-CsTenantFederationConfiguration` cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - AllowedDomains - - > Applicable: Microsoft Teams - Domain objects (created by using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet) that represent the domains that users are allowed to communicate with. If the `New-CsEdgeAllowAllKnownDomains` cmdlet is used then users can communicate with any domain that does not appear on the blocked domains list. If the `New-CsEdgeAllowList` cmdlet is used then users can only communicate with domains that have been added to the allowed domains list. - Note that string values cannot be passed directly to the AllowedDomains parameter. Instead, you must create an object reference using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet and then use the object reference variable as the parameter value. - The AllowedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - Boolean - - Boolean - - - None - - - AllowedDomainsAsAList - - > Applicable: Microsoft Teams - You can specify allowed domains using a List object that contains the domains that users are allowed to communicate with. See Examples section. - - List - - List - - - None - - - AllowedTrialTenantDomains - - > Applicable: Microsoft Teams - You can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. This will allow you to protect your organization against majority of tenants that don't have any paid subscriptions, while still being able to collaborate externally with those trusted trial-tenants in the list. - Note: - - The list supports up to maximum 4k domains. - - If `ExternalAccessWithTrialTenants` is set to `Allowed`, then the `AllowedTrialTenantDomains` list will not be checked. - - Any domain in this list that belongs to a tenant with paid subscriptions will be ignored. - - List - - List - - - None - - - AllowFederatedUsers - - > Applicable: Microsoft Teams - When set to True (the default value) users will be potentially allowed to communicate with users from other domains. If this property is set to False then users cannot communicate with users from other domains, regardless of the values assigned to the `AllowedDomains` and `BlockedDomains` properties or any `ExternalAccessPolicy` instances. In effect, the `AllowFederatedUsers` property serves as a master switch that globally enables or disables federation across the Tenant, overriding all other policy settings. - To block all domains while selectively allowing specific users to communicate externally via explicit `ExternalAccessPolicy` instances, set `AllowFederatedUsers` to `True` and leave the `AllowedDomains` property empty. - - Boolean - - Boolean - - - None - - - AllowTeamsConsumer - - Allows federation with people using Teams with an account that's not managed by an organization. - - Boolean - - Boolean - - - True - - - AllowTeamsConsumerInbound - - Allows people using Teams with an account that's not managed by an organization, to discover and start communication with users in your organization. When -AllowTeamsConsumer is enabled and this parameter is disabled, only the users in your organization will be able to discover and start communication with people using Teams with an account that's not managed by an organization, but they will not discover and start communications with users in your organization. - - Boolean - - Boolean - - - True - - - BlockAllSubdomains - - > Applicable: Skype for Business Online - If the BlockedDomains parameter is used, then BlockAllSubdomains can be used to activate all subdomains blocking. If the BlockedDomains parameter is ignored, then BlockAllSubdomains is also ignored. Just like for BlockedDomains, users will be disallowed from communicating with users from blocked domains. But all subdomains for domains in this list will also be blocked. - - - SwitchParameter - - - False - - - BlockedDomains - - > Applicable: Microsoft Teams - If the AllowedDomains property has been set to AllowAllKnownDomains, then users will be allowed to communicate with users from any domain except domains that appear in the blocked domains list. If the AllowedDomains property has not been set to AllowAllKnownDomains, then the blocked list is ignored, and users can only communicate with domains that have been expressly added to the allowed domains list. - The BlockedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - List - - List - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - SecurityTeamAllowBlockListDelegation - - > Applicable: Microsoft Teams - When set to 'Enabled', security operations team will be able to add domains and users to the blocklist on security portal. - When set to 'Disabled', security operations team will not have permissions to update the domains and users blocklists. - - SecurityTeamAllowBlockListDelegationType - - SecurityTeamAllowBlockListDelegationType - - - None - - - ExternalAccessWithTrialTenants - - > Applicable: Microsoft Teams - When set to 'Blocked', all external access with users from Teams subscriptions that contain only trial licenses will be blocked. This means users from these trial-only tenants will not be able to reach to your users via chats, Teams calls, and meetings (using the users authenticated identity) and your users will not be able to reach users in these trial-only tenants. If this setting is set to "Blocked", users from the trial-only tenant will also be removed from existing chats. - Allowed - Communication with other tenants is allowed based on other settings. - Blocked - Communication with users in tenants that contain only trial licenses will be blocked. - - ExternalAccessWithTrialTenantsType - - ExternalAccessWithTrialTenantsType - - - None - - - EnableExternalAccessRestrictionsForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - When set to False (the default value), users in the tenant who have `EnableFederationAccess` set to False in their assigned `ExternalAccessPolicy` can be added to group chats that include external users only when the chat is initiated by a user in the same tenant who has `EnableFederationAccess` set to True. - When set to True, users in the tenant who have `EnableFederationAccess` set to False are blocked from being added to any group chat that includes external users and are removed from existing active group chats that include external users. - The `EnableExternalAccessRestrictionsForChatParticipants ` parameter does not affect the behavior set by `CommunicationWithExternalOrgs` parameter of the `ExternalAccessPolicy`. > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active > - - EnableExternalAccessRestrictionsForChatParticipants - - EnableExternalAccessRestrictionsForChatParticipants - - - False - - - EnableMutualFederationForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - This parameter specifies whether additional mutual federation requirements are extended across all participants in a group chat. Mutual federation relationships are determined by each user’s effective external access configuration (`AllowedDomains`, `BlockedDomains`, and `ExternalAccessPolicy`). When enabled, this parameter adds participant‑level mutual federation enforcement to group chat. - When set to False (the default value), only the initiator of the group chat and the user joining or being added are required to have a mutual federation relationship . Users in the tenant can join or be added to group chats that may include other external participants who are not permitted by the user’s own external access configuration, based on the initiating user’s settings. This behavior applies to group chats initiated by users within the tenant or by external users. - When set to True, all participants in the group chat must have mutual federation relationships with every other participant in the chat . Users are blocked from joining or being added to group chats if they do not have mutual federation relationships with all existing participants. These relationships are evaluated continuously for all active chats and participants are automatically removed from existing active group chats when required relationships are no longer valid. - > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active. > > The user who initiated the chat is never removed from the group chat as a result of this setting. - - EnableMutualFederationForChatParticipants - - EnableMutualFederationForChatParticipants - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory. Possible values: True, False - - Boolean - - Boolean - - - None - - - SharedSipAddressSpace - - > Applicable: Microsoft Teams - When set to True, indicates that the users homed on Skype for Business Online use the same SIP domain as users homed on the on-premises version of Skype for Business Server. The default value is False, meaning that the two sets of users have different SIP domains. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - TreatDiscoveredPartnersAsUnverified - - > Applicable: Microsoft Teams - When set to True, messages sent from discovered partners are considered unverified. That means that those messages will be delivered only if they were sent from a person who is on the recipient's Contacts list. The default value is False ($False). - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowedDomains - - > Applicable: Microsoft Teams - Domain objects (created by using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet) that represent the domains that users are allowed to communicate with. If the `New-CsEdgeAllowAllKnownDomains` cmdlet is used then users can communicate with any domain that does not appear on the blocked domains list. If the `New-CsEdgeAllowList` cmdlet is used then users can only communicate with domains that have been added to the allowed domains list. - Note that string values cannot be passed directly to the AllowedDomains parameter. Instead, you must create an object reference using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet and then use the object reference variable as the parameter value. - The AllowedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - Boolean - - Boolean - - - None - - - AllowedDomainsAsAList - - > Applicable: Microsoft Teams - You can specify allowed domains using a List object that contains the domains that users are allowed to communicate with. See Examples section. - - List - - List - - - None - - - AllowedTrialTenantDomains - - > Applicable: Microsoft Teams - You can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. This will allow you to protect your organization against majority of tenants that don't have any paid subscriptions, while still being able to collaborate externally with those trusted trial-tenants in the list. - Note: - - The list supports up to maximum 4k domains. - - If `ExternalAccessWithTrialTenants` is set to `Allowed`, then the `AllowedTrialTenantDomains` list will not be checked. - - Any domain in this list that belongs to a tenant with paid subscriptions will be ignored. - - List - - List - - - None - - - AllowFederatedUsers - - > Applicable: Microsoft Teams - When set to True (the default value) users will be potentially allowed to communicate with users from other domains. If this property is set to False then users cannot communicate with users from other domains, regardless of the values assigned to the `AllowedDomains` and `BlockedDomains` properties or any `ExternalAccessPolicy` instances. In effect, the `AllowFederatedUsers` property serves as a master switch that globally enables or disables federation across the Tenant, overriding all other policy settings. - To block all domains while selectively allowing specific users to communicate externally via explicit `ExternalAccessPolicy` instances, set `AllowFederatedUsers` to `True` and leave the `AllowedDomains` property empty. - - Boolean - - Boolean - - - None - - - AllowTeamsConsumer - - Allows federation with people using Teams with an account that's not managed by an organization. - - Boolean - - Boolean - - - True - - - AllowTeamsConsumerInbound - - Allows people using Teams with an account that's not managed by an organization, to discover and start communication with users in your organization. When -AllowTeamsConsumer is enabled and this parameter is disabled, only the users in your organization will be able to discover and start communication with people using Teams with an account that's not managed by an organization, but they will not discover and start communications with users in your organization. - - Boolean - - Boolean - - - True - - - BlockAllSubdomains - - > Applicable: Skype for Business Online - If the BlockedDomains parameter is used, then BlockAllSubdomains can be used to activate all subdomains blocking. If the BlockedDomains parameter is ignored, then BlockAllSubdomains is also ignored. Just like for BlockedDomains, users will be disallowed from communicating with users from blocked domains. But all subdomains for domains in this list will also be blocked. - - SwitchParameter - - SwitchParameter - - - False - - - BlockedDomains - - > Applicable: Microsoft Teams - If the AllowedDomains property has been set to AllowAllKnownDomains, then users will be allowed to communicate with users from any domain except domains that appear in the blocked domains list. If the AllowedDomains property has not been set to AllowAllKnownDomains, then the blocked list is ignored, and users can only communicate with domains that have been expressly added to the allowed domains list. - The BlockedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - List - - List - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - SecurityTeamAllowBlockListDelegation - - > Applicable: Microsoft Teams - When set to 'Enabled', security operations team will be able to add domains and users to the blocklist on security portal. - When set to 'Disabled', security operations team will not have permissions to update the domains and users blocklists. - - SecurityTeamAllowBlockListDelegationType - - SecurityTeamAllowBlockListDelegationType - - - None - - - ExternalAccessWithTrialTenants - - > Applicable: Microsoft Teams - When set to 'Blocked', all external access with users from Teams subscriptions that contain only trial licenses will be blocked. This means users from these trial-only tenants will not be able to reach to your users via chats, Teams calls, and meetings (using the users authenticated identity) and your users will not be able to reach users in these trial-only tenants. If this setting is set to "Blocked", users from the trial-only tenant will also be removed from existing chats. - Allowed - Communication with other tenants is allowed based on other settings. - Blocked - Communication with users in tenants that contain only trial licenses will be blocked. - - ExternalAccessWithTrialTenantsType - - ExternalAccessWithTrialTenantsType - - - None - - - EnableExternalAccessRestrictionsForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - When set to False (the default value), users in the tenant who have `EnableFederationAccess` set to False in their assigned `ExternalAccessPolicy` can be added to group chats that include external users only when the chat is initiated by a user in the same tenant who has `EnableFederationAccess` set to True. - When set to True, users in the tenant who have `EnableFederationAccess` set to False are blocked from being added to any group chat that includes external users and are removed from existing active group chats that include external users. - The `EnableExternalAccessRestrictionsForChatParticipants ` parameter does not affect the behavior set by `CommunicationWithExternalOrgs` parameter of the `ExternalAccessPolicy`. > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active > - - EnableExternalAccessRestrictionsForChatParticipants - - EnableExternalAccessRestrictionsForChatParticipants - - - False - - - EnableMutualFederationForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - This parameter specifies whether additional mutual federation requirements are extended across all participants in a group chat. Mutual federation relationships are determined by each user’s effective external access configuration (`AllowedDomains`, `BlockedDomains`, and `ExternalAccessPolicy`). When enabled, this parameter adds participant‑level mutual federation enforcement to group chat. - When set to False (the default value), only the initiator of the group chat and the user joining or being added are required to have a mutual federation relationship . Users in the tenant can join or be added to group chats that may include other external participants who are not permitted by the user’s own external access configuration, based on the initiating user’s settings. This behavior applies to group chats initiated by users within the tenant or by external users. - When set to True, all participants in the group chat must have mutual federation relationships with every other participant in the chat . Users are blocked from joining or being added to group chats if they do not have mutual federation relationships with all existing participants. These relationships are evaluated continuously for all active chats and participants are automatically removed from existing active group chats when required relationships are no longer valid. - > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active. > > The user who initiated the chat is never removed from the group chat as a result of this setting. - - EnableMutualFederationForChatParticipants - - EnableMutualFederationForChatParticipants - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need to include this parameter when calling the `Set-CsTenantFederationConfiguration` cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory. Possible values: True, False - - Boolean - - Boolean - - - None - - - SharedSipAddressSpace - - > Applicable: Microsoft Teams - When set to True, indicates that the users homed on Skype for Business Online use the same SIP domain as users homed on the on-premises version of Skype for Business Server. The default value is False, meaning that the two sets of users have different SIP domains. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - TreatDiscoveredPartnersAsUnverified - - > Applicable: Microsoft Teams - When set to True, messages sent from discovered partners are considered unverified. That means that those messages will be delivered only if they were sent from a person who is on the recipient's Contacts list. The default value is False ($False). - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - The `Set-CsTenantFederationConfiguration` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings object. - - - - - - - Output types - - - None. Instead, the `Set-CsTenantFederationConfiguration` cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Replace=$x} - - In Example 1, the domain fabrikam.com is assigned as the only domain on the blocked domains list for current tenant. To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a new domain object for fabrikam.com. This domain object is stored in a variable named $x. - The second command in the example then uses the `Set-CsTenantFederationConfiguration` cmdlet to update the blocked domains list. Using the Replace method ensures that the existing blocked domains list will be replaced by the new list: a list that contains only the domain fabrikam.com. - - - - -------------------------- Example 3 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Remove=$x} - - The commands shown in Example 3 remove fabrikam.com from the list of domains blocked by the current tenant. To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a domain object for fabrikam.com. The resulting domain object is then stored in a variable named $x. - The second command in the example then uses the `Set-CsTenantFederationConfiguration` cmdlet and the Remove method to remove fabrikam.com from the blocked domains list for the specified tenant. - - - - -------------------------- Example 4 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Add=$x} - - The commands shown in Example 4 add the domain fabrikam.com to the list of domains blocked by the current tenant. To add a new blocked domain, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a domain object for fabrikam.com. This object is stored in a variable named $x. - After the domain object has been created, the second command then uses the `Set-CsTenantFederationConfiguration` cmdlet and the Add method to add fabrikam.com to any domains already on the blocked domains list. - - - - -------------------------- Example 5 -------------------------- - Set-CsTenantFederationConfiguration -BlockedDomains $Null - - Example 5 shows how you can remove all the domains assigned to the blocked domains list for the current tenant. To do this, simply include the BlockedDomains parameter and set the parameter value to null ($Null). When this command completes, the blocked domain list will be cleared. - - - - -------------------------- Example 6 -------------------------- - Set-CsTenantFederationConfiguration -AllowedDomains $Null - - Example 6 shows how you can remove all the domains assigned to the allowed domains list for the current tenant, thereby blocking external communication for all users in the Tenant. In case `AllowFederatedUsers` is set to `True`, then explicit `ExternalAccessPolicy` instances can be leveraged to set a per-user federation setting. To do this, simply include the AllowedDomains parameter and set the parameter value to null ($Null). When this command completes, the allowed domain list will be cleared. - - - - -------------------------- Example 7 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList $list - - Example 7 shows how you can replace domains in the Allowed Domains using a List collection object. First, a List collection is created and domains are added to it, then, simply include the AllowedDomainsAsAList parameter and set the parameter value to the List object. When this command completes, the allowed domains list will be replaced with those domains. - - - - -------------------------- Example 8 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Add=$list} - - Example 8 shows how you can add domains to the existing Allowed Domains using a List object. First, a List is created and domains are added to it, then use the Add method in the AllowedDomainsAsAList parameter to add the domains to the existing allowed domains list. When this command completes, the domains in the list will be added to any domains already on the AllowedDomains list. - - - - -------------------------- Example 9 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Remove=$list} - - Example 9 shows how you can remove domains from the existing Allowed Domains using a List object. First, a List is created and domains are added to it, then use the Remove method in the AllowedDomainsAsAList parameter to remove the domains from the existing allowed domains list. When this command completes, the domains in the list will be removed from the AllowedDomains list. - - - - -------------------------- Example 10 -------------------------- - Set-CsTenantFederationConfiguration -AllowTeamsConsumer $True -AllowTeamsConsumerInbound $False - - The command shown in Example 10 enables communication with people using Teams with an account that's not managed by an organization, to only be initiated by people in your organization. This means that people using Teams with an account that's not managed by an organization will not be able to discover or start a conversation with people in your organization. - - - - -------------------------- Example 11 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -BlockedDomains $list - -Set-CsTenantFederationConfiguration -BlockAllSubdomains $True - - Example 11 shows how you can block all subdomains of domains in BlockedDomains list. In this example, all users from contoso.com and fabrikam.com will be blocked. When the BlockAllSubdomains is enabled, all users from all subdomains of all domains in BlockedDomains list will also be blocked. So, users from subdomain.contoso.com and subdomain.fabrikam.com will be blocked. Note: Users from subcontoso.com will not be blocked because it's a completely different domain rather than a subdomain of contoso.com. - - - - -------------------------- Example 12 -------------------------- - Set-CsTenantFederationConfiguration -ExternalAccessWithTrialTenants "Allowed" - - Example 12 shows how you can allow users to communicate with users in tenants that contain only trial licenses (default value is Blocked). - - - - -------------------------- Example 13 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains $list - - Using the `AllowedTrialTenantDomains` parameter, you can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. Example 13 shows how you can set or replace domains in the Allowed Trial Tenant Domains using a List collection object. First, a List collection is created and domains are added to it, then, simply include the `AllowedTrialTenantDomains` parameter and set the parameter value to the List object. When this command completes, the Allowed Trial Tenant Domains list will be replaced with those domains. - - - - -------------------------- Example 14 -------------------------- - Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @("contoso.com", "fabrikam.com") - - Example 14 shows another way to set a value of `AllowedTrialTenantDomains`. It uses array of objects and it always replaces value of the `AllowedTrialTenantDomains`. When this command completes, the result is the same as in example 13. - The array of `AllowedTrialTenantDomains` can be emptied by running the following command: `Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @()`. - - - - -------------------------- Example 15 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Add=$list} - - Example 15 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object. First, a List is created and domains are added to it, then, use the Add method in the `AllowedTrialTenantDomains` parameter to add the domains to the existing allowed domains list. When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list. - - - - -------------------------- Example 16 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Remove=$list} - - Example 16 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object. First, a List is created and domains are added to it, then use the Remove method in the `AllowedTrialTenantDomains` parameter to remove the domains from the existing allowed domains list. When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list. - - - - -------------------------- Example 17 -------------------------- - Set-CsTenantFederationConfiguration -SecurityTeamAllowBlockListDelegation "Enabled" - - Example 17 shows how you let your security operations team edit the blocked domains and blocked users lists from Defender for Office 365 (default value is Disabled). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - Get-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantfederationconfiguration - - - - - - Set-CsTenantMigrationConfiguration - Set - CsTenantMigrationConfiguration - - Used to enable or disable Meeting Migration Service (MMS). - - - - Used to enable or disable Meeting Migration Service (MMS). For more information, see Using the Meeting Migration Service (MMS) (https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms). - - - - Set-CsTenantMigrationConfiguration - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the Migration Configuration. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - - SwitchParameter - - - False - - - - Set-CsTenantMigrationConfiguration - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Microsoft Teams - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantMigrationConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the Migration Configuration. - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantMigrationConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTenantMigrationConfiguration -MeetingMigrationEnabled $false - - This example disables MMS in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantmigrationconfiguration - - - - - - Set-CsTenantNetworkRegion - Set - CsTenantNetworkRegion - - Changes the definintion of network regions. - - - - As an admin, you can use the Teams PowerShell command, Set-CsTenantNetworkRegion to define network regions. A network region interconnects various parts of a network across multiple geographic areas. The RegionID parameter is a logical name that represents the geography of the region and has no dependencies or restrictions. The organization's network region is used for Location-Based Routing. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. A network region contains a collection of network sites. For example, if your organization has many sites located in Redmond, then you may choose to designate "Redmond" as a network region. - - - - Set-CsTenantNetworkRegion - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be set. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. Not required in this PowerShell command. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be set. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. Not required in this PowerShell command. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkRegion -Identity "RegionA" -Description "Region A" - - The command shown in Example 1 sets the network region 'RegionA' with the description 'Region A'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - - - - Set-CsTenantNetworkSite - Set - CsTenantNetworkSite - - Changes the definition of network sites. - - - - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities. - - - - Set-CsTenantNetworkSite - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of setting it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information, see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be set. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region which the current network site is associating to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of setting it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information, see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be set. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region which the current network site is associating to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "MicrosoftSite1" -NetworkRegionID "RegionRedmond" -Description "Microsoft site 1" - - The command shown in Example 1 set the network site 'MicrosoftSite1' with description 'Microsoft site 1'. - The network region 'RegionRedmond' is created beforehand and 'MicrosoftSite1' will be associated with 'RegionRedmond'. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "site2" -Description "site 2" -NetworkRegionID "RedmondRegion" -EnableLocationBasedRouting $true - - The command shown in Example 2 sets the network site 'site2' with description 'site 2'. This site is enabled for LBR. The example associates the site with network region 'RedmondRegion'. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy" - - The command shown in Example 3 sets the network site 'site3' with description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - New-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Remove-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - - - - Set-CsTenantNetworkSubnet - Set - CsTenantNetworkSubnet - - Changes the definition of network subnets. - - - - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based Routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - - - - Set-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be set. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify purpose of setting it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network subnet to be set. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkSubnet -Identity "192.168.0.1" -MaskBits "24" -NetworkSiteID "site1" - - The command shown in Example 1 set the network subnet '192.168.0.1'. The subnet is in IPv4 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 24. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantNetworkSubnet -Identity "2001:4898:e8:25:844e:926f:85ad:dd8e" -MaskBits "120" -NetworkSiteID "site1" -Description "Subnet 2001:4898:e8:25:844e:926f:85ad:dd8e" - - The command shown in Example 2 set the network subnet '2001:4898:e8:25:844e:926f:85ad:dd8e' with description 'Subnet 2001:4898:e8:25:844e:926f:85ad:dd8e'. The subnet is in IPv6 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 120. - IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - - - - Set-CsTenantTrustedIPAddress - Set - CsTenantTrustedIPAddress - - Changes the definition of network IP addresses. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Both IPv4 and IPv6 trusted IP addresses are supported. - When the client is sending the trusted IP address, please make sure we have already safelisted the IP address by running this command-let, otherwise the request will be rejected. If you are only adding the IPv4 address by running this command-let, but your client are only sending and IPv6 address, it will be rejected. - - - - Set-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the IP address to be set. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTenantTrustedIPAddress - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantTrustedIPAddress` cmdlet. - - PSObject - - PSObject - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the IP address to be set. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantTrustedIPAddress` cmdlet. - - PSObject - - PSObject - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "192.168.0.1" -Description "External IP 192.168.0.1" - - The command shown in Example 1 created the IP address '192.168.0.1' with description 'External IP 192.168.0.1'. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "192.168.0.2" -MaskBits "24" - - The command shown in Example 2 set the IP address '192.168.0.2'. The IP address is in IPv4 format, and the maskbits is set to 24. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "2001:4898:e8:25:844e:926f:85ad:dd8e" -Description "IPv6 IP address" - - The command shown in Example 3 set the IP address '2001:4898:e8:25:844e:926f:85ad:dd8e' with description 'IPv6 IP address'. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenanttrustedipaddress - - - - - - Set-CsUCPhoneConfiguration - Set - CsUCPhoneConfiguration - - Enables you to modify management options for UC phones. This includes such things as the required security mode and whether or not the phone should automatically be locked after a specified period of inactivity. This cmdlet was introduced in Lync Server 2010. - - - - UC phones represent the merging of the telephone and Skype for Business Server. UC phones use special hardware (that is, a Skype for Business-compatible telephone) that can function as a Voice over Internet Protocol (VoIP) telephone. In addition, this hardware can also act as a Skype for Business-like endpoint: you can set your current status; check the status of your Skype for Business contacts; search for new contacts and carry out many of the other activities you are used to doing with Skype for Business. - The CsUCPhoneConfiguration cmdlets enable you to use configuration settings to manage phones running Skype for Business. For example, you can control such things as the minimum length of the personal identification number (PIN) used to log on to the phone and whether or not the phone will automatically lock itself after a specified period of inactivity. - Unified communications (UC) phone configuration settings can be applied at either the global scope or at the site scope. When you first install Skype for Business Server, a single set of UC phone configuration settings is created and applied at the global scope. However, at any time after that you can use the `New-CsUCPhoneConfiguration` cmdlet to create a collection of settings that are applied at the site scope. This lets you tailor UC phone management to the unique needs of each individual site. - In addition to creating new collections of UC phone settings, you can use the `Set-CsUCPhoneConfiguration` cmdlet to modify the property values of an existing collection. For example, by default logging is disabled for UC phones. To enable logging at the global level, you can use the `Set-CsUCPhoneConfiguration` cmdlet to change the value of the global collection's LoggingLevel property to True. - The following parameters are not applicable to Skype for Business Online: CalendarPollInterval, Force, Identity, Instance, PipelineVariable, SIPSecurityMode, Tenant, Voice8021p, and VoiceDiffServTag - - - - Set-CsUCPhoneConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Represents the unique identifier assigned to the collection of UC phone configuration settings. To refer to the global settings, use this syntax: - `-Identity global` - To refer to a collection configured at the site scope use syntax similar to this: - `-Identity site:Redmond` - Note that you cannot use wildcard characters when specifying an Identity. - If this parameter is omitted, then the `Set-CsUCPhoneConfiguration` cmdlet will modify the global settings. - - XdsIdentity - - XdsIdentity - - - None - - - CalendarPollInterval - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how often the UC device retrieves information from your Outlook calendar. The value must be specified using the format hours:minutes:seconds; for example, to set the time interval to 1 hour (the maximum allowed interval) use this syntax: `-CalendarPollInterval "01:00:00"`. The default value is 3 minutes (00:03:00). - - TimeSpan - - TimeSpan - - - None - - - EnforcePhoneLock - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not UC phones are automatically locked after the number of minutes specified by PhoneLockTimeout. The default value is True. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - LoggingLevel - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables logging on the UC device. Valid values are Off; Low; Medium and High. The default value is Off. - - LoggingLevel - - LoggingLevel - - - None - - - MinPhonePinLength - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the minimum number of digits required for personal identification numbers (PINs). - Minimum value: 4 - Maximum value: 15 - Default: 6 - - Byte - - Byte - - - None - - - PhoneLockTimeout - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the length of time, in minutes, that a UC phone will remain idle before automatically locking. - This value must be less than 01:00:00 (1 hour). The default value is 00:10:00 (10 minutes). - - TimeSpan - - TimeSpan - - - None - - - SIPSecurityMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the level of security that the server applies to SIP sessions initiated by a UC phone. - Valid values are: - Low (allow any type of authorization or transport). - Medium (NTLM or Kerberos is required for user authentication). - High (NTLM or Kerberos is required for user authentication and TLS is required for SIP connections). - The default value is High. - - SIPSecurityMode - - SIPSecurityMode - - - None - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - Voice8021p - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the user priority value (the 802.1p value) for voice traffic within the Skype for Business Server deployment. - This setting is effective only for networks in which switches and bridges are 802.1p-capable. The minimum value for this property is 0 and the maximum value is 7. The default value is 0. - - Byte - - Byte - - - None - - - VoiceDiffServTag - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the decimal representation of the 6-bit DiffServ Code Point (DSCP) priority marking. This marking defines the Per Hop Behavior (PHB) for IP packets passed by the UC phones that are managed by this server. - This value must be between 0 and 63, inclusive. The default value is 40. - - Byte - - Byte - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsUCPhoneConfiguration - - CalendarPollInterval - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how often the UC device retrieves information from your Outlook calendar. The value must be specified using the format hours:minutes:seconds; for example, to set the time interval to 1 hour (the maximum allowed interval) use this syntax: `-CalendarPollInterval "01:00:00"`. The default value is 3 minutes (00:03:00). - - TimeSpan - - TimeSpan - - - None - - - EnforcePhoneLock - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not UC phones are automatically locked after the number of minutes specified by PhoneLockTimeout. The default value is True. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LoggingLevel - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables logging on the UC device. Valid values are Off; Low; Medium and High. The default value is Off. - - LoggingLevel - - LoggingLevel - - - None - - - MinPhonePinLength - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the minimum number of digits required for personal identification numbers (PINs). - Minimum value: 4 - Maximum value: 15 - Default: 6 - - Byte - - Byte - - - None - - - PhoneLockTimeout - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the length of time, in minutes, that a UC phone will remain idle before automatically locking. - This value must be less than 01:00:00 (1 hour). The default value is 00:10:00 (10 minutes). - - TimeSpan - - TimeSpan - - - None - - - SIPSecurityMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the level of security that the server applies to SIP sessions initiated by a UC phone. - Valid values are: - Low (allow any type of authorization or transport). - Medium (NTLM or Kerberos is required for user authentication). - High (NTLM or Kerberos is required for user authentication and TLS is required for SIP connections). - The default value is High. - - SIPSecurityMode - - SIPSecurityMode - - - None - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - Voice8021p - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the user priority value (the 802.1p value) for voice traffic within the Skype for Business Server deployment. - This setting is effective only for networks in which switches and bridges are 802.1p-capable. The minimum value for this property is 0 and the maximum value is 7. The default value is 0. - - Byte - - Byte - - - None - - - VoiceDiffServTag - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the decimal representation of the 6-bit DiffServ Code Point (DSCP) priority marking. This marking defines the Per Hop Behavior (PHB) for IP packets passed by the UC phones that are managed by this server. - This value must be between 0 and 63, inclusive. The default value is 40. - - Byte - - Byte - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - CalendarPollInterval - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates how often the UC device retrieves information from your Outlook calendar. The value must be specified using the format hours:minutes:seconds; for example, to set the time interval to 1 hour (the maximum allowed interval) use this syntax: `-CalendarPollInterval "01:00:00"`. The default value is 3 minutes (00:03:00). - - TimeSpan - - TimeSpan - - - None - - - EnforcePhoneLock - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether or not UC phones are automatically locked after the number of minutes specified by PhoneLockTimeout. The default value is True. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Represents the unique identifier assigned to the collection of UC phone configuration settings. To refer to the global settings, use this syntax: - `-Identity global` - To refer to a collection configured at the site scope use syntax similar to this: - `-Identity site:Redmond` - Note that you cannot use wildcard characters when specifying an Identity. - If this parameter is omitted, then the `Set-CsUCPhoneConfiguration` cmdlet will modify the global settings. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - LoggingLevel - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Enables logging on the UC device. Valid values are Off; Low; Medium and High. The default value is Off. - - LoggingLevel - - LoggingLevel - - - None - - - MinPhonePinLength - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the minimum number of digits required for personal identification numbers (PINs). - Minimum value: 4 - Maximum value: 15 - Default: 6 - - Byte - - Byte - - - None - - - PhoneLockTimeout - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the length of time, in minutes, that a UC phone will remain idle before automatically locking. - This value must be less than 01:00:00 (1 hour). The default value is 00:10:00 (10 minutes). - - TimeSpan - - TimeSpan - - - None - - - SIPSecurityMode - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the level of security that the server applies to SIP sessions initiated by a UC phone. - Valid values are: - Low (allow any type of authorization or transport). - Medium (NTLM or Kerberos is required for user authentication). - High (NTLM or Kerberos is required for user authentication and TLS is required for SIP connections). - The default value is High. - - SIPSecurityMode - - SIPSecurityMode - - - None - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - Voice8021p - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the user priority value (the 802.1p value) for voice traffic within the Skype for Business Server deployment. - This setting is effective only for networks in which switches and bridges are 802.1p-capable. The minimum value for this property is 0 and the maximum value is 7. The default value is 0. - - Byte - - Byte - - - None - - - VoiceDiffServTag - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Specifies the decimal representation of the 6-bit DiffServ Code Point (DSCP) priority marking. This marking defines the Per Hop Behavior (PHB) for IP packets passed by the UC phones that are managed by this server. - This value must be between 0 and 63, inclusive. The default value is 40. - - Byte - - Byte - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.UcPhoneSettings - - - The `Set-CsUCPhoneConfiguration` cmdlet accepts pipelined instances of the UC phone settings object. - - - - - - - None - - - The `Set-CsUCPhoneConfiguration` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.UcPhoneSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsUCPhoneConfiguration -Identity global -SIPSecurityMode "Medium" - - The command shown in Example 1 sets the SIP security mode of the global UC phone settings to Medium. - - - - -------------------------- Example 2 -------------------------- - Set-CsUCPhoneConfiguration -Identity site:Redmond -PhoneLockTimeout "00:30:00" - - Example 2 modifies the UC phone settings configured for the Redmond site. In this case, the PhoneLockTimeout property is set to 30 minutes; this is done by including the PhoneLockTimeout parameter and the parameter value "00:30:00" (00 hours: 30 minutes: 00 seconds). - - - - -------------------------- Example 3 -------------------------- - Get-CsUCPhoneConfiguration -Filter "site:*" | Set-CsUCPhoneConfiguration -PhoneLockTimeout "00:30:00" - - Example 3 is a variation of the command shown in Example 2. This time, however, the PhoneLockTimeout property is modified for all the UC phone settings configured at the site scope. To do this, the command starts off by calling the `Get-CsUCPhoneConfiguration` cmdlet; the Filter parameter and the filter value "site:*" limit the returned data to phone settings configured at the site scope. This filtered collection is then piped to the `Set-CsUCPhoneConfiguration` cmdlet, which uses the PhoneLockTimeout parameter and the parameter value "00:30:00" (00 hours: 30 minutes: 00 seconds) to set the phone lock timeout value for each item in the collection to 30 minutes. - - - - -------------------------- Example 4 -------------------------- - Get-CsUCPhoneConfiguration | Where-Object {$_.SIPSecurityMode -ne "High"} | Set-CsUCPhoneConfiguration -EnforcePhoneLock $True -PhoneLockTimeout "00:30:00" - - Example 4 configures the EnforcePhoneLock and the PhoneLockTimeout properties for all the UC phone settings where the SIP security mode is set to either Low or Medium. To perform this task, the command first uses the `Get-CsUCPhoneConfiguration` cmdlet to return all the UC phone configuration settings in the organization; this information is then piped to the `Where-Object` cmdlet, which picks out only those settings where the SIPSecurityMode property is not equal to High. (Because SIP security can only be set to Low, Medium, or High, this clause will select all the settings where SIPSecurityMode is set to either Low or Medium.) The filtered collection is then piped to the `Set-CsUCPhoneConfiguration` cmdlet, which uses the EnforcePhoneLock and the PhoneLockTimeout parameters to modify the phone locking and phone lock timeout properties. - - - - -------------------------- Example 5 -------------------------- - Get-CsUCPhoneConfiguration | Where-Object {$_.PhoneLockTimeout -lt "00:10:00"} | Set-CsUCPhoneConfiguration -PhoneLockTimeout "00:10:00" - - In Example 5, the phone lock timeout value is set to 10 minutes for all the UC phone settings where the PhoneLockTimeout property is currently less than 10 minutes. (In effect, this makes 10 minutes the minimum phone lock timeout for the entire organization.) To do this, the command first uses the `Get-CsUCPhoneConfiguration` cmdlet to return a collection of all the UC phone settings currently in use in the organization. This collection is then piped to the `Where-Object` cmdlet, which picks out only those settings where the PhoneLockTimeout property is less than 10 minutes (00 hours: 10 minutes: 00 seconds). In turn, the filtered collection is piped to the `Set-CsUCPhoneConfiguration` cmdlet, which sets the PhoneLockTimeout value for each item in the collection to 10 minutes. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csucphoneconfiguration - - - Get-CsUCPhoneConfiguration - - - - New-CsUCPhoneConfiguration - - - - Remove-CsUCPhoneConfiguration - - - - - - - Set-CsUserServicesConfiguration - Set - CsUserServicesConfiguration - - Modifies an existing collection of User Services configuration settings. The User Services service is used to help maintain presence information and manage conferencing. This cmdlet was introduced in Lync Server 2010. - - - - Skype for Business Server relies on the User Services service to help maintain presence information for users and to manage meetings and conferences. In turn, the CsUserServicesConfiguration cmdlets are used to administer User Services configuration settings at the global, site and service scope. (Note that the only service that can host User Services configuration settings is the User Services service itself.) These settings help determine such things as the number of contacts a user can have, the number of meetings a user can have scheduled at any one time and the length of time that a given meeting can remain active. - The `Set-CsUserServicesConfiguration` cmdlet provides a way for administrators to modify information about any (or all) of the User Services configuration settings currently in use. - - - - Set-CsUserServicesConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the User Services configuration settings to be modified. To modify the global settings, use this syntax: - `-Identity global` - To modify settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - - XdsIdentity - - XdsIdentity - - - None - - - AllowNonRoomSystemNotification - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AnonymousUserGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Represents the amount of time an anonymous (unauthenticated) user can remain in a meeting without an authenticated user being present in that same meeting. For example, if this value is set to 15 minutes an anonymous user can stay in the meeting for, at most, 15 minutes before an authenticated user must join. If an authenticated user does not join before the grace period expires then the anonymous user will be removed from the meeting. This setting applies to both scheduled meetings and to ad-hoc meetings created by clicking Meet Now in Skype for Business. - The AnonymousUserGracePeriod must be specified using the following format: days.hours:minutes:seconds (for example, 0.00:30:00 for 30 minutes). The grace period can be set to any value between 0 second and 1 day; the default value is 90 minutes (01:30:00). - - TimeSpan - - TimeSpan - - - None - - - DeactivationGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that a meeting can remain active. This value must be specified using the following format: days.hours:minutes:seconds. For example, to enable a meeting to last for 60 hours you would use this format: 2.12:00:00 (2 days: 12 hours: 00 minutes: 00 seconds.) - The DeactivationGracePeriod must be between 8 hours and 365 days, inclusive. The default value is 1 day. - - TimeSpan - - TimeSpan - - - None - - - DefaultSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. If no such request is issued, then the subscription is set to the value specified by the DefaultSubscriptionExpiration property. - The default subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 28800 seconds (8 hours). - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - MaintenanceTimeOfDay - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the time of day when regularly-scheduled database maintenance (such as the purging of outdated records) takes place. This value must be specified as a date-time value; you can use either the 24-hour format (for example, "14:00") or the 12-hour format (for example, "2:00 PM"). - The default value for MaintenanceTimeOfDay is 1:00 AM (01:00:00). - - DateTime - - DateTime - - - None - - - MaxContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of contacts a user can have; the default value is 250. The MaxContacts property represents the absolute maximum number of contacts a user can have. However, you can use the CsClientPolicy cmdlets to limit certain users to a maximum number of contacts lower than the value of MaxContacts. - - UInt16 - - UInt16 - - - None - - - MaxPersonalNotes - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of personal notes that are stored in the user's note history. By default, the last 3 personal notes are maintained in the note history. The maximum number of notes that can be maintained in the history is 10. - - UInt32 - - UInt32 - - - None - - - MaxScheduledMeetingsPerOrganizer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of meetings that a single user can serve as organizer for at a given time. The default value is 1000; this means that, if a user is already the organizer for 1000 meetings, his or her attempt to schedule a new meeting (meeting number 1001) will fail. - - UInt32 - - UInt32 - - - None - - - MaxSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MaxSubscriptionExpiration property represents the maximum amount of time that clients can be granted. For example, if the maximum time is set to 28800 seconds and a client requests a timeout interval of 86400 seconds, the client will be given the maximum allowed expiration period: 28800 seconds. - The maximum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 43200 seconds (12 hours). - - Int64 - - Int64 - - - None - - - MaxSubscriptions - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of SIP subscribe dialogs a user can have open at any one time. A subscribe dialog represents a request for SIP resources. - - UInt16 - - UInt16 - - - None - - - MinSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MinSubscriptionExpiration property represents the minimum amount of time that clients can be granted. For example, if the minimum time is set to 1200 seconds and a client requests a timeout interval of 200 seconds, the client will be given the minimum allowed expiration period: 1200 seconds. - The minimum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 1200 seconds (20 minutes). - - Int64 - - Int64 - - - None - - - PresenceProviders - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Collection of presence providers for the User Service configuration settings. Presence providers are best added to a collection of User Service configuration settings by using the `New-CsPresenceProvider` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - SubscribeToCollapsedDG - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True (the default value), client applications will be allowed to subscribe to distribution groups that are not currently expanded in the Contacts list. This enables the client to maintain up-to-minute presence information for each member of the group. If set to False, client applications will not be allowed to subscribe to "collapsed" groups. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsUserServicesConfiguration - - AllowNonRoomSystemNotification - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AnonymousUserGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Represents the amount of time an anonymous (unauthenticated) user can remain in a meeting without an authenticated user being present in that same meeting. For example, if this value is set to 15 minutes an anonymous user can stay in the meeting for, at most, 15 minutes before an authenticated user must join. If an authenticated user does not join before the grace period expires then the anonymous user will be removed from the meeting. This setting applies to both scheduled meetings and to ad-hoc meetings created by clicking Meet Now in Skype for Business. - The AnonymousUserGracePeriod must be specified using the following format: days.hours:minutes:seconds (for example, 0.00:30:00 for 30 minutes). The grace period can be set to any value between 0 second and 1 day; the default value is 90 minutes (01:30:00). - - TimeSpan - - TimeSpan - - - None - - - DeactivationGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that a meeting can remain active. This value must be specified using the following format: days.hours:minutes:seconds. For example, to enable a meeting to last for 60 hours you would use this format: 2.12:00:00 (2 days: 12 hours: 00 minutes: 00 seconds.) - The DeactivationGracePeriod must be between 8 hours and 365 days, inclusive. The default value is 1 day. - - TimeSpan - - TimeSpan - - - None - - - DefaultSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. If no such request is issued, then the subscription is set to the value specified by the DefaultSubscriptionExpiration property. - The default subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 28800 seconds (8 hours). - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaintenanceTimeOfDay - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the time of day when regularly-scheduled database maintenance (such as the purging of outdated records) takes place. This value must be specified as a date-time value; you can use either the 24-hour format (for example, "14:00") or the 12-hour format (for example, "2:00 PM"). - The default value for MaintenanceTimeOfDay is 1:00 AM (01:00:00). - - DateTime - - DateTime - - - None - - - MaxContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of contacts a user can have; the default value is 250. The MaxContacts property represents the absolute maximum number of contacts a user can have. However, you can use the CsClientPolicy cmdlets to limit certain users to a maximum number of contacts lower than the value of MaxContacts. - - UInt16 - - UInt16 - - - None - - - MaxPersonalNotes - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of personal notes that are stored in the user's note history. By default, the last 3 personal notes are maintained in the note history. The maximum number of notes that can be maintained in the history is 10. - - UInt32 - - UInt32 - - - None - - - MaxScheduledMeetingsPerOrganizer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of meetings that a single user can serve as organizer for at a given time. The default value is 1000; this means that, if a user is already the organizer for 1000 meetings, his or her attempt to schedule a new meeting (meeting number 1001) will fail. - - UInt32 - - UInt32 - - - None - - - MaxSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MaxSubscriptionExpiration property represents the maximum amount of time that clients can be granted. For example, if the maximum time is set to 28800 seconds and a client requests a timeout interval of 86400 seconds, the client will be given the maximum allowed expiration period: 28800 seconds. - The maximum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 43200 seconds (12 hours). - - Int64 - - Int64 - - - None - - - MaxSubscriptions - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of SIP subscribe dialogs a user can have open at any one time. A subscribe dialog represents a request for SIP resources. - - UInt16 - - UInt16 - - - None - - - MinSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MinSubscriptionExpiration property represents the minimum amount of time that clients can be granted. For example, if the minimum time is set to 1200 seconds and a client requests a timeout interval of 200 seconds, the client will be given the minimum allowed expiration period: 1200 seconds. - The minimum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 1200 seconds (20 minutes). - - Int64 - - Int64 - - - None - - - PresenceProviders - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Collection of presence providers for the User Service configuration settings. Presence providers are best added to a collection of User Service configuration settings by using the `New-CsPresenceProvider` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - SubscribeToCollapsedDG - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True (the default value), client applications will be allowed to subscribe to distribution groups that are not currently expanded in the Contacts list. This enables the client to maintain up-to-minute presence information for each member of the group. If set to False, client applications will not be allowed to subscribe to "collapsed" groups. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowNonRoomSystemNotification - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AnonymousUserGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Represents the amount of time an anonymous (unauthenticated) user can remain in a meeting without an authenticated user being present in that same meeting. For example, if this value is set to 15 minutes an anonymous user can stay in the meeting for, at most, 15 minutes before an authenticated user must join. If an authenticated user does not join before the grace period expires then the anonymous user will be removed from the meeting. This setting applies to both scheduled meetings and to ad-hoc meetings created by clicking Meet Now in Skype for Business. - The AnonymousUserGracePeriod must be specified using the following format: days.hours:minutes:seconds (for example, 0.00:30:00 for 30 minutes). The grace period can be set to any value between 0 second and 1 day; the default value is 90 minutes (01:30:00). - - TimeSpan - - TimeSpan - - - None - - - DeactivationGracePeriod - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum amount of time that a meeting can remain active. This value must be specified using the following format: days.hours:minutes:seconds. For example, to enable a meeting to last for 60 hours you would use this format: 2.12:00:00 (2 days: 12 hours: 00 minutes: 00 seconds.) - The DeactivationGracePeriod must be between 8 hours and 365 days, inclusive. The default value is 1 day. - - TimeSpan - - TimeSpan - - - None - - - DefaultSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. If no such request is issued, then the subscription is set to the value specified by the DefaultSubscriptionExpiration property. - The default subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 28800 seconds (8 hours). - - Int64 - - Int64 - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier for the User Services configuration settings to be modified. To modify the global settings, use this syntax: - `-Identity global` - To modify settings configured at the site scope, use syntax similar to this: - `-Identity site:Redmond` - To modify settings at the service level, use syntax like this: - `-Identity service:UserServer:atl-cs-001.litwareinc.com` - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaintenanceTimeOfDay - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the time of day when regularly-scheduled database maintenance (such as the purging of outdated records) takes place. This value must be specified as a date-time value; you can use either the 24-hour format (for example, "14:00") or the 12-hour format (for example, "2:00 PM"). - The default value for MaintenanceTimeOfDay is 1:00 AM (01:00:00). - - DateTime - - DateTime - - - None - - - MaxContacts - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of contacts a user can have; the default value is 250. The MaxContacts property represents the absolute maximum number of contacts a user can have. However, you can use the CsClientPolicy cmdlets to limit certain users to a maximum number of contacts lower than the value of MaxContacts. - - UInt16 - - UInt16 - - - None - - - MaxPersonalNotes - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the maximum number of personal notes that are stored in the user's note history. By default, the last 3 personal notes are maintained in the note history. The maximum number of notes that can be maintained in the history is 10. - - UInt32 - - UInt32 - - - None - - - MaxScheduledMeetingsPerOrganizer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of meetings that a single user can serve as organizer for at a given time. The default value is 1000; this means that, if a user is already the organizer for 1000 meetings, his or her attempt to schedule a new meeting (meeting number 1001) will fail. - - UInt32 - - UInt32 - - - None - - - MaxSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MaxSubscriptionExpiration property represents the maximum amount of time that clients can be granted. For example, if the maximum time is set to 28800 seconds and a client requests a timeout interval of 86400 seconds, the client will be given the maximum allowed expiration period: 28800 seconds. - The maximum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 43200 seconds (12 hours). - - Int64 - - Int64 - - - None - - - MaxSubscriptions - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The maximum number of SIP subscribe dialogs a user can have open at any one time. A subscribe dialog represents a request for SIP resources. - - UInt16 - - UInt16 - - - None - - - MinSubscriptionExpiration - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Subscriptions are created any time a user makes a request for data such as presence information. When the request is made, the user (or, more correctly, the user's client application) can request the length of time that the subscription remains valid before it must be renewed. The MinSubscriptionExpiration property represents the minimum amount of time that clients can be granted. For example, if the minimum time is set to 1200 seconds and a client requests a timeout interval of 200 seconds, the client will be given the minimum allowed expiration period: 1200 seconds. - The minimum subscription time must be expressed as an integer value between 300 seconds (5 minutes) and 86400 seconds (24 hours), inclusive. The default value is 1200 seconds (20 minutes). - - Int64 - - Int64 - - - None - - - PresenceProviders - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Collection of presence providers for the User Service configuration settings. Presence providers are best added to a collection of User Service configuration settings by using the `New-CsPresenceProvider` cmdlet. - - PSListModifier - - PSListModifier - - - None - - - SubscribeToCollapsedDG - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If set to True (the default value), client applications will be allowed to subscribe to distribution groups that are not currently expanded in the Contacts list. This enables the client to maintain up-to-minute presence information for each member of the group. If set to False, client applications will not be allowed to subscribe to "collapsed" groups. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserServicesSettings - - - The `Set-CsUserServicesConfiguration` cmdlet accepts pipelined instances of the user services settings object. - - - - - - - None - - - The `Set-CsUserServicesConfiguration` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Settings.UserServices.UserServicesSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsUserServicesConfiguration -Identity site:Redmond -AnonymousUserGracePeriod "00:30:00" - - The command shown in Example 1 modifies the User Services configuration settings for the Redmond site (`-Identity site:Redmond`). In this example, the AnonymousUserGracePeriod is set to 30 minutes (00 hours: 30 minutes: 00 seconds). - - - - -------------------------- Example 2 -------------------------- - Set-CsUserServicesConfiguration -Identity site:Redmond -MaintenanceTimeOfDay "13:30" - - In Example 2, the MaintenanceTimeOfDay property is modified for the User Services configuration settings applied to the Redmond site. This is done by using the MaintenanceTimeOfDay parameter and the parameter value 13:30. That sets the maintenance time of day to 1:30 PM (13 hours and 30 minutes on a 24-hour clock). - - - - -------------------------- Example 3 -------------------------- - Get-CsUserServicesConfiguration -Filter "service:*" | Set-CsUserServicesConfiguration -MaxContacts 300 - - Example 3 retrieves all the User Services configuration settings applied at the service scope and then modifies the allowed number of contacts for each of these items. To carry out this task, the command first uses the `Get-CsUserServicesConfiguration` cmdlet and the Filter parameter to retrieve all the settings configured at the service scope; the filter value "service:*" limits the returned data to settings that have an Identity that begins with the characters "service:". This filtered collection is then passed to the `Set-CsUserServicesConfiguration` cmdlet, which takes each item in the collection and sets the MaxContacts property to 300. - - - - -------------------------- Example 4 -------------------------- - Get-CsUserServicesConfiguration | Where-Object {$_.MaxContacts -gt 300} | Set-CsUserServicesConfiguration -MaxContacts 300 - - In Example 4, all User Services configuration settings that allow users more than 300 contacts are modified; after the modifications are made, no settings will allow for more than 300 contacts. To do this, the command first calls the `Get-CsUserServicesConfiguration` cmdlet without any additional parameters. This returns a collection of all the User Services configuration settings currently in use in the organization. This collection is then piped to the `Where-Object` cmdlet, which picks out only those settings where the MaxContacts property is greater than 300. In turn, the filtered collection is piped to the `Set-CsUserServicesConfiguration` cmdlet, which takes each item in the filtered collection and changes the maximum number of allowed contacts to 300. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csuserservicesconfiguration - - - Get-CsUserServicesConfiguration - - - - New-CsUserServicesConfiguration - - - - Remove-CsUserServicesConfiguration - - - - - - - Set-CsVideoInteropServiceProvider - Set - CsVideoInteropServiceProvider - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - Use the Set-CsVideoInteropServiceProvider to update information about a supported CVI partner your organization uses. - - - - Set-CsVideoInteropServiceProvider - - Identity - - Specify the VideoInteropServiceProvider to be updated. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsVideoInteropServiceProvider - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Pass an existing provider from Get-CsVideoInteropServiceProvider to update (use instead of specifying "Identity") - - PSObject - - PSObject - - - None - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the VideoInteropServiceProvider to be updated. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - Pass an existing provider from Get-CsVideoInteropServiceProvider to update (use instead of specifying "Identity") - - PSObject - - PSObject - - - None - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsVideoInteropServiceProvider -Identity cviprovider -AllowAppGuestJoinsAsAuthenticated $true - - This example enables a VTC device joining anonymously to shown in the meeting as authenticated, for a supported CVI partner your organization uses. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csvideointeropserviceprovider - - - - - - Set-CsVoiceConfiguration - Set - CsVoiceConfiguration - - Modifies a list of voice test configurations. This cmdlet was introduced in Lync Server 2010. - - - - Voice test configurations are used to test a phone number against a specific voice policy, route and dial plan. This cmdlet can be used to modify voice test configurations from a list containing all the voice test configurations for a Skype for Business Server deployment. - This cmdlet modifies an object of type VoiceConfiguration. This object is simply a container object for voice test configurations. Therefore, the use of this cmdlet is not recommended. To modify voice configurations, modify the individual voice test configurations by calling the `Set-CsVoiceTestConfiguration` cmdlet. - Who can run this cmdlet: By default, members of the following groups are authorized to run the `Set-CsVoiceConfiguration` cmdlet locally: RTCUniversalServerAdmins. To return a list of all the role-based access control (RBAC) roles this cmdlet has been assigned to (including any custom RBAC roles you have created yourself), run the following command from the Windows PowerShell prompt: - `Get-CsAdminRole | Where-Object {$_.Cmdlets -match "Set-CsVoiceConfiguration"}` - - - - Set-CsVoiceConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope of this object. The only value possible for this parameter is Global. - - XdsIdentity - - XdsIdentity - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - VoiceTestConfigurations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of all voice test configurations (Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration objects) defined for the Skype for Business Server deployment. - You should modify individual voice test configuration objects by using the `Set-CsVoiceTestConfiguration` cmdlet. That is the recommended way of modifying configurations in this list. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsVoiceConfiguration - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a voice configuration (Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration) object. An object of this type can be retrieved by calling the `Get-CsVoiceConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - VoiceTestConfigurations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of all voice test configurations (Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration objects) defined for the Skype for Business Server deployment. - You should modify individual voice test configuration objects by using the `Set-CsVoiceTestConfiguration` cmdlet. That is the recommended way of modifying configurations in this list. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The scope of this object. The only value possible for this parameter is Global. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A reference to a voice configuration (Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration) object. An object of this type can be retrieved by calling the `Get-CsVoiceConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - VoiceTestConfigurations - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of all voice test configurations (Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration objects) defined for the Skype for Business Server deployment. - You should modify individual voice test configuration objects by using the `Set-CsVoiceTestConfiguration` cmdlet. That is the recommended way of modifying configurations in this list. - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration - - - The `Set-CsVoiceConfiguration` cmdlet accepts pipelined input of a voice configuration object. - - - - - - - None - - - The `Set-CsVoiceConfiguration` cmdlet does not return a value or object. Instead, the cmdlet configures instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceConfiguration object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $a = Get-CsVoiceConfiguration - -$b = $a.VoiceTestConfigurations | Where-Object {$_.Name -eq "TestConfig2"} - -$b.DialedNumber = "5551212" - -$b.ExpectedTranslatedNumber = "+5551212" - -Set-CsVoiceConfiguration -Instance $a - - It takes several steps to modify a test voice configuration within a voice configuration. In this example, we start by retrieving the voice configuration object by calling the `Get-CsVoiceConfiguration` cmdlet. We assign the object retrieved (there will be only one) to the variable $a. - In line 2 of this example we retrieve the contents of the VoiceTestConfigurations property, which is a collection of voice test configuration objects, from variable $a. We then pipe that collection to the `Where-Object` cmdlet, where we search the collection for the voice test configuration object with a Name equal to the string TestConfig2. We assign that object to the variable $b. - Next, we modify the TestConfig2 voice test configuration object by assigning new values to the properties DialedNumber and ExpectedTranslatedNumber. By updating that object we've updated the object in variable $a. However, that object is still only in memory. As a final step, we need to save those changes by passing $a to the Instance parameter of the `Set-CsVoiceConfiguration` cmdlet. - This is not the recommended way of modifying a voice configuration. To modify a voice configuration, simply change the individual voice test configurations with the `Set-CsVoiceTestConfiguration` cmdlet, as shown here: - `Set-CsVoiceTestConfiguration -Identity TestConfig2 -DialedNumber 5551212 -ExpectedTranslatedNumber +5551212` - That one line will accomplish the same task shown in Example 1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csvoiceconfiguration - - - Remove-CsVoiceConfiguration - - - - Get-CsVoiceConfiguration - - - - New-CsVoiceTestConfiguration - - - - Set-CsVoiceTestConfiguration - - - - Get-CsVoiceTestConfiguration - - - - - - - Set-CsVoicePolicy - Set - CsVoicePolicy - - Modifies an existing voice policy. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet modifies an existing voice policy. Voice policies are used to manage such Enterprise Voice-related features as simultaneous ringing (the ability to have a second phone ring each time someone calls your office phone) and call forwarding. Use this cmdlet to change the settings that enable and disable many of these features. - - - - Set-CsVoicePolicy - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope, and in some cases the name, of the policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallForwarding - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is set to True, users assigned to this policy can forward calls. If this parameter is set to False, calls cannot be forwarded. - - Boolean - - Boolean - - - None - - - AllowPSTNReRouting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When this parameter is set to True, calls made to internal numbers homed on another pool will be routed through the public switched telephone network (PSTN) when the pool or WAN is unavailable. - - Boolean - - Boolean - - - None - - - AllowSimulRing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Simultaneous ring is a feature that allows multiple phones to ring when a single number is dialed. Setting this parameter to True enables simultaneous ring. If this parameter is set to False, simultaneous ring cannot be configured for any user assigned to this policy. - - Boolean - - Boolean - - - None - - - CallForwardingSimulRingUsageType - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for administrators to manage call forwarding and simultaneous ringing. Allowed values are: - * VoicePolicyUsage - The default voice policy usage is used to manage call forwarding and simultaneous ringing on all calls. This is the default value. - * InternalOnly - Call forwarding and simultaneous ringing are limited to calls made from one Lync user to another. - * CustomUsage. A custom PSTN usage will be used to manage call forwarding and simultaneous ringing. This usage must be specified using the CustomCallForwardingSimulRingUsages parameter. - - CallForwardingSimulRingUsageType - - CallForwardingSimulRingUsageType - - - None - - - CustomCallForwardingSimulRingUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Custom PSTN usage used to manage call forwarding and simultaneous ringing. To add a custom usage to voice policy use syntax similar to this: - `-CustomCallForwardingSimulRingUsages @{Add="RedmondPstnUsage"}` - To remove a custom usage, use this syntax: - `-CustomCallForwardingSimulRingUsages @{Remove="RedmondPstnUsage"}` - Note that the usage must exist before it can be used with the CustomCallForwardingSimulRingUsages parameter. - - PSListModifier - - PSListModifier - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of the voice policy. - Maximum length: 1040 characters. - - String - - String - - - None - - - EnableBusyOptions - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EnableBusyOptions Description}} - - Boolean - - Boolean - - - None - - - EnableBWPolicyOverride - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Policies can be set to limit bandwidth and set various other properties relating to network configuration. Setting this parameter to True will allow override of these policies. In other words, if this parameter is set to True no bandwidth checks will be made, calls will go through regardless of the call admission control (CAC) settings. - - Boolean - - Boolean - - - None - - - EnableCallPark - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Call Park application allows a call to be held, or parked, at a certain number within a range of numbers for later retrieval. Setting this parameter to True enables this application for users assigned this policy. If this parameter is set to False, users assigned to this policy cannot park calls that have been dialed to their phone number. - - Boolean - - Boolean - - - None - - - EnableCallTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether calls can be transferred to another number. If this parameter is set to True, calls can be transferred; if the parameter is set to False, calls cannot be transferred. - - Boolean - - Boolean - - - None - - - EnableDelegation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Call delegation allows a user to answer calls for another user or make calls on the other user's behalf. For example, a manager can set up call delegation so that all incoming calls ring both his or her phone and the phone of an administrator. Setting this parameter to True allows users with this policy to set up call delegation. Setting this parameter to False disables call delegation. - - Boolean - - Boolean - - - None - - - EnableMaliciousCallTracing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Malicious call tracing is a standard that is in place to trace calls that a user designates as malicious. These calls can be traced even if caller ID is blocked. The trace is available only to the proper authorities and not to the user. Setting this property to True enables the ability to set a trace on malicious calls. - - Boolean - - Boolean - - - None - - - EnableTeamCall - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Team Call allows a user to designate a group of other users whose phones will ring when that user's number is called. This feature is useful in teams where, for example, anyone from a team can answer incoming calls from customers. Setting this parameter to True enables this feature. - - Boolean - - Boolean - - - None - - - EnableVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, calls to an unanswered mobile device will be routed to the organization voicemail instead of the mobile device provider's voicemail. If a call is answered "too soon" (that is, before the value configured for the PSTNVoicemailEscapeTimer property has elapsed) it will be assumed that the mobile device is not available and the call will be routed to the organization voicemail. - The default value is False. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PreventPSTNTollBypass - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - PSTN tolls are more commonly known as long-distance charges. Organizations can sometimes bypass these tolls by implementing a Voice over Internet Protocol (VoIP) solution that enables branch offices to connect via network calls. Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - - Boolean - - Boolean - - - None - - - PstnUsages - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages available to this policy. The PSTN usage ties a voice policy to a phone route. - Any string value can be placed into this list, as long as the value exists in the current global list of PSTN usages. (Duplicate strings are not allowed; all string must be unique.) The list of PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - Keep in mind that if you use this parameter to remove all PSTN usages from the policy, users granted this policy will not be able to make outbound PSTN calls. - - PSListModifier - - PSListModifier - - - None - - - PSTNVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Amount of time (in milliseconds) used to determine whether or not a call has been answered "too soon." If a response is received within this time interval Skype for Business Server will assume that the mobile device is not available and automatically switch the call to the organization's voicemail. If no response is received before the time interval is reached then the call will be allowed to proceed. - The default value is 1500 milliseconds. - - Int64 - - Int64 - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose voice policy is to be modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - VoiceDeploymentMode - - > Applicable: Lync Server 2013 - Allowed values are: - * OnPrem - * Online - * OnlineBasic - * OnPremOnlineHybrid - - The default value is OnPrem. - - VoiceDeploymentMode - - VoiceDeploymentMode - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsVoicePolicy - - AllowCallForwarding - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is set to True, users assigned to this policy can forward calls. If this parameter is set to False, calls cannot be forwarded. - - Boolean - - Boolean - - - None - - - AllowPSTNReRouting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When this parameter is set to True, calls made to internal numbers homed on another pool will be routed through the public switched telephone network (PSTN) when the pool or WAN is unavailable. - - Boolean - - Boolean - - - None - - - AllowSimulRing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Simultaneous ring is a feature that allows multiple phones to ring when a single number is dialed. Setting this parameter to True enables simultaneous ring. If this parameter is set to False, simultaneous ring cannot be configured for any user assigned to this policy. - - Boolean - - Boolean - - - None - - - CallForwardingSimulRingUsageType - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for administrators to manage call forwarding and simultaneous ringing. Allowed values are: - * VoicePolicyUsage - The default voice policy usage is used to manage call forwarding and simultaneous ringing on all calls. This is the default value. - * InternalOnly - Call forwarding and simultaneous ringing are limited to calls made from one Lync user to another. - * CustomUsage. A custom PSTN usage will be used to manage call forwarding and simultaneous ringing. This usage must be specified using the CustomCallForwardingSimulRingUsages parameter. - - CallForwardingSimulRingUsageType - - CallForwardingSimulRingUsageType - - - None - - - CustomCallForwardingSimulRingUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Custom PSTN usage used to manage call forwarding and simultaneous ringing. To add a custom usage to voice policy use syntax similar to this: - `-CustomCallForwardingSimulRingUsages @{Add="RedmondPstnUsage"}` - To remove a custom usage, use this syntax: - `-CustomCallForwardingSimulRingUsages @{Remove="RedmondPstnUsage"}` - Note that the usage must exist before it can be used with the CustomCallForwardingSimulRingUsages parameter. - - PSListModifier - - PSListModifier - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of the voice policy. - Maximum length: 1040 characters. - - String - - String - - - None - - - EnableBusyOptions - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EnableBusyOptions Description}} - - Boolean - - Boolean - - - None - - - EnableBWPolicyOverride - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Policies can be set to limit bandwidth and set various other properties relating to network configuration. Setting this parameter to True will allow override of these policies. In other words, if this parameter is set to True no bandwidth checks will be made, calls will go through regardless of the call admission control (CAC) settings. - - Boolean - - Boolean - - - None - - - EnableCallPark - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Call Park application allows a call to be held, or parked, at a certain number within a range of numbers for later retrieval. Setting this parameter to True enables this application for users assigned this policy. If this parameter is set to False, users assigned to this policy cannot park calls that have been dialed to their phone number. - - Boolean - - Boolean - - - None - - - EnableCallTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether calls can be transferred to another number. If this parameter is set to True, calls can be transferred; if the parameter is set to False, calls cannot be transferred. - - Boolean - - Boolean - - - None - - - EnableDelegation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Call delegation allows a user to answer calls for another user or make calls on the other user's behalf. For example, a manager can set up call delegation so that all incoming calls ring both his or her phone and the phone of an administrator. Setting this parameter to True allows users with this policy to set up call delegation. Setting this parameter to False disables call delegation. - - Boolean - - Boolean - - - None - - - EnableMaliciousCallTracing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Malicious call tracing is a standard that is in place to trace calls that a user designates as malicious. These calls can be traced even if caller ID is blocked. The trace is available only to the proper authorities and not to the user. Setting this property to True enables the ability to set a trace on malicious calls. - - Boolean - - Boolean - - - None - - - EnableTeamCall - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Team Call allows a user to designate a group of other users whose phones will ring when that user's number is called. This feature is useful in teams where, for example, anyone from a team can answer incoming calls from customers. Setting this parameter to True enables this feature. - - Boolean - - Boolean - - - None - - - EnableVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, calls to an unanswered mobile device will be routed to the organization voicemail instead of the mobile device provider's voicemail. If a call is answered "too soon" (that is, before the value configured for the PSTNVoicemailEscapeTimer property has elapsed) it will be assumed that the mobile device is not available and the call will be routed to the organization voicemail. - The default value is False. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. This object must be of type VoicePolicy and can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - - PSObject - - PSObject - - - None - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PreventPSTNTollBypass - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - PSTN tolls are more commonly known as long-distance charges. Organizations can sometimes bypass these tolls by implementing a Voice over Internet Protocol (VoIP) solution that enables branch offices to connect via network calls. Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - - Boolean - - Boolean - - - None - - - PstnUsages - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages available to this policy. The PSTN usage ties a voice policy to a phone route. - Any string value can be placed into this list, as long as the value exists in the current global list of PSTN usages. (Duplicate strings are not allowed; all string must be unique.) The list of PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - Keep in mind that if you use this parameter to remove all PSTN usages from the policy, users granted this policy will not be able to make outbound PSTN calls. - - PSListModifier - - PSListModifier - - - None - - - PSTNVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Amount of time (in milliseconds) used to determine whether or not a call has been answered "too soon." If a response is received within this time interval Skype for Business Server will assume that the mobile device is not available and automatically switch the call to the organization's voicemail. If no response is received before the time interval is reached then the call will be allowed to proceed. - The default value is 1500 milliseconds. - - Int64 - - Int64 - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose voice policy is to be modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - VoiceDeploymentMode - - > Applicable: Lync Server 2013 - Allowed values are: - * OnPrem - * Online - * OnlineBasic - * OnPremOnlineHybrid - - The default value is OnPrem. - - VoiceDeploymentMode - - VoiceDeploymentMode - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowCallForwarding - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - If this parameter is set to True, users assigned to this policy can forward calls. If this parameter is set to False, calls cannot be forwarded. - - Boolean - - Boolean - - - None - - - AllowPSTNReRouting - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When this parameter is set to True, calls made to internal numbers homed on another pool will be routed through the public switched telephone network (PSTN) when the pool or WAN is unavailable. - - Boolean - - Boolean - - - None - - - AllowSimulRing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Simultaneous ring is a feature that allows multiple phones to ring when a single number is dialed. Setting this parameter to True enables simultaneous ring. If this parameter is set to False, simultaneous ring cannot be configured for any user assigned to this policy. - - Boolean - - Boolean - - - None - - - CallForwardingSimulRingUsageType - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Provides a way for administrators to manage call forwarding and simultaneous ringing. Allowed values are: - * VoicePolicyUsage - The default voice policy usage is used to manage call forwarding and simultaneous ringing on all calls. This is the default value. - * InternalOnly - Call forwarding and simultaneous ringing are limited to calls made from one Lync user to another. - * CustomUsage. A custom PSTN usage will be used to manage call forwarding and simultaneous ringing. This usage must be specified using the CustomCallForwardingSimulRingUsages parameter. - - CallForwardingSimulRingUsageType - - CallForwardingSimulRingUsageType - - - None - - - CustomCallForwardingSimulRingUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Custom PSTN usage used to manage call forwarding and simultaneous ringing. To add a custom usage to voice policy use syntax similar to this: - `-CustomCallForwardingSimulRingUsages @{Add="RedmondPstnUsage"}` - To remove a custom usage, use this syntax: - `-CustomCallForwardingSimulRingUsages @{Remove="RedmondPstnUsage"}` - Note that the usage must exist before it can be used with the CustomCallForwardingSimulRingUsages parameter. - - PSListModifier - - PSListModifier - - - None - - - Description - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A description of the voice policy. - Maximum length: 1040 characters. - - String - - String - - - None - - - EnableBusyOptions - - > Applicable: Skype for Business Server 2015, Skype for Business Server 2019 - {{Fill EnableBusyOptions Description}} - - Boolean - - Boolean - - - None - - - EnableBWPolicyOverride - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Policies can be set to limit bandwidth and set various other properties relating to network configuration. Setting this parameter to True will allow override of these policies. In other words, if this parameter is set to True no bandwidth checks will be made, calls will go through regardless of the call admission control (CAC) settings. - - Boolean - - Boolean - - - None - - - EnableCallPark - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Call Park application allows a call to be held, or parked, at a certain number within a range of numbers for later retrieval. Setting this parameter to True enables this application for users assigned this policy. If this parameter is set to False, users assigned to this policy cannot park calls that have been dialed to their phone number. - - Boolean - - Boolean - - - None - - - EnableCallTransfer - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Determines whether calls can be transferred to another number. If this parameter is set to True, calls can be transferred; if the parameter is set to False, calls cannot be transferred. - - Boolean - - Boolean - - - None - - - EnableDelegation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Call delegation allows a user to answer calls for another user or make calls on the other user's behalf. For example, a manager can set up call delegation so that all incoming calls ring both his or her phone and the phone of an administrator. Setting this parameter to True allows users with this policy to set up call delegation. Setting this parameter to False disables call delegation. - - Boolean - - Boolean - - - None - - - EnableMaliciousCallTracing - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Malicious call tracing is a standard that is in place to trace calls that a user designates as malicious. These calls can be traced even if caller ID is blocked. The trace is available only to the proper authorities and not to the user. Setting this property to True enables the ability to set a trace on malicious calls. - - Boolean - - Boolean - - - None - - - EnableTeamCall - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Team Call allows a user to designate a group of other users whose phones will ring when that user's number is called. This feature is useful in teams where, for example, anyone from a team can answer incoming calls from customers. Setting this parameter to True enables this feature. - - Boolean - - Boolean - - - None - - - EnableVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, calls to an unanswered mobile device will be routed to the organization voicemail instead of the mobile device provider's voicemail. If a call is answered "too soon" (that is, before the value configured for the PSTNVoicemailEscapeTimer property has elapsed) it will be assumed that the mobile device is not available and the call will be routed to the organization voicemail. - The default value is False. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A unique identifier specifying the scope, and in some cases the name, of the policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. This object must be of type VoicePolicy and can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - - PSObject - - PSObject - - - None - - - Name - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PreventPSTNTollBypass - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - PSTN tolls are more commonly known as long-distance charges. Organizations can sometimes bypass these tolls by implementing a Voice over Internet Protocol (VoIP) solution that enables branch offices to connect via network calls. Setting this parameter to True will send calls through PSTN and incur charges rather than going through the network and bypassing the tolls. - - Boolean - - Boolean - - - None - - - PstnUsages - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages available to this policy. The PSTN usage ties a voice policy to a phone route. - Any string value can be placed into this list, as long as the value exists in the current global list of PSTN usages. (Duplicate strings are not allowed; all string must be unique.) The list of PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet. - Keep in mind that if you use this parameter to remove all PSTN usages from the policy, users granted this policy will not be able to make outbound PSTN calls. - - PSListModifier - - PSListModifier - - - None - - - PSTNVoicemailEscapeTimer - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Amount of time (in milliseconds) used to determine whether or not a call has been answered "too soon." If a response is received within this time interval Skype for Business Server will assume that the mobile device is not available and automatically switch the call to the organization's voicemail. If no response is received before the time interval is reached then the call will be allowed to proceed. - The default value is 1500 milliseconds. - - Int64 - - Int64 - - - None - - - Tenant - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose voice policy is to be modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - VoiceDeploymentMode - - > Applicable: Lync Server 2013 - Allowed values are: - * OnPrem - * Online - * OnlineBasic - * OnPremOnlineHybrid - - The default value is OnPrem. - - VoiceDeploymentMode - - VoiceDeploymentMode - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoicePolicy - - - Accepts pipelined input of voice policy objects. - - - - - - - None - - - This cmdlet does not return a value or object. Instead, it configures instances of the Microsoft.Rtc.Management.WritableConfig.Voice.VoicePolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsVoicePolicy UserVoicePolicy2 -AllowSimulRing $false -PstnUsages @{remove="Local"} - - This example sets the AllowSimulRing property to False for the per-user policy UserVoicePolicy2, meaning any users assigned this policy are not enabled for simultaneous ring, a feature that determines whether a second phone (such as a mobile phone) can be set to ring every time the user's office phone rings. This command also removes "Local" from the list of PSTN usages for this policy. (Note that the Identity parameter is not explicitly specified. The Identity parameter is a positional parameter, therefore if you put the identity value first in the list of parameters you don't need to explicitly state that it's the Identity.) - - - - -------------------------- Example 2 -------------------------- - $a = Get-CsPstnUsage - -Set-CsVoicePolicy -Identity site:Redmond -PstnUsages @{replace=$a.Usage} - - This example modifies the voice policy for site Redmond so that all the PSTN usages defined for the organization are applied to this policy. The first line in this example calls the `Get-CsPstnUsage` cmdlet to retrieve the global set of PSTN usages for the organization and save that set in the variable $a. The second line calls the `Set-CsVoicePolicy` cmdlet to modify the voice policy for site Redmond. A value is passed to the PstnUsages parameter to replace the current list of usages for the policy with the list contained in the global set of PSTN usages. Note the syntax of the replace value: $a.Usage. This refers to the Usage property of the PSTN usage settings, which contains the list of PSTN usages. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csvoicepolicy - - - New-CsVoicePolicy - - - - Remove-CsVoicePolicy - - - - Get-CsVoicePolicy - - - - Grant-CsVoicePolicy - - - - Test-CsVoicePolicy - - - - Get-CsPstnUsage - - - - - - - Set-CsVoiceRoutingPolicy - Set - CsVoiceRoutingPolicy - - Modifies an existing voice routing policy. Voice routing policies manage PSTN usages for users of hybrid voice. Hybrid voice enables users homed on Skype for Business Online to take advantage of the Enterprise Voice capabilities available in an on-premises installation of Skype for Business Server. This cmdlet was introduced in Lync Server 2013. - - - - Voice routing policies are used in "hybrid" scenarios: when some of your users are homed on the on-premises version of Skype for Business Server and other users are homed on Skype for Business Online. Assigning your Skype for Business Server users a voice routing policy enables those users to receive and to place phones calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user a voice routing policy will not enable them to make PSTN calls via Skype for Business Online. Among other things, you will also need to enable those users for Enterprise Voice and will need to assign them an appropriate voice policy and dial plan. - Skype for Business Server Control Panel: The functions carried out by the `Set-CsVoiceRoutingPolicy` cmdlet are not available in the Skype for Business Server Control Panel. - - - - Set-CsVoiceRoutingPolicy - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier assigned to the policy when it was created. Voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - `-Identity global` - To refer to a per-user policy, use syntax similar to this: - `-Identity "RedmondVoiceRoutingPolicy"` - If you do not specify an Identity, then the `Set-CsVoiceRoutingPolicy` cmdlet will modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Description - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide explanatory text to accompany a voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Name - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PstnUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages (such as Local or Long Distance) that can be applied to this voice routing policy. The PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet.) - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsVoiceRoutingPolicy - - Description - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide explanatory text to accompany a voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Name - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PstnUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages (such as Local or Long Distance) that can be applied to this voice routing policy. The PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet.) - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Description - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables administrators to provide explanatory text to accompany a voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier assigned to the policy when it was created. Voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - `-Identity global` - To refer to a per-user policy, use syntax similar to this: - `-Identity "RedmondVoiceRoutingPolicy"` - If you do not specify an Identity, then the `Set-CsVoiceRoutingPolicy` cmdlet will modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Name - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A friendly name describing this policy. - - String - - String - - - None - - - PstnUsages - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A list of PSTN usages (such as Local or Long Distance) that can be applied to this voice routing policy. The PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsPstnUsage` cmdlet.) - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy - - - The `Set-CsVoiceRoutingPolicy` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - None - - - Instead, the `Set-CsVoiceRoutingPolicy` cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Policy.Voice.VoiceRoutingPolicy object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" -PstnUsages @{Add="Long Distance"} - - The command shown in Example 1 adds the PSTN usage "Long Distance" to the per-user voice routing policy RedmondVoiceRoutingPolicy. - - - - -------------------------- Example 2 -------------------------- - Set-CsVoiceRoutingPolicy -Identity "RedmondVoiceRoutingPolicy" -PstnUsages @{Remove="Local"} - - In Example 2, the PSTN usage "Local" is removed from the per-user voice routing policy RedmondVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoiceRoutingPolicy | Where-Object {$_.PstnUsages -contains "Local"} | Set-CsVoiceRoutingPolicy -PstnUsages @{Remove="Local"} - - Example 3 removes the PSTN usage "Local" is removed from all the voice routing policies that include that usage. In order to do this, the command first calls the `Get-CsVoiceRoutingPolicy` cmdlet without any parameters in order to return a collection of all the available voice routing policies. That collection is then piped to the `Where-Object` cmdlet, which picks out only those policies where the PstnUsages property includes (-contains) the "Local" usage. Those policies are then piped to the `Set-CsVoiceRoutingPolicy` cmdlet, which deletes the Local usage from each policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csvoiceroutingpolicy - - - Get-CsVoiceRoutingPolicy - - - - Grant-CsVoiceRoutingPolicy - - - - New-CsVoiceRoutingPolicy - - - - Remove-CsVoiceRoutingPolicy - - - - - - - Set-CsVoiceTestConfiguration - Set - CsVoiceTestConfiguration - - Modifies a test scenario you can use to test phone numbers against specified routes and rules. This cmdlet was introduced in Lync Server 2010. - - - - Before implementing voice routes and voice policies, it's a good idea to test them out on various phone numbers to ensure the results are what you're expecting. You can do this by modifying test scenarios with this cmdlet. - The `Set-CsVoiceTestConfiguration` cmdlet modifies the voice route, usage, dial plan and voice policy against which to test a specified phone number. All of this information can be defined and retrieved using other cmdlets, as specified in the parameter descriptions for this topic. - The configurations modified with this cmdlet are tested using the `Test-CsVoiceTestConfiguration` cmdlet. - - - - Set-CsVoiceTestConfiguration - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test scenario you want to modify. - The value of this parameter does not include scope because this object can be created only at the global scope. Therefore only a name is required. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, and so on. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it in after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by calling the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - Set-CsVoiceTestConfiguration - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, and so on. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it in after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - An object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration that contains an existing voice test configuration with the changes you'd like to make to that configuration. An object of this type can be retrieved by calling the `Get-CsVoiceTestConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by calling the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number you want to use to test the policies, usages, and so on. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedRoute - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the voice route expected to be used during the configuration test. If a different route is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available voice routes by calling the `Get-CsVoiceRoute` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - ExpectedTranslatedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The phone number in the format you expect to see it in after translation. This is the value of the DialedNumber parameter after normalization. If you run the `Test-CsVoiceTestConfiguration` cmdlet and the DialedNumber does not result in the value in ExpectedTranslatedNumber, the test will report as Fail. - Must be 512 characters or fewer. - - String - - String - - - None - - - ExpectedUsage - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The name of the PSTN usage expected to be used during the configuration test. If a different PSTN usage is used, based on the target dial plan and voice policy, the test will fail. You can retrieve available usages by calling the `Get-CsPstnUsage` cmdlet. - Must be 256 characters or fewer. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - A string uniquely identifying the test scenario you want to modify. - The value of this parameter does not include scope because this object can be created only at the global scope. Therefore only a name is required. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - An object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration that contains an existing voice test configuration with the changes you'd like to make to that configuration. An object of this type can be retrieved by calling the `Get-CsVoiceTestConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - TargetDialplan - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the dial plan to be used for this test. Dial plans can be retrieved by calling the `Get-CsDialPlan` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - TargetVoicePolicy - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The Identity of the voice policy against which to run this test. Voice policies can be retrieved by calling the `Get-CsVoicePolicy` cmdlet. - Must be 40 characters or fewer. - - String - - String - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - Accepts pipelined input of voice test configuration objects. - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration - - - This cmdlet returns an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.TestConfiguration. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsVoiceTestConfiguration -Identity TestConfig1 -DialedNumber 14255551212 - - This example sets the dialed number of the voice test configuration for TestConfig1 to 14255551212. This is the number that will be checked against the voice policy and route to ensure normalization occurs as expected, as well as to ensure the correct routes and dial plans are being applied. - - - - -------------------------- Example 2 -------------------------- - Set-CsVoiceTestConfiguration -Identity TestConfig1 -TargetDialPlan site:Redmond1 -ExpectedTranslatedNumber "+912065551212" - - This example modifies settings for the voice test configuration TestConfig1. The command sets the TargetDialPlan to the dial plan for site:Redmond1. Because a change in dial plan could mean a change in normalization rules, the ExpectedTranslationNumber has also been changed to reflect what is expected from the normalization rules for that dial plan. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/set-csvoicetestconfiguration - - - New-CsVoiceTestConfiguration - - - - Remove-CsVoiceTestConfiguration - - - - Get-CsVoiceTestConfiguration - - - - Test-CsVoiceTestConfiguration - - - - Get-CsVoiceRoute - - - - Get-CsPstnUsage - - - - Get-CsDialPlan - - - - Get-CsVoicePolicy - - - - - \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml b/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml deleted file mode 100644 index 8ff8b79c997c7..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml +++ /dev/null @@ -1,7372 +0,0 @@ - - - - - Add-TeamChannelUser - Add - TeamChannelUser - - Adds an owner or member to the private channel. - - - - The command will return immediately, but the Teams application will not reflect the update immediately. To see the update you should refresh the members page. - Note: Technical limitations of private channels apply. To add a user as a member to a channel, they need to first be a member of the team. To make a user an owner of a channel, they need to first be a member of the channel. - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://learn.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://learn.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Add-TeamChannelUser - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - GroupId - - GroupId of the parent team - - String - - String - - - None - - - Role - - Owner - - String - - String - - - None - - - TenantId - - TenantId of the external user - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - GroupId - - GroupId of the parent team - - String - - String - - - None - - - Role - - Owner - - String - - String - - - None - - - TenantId - - TenantId of the external user - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - - - - GroupId - - - - - - - - DisplayName - - - - - - - - User - - - - - - - - Role - - - - - - - - TenantId - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Add-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com - - Add user dmx@example.com to private channel with name "Engineering" under the given group. - - - - -------------------------- Example 2 -------------------------- - Add-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com -Role Owner - - Promote user dmx@example.com to an owner of private channel with name "Engineering" under the given group. - - - - -------------------------- Example 3 -------------------------- - Add-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User 0e4249a7-6cfd-8c93-a510-91cda44c8c73 -TenantId dcd143cb-c4ae-4364-9faf-e1c3242bf4ff - - Adds external user 0e4249a7-6cfd-8c93-a510-91cda44c8c73 to a shared channel. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/add-teamchanneluser - - - - - - Add-TeamUser - Add - TeamUser - - The `Add-TeamUser` adds an owner or member to the team, and to the unified group which backs the team. - - - - This cmdlet adds an owner or member to the team, and to the unified group which backs the team. - > [!Note] > The command will return immediately, but the Teams application will not reflect the update immediately. The change can take between 24 and 48 hours to appear within the Teams client. - - - - Add-TeamUser - - GroupId - - GroupId of the team. - - String - - String - - - None - - - Role - - Member or Owner. If Owner is specified then the user is also added as a member to the Team backed by unified group. - - String - - String - - - Member - - - User - - UPN of a user of the organization (user principal name - e.g. johndoe@example.com). - - String - - String - - - None - - - - - - GroupId - - GroupId of the team. - - String - - String - - - None - - - Role - - Member or Owner. If Owner is specified then the user is also added as a member to the Team backed by unified group. - - String - - String - - - Member - - - User - - UPN of a user of the organization (user principal name - e.g. johndoe@example.com). - - String - - String - - - None - - - - - - GroupId - - - - - - - - User - - - - - - - - Role - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Add-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com - - This example adds the user "dmx@example.com" to a group with the id "31f1ff6c-d48c-4f8a-b2e1-abca7fd399df". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/add-teamuser - - - - - - Get-AllM365TeamsApps - Get - AllM365TeamsApps - - This cmdlet returns all Microsoft Teams apps in the app catalog, including Microsoft, custom, and non-Microsoft apps. - - - - Get-AllM365TeamsApps retrieves a complete list of all Teams apps in an organization, their statuses, and their availability information. - - - - Get-AllM365TeamsApps - - - - - - - None - - - - - - - - - - System.Object - - - Id Application ID of the Teams app. IsBlocked The state of the app in the tenant. Values: - - Blocked - - Unblocked AvailableTo Provides available to properties for the app. Properties: - - AssignmentType: App availability type. Values: - Everyone - UsersandGroups - Noone - LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated. - - AssignedBy: UserID of the last user who updated the app available to value. InstalledFor Provides installation status for the app. Properties: - - AppInstallType: App availability type. Values: - Everyone - UsersandGroups - Noone - LastUpdatedTimestamp: Time and date when the app AvailableTo value was last updated. - - InstalledBy: UserID of the last user who installed the app available to value. - - InstalledSource: Source of Installation - - Version: Version of the app installed - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-AllM365TeamsApps - - Returns a complete list of all Teams apps in an organization, their statuses, and their availability information. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableTo -ExpandProperty AvailableTo - - Returns a complete list of all Teams apps in an organization, their statuses, and their availability information in expanded format. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-AllM365TeamsApps | Select-Object -Property Id, IsBlocked, AvailableTo, InstalledFor -ExpandProperty InstalledFor - - Returns a complete list of all Teams apps in an organization, their statuses, their availability and their installation information in expanded format. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Get-AllM365TeamsApps - - - Get-M365TeamsApp - https://learn.microsoft.com/powershell/module/microsoftteams/get-m365teamsapp - - - Update-M365TeamsApp - https://learn.microsoft.com/powershell/module/microsoftteams/get-m365teamsapp - - - - - - Get-AssociatedTeam - Get - AssociatedTeam - - This cmdlet supports retrieving all teams associated with a user, including teams which host shared channels. - - - - This cmdlet supports retrieving all associated teams of a user, including teams which host shared channels. - - - - Get-AssociatedTeam - - User - - User's UPN (user principal name, for example johndoe@example.com) or user ID (for example 0e4249a7-6cfd-8c93-a510-91cda44c8c73). - - String - - String - - - None - - - - - - User - - User's UPN (user principal name, for example johndoe@example.com) or user ID (for example 0e4249a7-6cfd-8c93-a510-91cda44c8c73). - - String - - String - - - None - - - - - - User - - - - - - - - - - Team - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-AssociatedTeam - - Returns associated teams of the current user. - - - - -------------------------- Example 2 -------------------------- - Get-AssociatedTeam -user example@example.com - - Returns associated teams of a given user email. - - - - -------------------------- Example 3 -------------------------- - Get-AssociatedTeam -user 0e4249a7-6cfd-8c93-a510-91cda44c8c73 - - Returns associated teams of a given user ID. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-associatedteam - - - Get-Team - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - Get-SharedWithTeam - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - - - - Get-M365TeamsApp - Get - M365TeamsApp - - This cmdlet returns app availability and state for the Microsoft Teams app. - - - - Get-M365TeamsApps retrieves information about the Teams app. This includes app state, app availability, user who updated app availability, and the associated timestamp. - - - - Get-M365TeamsApp - - Id - - Application ID of the Teams app. - - String - - String - - - None - - - - - - Id - - Application ID of the Teams app. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - ID Application ID of the Teams app. IsBlocked The state of the app in the tenant. Values: - - Blocked - - Unblocked AvailableTo Provides available to properties for the app. Properties: - - AssignmentType: App availability type. Values: - Everyone - UsersandGroups - Noone - Users: List of all the users for whom the app is enabled. Values: - Id: GUID of UserIDs. - AssignedBy: UserID of last user who updated the app AvailableTo value. - LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated. - Groups: List of all the groups for whom the app is enabled. Values: - Id: GUID of GroupIDs. - AssignedBy: UserID of last user who updated the app AvailableTo value. - LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated. InstalledFor Provides installed for properties for the app. Properties: - - AppInstallType: App install type. Values: - Everyone - UsersandGroups - Noone - LastUpdatedTimestamp: Last Updated date - - InstalledBy: The user performing the installation - - InstalledSource: Source of installation - - Version: Version of the app installed - - InstallForUsers: List of all the users for whom the app is enabled. - Values: - Id: GUID of UserIDs. - AssignedBy: UserID of last user who updated the app AvailableTo value. - LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated. - InstallForGroups: List of all the groups for whom the app is enabled. Values: - Id: GUID of GroupIDs. - AssignedBy: UserID of last user who updated the app AvailableTo value. - LastUpdatedTimeStamp: Time and date when the app AvailableTo value was last updated. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-M365TeamsApp -Id b782e2e8-9682-4898-b211-a304714f4f6b - - Provides information about b782e2e8-9682-4898-b211-a304714f4f6b app, which includes app state, app availability, user who updated app availability, and the associated timestamp. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Get-M365TeamsApp - - - Get-AllM365TeamsApps - https://learn.microsoft.com/powershell/module/microsoftteams/get-allm365teamsapps - - - Update-M365TeamsApp - https://learn.microsoft.com/powershell/module/microsoftteams/get-allm365teamsapps - - - - - - Get-M365UnifiedCustomPendingApps - Get - M365UnifiedCustomPendingApps - - This cmdlet returns all custom Microsoft Teams apps that are pending review from an IT Admin. - - - - Get-M365UnifiedCustomPendingApps retrieves a complete list of all custom Microsoft Teams apps that are pending review, and their review statuses. - - - - Get-M365UnifiedCustomPendingApps - - - - - - - None - - - - - - - - - - System.Object - - - - Id : Application ID of the Teams app. - ExternalId : External ID of the Teams app. - Iteration : The Staged App Definition Etag of the app. This is a unique tag created every time the staged app is updated, to help track changes. - CreatedBy : The User ID of the user that created the app. - LastUpdateDateTime : The date and time the app was last updated. - ReviewStatus : The review status of the app. Values: - PendingPublishing: A new custom app was requested that hasn't been published before. - PendingUpdate: An existing custom app that was previously published and now has an update. - Metadata : The metadata of the app. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-M365UnifiedCustomPendingApps - - Returns a complete list of all custom Microsoft Teams apps that are pending review, and their review statuses. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Get-M365UnifiedCustomPendingApps - - - - - - Get-M365UnifiedTenantSettings - Get - M365UnifiedTenantSettings - - This cmdlet returns the current tenant settings for a particular tenant - - - - Get-M365UnifiedTenantSettings retrieves the current tenant settings for a particular tenant. - - - - Get-M365UnifiedTenantSettings - - SettingNames - - Setting names requested. Possible values - DefaultApp,GlobalApp,PrivateApp,EnableCopilotExtensibility - - String - - String - - - None - - - - - - SettingNames - - Setting names requested. Possible values - DefaultApp,GlobalApp,PrivateApp,EnableCopilotExtensibility - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - SettingName Setting Name returned. SettingValue The status of this setting in the tenant. Values: - - All - - None - - Some (only applicable for EnableCopilotExtensibility) Users The list of users this setting is applicable to (only applicable for EnableCopilotExtensibility). Groups The list of groups this setting is applicable to (only applicable for EnableCopilotExtensibility). - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-M365UnifiedTenantSettings - - Returns all the current tenant settings for this tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-M365UnifiedTenantSettings -SettingNames DefaultApp - - Returns the current tenant setting for DefaultApp for this tenant. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-M365UnifiedTenantSettings -SettingNames DefaultApp,EnableCopilotExtensibility - - Returns the current tenant setting for DefaultApp and EnableCopilotExtensibility for this tenant. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Get-M365UnifiedTenantSettings - - - - - - Get-SharedWithTeam - Get - SharedWithTeam - - This cmdlet supports retrieving teams with which a specified channel is shared. - - - - This cmdlet supports retrieving teams with which a specified channel is shared. - - - - Get-SharedWithTeam - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - HostTeamId - - - - - - - - ChannelId - - - - - - - - SharedWithTeamId - - - - - - - - - - Team - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-AssociatedTeam -HostTeamId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -ChannelId 19:cUfyYYw3h_t-1KG8-WkvVa7KLEsIx-JHmyeG43VJojg1@thread.tacv2 - - Returns teams with which a specified channel is shared. - - - - -------------------------- Example 2 -------------------------- - Get-AssociatedTeam -HostTeamId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -ChannelId 19:cUfyYYw3h_t-1KG8-WkvVa7KLEsIx-JHmyeG43VJojg1@thread.tacv2 --SharedWithTeam d2aad370-c6ca-438b-b4d7-05f0aa911a7b - - Returns detail of a team with which a specified channel is shared. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-sharedwithteam - - - Get-Team - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - Get-AssociatedTeam - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - - - - Get-SharedWithTeamUser - Get - SharedWithTeamUser - - This cmdlet supports retrieving users of a shared with team. - - - - This cmdlet supports retrieving users of a shared with team. - - - - Get-SharedWithTeamUser - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - Role - - Filters the results to only users with the given role of "Owner" or "Member". - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - Role - - Filters the results to only users with the given role of "Owner" or "Member". - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - HostTeamId - - - - - - - - ChannelId - - - - - - - - SharedWithTeamId - - - - - - - - - - User - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-SharedWithTeamUser -HostTeamId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -ChannelId 19:cUfyYYw3h_t-1KG8-WkvVa7KLEsIx-JHmyeG43VJojg1@thread.tacv2 --SharedWithTeam d2aad370-c6ca-438b-b4d7-05f0aa911a7b - - Returns users of a team with which a specified channel is shared. - - - - -------------------------- Example 2 -------------------------- - Get-AssociatedTeam -HostTeamId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -ChannelId 19:cUfyYYw3h_t-1KG8-WkvVa7KLEsIx-JHmyeG43VJojg1@thread.tacv2 --SharedWithTeam d2aad370-c6ca-438b-b4d7-05f0aa911a7b -Role owner - - Returns owners of a team with which a specified channel is shared. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-sharedwithteamuser - - - Get-TeamUser - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamuser - - - - - - Get-Team - Get - Team - - Get Team information based on particular properties. - - - - This cmdlet supports retrieving teams with particular properties/information, including all teams that a specific user belongs to, all teams that have been archived, all teams with a specific display name, or all teams in the organization. - > [!NOTE] > Get-Team may return multiple results matching the input and not just the exact match for attributes like DisplayName/MailNickName. This is known behavior. - - - - Get-Team - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Specify this parameter to return teams with the provided display name as a filter. As the display name is not unique, multiple values can be returned. Note that this filter value is case-sensitive. - - String - - String - - - None - - - GroupId - - Specify the specific GroupId (as a string) of the team to be returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This acts as a filter instead of being an exact match. - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - Get-Team - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Specify this parameter to return teams with the provided display name as a filter. As the display name is not unique, multiple values can be returned. Note that this filter value is case-sensitive. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This acts as a filter instead of being an exact match. - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - Get-Team - - NumberOfThreads - - Specifies the number of threads to use. If you have sufficient network bandwidth and want to decrease the time required to retrieve the list of teams, use the -NumberOfThreads parameter, which supports a value from 1 through 20. - - Int32 - - Int32 - - - 20 - - - - - - Archived - - If $true, filters to return teams that have been archived. If $false, filters to return teams that have not been archived. Do not specify any value to return teams that match filter regardless of archived state. This is a filter rather than an exact match. - - Boolean - - Boolean - - - None - - - DisplayName - - Specify this parameter to return teams with the provided display name as a filter. As the display name is not unique, multiple values can be returned. Note that this filter value is case-sensitive. - - String - - String - - - None - - - GroupId - - Specify the specific GroupId (as a string) of the team to be returned. This is a unique identifier and returns exact match. - - String - - String - - - None - - - MailNickName - - Specify the mailnickname of the team that is being returned. This acts as a filter instead of being an exact match. - - String - - String - - - None - - - NumberOfThreads - - Specifies the number of threads to use. If you have sufficient network bandwidth and want to decrease the time required to retrieve the list of teams, use the -NumberOfThreads parameter, which supports a value from 1 through 20. - - Int32 - - Int32 - - - 20 - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - Visibility - - Filters to return teams with a set "visibility" value. Accepted values are "Public", "Private" or "HiddenMembership". Do not specify any value to return teams that match filter regardless of visibility. This is a filter rather than an exact match. - - String - - String - - - None - - - - - - UPN - - - - - - - - UserID - - - - - - - - - - Team - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Get-Team -User dmx1@example.com - - Returns all teams that a user (dmx1@example.com) belongs to - - - - -------------------------- Example 2 -------------------------- - PS> Get-Team -Archived $true -Visibility Private - - Returns all teams that are private and have been archived. - - - - -------------------------- Example 3 -------------------------- - PS> Get-Team -MailNickName "BusinessDevelopment" - - Returns the team with the specified MailNickName. (This acts as a filter rather than an exact match.) - - - - -------------------------- Example 4 -------------------------- - PS> Get-Team -DisplayName "Sales and Marketing" - - Returns the team that includes the specified text in its DisplayName. (This acts as a filter rather than an exact match). - - - - -------------------------- Example 5 -------------------------- - PS> $team=[uri]::EscapeDataString('AB&C') -PS> Get-Team -DisplayName $team - - Returns the team that includes the specified escaped representation of its DisplayName, useful when the DisplayName has special characters. (This acts as a filter rather than an exact match.) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - New-Team - https://learn.microsoft.com/powershell/module/microsoftteams/new-team - - - Set-Team - https://learn.microsoft.com/powershell/module/microsoftteams/set-team - - - - - - Get-TeamAllChannel - Get - TeamAllChannel - - This cmdlet supports retrieving all channels of a team, including incoming channels and channels hosted by the team. - - - - This cmdlet supports retrieving all channels of a team, including incoming channels and channels hosted by the team. - - - - Get-TeamAllChannel - - GroupId - - Returns the Group ID of the team. - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display; Standard, Private, or Shared - - String - - String - - - None - - - - - - GroupId - - Returns the Group ID of the team. - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display; Standard, Private, or Shared - - String - - String - - - None - - - - - - GroupId - - - - - - - - MembershipType - - - - - - - - - - Channel - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamAllChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 - - Returns all channels of a team. - - - - -------------------------- Example 2 -------------------------- - Get-TeamAllChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -MembershipType Shared - - Returns all shared channels of a team. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamallchannel - - - Get-TeamChannel - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - Get-TeamIncomingChannel - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - - - - Get-TeamChannel - Get - TeamChannel - - This cmdlet supports retrieving channels hosted by a team. - - - - This cmdlet supports retrieving channels hosted by a team. - - - - Get-TeamChannel - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display, Standard or Private (available in private preview) - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Membership type of the channel to display, Standard or Private (available in private preview) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamChannel -GroupId af55e84c-dc67-4e48-9005-86e0b07272f9 - - Get channels of the group. - - - - -------------------------- Example 2 -------------------------- - Get-TeamChannel -GroupId af55e84c-dc67-4e48-9005-86e0b07272f9 -MembershipType Private - - Get all private channels of the group. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - - - - Get-TeamChannelUser - Get - TeamChannelUser - - Returns users of a channel. - - - - Note: This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (https://learn.microsoft.com/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](https://learn.microsoft.com/microsoftteams/teams-powershell-release-notes). - - - - Get-TeamChannelUser - - DisplayName - - Display name of the channel - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - DisplayName - - Display name of the channel - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamChannelUser -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Engineering" -Role Owner - - Get owners of channel with display name as "Engineering" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchanneluser - - - - - - Get-TeamIncomingChannel - Get - TeamIncomingChannel - - This cmdlet supports retrieving incoming channels of a team. - - - - This cmdlet supports retrieving incoming channels of a team. - - - - Get-TeamIncomingChannel - - GroupId - - Group ID of the team - - String - - String - - - None - - - - - - GroupId - - Group ID of the team - - String - - String - - - None - - - - - - GroupId - - - - - - - - - - Channel - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamIncomingChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 - - Returns incoming channels of a team. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamincomingchannel - - - Get-TeamChannel - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - Get-TeamAllChannel - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - - - - Get-TeamsApp - Get - TeamsApp - - Returns app information from the Teams tenant app store. - - - - Use any optional parameter to retrieve app information from the Teams tenant app store. - - - - Get-TeamsApp - - DisplayName - - Name of the app visible to users - - String - - String - - - None - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - ExternalId - - The external ID of the app, provided by the app developer and used by Microsoft Entra ID - - String - - String - - - None - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - DisplayName - - Name of the app visible to users - - String - - String - - - None - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - ExternalId - - The external ID of the app, provided by the app developer and used by Microsoft Entra ID - - String - - String - - - None - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 - - - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-TeamsApp -ExternalId b00080be-9b31-4927-9e3e-fa8024a7d98a -DisplayName <String>] [-DistributionMethod <String>] - - - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-TeamsApp -DisplayName SampleApp -DistributionMethod organization - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamsapp - - - - - - Get-TeamsArtifacts - Get - TeamsArtifacts - - The `Get-TeamsArtifacts` is available only to tenant administrators and is designed to export Recordings, Transcripts, Notes and Whiteboard artifacts of Teams Meetings. All parameters are optional. If no parameters are specified, artifact metadata is returned for Teams artifacts in all standard OneDrive for Business and SharePoint locations. The actual artifacts themselves can then be downloaded from the URLs in the metadata returned. Output is written to artifacts.json in the current directory. - - - - This cmdlet exports Recordings, Transcripts, Notes and Whiteboard artifacts of Teams Meetings. - - - - Get-TeamsArtifacts - - OneDrive - - Returns only artifacts that are hosted in the standard locations of that user's OneDrive for Business. - - String - - String - - - None - - - SharePoint - - Returns only the artifacts that are hosted in SharePoint sites (typically from channel meetings). - - - SwitchParameter - - - False - - - ArtifactType - - Filters the results to a single artifact type. It's s Enum containing only three values: RecordingTranscript | Notes | Whiteboard. - - String - - String - - - None - - - StartTime - - Omits artifacts that are last modified prior to this date and time. - - String - - String - - - None - - - EndTime - - Omits artifacts that are last modified after this date and time. - - String - - String - - - None - - - - - - OneDrive - - Returns only artifacts that are hosted in the standard locations of that user's OneDrive for Business. - - String - - String - - - None - - - SharePoint - - Returns only the artifacts that are hosted in SharePoint sites (typically from channel meetings). - - SwitchParameter - - SwitchParameter - - - False - - - ArtifactType - - Filters the results to a single artifact type. It's s Enum containing only three values: RecordingTranscript | Notes | Whiteboard. - - String - - String - - - None - - - StartTime - - Omits artifacts that are last modified prior to this date and time. - - String - - String - - - None - - - EndTime - - Omits artifacts that are last modified after this date and time. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-TeamsArtifacts -OneDrive user@contoso.com -StartTime "2025-06-20" -EndTime "2025-06-26" - - - - - - - - - - Get-TeamTargetingHierarchyStatus - Get - TeamTargetingHierarchyStatus - - Get the status of a hierarchy upload (see Set-TeamTargetingHierarchy (https://learn.microsoft.com/powershell/module/microsoftteams/set-teamtargetinghierarchy)) - - - - The `Get-TeamTargetingHierarchyStatus` cmdlet retrieves the status of a hierarchy upload initiated by the `Set-TeamTargetingHierarchy` cmdlet. It provides information about the success or failure of the upload, including any errors encountered during the process. - - - - Get-TeamTargetingHierarchyStatus - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - RequestId - - Specifies the ID returned by the Set-TeamTargetingHierarchy cmdlet. This parameter is optional and the status of the most recent upload will be retrieved. - - String - - String - - - None - - - - - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - RequestId - - Specifies the ID returned by the Set-TeamTargetingHierarchy cmdlet. This parameter is optional and the status of the most recent upload will be retrieved. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamTargetingHierarchy -FilePath d:\hier.csv - -Key Value ---- ----- -requestId c67e86109d88479e9708c3b7e8ff7217 - -PS C:\> Get-TeamTargetingHierarchyStatus -RequestId c67e86109d88479e9708c3b7e8ff7217 - -# When an error occurs, you will see the details in the ErrorMessage field. - -Id : c67e86109d88479e9708c3b7e8ff7217 -Status : Failed -LastKnownStatus : Validating -ErrorMessage : 1 error(s) were found. - Error: InvalidTeamId - Descriptions: - TeamID in row 2 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - TeamID in row 3 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - TeamID in row 4 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - TeamID in row 5 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - TeamID in row 6 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - TeamID in row 7 doesn't match a valid Group ID. Please view our documentation to learn how to get the proper Group ID for each team. - -LastUpdatedAt : 2021-02-17T22:28:08.7832795+00:00 -LastModifiedBy : a145d7eb-b70d-4591-9455-6c87382a22b7 -FileName : hier1.csv - -# When the hierarchy uploads and parses successfully, you will see this status. - -Id : c67e86109d88479e9708c3b7e8ff7217 -Status : Successful -LastKnownStatus : -ErrorMessage : -LastUpdatedAt : 2021-02-17T22:48:41.6664097+00:00 -LastModifiedBy : a145d7eb-b70d-4591-9455-6c87382a22b7 -FileName : hier.csv - - Prompts for user credentials to connect and manage a Microsoft Teams environment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamtargetinghierarchystatus - - - Set-TeamTargetingHierarchy - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamtargetinghierarchy - - - - - - Get-TeamUser - Get - TeamUser - - Returns users of a team. - - - - Returns an array containing the UPN, UserId, Name and Role of users belonging to an specific GroupId. - - - - Get-TeamUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Filter the results to only users with the given role: Owner or Member. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-TeamUser -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -Role Owner - - This example returns the UPN, UserId, Name, and Role of the owners of the specified GroupId. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamuser - - - - - - Get-TenantPrivateChannelMigrationStatus - Get - TenantPrivateChannelMigrationStatus - - You use the `Get-TenantPrivateChannelMigrationStatus` cmdlet to check the status of private channel migration for your tenant. - - - - The `Get-TenantPrivateChannelMigrationStatus` cmdlet allows tenant administrators to track the status of the private channel migration for their Microsoft Teams organization. More details about the migration can be found in the Microsoft Teams blog in New enhancements in Private Channels in Microsoft Teams unlock their full potentia (https://techcommunity.microsoft.com/blog/microsoftteamsblog/new-enhancements-in-private-channels-in-microsoft-teams-unlock-their-full-potent/4438767#). Note: This cmdlet requires tenant administrator permissions to execute. - - - - Get-TenantPrivateChannelMigrationStatus - - - - - - - None - - - This cmdlet does not accept pipeline input. - - - - - - - System.Object - - - Returns a `PrivateChannelMigrationStatusResponse` object with the following properties: - | Property | Type | Description | |---|---|---| | `TenantId` | String | The Microsoft Entra tenant identifier. | | `MigrationStatus` | String | Overall migration status for the tenant. Possible values: `NotStarted`, `InProgress`, `Completed`, `RequiresAdminAttention`. | | `MigrationStartTimeStamp` | DateTime | When migration started for this tenant. Empty if migration has not started. | | `MigrationCompletionTimeStamp` | DateTime | When migration completed. Only populated when all channels are done. | | `Details` | String | JSON string containing channel counts and per-channel detail arrays. | - - - - - Migration status values - - - | Value | Description | |---|---| | `NotStarted` | No private channels have been processed for this tenant. | | `InProgress` | Migration is underway. | | `Completed` | All private channels have been successfully migrated. | | `RequiresAdminAttention` | One or more channels were skipped because they have no owners. If these channels are still in use, a tenant admin or Teams service admin can add an owner to unblock migration. Failed channels do not require admin action and are retried automatically. | - - - - - Details JSON fields - - - | Field | Type | Description | |---|---|---| | `totalChannels` | Integer | Total number of private channels for this tenant. | | `migratedChannels` | Integer | Number of channels migrated successfully. | | `failedChannels` | Integer | Number of channels where migration failed. No admin action is needed. | | `ownerlessChannels` | Integer | Number of channels skipped because they have no owners. | | `remainingChannels` | Integer | Number of channels still in progress or not yet started. | | `ownerlessChannelsDetails` | Array | Per-channel details for ownerless channels. Each entry contains `channelThreadId` and `teamId`. | - - - - - Channel detail object - - - | Field | Type | Description | |---|---|---| | `channelThreadId` | String | The unique identifier of the private channel. | | `teamId` | String | The unique identifier (GroupId) of the parent team. This is the same value used by the `-GroupId` parameter in Get-Team (https://learn.microsoft.com/powershell/module/microsoftteams/get-team), [Get-TeamChannel](https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel), and [Microsoft Graph team resource](https://learn.microsoft.com/graph/api/resources/team). | - - - - - - - This cmdlet requires tenant administrator permissions. - - Private channels remain functional throughout the migration process. - - The `Details` property is returned as a JSON string. Use `ConvertFrom-Json` to parse it. - - When no ownerless channels exist, the `ownerlessChannelsDetails` array may be empty or omitted from the JSON. - - Ownerless channels were skipped because they have no owners. If these channels are still in use, a tenant admin or Teams service admin can add an owner using Add-TeamUser (https://learn.microsoft.com/powershell/module/microsoftteams/add-teamuser) and [Add-TeamChannelUser](https://learn.microsoft.com/powershell/module/microsoftteams/add-teamchanneluser). - - - - - -------------------------- Example 1 -------------------------- - Get-TenantPrivateChannelMigrationStatus - -TenantId : 12345678-1234-1234-1234-123456789abc -MigrationStatus : Completed -MigrationStartTimeStamp : 2025-10-09T10:15:00.456Z -MigrationCompletionTimeStamp : 2025-10-09T12:45:00.789Z -Details : {"totalChannels":10,"migratedChannels":10,"failedChannels":0,"ownerlessChannels":0,"remainingChannels":0} - - - - - - -------------------------- Example 2 -------------------------- - Get-TenantPrivateChannelMigrationStatus - -TenantId : 94d200e4-2df1-45b9-bc3e-53cfa7cf4997 -MigrationStatus : RequiresAdminAttention -MigrationStartTimeStamp : 2026-02-10T06:48:20.000Z -MigrationCompletionTimeStamp : -Details : {"totalChannels":10,"migratedChannels":6,"failedChannels":1,"ownerlessChannels":2,"remainingChannels":1,"ownerlessChannelsDetails":[{"channelThreadId":"19:70c903e82053408790c3941f614a4d36@thread.tacv2","teamId":"12025f7b-4e7d-4d4c-b597-10f52de1c198"},{"channelThreadId":"19:a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6@thread.tacv2","teamId":"b94ac03c-ba25-4e79-89ab-d23f707863f7"}]} - - - - - - -------------------------- Example 3 -------------------------- - $result = Get-TenantPrivateChannelMigrationStatus -$details = $result.Details | ConvertFrom-Json -Write-Host "Total: $($details.totalChannels), Migrated: $($details.migratedChannels), Failed: $($details.failedChannels), Ownerless: $($details.ownerlessChannels)" -if ($details.ownerlessChannelsDetails) { $details.ownerlessChannelsDetails | Format-Table channelThreadId, teamId } - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-tenantprivatechannelmigrationstatus - - - New enhancements in Private Channels in Microsoft Teams unlock their full potential - https://techcommunity.microsoft.com/blog/microsoftteamsblog/new-enhancements-in-private-channels-in-microsoft-teams-unlock-their-full-potent/4438767 - - - Microsoft Teams PowerShell Overview - https://learn.microsoft.com/powershell/teams/ - - - Get-Team - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - Get-TeamChannel - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamchannel - - - Add-TeamUser - https://learn.microsoft.com/powershell/module/microsoftteams/add-teamuser - - - Add-TeamChannelUser - https://learn.microsoft.com/powershell/module/microsoftteams/add-teamchanneluser - - - - - - New-Team - New - Team - - This cmdlet lets you provision a new Team for use in Microsoft Teams and will create an O365 Unified Group to back the team. - - - - Creates a new team with user specified settings, and returns a Group object with a GroupID property. - Groups created through teams cmdlets, APIs, or clients will not show up in Outlook by default. - If you want these groups to appear in Outlook clients, you can use the Set-UnifiedGroup (https://learn.microsoft.com/powershell/module/exchangepowershell/set-unifiedgroup) cmdlet in the Exchange Powershell Module to disable the switch parameter `HiddenFromExchangeClientsEnabled` (-HiddenFromExchangeClientsEnabled:$false). - Note: The Teams application may need to be open by an Owner for up to two hours before changes are reflected. - - - - New-Team - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreatePrivateChannels - - Determines whether private channel creation is allowed for the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Characters Limit - 256. - - String - - String - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. Note: If Microsoft 365 groups naming policies are enabled in your tenant, this parameter is required and must also comply with the naming policy. - For more details about the naming conventions see here: New-UnifiedGroup (https://learn.microsoft.com/powershell/module/exchangepowershell/new-unifiedgroup#parameters), Parameter: -Alias. - - String - - String - - - None - - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. Please note: This parameter is mandatory, if connected using Certificate Based Authentication. - - String - - String - - - None - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - - SwitchParameter - - - False - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - Template - - If you have an EDU license, you can use this parameter to specify which template you'd like to use for creating your group. Do not use this parameter when converting an existing group. - Valid values are: "EDU_Class" or "EDU_PLC" - - String - - String - - - None - - - Visibility - - Set to Public to allow all users in your organization to join the group by default. Set to Private to require that an owner approve the join request. - - String - - String - - - Private - - - - New-Team - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - GroupId - - Specify a GroupId to convert to a Team. If specified, you cannot provide the other values that are already specified by the existing group, namely: Visibility, Alias, Description, or DisplayName. If, for example, you need to create a Team from an existing Microsoft 365 Group, use the ExternalDirectoryObjectId property value returned by Get-UnifiedGroup (https://learn.microsoft.com/powershell/module/exchangepowershell/get-unifiedgroup). - - String - - String - - - None - - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. Please note: This parameter is mandatory, if connected using Certificate Based Authentication. - - String - - String - - - None - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - - SwitchParameter - - - False - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - True - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - True - - - AllowCreatePrivateChannels - - Determines whether private channel creation is allowed for the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - True - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - True - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - True - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - True - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - True - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - False - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - False - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - True - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - True - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - True - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - True - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - True - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Characters Limit - 256. - - String - - String - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - Moderate - - - GroupId - - Specify a GroupId to convert to a Team. If specified, you cannot provide the other values that are already specified by the existing group, namely: Visibility, Alias, Description, or DisplayName. If, for example, you need to create a Team from an existing Microsoft 365 Group, use the ExternalDirectoryObjectId property value returned by Get-UnifiedGroup (https://learn.microsoft.com/powershell/module/exchangepowershell/get-unifiedgroup). - - String - - String - - - None - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. Note: If Microsoft 365 groups naming policies are enabled in your tenant, this parameter is required and must also comply with the naming policy. - For more details about the naming conventions see here: New-UnifiedGroup (https://learn.microsoft.com/powershell/module/exchangepowershell/new-unifiedgroup#parameters), Parameter: -Alias. - - String - - String - - - None - - - Owner - - An admin who is allowed to create on behalf of another user should use this flag to specify the desired owner of the group. This user will be added as both a member and an owner of the group. If not specified, the user who creates the team will be added as both a member and an owner. Please note: This parameter is mandatory, if connected using Certificate Based Authentication. - - String - - String - - - None - - - RetainCreatedGroup - - Switch Parameter allowing toggle of group cleanup if team creation fails. The default value of this parameter is $false to retain with current functionality where the unified group is deleted if the step of adding a team to the group fails. Set it to $true to retain the unified group created even if team creation fails to allow self-retry of team creation or self-cleanup of group as appropriate. - - SwitchParameter - - SwitchParameter - - - False - - - ShowInTeamsSearchAndSuggestions - - Setting that determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients. - - Boolean - - Boolean - - - True - - - Template - - If you have an EDU license, you can use this parameter to specify which template you'd like to use for creating your group. Do not use this parameter when converting an existing group. - Valid values are: "EDU_Class" or "EDU_PLC" - - String - - String - - - None - - - Visibility - - Set to Public to allow all users in your organization to join the group by default. Set to Private to require that an owner approve the join request. - - String - - String - - - Private - - - - - - - GroupId - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-Team -DisplayName "Tech Reads" - - This example creates a team with all parameters with their default values. - - - - -------------------------- Example 2 -------------------------- - New-Team -DisplayName "Tech Reads" -Description "Team to post technical articles and blogs" -Visibility Public - - This example creates a team with a specific description and public visibility. - - - - -------------------------- Example 3 -------------------------- - $group = New-Team -MailNickname "TestTeam" -displayname "Test Teams" -Visibility "private" -Add-TeamUser -GroupId $group.GroupId -User "fred@example.com" -Add-TeamUser -GroupId $group.GroupId -User "john@example.com" -Add-TeamUser -GroupId $group.GroupId -User "wilma@example.com" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Q4 planning" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Exec status" -New-TeamChannel -GroupId $group.GroupId -DisplayName "Contracts" - - This example creates a team, adds three members to it, and creates three channels within it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-team - - - Remove-Team - https://learn.microsoft.com/powershell/module/microsoftteams/remove-team - - - Get-Team - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - Set-Team - https://learn.microsoft.com/powershell/module/microsoftteams/set-team - - - - - - New-TeamChannel - New - TeamChannel - - Add a new channel to a team. - - - - Add a new channel to a team. - - - - New-TeamChannel - - Description - - Channel description. Channel description can be up to 1024 characters. - - String - - String - - - None - - - DisplayName - - Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Channel membership type, Standard, Shared, or Private. - - String - - String - - - None - - - Owner - - UPN of owner that can be specified while creating a private channel. - - String - - String - - - None - - - - - - Description - - Channel description. Channel description can be up to 1024 characters. - - String - - String - - - None - - - DisplayName - - Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MembershipType - - Channel membership type, Standard, Shared, or Private. - - String - - String - - - None - - - Owner - - UPN of owner that can be specified while creating a private channel. - - String - - String - - - None - - - - - - GroupId - - - - - - - - DisplayName - - - - - - - - Description - - - - - - - - MembershipType - - - - - - - - Owner - - - - - - - - - - Id - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-TeamChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -DisplayName "Architecture" - - Create a standard channel with display name as "Architecture" - - - - -------------------------- Example 2 -------------------------- - New-TeamChannel -GroupId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -DisplayName "Engineering" -MembershipType Private - - Create a private channel with display name as "Engineering" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-teamchannel - - - - - - New-TeamsApp - New - TeamsApp - - Creates a new app in the Teams tenant app store. - - - - Use a Teams app manifest zip file to upload an app to the tenant app store. DistributionMethod specifies that the app should be added to the organization. - - - - New-TeamsApp - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - DistributionMethod - - The type of app in Teams: global or organization. For LOB apps, use "organization" - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-TeamsApp -DistributionMethod organization -Path c:\Path\SampleApp.zip - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-teamsapp - - - - - - Remove-SharedWithTeam - Remove - SharedWithTeam - - This cmdlet supports unsharing a channel with a team. - - - - This cmdlet supports unsharing a channel with a team. - - - - Remove-SharedWithTeam - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - ChannelId - - Thread ID of the shared channel. - - String - - String - - - None - - - HostTeamId - - Team ID of the host team (Group ID). - - String - - String - - - None - - - SharedWithTeamId - - Team ID of the shared with team. - - String - - String - - - None - - - - - - HostTeamId - - - - - - - - ChannelId - - - - - - - - SharedWithTeamId - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-SharedWithTeam -HostTeamId 126b90a5-e65a-4fef-98e3-d9b49f4acf12 -ChannelId 19:cUfyYYw3h_t-1KG8-WkvVa7KLEsIx-JHmyeG43VJojg1@thread.tacv2 --SharedWithTeam d2aad370-c6ca-438b-b4d7-05f0aa911a7b - - Unshares a channel with a team. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-sharedwithteam - - - Remove-Team - https://learn.microsoft.com/powershell/module/microsoftteams/remove-team - - - - - - Remove-Team - Remove - Team - - This cmdlet deletes a specified Team from Microsoft Teams. - NOTE: The associated Office 365 Unified Group will also be removed. - - - - Removes a specified team via GroupID and all its associated components, like O365 Unified Group... - - - - Remove-Team - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-Team -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-team - - - New-Team - https://learn.microsoft.com/powershell/module/microsoftteams/new-team - - - - - - Remove-TeamChannel - Remove - TeamChannel - - Delete a channel. - - - - This will not delete content in associated tabs. - Note: The channel will be "soft deleted", meaning the contents are not permanently deleted for a time. So a subsequent call to Add-TeamChannel using the same channel name will fail if enough time has not passed. - > [!IMPORTANT] > Modules in the PS INT gallery for Microsoft Teams run on the /beta version in Microsoft Graph and are subject to change. Int modules can be install from here `https://www.poshtestgallery.com/packages/MicrosoftTeams`. - - - - Remove-TeamChannel - - DisplayName - - Channel name to be deleted - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - DisplayName - - Channel name to be deleted - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamChannel -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Tech Reads" - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-teamchannel - - - - - - Remove-TeamChannelUser - Remove - TeamChannelUser - - Removes a user from a channel in Microsoft Teams. - - - - > [!NOTE] > This cmdlet is part of the Public Preview version of Teams PowerShell Module, for more information see Install Teams PowerShell public preview (/microsoftteams/teams-powershell-install#install-teams-powershell-public-preview) and also see [Microsoft Teams PowerShell Release Notes](/microsoftteams/teams-powershell-release-notes). - The command will return immediately, but the Teams application will not reflect the update immediately, please refresh the members page to see the update. - To turn an existing Owner into a Member, specify role parameter as Owner. - > [!NOTE] > Last owner cannot be removed from the private channel. - - - - Remove-TeamChannelUser - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Use this to demote a user from owner to member of the team - - String - - String - - - None - - - User - - User's email address (e.g. johndoe@example.com) - - String - - String - - - None - - - - - - DisplayName - - Display name of the private channel - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - Use this to demote a user from owner to member of the team - - String - - String - - - None - - - User - - User's email address (e.g. johndoe@example.com) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamChannelUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -DisplayName "Engineering" -User dmx@example.com - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-teamchanneluser - - - - - - Remove-TeamsApp - Remove - TeamsApp - - Removes an app in the Teams tenant app store. - - - - Removes an app in the Teams tenant app store. - - - - Remove-TeamsApp - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-teamsapp - - - - - - Remove-TeamTargetingHierarchy - Remove - TeamTargetingHierarchy - - Removes the tenant's hierarchy. - - - - Removes the tenant's hierarchy. - - - - Remove-TeamTargetingHierarchy - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - - - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-TeamTargetingHierarchy - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/connect-microsoftteams - - - Set-TeamTargetingHierarchy - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamtargetinghierarchy - - - - - - Remove-TeamUser - Remove - TeamUser - - Remove an owner or member from a team, and from the unified group which backs the team. - - - - Note: The command will return immediately, but the Teams application will not reflect the update immediately. The Teams application may need to be open for up to an hour before changes are reflected. - Note: The last owner cannot be removed from the team. - - - - Remove-TeamUser - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - If cmdlet is called with -Role parameter as "Owner", the specified user is removed as an owner of the team but stays as a team member. - If cmdlet is called with -Role parameter as "Member", the specified user will be removed as an owner and member. - Note: The last owner cannot be removed from the team. - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - Role - - If cmdlet is called with -Role parameter as "Owner", the specified user is removed as an owner of the team but stays as a team member. - If cmdlet is called with -Role parameter as "Member", the specified user will be removed as an owner and member. - Note: The last owner cannot be removed from the team. - - String - - String - - - None - - - User - - User's UPN (user principal name - e.g. johndoe@example.com) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com -Role Owner - - In this example, the user "dmx" is removed the role Owner but stays as a team member. - - - - -------------------------- Example 2 -------------------------- - Remove-TeamUser -GroupId 31f1ff6c-d48c-4f8a-b2e1-abca7fd399df -User dmx@example.com - - In this example, the user "dmx" is removed from the team. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-teamuser - - - - - - Set-Team - Set - Team - - This cmdlet allows you to update properties of a team, including its displayname, description, and team-specific settings. - - - - This cmdlet allows you to update properties of a team, including its displayname, description, and team-specific settings. This cmdlet includes all settings that used to be set using the Set-TeamFunSettings, Set-TeamGuestSettings, etc. cmdlets - - - - Set-Team - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - None - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - None - - - AllowCreatePrivateChannels - - Determines whether private channel creation is allowed for the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - None - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - None - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - None - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - None - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - None - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - None - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - None - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - None - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Team Description Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Team Name Characters Limit - 256. - - String - - String - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - - String - - String - - - None - - - ShowInTeamsSearchAndSuggestions - - The parameter has been deprecated. - - Boolean - - Boolean - - - None - - - Visibility - - Team visibility. Valid values are "Private" and "Public" - - String - - String - - - None - - - - - - AllowAddRemoveApps - - Boolean value that determines whether or not members (not only owners) are allowed to add apps to the team. - - Boolean - - Boolean - - - None - - - AllowChannelMentions - - Boolean value that determines whether or not channels in the team can be @ mentioned so that all users who follow the channel are notified. - - Boolean - - Boolean - - - None - - - AllowCreatePrivateChannels - - Determines whether private channel creation is allowed for the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateChannels - - Setting that determines whether or not members (and not just owners) are allowed to create channels. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveConnectors - - Setting that determines whether or not members (and not only owners) can manage connectors in the team. - - Boolean - - Boolean - - - None - - - AllowCreateUpdateRemoveTabs - - Setting that determines whether or not members (and not only owners) can manage tabs in channels. - - Boolean - - Boolean - - - None - - - AllowCustomMemes - - Setting that determines whether or not members can use the custom memes functionality in teams. - - Boolean - - Boolean - - - None - - - AllowDeleteChannels - - Setting that determines whether or not members (and not only owners) can delete channels in the team. - - Boolean - - Boolean - - - None - - - AllowGiphy - - Setting that determines whether or not giphy can be used in the team. - - Boolean - - Boolean - - - None - - - AllowGuestCreateUpdateChannels - - Setting that determines whether or not guests can create channels in the team. - - Boolean - - Boolean - - - None - - - AllowGuestDeleteChannels - - Setting that determines whether or not guests can delete in the team. - - Boolean - - Boolean - - - None - - - AllowOwnerDeleteMessages - - Setting that determines whether or not owners can delete messages that they or other members of the team have posted. - - Boolean - - Boolean - - - None - - - AllowStickersAndMemes - - Setting that determines whether stickers and memes usage is allowed in the team. - - Boolean - - Boolean - - - None - - - AllowTeamMentions - - Setting that determines whether the entire team can be @ mentioned (which means that all users will be notified) - - Boolean - - Boolean - - - None - - - AllowUserDeleteMessages - - Setting that determines whether or not members can delete messages that they have posted. - - Boolean - - Boolean - - - None - - - AllowUserEditMessages - - Setting that determines whether or not users can edit messages that they have posted. - - Boolean - - Boolean - - - None - - - Classification - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Description - - Team description. Team Description Characters Limit - 1024. - - String - - String - - - None - - - DisplayName - - Team display name. Team Name Characters Limit - 256. - - String - - String - - - None - - - GiphyContentRating - - Setting that determines the level of sensitivity of giphy usage that is allowed in the team. Accepted values are "Strict" or "Moderate" - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - MailNickName - - The MailNickName parameter specifies the alias for the associated Office 365 Group. This value will be used for the mail enabled object and will be used as PrimarySmtpAddress for this Office 365 Group. The value of the MailNickName parameter has to be unique across your tenant. - - String - - String - - - None - - - ShowInTeamsSearchAndSuggestions - - The parameter has been deprecated. - - Boolean - - Boolean - - - None - - - Visibility - - Team visibility. Valid values are "Private" and "Public" - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-Team -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -DisplayName "Updated TeamName" -Visibility Public - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-team - - - Get-Team - https://learn.microsoft.com/powershell/module/microsoftteams/get-team - - - New-Team - https://learn.microsoft.com/powershell/module/microsoftteams/new-team - - - - - - Set-TeamArchivedState - Set - TeamArchivedState - - This cmdlet is used to freeze all of the team activity, but Teams Administrators and team owners will still be able to add or remove members and update roles. You can unarchive the team anytime. - - - - This cmdlet is used to freeze all of the team activity and also specify whether SharePoint site should be marked as Read-Only. Teams administrators and team owners will still be able to add or remove members and update roles. You can unarchive the team anytime. - - - - Set-TeamArchivedState - - Archived - - Boolean value that determines whether or not the Team is archived. - - Boolean - - Boolean - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - SetSpoSiteReadOnlyForMembers - - Use this parameter switch to make the SharePoint site read-only for team members. - - Boolean - - Boolean - - - None - - - - - - Archived - - Boolean value that determines whether or not the Team is archived. - - Boolean - - Boolean - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - SetSpoSiteReadOnlyForMembers - - Use this parameter switch to make the SharePoint site read-only for team members. - - Boolean - - Boolean - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$true - - This example sets the group with id 105b16e2-dc55-4f37-a922-97551e9e862d as archived - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$true -SetSpoSiteReadOnlyForMembers:$true - - This example sets the group with id 105b16e2-dc55-4f37-a922-97551e9e862d as archived and makes the SharePoint site read-only for team members. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-TeamArchivedState -GroupId 105b16e2-dc55-4f37-a922-97551e9e862d -Archived:$false - - This example unarchives the group with id 105b16e2-dc55-4f37-a922-97551e9e862d. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamarchivedstate - - - - - - Set-TeamChannel - Set - TeamChannel - - Update Team channels settings. - - - - > [!IMPORTANT] > Modules in the PS INT gallery for Microsoft Teams run on the /beta version in Microsoft Graph and are subject to change. Int modules can be install from here `https://www.poshtestgallery.com/packages/MicrosoftTeams`. - - - - Set-TeamChannel - - CurrentDisplayName - - Current channel name - - String - - String - - - None - - - Description - - Updated Channel description. Channel Description Characters Limit - 1024. - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - NewDisplayName - - New Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - - - - CurrentDisplayName - - Current channel name - - String - - String - - - None - - - Description - - Updated Channel description. Channel Description Characters Limit - 1024. - - String - - String - - - None - - - GroupId - - GroupId of the team - - String - - String - - - None - - - NewDisplayName - - New Channel display name. Names must be 50 characters or less, and can't contain the characters # % & * { } / \ : < > ? + | ' " - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamChannel -GroupId c58566a6-4bb4-4221-98d4-47677dbdbef6 -CurrentDisplayName TechReads -NewDisplayName "Technical Reads" - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamchannel - - - - - - Set-TeamPicture - Set - TeamPicture - - Update the team picture. - - - - Note: the command will return immediately, but the Teams application will not reflect the update immediately. The Teams application may need to be open for up to an hour before changes are reflected. - Note: this cmdlet is not support in special government environments (TeamsGCCH and TeamsDoD) and is currently only supported in our beta release. - - - - Set-TeamPicture - - GroupId - - GroupId of the team - - String - - String - - - None - - - ImagePath - - File path and image ( .png, .gif, .jpg, or .jpeg) - - String - - String - - - None - - - - - - GroupId - - GroupId of the team - - String - - String - - - None - - - ImagePath - - File path and image ( .png, .gif, .jpg, or .jpeg) - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-TeamPicture -GroupId 2f162b0e-36d2-4e15-8ba3-ba229cecdccf -ImagePath c:\Image\TeamPicture.png - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teampicture - - - - - - Set-TeamsApp - Set - TeamsApp - - Updates an app in the Teams tenant app store. - - - - Use a Teams app manifest zip file to upload an app to the tenant app store. - - - - Set-TeamsApp - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - Id - - The app's ID generated by Teams (different from the external ID) - - String - - String - - - None - - - Path - - The local path of the app manifest zip file, for use in New and Set - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamsApp -Id b9cc7986-dd56-4b57-ab7d-9c4e5288b775 -Path c:\Path\SampleApp.zip - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamsapp - - - - - - Set-TeamTargetingHierarchy - Set - TeamTargetingHierarchy - - Upload a hierarchy to the tenant. A tenant may only have 1 active hierarchy. Each Set-TeamTargetingHierarchy cmdlet call will overwrite the previous one. - - - - A sample CSV file uses the following format: - `TargetName,ParentName,TeamId,Location:Clothing,Location:Jewelry,#Bucket1,#Bucket2`<br>`Apogee,,A8A6626F-87B3-4B8A-9469-47BCD1174673,0,0`<br>`New Jersey,Apogee,06763207-4F56-4DFE-96AE-4C7F9ADCFB43,0,0`<br>`Basking Ridge,NewJersey,5F44CC65-9521-4F7F-9099-64320153CA07,1,0`<br>`Mountain Lakes,NewJersey,58A21379-8E4D-4DA5-AA35-9CC188D8A998,0,1` - Based on the CSV file, the following hierarchy is created: - - Apogee - - &nbsp;&nbsp;&nbsp;New Jersey - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Basking Ridge - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mountain Lakes - - - - Set-TeamTargetingHierarchy - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - FilePath - - Specifies the path to a CSV file that defines the hierarchy. - - String - - String - - - None - - - - - - ApiVersion - - The version of the Hierarchy APIs to use. Valid values are: 1 or 2. - Currently only available in preview from version 6.6.1-preview. Specifying "-ApiVersion 2" will direct cmdlet requests to the newer version of the Hierarchy APIs. This integration is currently in preview/beta mode so customers should not try it on their production workloads but are welcome to try it on test workloads. This is an optional parameter and not specifying it will be interpreted as specifying "-ApiVersion 1", which will continue to direct cmdlet requests to the original version of the Hierarchy APIs until we upgrade production to v2, at which time we will set the default to 2. We do not expect this to have any impact on your cmdlet usage or existing scripts. - - String - - String - - - 1 - - - FilePath - - Specifies the path to a CSV file that defines the hierarchy. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamTargetingHierarchy -FilePath d:\hier.csv - -Key Value ---- ----- -requestId c67e86109d88479e9708c3b7e8ff7217 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/connect-microsoftteams - - - Get-TeamTargetingHierarchyStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-teamtargetinghierarchystatus - - - - - - Update-M365TeamsApp - Update - M365TeamsApp - - This cmdlet updates app state and app available values for the Microsoft Teams app. - - - - This cmdlet allows administrators to modify app state, availability and installation status by adding or removing users and groups or changing assignment type or installation status. - - - - Update-M365TeamsApp - - AppAssignmentType - - App availability type. - - String - - String - - - None - - - AppInstallType - - App installation type. - - String - - String - - - None - - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - AppAssignmentType - - App availability type. - - String - - String - - - None - - - AppInstallType - - App installation type. - - String - - String - - - None - - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - AppAssignmentType - - App availability type. - - String - - String - - - None - - - AppInstallType - - App installation type. - - String - - String - - - None - - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForOperationType - - Operation performed on the app installation. - - String - - String - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - OperationType - - Operation performed on the app assigment. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForOperationType - - Operation performed on the app installation. - - String - - String - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - OperationType - - Operation performed on the app assigment. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - IsBlocked - - The state of the app in the tenant. - - Boolean - - Boolean - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365TeamsApp - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - IsBlocked - - The state of the app in the tenant. - - Boolean - - Boolean - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - - - AppAssignmentType - - App availability type. - - String - - String - - - None - - - AppInstallType - - App installation type. - - String - - String - - - None - - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Id - - Application ID of Microsoft Teams app. - - String - - String - - - None - - - InstallForGroups - - List of all the groups for whom the app is installed. - - String[] - - String[] - - - None - - - InstallForOperationType - - Operation performed on the app installation. - - String - - String - - - None - - - InstallForUsers - - List of all the users for whom the app is installed. - - String[] - - String[] - - - None - - - InstallVersion - - App version to be installed. - - String - - String - - - None - - - IsBlocked - - The state of the app in the tenant. - - Boolean - - Boolean - - - None - - - OperationType - - Operation performed on the app assigment. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Update-M365TeamsApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -AppAssignmentType Everyone - - Updates the availability value for Bookings app (App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b) to Everyone. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Update-M365TeamsApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -IsBlocked $true -AppAssignmentType UsersAndGroups -OperationType Add -Users eec823bd-0979-4cf8-9924-85bb6ffcb57d, eec823bd-0979-4cf8-9924-85bb6ffcb57e -Groups 37da2d58-fc14-453e-9a14-5065ebd63a1d, 37da2d58-fc14-453e-9a14-5065ebd63a1e, 37da2d58-fc14-453e-9a14-5065ebd63a1b, 37da2d58-fc14-453e-9a14-5065ebd63a1f, 37da2d58-fc14-453e-9a14-5065ebd63a1a - - Unblocks CSP Customer App (App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b) and updates availability setting for the app to include 2 users and 5 groups. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Update-M365TeamsApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -IsBlocked $true - - Unblocks Bookings app (App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b). - - - - -------------------------- Example 4 -------------------------- - PS C:\> Update-M365TeamsApp -Id 2b876f4d-2e6b-4ee7-9b09-8893808c1380 -IsBlocked $false -AppInstallType UsersAndGroups -InstallForOperationType Add -InstallForUsers 77f5d400-a12e-4168-8e63-ccd2243d33a8,f2f4d8bc-1fb3-4292-867e-6d19efb0eb7c,37b6fc6a-32a4-4767-ac2e-c2f2307bad5c -InstallForGroups 926d57ad-431c-4e6a-9e16-347eacc91aa4 -InstallVersion 4.1.2 - - Unblocks 1Page App (App ID 2b876f4d-2e6b-4ee7-9b09-8893808c1380) and updates installation setting for the app to include 3 users and 1 group. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Update-M365TeamsApp - - - Get-AllM365TeamsApps - https://learn.microsoft.com/powershell/module/microsoftteams/get-allm365teamsapps - - - Get-M365TeamsApp - https://learn.microsoft.com/powershell/module/microsoftteams/get-allm365teamsapps - - - - - - Update-M365UnifiedCustomPendingApp - Update - M365UnifiedCustomPendingApp - - This cmdlet updates the review status for a custom Microsoft Teams app that is pending review from an IT Admin. The requester to publish the custom app will not be notified when this cmdlet is completed. - - - - This cmdlet allows administrators to reject or publish custom Microsoft Teams apps that are pending review from an IT Admin. - - - - Update-M365UnifiedCustomPendingApp - - Id - - Application ID of the Teams app. - - String - - String - - - None - - - ReviewStatus - - The review status of the Teams app. - - String - - String - - - None - - - - Update-M365UnifiedCustomPendingApp - - Id - - Application ID of the Teams app. - - String - - String - - - None - - - ReviewStatus - - The review status of the Teams app. - - String - - String - - - None - - - - - - Id - - Application ID of the Teams app. - - String - - String - - - None - - - ReviewStatus - - The review status of the Teams app. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - ## RELATED LINKS - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Published - - Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Published. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Rejected - - Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Rejected. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Update-M365UnifiedCustomPendingApp - - - - - - Update-M365UnifiedTenantSettings - Update - M365UnifiedTenantSettings - - This cmdlet updates tenant settings. - - - - This cmdlet allows administrators to modify tenant settings. - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Operation - - Operation performed (whether we are adding or removing users/groups). - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Operation - - Operation performed (whether we are adding or removing users/groups). - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingName - - Setting Name to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingName - - Setting Name to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingName - - Setting Name to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingName - - Setting Name to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingValue - - Setting Value to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingValue - - Setting Value to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - Update-M365UnifiedTenantSettings - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - SettingValue - - Setting Value to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - - - Groups - - List of all the groups for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - Operation - - Operation performed (whether we are adding or removing users/groups). - - String - - String - - - None - - - SettingName - - Setting Name to be changed. - - String - - String - - - None - - - SettingValue - - Setting Value to be changed. - - String - - String - - - None - - - Users - - List of all the users for whom the app is enabled or disabled. - - String[] - - String[] - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> PS C:\> Update-M365UnifiedTenantSettings -SettingName EnableCopilotExtensibility -SettingValue Some -Users d156010d-fb18-497f-804c-155ec2aa06d3,a62fba7e-e362-493c-a094-fdec17e2fee8 -Groups 37da2d58-fc14-453e-9a14-5065ebd63a1d, 37da2d58-fc14-453e-9a14-5065ebd63a1e -Operation add - - Updates the tenant setting for EnableCopilotExtensibility to 2 users and 2 groups. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Update-M365UnifiedTenantSettings -SettingName GlobalApp -SettingValue None - - Updates the tenant setting for GlobalApp to None - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/Update-M365UnifiedTenantSettings - - - - \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml b/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml deleted file mode 100644 index 7ac73b0879267..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/en-US/Microsoft.TeamsCmdlets.PowerShell.Connect.dll-Help.xml +++ /dev/null @@ -1,1199 +0,0 @@ - - - - - Clear-TeamsEnvironmentConfig - Clear - TeamsEnvironmentConfig - - Clears environment-specific configurations from the local machine set by running Set-TeamsEnvironmentConfig. - - - - This cmdlet clears environment-specific configurations from the local machine set by running Set-TeamsEnvironmentConfig. This helps in clearing and rectifying any wrong information set in Set-TeamsEnvironmentConfig. - - - - Clear-TeamsEnvironmentConfig - - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - We do not recommend using Clear-TeamsEnvironmentConfig in Commercial, GCC, GCC High, or DoD environments. This cmdlet is available in Microsoft Teams PowerShell module from version 5.2.0-GA. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Clear-TeamsEnvironmentConfig - - Clears environment-specific configurations from the local machine set by running Set-TeamsEnvironmentConfig. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/clear-teamsenvironmentconfig - - - - - - Connect-MicrosoftTeams - Connect - MicrosoftTeams - - The Connect-MicrosoftTeams cmdlet connects an authenticated account for use with cmdlets from the MicrosoftTeams module. - - - - The Connect-MicrosoftTeams cmdlet connects to Microsoft Teams with an authenticated account for use with cmdlets from the MicrosoftTeams PowerShell module. After executing this cmdlet, you can disconnect from MicrosoftTeams account using Disconnect-MicrosoftTeams. Note : With versions 4.x.x or later, enablement of basic authentication is not needed anymore in commercial, GCC, GCC High, and DoD environments. - - - - Connect-MicrosoftTeams - - AccessTokens - - Specifies access tokens for "MS Graph" and "Skype and Teams Tenant Admin API" resources. Both the tokens used should be of the same type. - - Application-based authentication has been reintroduced with version 4.7.1-preview. For details and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - Delegated flow - The following steps must be performed by Tenant Admin in the Azure portal when using your own application. - Steps to configure the Microsoft Entra application. 1. Go to Azure portal and go to App Registrations. 2. Create or select the existing application. 3. Add the following permission to this Application. 4. Click API permissions. 5. Click Add a permission. 6. Click on the Microsoft Graph, and then select Delegated permissions. 7. Add the following permissions: "AppCatalog.ReadWrite.All", "Group.ReadWrite.All", "User.Read.All", "TeamSettings.ReadWrite.All", "Channel.Delete.All", "ChannelSettings.ReadWrite.All", "ChannelMember.ReadWrite.All". 8. Next, we need to add "Skype and Teams Tenant Admin API" resource permission. Click Add a permission. 9. Navigate to "APIs my organization uses" 10. Search for "Skype and Teams Tenant Admin API", and then select Delegated permissions. 11. Add all the listed permissions. 12. Grant admin consent to both Microsoft Graph and "Skype and Teams Tenant Admin API" name. - - String[] - - String[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Connect-MicrosoftTeams - - AadAccessToken (Removed from version 2.3.2-preview) - - Specifies an Azure Active Directory Graph access token. > [!WARNING] >This parameter has been removed from version 2.3.2-preview. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - MsAccessToken (Removed from version 2.3.2-preview) - - Specifies a Microsoft Graph access token. > [!WARNING] >This parameter has been removed from version 2.3.2-preview. - - String - - String - - - None - - - TenantId - - Specifies the ID of a tenant. - If you do not specify this parameter, the account is authenticated with the home tenant. - You must specify the TenantId parameter to authenticate as a service principal or when using Microsoft account. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Connect-MicrosoftTeams - - AccountId - - Specifies the ID of an account. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Credential - - Specifies a PSCredential object. For more information about the PSCredential object, type Get-Help Get-Credential. - The PSCredential object provides the user ID and password for organizational ID credentials. - - PSCredential - - PSCredential - - - None - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - TeamsEnvironmentName - - Specifies the Teams environment. The following environments are supported: - - Commercial or GCC environments: Don't use this parameter, this is the default. - GCC High environment: TeamsGCCH - DoD environment: TeamsDOD - Microsoft Teams operated by 21Vianet: TeamsChina - - String - - String - - - None - - - TenantId - - Specifies the ID of a tenant. - If you do not specify this parameter, the account is authenticated with the home tenant. - You must specify the TenantId parameter to authenticate as a service principal or when using Microsoft account. - - String - - String - - - None - - - UseDeviceAuthentication - - Use device code authentication instead of a browser control. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Connect-MicrosoftTeams - - ApplicationId - - Specifies the application ID of the service principal that is used in application-based authentication. - This parameter has been reintroduced with version 4.7.1-preview. For more information about Application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - String - - String - - - None - - - Certificate - - Specifies the certificate that is used for application-based authentication. A valid value is the X509Certificate2 object value of the certificate. - This parameter has been introduced with version 4.9.2-preview. For more information about application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - X509Certificate2 - - X509Certificate2 - - - None - - - CertificateThumbprint - - Specifies the certificate thumbprint of a digital public key X.509 certificate of an application that has permission to perform this action. - This parameter has been reintroduced with version 4.7.1-preview. For more information about Application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - TenantId - - Specifies the ID of a tenant. - If you do not specify this parameter, the account is authenticated with the home tenant. - You must specify the TenantId parameter to authenticate as a service principal or when using Microsoft account. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Connect-MicrosoftTeams - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Identity - - Login using managed service identity in the current environment. For *-Cs cmdlets, this is supported from version 5.8.1-preview onwards. - > [!Note] > This is currently only supported in commercial environments. A few cmdlets (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication#cmdlets-supported)that don't support application-based authentication are not supported either. - - - SwitchParameter - - - False - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - ManagedServiceHostName - - Host name for managed service login. - - String - - String - - - None - - - ManagedServicePort - - Port number for managed service login. - - Int32 - - Int32 - - - None - - - ManagedServiceSecret - - Secret, used for some kinds of managed service login. - - SecureString - - SecureString - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AccessTokens - - Specifies access tokens for "MS Graph" and "Skype and Teams Tenant Admin API" resources. Both the tokens used should be of the same type. - - Application-based authentication has been reintroduced with version 4.7.1-preview. For details and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - Delegated flow - The following steps must be performed by Tenant Admin in the Azure portal when using your own application. - Steps to configure the Microsoft Entra application. 1. Go to Azure portal and go to App Registrations. 2. Create or select the existing application. 3. Add the following permission to this Application. 4. Click API permissions. 5. Click Add a permission. 6. Click on the Microsoft Graph, and then select Delegated permissions. 7. Add the following permissions: "AppCatalog.ReadWrite.All", "Group.ReadWrite.All", "User.Read.All", "TeamSettings.ReadWrite.All", "Channel.Delete.All", "ChannelSettings.ReadWrite.All", "ChannelMember.ReadWrite.All". 8. Next, we need to add "Skype and Teams Tenant Admin API" resource permission. Click Add a permission. 9. Navigate to "APIs my organization uses" 10. Search for "Skype and Teams Tenant Admin API", and then select Delegated permissions. 11. Add all the listed permissions. 12. Grant admin consent to both Microsoft Graph and "Skype and Teams Tenant Admin API" name. - - String[] - - String[] - - - None - - - AadAccessToken (Removed from version 2.3.2-preview) - - Specifies an Azure Active Directory Graph access token. > [!WARNING] >This parameter has been removed from version 2.3.2-preview. - - String - - String - - - None - - - AccountId - - Specifies the ID of an account. - - String - - String - - - None - - - ApplicationId - - Specifies the application ID of the service principal that is used in application-based authentication. - This parameter has been reintroduced with version 4.7.1-preview. For more information about Application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - String - - String - - - None - - - Certificate - - Specifies the certificate that is used for application-based authentication. A valid value is the X509Certificate2 object value of the certificate. - This parameter has been introduced with version 4.9.2-preview. For more information about application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - X509Certificate2 - - X509Certificate2 - - - None - - - CertificateThumbprint - - Specifies the certificate thumbprint of a digital public key X.509 certificate of an application that has permission to perform this action. - This parameter has been reintroduced with version 4.7.1-preview. For more information about Application-based authentication and supported cmdlets, see Application-based authentication in Teams PowerShell Module (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Credential - - Specifies a PSCredential object. For more information about the PSCredential object, type Get-Help Get-Credential. - The PSCredential object provides the user ID and password for organizational ID credentials. - - PSCredential - - PSCredential - - - None - - - Identity - - Login using managed service identity in the current environment. For *-Cs cmdlets, this is supported from version 5.8.1-preview onwards. - > [!Note] > This is currently only supported in commercial environments. A few cmdlets (https://learn.microsoft.com/microsoftteams/teams-powershell-application-authentication#cmdlets-supported)that don't support application-based authentication are not supported either. - - SwitchParameter - - SwitchParameter - - - False - - - LogFilePath - - The path where the log file for this PowerShell session is written to. Provide a value here if you need to deviate from the default PowerShell log file location. - - String - - String - - - None - - - LogLevel - - Specifies the log level. The acceptable values for this parameter are: - - Info - - Error - - Warning - - None - - The default value is Info. - - LogLevel - - LogLevel - - - None - - - ManagedServiceHostName - - Host name for managed service login. - - String - - String - - - None - - - ManagedServicePort - - Port number for managed service login. - - Int32 - - Int32 - - - None - - - ManagedServiceSecret - - Secret, used for some kinds of managed service login. - - SecureString - - SecureString - - - None - - - MsAccessToken (Removed from version 2.3.2-preview) - - Specifies a Microsoft Graph access token. > [!WARNING] >This parameter has been removed from version 2.3.2-preview. - - String - - String - - - None - - - TeamsEnvironmentName - - Specifies the Teams environment. The following environments are supported: - - Commercial or GCC environments: Don't use this parameter, this is the default. - GCC High environment: TeamsGCCH - DoD environment: TeamsDOD - Microsoft Teams operated by 21Vianet: TeamsChina - - String - - String - - - None - - - TenantId - - Specifies the ID of a tenant. - If you do not specify this parameter, the account is authenticated with the home tenant. - You must specify the TenantId parameter to authenticate as a service principal or when using Microsoft account. - - String - - String - - - None - - - UseDeviceAuthentication - - Use device code authentication instead of a browser control. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - ------------- Example 1: Connect to MicrosoftTeams ------------- - Connect-MicrosoftTeams -Account Environment Tenant TenantId -------- ----------- ------------------------------------ ------------------------------------ -user@contoso.com AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - - - - - - ------------- Example 2: Connect to MicrosoftTeams ------------- - $credential = Get-Credential -Connect-MicrosoftTeams -Credential $credential -Account Environment Tenant TenantId -------- ----------- ------------------------------------ ------------------------------------ -user@contoso.com AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - - - - - - Example 3: Connect to MicrosoftTeams in a specific environment - Connect-MicrosoftTeams -TeamsEnvironmentName TeamsGCCH -Account Environment Tenant TenantId -------- ----------- ------------------------------------ ------------------------------------ -user@contoso.com TeamsGCCH xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - - - - - - Example 4: Connect to MicrosoftTeams using a certificate thumbprint - Connect-MicrosoftTeams -CertificateThumbprint "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" -ApplicationId "00000000-0000-0000-0000-000000000000" -TenantId "YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY" - - - - - - Example 5: Connect to MicrosoftTeams using a certificate object - $cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\exampleCert.pfx",$password) -Connect-MicrosoftTeams -Certificate $cert -ApplicationId "00000000-0000-0000-0000-000000000000" -TenantId "YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY" - - - - - - Example 6: Connect to MicrosoftTeams using Application-based Access Tokens - $ClientSecret = "..." -$ApplicationID = "00000000-0000-0000-0000-000000000000" -$TenantID = "YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY" - -$graphtokenBody = @{ - Grant_Type = "client_credentials" - Scope = "https://graph.microsoft.com/.default" - Client_Id = $ApplicationID - Client_Secret = $ClientSecret -} - -$graphToken = Invoke-RestMethod -Uri "https://login.microsoftonline.com/$TenantID/oauth2/v2.0/token" -Method POST -Body $graphtokenBody | Select-Object -ExpandProperty Access_Token - -$teamstokenBody = @{ - Grant_Type = "client_credentials" - Scope = "48ac35b8-9aa8-4d74-927d-1f4a14a0b239/.default" - Client_Id = $ApplicationID - Client_Secret = $ClientSecret -} - -$teamsToken = Invoke-RestMethod -Uri "https://login.microsoftonline.com/$TenantID/oauth2/v2.0/token" -Method POST -Body $teamstokenBody | Select-Object -ExpandProperty Access_Token - -Connect-MicrosoftTeams -AccessTokens @("$graphToken", "$teamsToken") - - - - - - Example 7: Connect to MicrosoftTeams using Access Tokens in the delegated flow - $ClientID = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -$ClientSecret = "..." -$ClientSecret = [Net.WebUtility]::URLEncode($ClientSecret) -$TenantID = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -$Username = "user@contoso.onmicrosoft.com" -$Password = "..." -$Password = [Net.WebUtility]::URLEncode($Password) - -$URI = "https://login.microsoftonline.com/$TenantID/oauth2/v2.0/token" -$Body = "client_id=$ClientID&client_secret=$ClientSecret&grant_type=password&username=$Username&password=$Password" -$RequestParameters = @{ - URI = $URI - Method = "POST" - ContentType = "application/x-www-form-urlencoded" -} -$GraphToken = (Invoke-RestMethod @RequestParameters -Body "$Body&scope=https://graph.microsoft.com/.default").access_token -$TeamsToken = (Invoke-RestMethod @RequestParameters -Body "$Body&scope=48ac35b8-9aa8-4d74-927d-1f4a14a0b239/.default").access_token -Connect-MicrosoftTeams -AccessTokens @($GraphToken, $TeamsToken) - -Account Environment Tenant TenantId -------- ----------- ------------------------------------ ------------------------------------ -user@contoso.com AzureCloud xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/connect-microsoftteams - - - - - - Disconnect-MicrosoftTeams - Disconnect - MicrosoftTeams - - - - - - - - - - Disconnect-MicrosoftTeams - - Confirm - - Proactively accepts any confirmation prompts. - - - SwitchParameter - - - False - - - WhatIf - - Simulates what would happen if the cmdlet is run. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Proactively accepts any confirmation prompts. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Simulates what would happen if the cmdlet is run. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Disconnect-MicrosoftTeams - - Disconnects from the Microsoft Teams environment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/disconnect-microsoftteams - - - - - - Set-TeamsEnvironmentConfig - Set - TeamsEnvironmentConfig - - Sets environment-specific configurations on the local machine and is used to connect to the right environment when running Connect-MicrosoftTeams. - - - - This cmdlet sets environment-specific configurations like endpoint URIs(such as Microsoft Entra ID and Microsoft Graph) and Teams environment (such as GCCH and DOD) on the local machine. - When running Connect-MicrosoftTeams, environment-specific information set in this cmdlet will be considered unless overridden by Connect-MicrosoftTeams parameters. - Parameters passed to Connect-MicrosoftTeams will take precedence over the information set by this cmdlet. - Clear-TeamsEnvironmentConfig should not be used in Commercial, GCC, GCC High, or DoD environments. - - - - Set-TeamsEnvironmentConfig - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - EndpointUris - - Provides custom endpoints. - - Hashtable - - Hashtable - - - None - - - TeamsEnvironmentName - - Provides a Teams environment to connect to, for example, Teams GCCH or Teams DoD. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - EndpointUris - - Provides custom endpoints. - - Hashtable - - Hashtable - - - None - - - TeamsEnvironmentName - - Provides a Teams environment to connect to, for example, Teams GCCH or Teams DoD. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - Set-TeamsEnvironmentConfig should not be used in Commercial, GCC, GCC High, or DoD environments. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-TeamsEnvironmentConfig -TeamsEnvironmentName TeamsChina - - Sets the environment as Gallatin China on a local machine and when Connect-MicrosoftTeams is run, authentication will happen in the Gallatin China cloud and Microsoft Teams module will connect to the Gallatin environment. - - - - -------------------------- Example 2 -------------------------- - $endPointUriDict = @{ActiveDirectory = 'https://login.microsoftonline.us/';MsGraphEndpointResourceId = 'https://graph.microsoft.us'} -Set-TeamsEnvironmentConfig -TeamsEnvironmentName $endPointUriDict - - Sets endpoint URIs required for special clouds. - - - - -------------------------- Example 3 -------------------------- - Set-TeamsEnvironmentConfig -TeamsEnvironmentName TeamsChina - -$cred=get-credential -Move-CsUser -Identity "PilarA@contoso.com" -Target "sipfed.online.lync.com" -Credential $cred - - This cmdlet is mainly introduced to support Skype for Business to Microsoft Teams user migration using Move-CsUser. - This example shows how tenant admins can run Move-CsUser in Gallatin and other special clouds after setting the environment configuration using Set-TeamsEnvironmentConfig. - Note that Set-TeamsEnvironmentConfig needs to be run only once for each machine. There is no need to run it each time before running Move-CsUser. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-teamsenvironmentconfig - - - - \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/en-US/MicrosoftTeams-help.xml b/Modules/MicrosoftTeams/7.8.0/en-US/MicrosoftTeams-help.xml deleted file mode 100644 index 9d7f47dd92639..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/en-US/MicrosoftTeams-help.xml +++ /dev/null @@ -1,112910 +0,0 @@ - - - - - Clear-CsOnlineTelephoneNumberOrder - Clear - CsOnlineTelephoneNumberOrder - - Use the `Clear-CsOnlineTelephoneNumberOrder` cmdlet to cancel a specific telephone number search order and release the telephone numbers. The telephone numbers can then be available for search and acquire. - - - - Use the `Clear-CsOnlineTelephoneNumberOrder` cmdlet to cancel a specific telephone number search order and release the telephone numbers. The telephone numbers can then be available for search and acquire. - - - - Clear-CsOnlineTelephoneNumberOrder - - OrderId - - Specifies the telephone number search order to look up. Use `New-CsOnlineTelephoneNumberOrder` to create a search order to obtain a search order Id. - - String - - String - - - None - - - - - - OrderId - - Specifies the telephone number search order to look up. Use `New-CsOnlineTelephoneNumberOrder` to create a search order to obtain a search order Id. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Clear-CsOnlineTelephoneNumberOrder -OrderId 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -PS C:\> Get-CsOnlineTelephoneNumberOrder -OrderId 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 - -AreaCode : -CivicAddressId : -CountryCode : US -CreatedAt : 8/23/2021 5:43:44 PM -Description : test -ErrorCode : NoError -Id : 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -InventoryType : Subscriber -IsManual : False -Name : test -NumberPrefix : 1718 -NumberType : UserSubscriber -Quantity : 1 -ReservationExpiryDate : 8/23/2021 5:59:45 PM -SearchType : Prefix -SendToServiceDesk : False -Status : Cancelled -TelephoneNumber : {Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TelephoneNumberSearchResult} - -PS C:\> $order.TelephoneNumber - -Location TelephoneNumber --------- --------------- -New York City +17182000004 - - This example cancels the purchase of the telephone number order containing the phone number +17182000004. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - - - - Complete-CsOnlineTelephoneNumberOrder - Complete - CsOnlineTelephoneNumberOrder - - Use the `Complete-CsOnlineTelephoneNumberOrder` cmdlet to complete a specific telephone number search order and confirm the purchase of the new telephone numbers. The telephone numbers can then be used to set up calling features for users and services in your organization. - - - - Use the `Complete-CsOnlineTelephoneNumberOrder` cmdlet to complete a specific telephone number search order and confirm the purchase of the new telephone numbers. The telephone numbers can then be used to set up calling features for users and services in your organization. - - - - Complete-CsOnlineTelephoneNumberOrder - - OrderId - - Specifies the telephone number search order to look up. Use `New-CsOnlineTelephoneNumberOrder` to create a search order to obtain a search order Id. - - String - - String - - - None - - - - - - OrderId - - Specifies the telephone number search order to look up. Use `New-CsOnlineTelephoneNumberOrder` to create a search order to obtain a search order Id. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Complete-CsOnlineTelephoneNumberOrder -OrderId 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -PS C:\> Get-CsOnlineTelephoneNumberOrder -OrderId 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 | fl - -AreaCode : -CivicAddressId : -CountryCode : US -CreatedAt : 8/23/2021 5:43:44 PM -Description : test -ErrorCode : NoError -Id : 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -InventoryType : Subscriber -IsManual : False -Name : test -NumberPrefix : 1718 -NumberType : UserSubscriber -Quantity : 1 -ReservationExpiryDate : 8/23/2021 5:59:45 PM -SearchType : Prefix -SendToServiceDesk : False -Status : Completed -TelephoneNumber : {Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TelephoneNumberSearchResult} - -PS C:\> (Get-CsOnlineTelephoneNumberOrder -OrderId 1efd85ca-dd46-41b3-80a0-2e4c5f87c912).TelephoneNumber - -Location TelephoneNumber --------- --------------- -New York City +17182000004 - - This example completes the purchase of the telephone number order containing the phone number +17182000004. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - - - - Disable-CsOnlineSipDomain - Disable - CsOnlineSipDomain - - This cmdlet prevents provisioning of users in Skype for Business Online for the specified domain. - - - - This cmdlet allows organizations with multiple on-premises deployments of Skype For Business Server or Lync Server to safely synchronize users from multiple forests into a single Office 365 tenant. - Note: Only one Skype for Business forest can be in hybrid mode at a given time. For full details on this scenario, including step-by-step instructions, see Cloud consolidation for Teams and Skype for Business (https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation). - This cmdlet enables organizations with multiple on-premises deployments of Skype for Business Server (or Lync Server) to safely synchronize users from multiple forests into a single Office 365 tenant. When an online SIP domain is disabled in Skype for Business Online, provisioning is blocked for users in this SIP domain. This ensures routing for any on-premises users in this SIP domain continues to function properly. - This cmdlet facilitates consolidation of multiple Skype for Business Server deployments into a single Office 365 tenant. Consolidation can be achieved by moving one deployment at a time into Office 365, provided the following key requirements are met : - - There must be at most 1 O365 tenant involved. Consolidation in scenarios with >1 O365 tenant is not supported. - - At any given time, only 1 on-premises SfB forest can be in hybrid mode (Shared Sip Address Space) with Office 365. All other on-premises SfB forests must remain on-premises. (They presumably are federated with each other.) - - If 1 deployment is in hybrid mode, all sip domains from any other SfB forests must be disabled using this cmdlet before they can be synchronized into the tenant with Microsoft Entra Connect. Users in all SfB forests other than the hybrid forest must remain on-premises. - - Organizations must fully migrate each SfB forest individually into the O365 tenant using hybrid mode (Shared Sip Address Space), and then detach the "hybrid" deployment, before moving on to migrate the next on-premises SfB deployment. - This cmdlet may also be useful for organizations with on-premises deployments of Skype for Business Server that have not properly configured Microsoft Entra Connect. If the organization does not sync msRTCSIP-DeploymentLocator for its users, then Skype for Business Online will attempt to provision online any users with an assigned Skype for Business license, despite there being users on-premises. While the correct fix is to update the configuration for Microsoft Entra Connect to sync those attributes, using Disable-CsOnlineSipDomain can also mitigate the problem until that configuration change can be made. If this cmdlet is run, any users that were previously provisioned online in that domain will be de-provisioned in Skype for Business Online. - Important: This cmdlet should not be run for domains that contain users hosted in Skype for Business Online. Any users in a sip domain that are already provisioned online will cease to function if you disable the online sip domain: - Their SIP addresses will be removed. - - All contacts and meetings for these users hosted in Skype for Business Online will be deleted. - - These users will no longer be able to login to the Skype for Business Online environment. - - If these users use Teams, they will no longer be able to inter-operate with Skype for Business users, nor will they be able to federate with any users in other organizations. - - Note: If the Tenant is enabled for Regionally Hosted Meetings in Skype for Business Online, Online SIP Domains must be disabled in all regions. You must execute this cmdlet in each region that is added in Allowed Data Location. - - - - Disable-CsOnlineSipDomain - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Domain - - > Applicable: Microsoft Teams - The SIP domain to be disabled for online provisioning in Skype for Business Online. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses all confirmation prompts that might occur when running the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Domain - - > Applicable: Microsoft Teams - The SIP domain to be disabled for online provisioning in Skype for Business Online. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses all confirmation prompts that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - This cmdlet is for advanced scenarios only. Organizations that are pure online or have only 1 on-premises deployment need not run this cmdlet. - - - - - -------------------------- Example 1 -------------------------- - Disable-CsOnlineSipDomain -Domain Fabrikam.com - - The cmdlet above disables the online sip domain Fabrikam.com. This would be useful in the case where a company, Contoso.com, that has Skype for Business acquires Fabrikam, which also has an on-premises deployment of Skype for Business Server. If Contoso is in hybrid mode with Skype for Business Online or if the intent is to configure it for hybrid, then if the organization wants to synchronize identities from Fabrikam.com into the same O365 tenant, the organization must first run this cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/disable-csonlinesipdomain - - - Enable-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/enable-csonlinesipdomain - - - Get-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinesipdomain - - - Cloud consolidation for Teams and Skype for Business - https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation - - - - - - Disable-CsTeamsShiftsConnectionErrorReport - Disable - CsTeamsShiftsConnectionErrorReport - - This cmdlet disables an error report. - - - - Note: This cmdlet is currently in public preview. - This cmdlet disables an error report. All available instances can be found by running Get-CsTeamsShiftsConnectionErrorReport (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionerrorreport). - - - - Disable-CsTeamsShiftsConnectionErrorReport - - ErrorReportId - - > Applicable: Microsoft Teams - The ID of the error report that you want to disable. - - String - - String - - - None - - - - - - ErrorReportId - - > Applicable: Microsoft Teams - The ID of the error report that you want to disable. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Disable-CsTeamsShiftsConnectionErrorReport -ErrorReportId 18b3e490-e6ed-4c2e-9925-47e36609dff3 - - Disables the error report with ID `18b3e490-e6ed-4c2e-9925-47e36609dff3`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/disable-csteamsshiftsconnectionerrorreport - - - Get-CsTeamsShiftsConnectionErrorReport - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionerrorreport - - - - - - Enable-CsOnlineSipDomain - Enable - CsOnlineSipDomain - - This cmdlet enables provisioning of users in Skype for Business Online for the specified domain. - - - - This cmdlet is only necessary to run if you previously disabled a domain using Disable-CsOnlineSipDomain. Enable-CsOnlineSipDomain is used to facilitate consolidation of separate Skype for Business deployments into a single Office 365 tenant. - This cmdlet enables online provisioning of users in the specified SIP domain. In conjunction with Disable-CsOnlineSipDomain, this cmdlet allows organizations to consolidate multiple on-premises deployments of Skype for Business Server (or Lync Server) into a single Office 365 tenant. Consolidation can be achieved by moving one deployment at a time into Office 365, provided the following key requirements are met: - - There must be at most 1 O365 tenant involved. Consolidation for scenarios with > 1 O365 tenant is not supported. - - At any given time, only 1 on-premises SfB forest can be in hybrid mode (Shared Sip Address Space) with Office 365. All other on-premises SfB forests must remain on-premises. (They presumably are federated with each other.) - - If 1 deployment is in hybrid mode, all online SIP domains from any other SfB forests must be disabled before they can be synchronized into the tenant with Microsoft Entra Connect. Users in all SfB forests other than the hybrid forest must remain on-premises. - - Organizations must fully migrate (e.g move all users to the cloud) each SfB forest individually into the O365 tenant using hybrid mode (Shared Sip Address Space), and then detach the "hybrid" deployment, before moving on to migrate the next on-premises SfB deployment. - Before running this cmdlet for any SIP domain in a Skype for Business Server deployment, you must complete migration of any other existing hybrid SfB deployment that is in progress. All users in an existing hybrid deployment must be moved to the cloud, and that existing hybrid deployment must be detached from Office 365, as described in this article: Disable hybrid to complete migration to the cloud (https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation-disabling-hybrid). - Important: If you have more than one on-premises deployment of Skype for Business Server, you must ensure SharedSipAddressSpace is disabled in all other Skype for Business Server deployments except the deployment containing the SIP domain that is being enabled. - Note: If the Tenant is enabled for Regionally Hosted Meetings in Skype for Business Online, Online SIP Domains must be Enabled in all regions. You must execute this cmdlet in each region that is added in Allowed Data Location for Skype for Business. - - - - Enable-CsOnlineSipDomain - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Domain - - > Applicable: Microsoft Teams - The SIP domain to be enabled for online provisioning in Skype for Business Online. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses all confirmation prompts that might occur when running the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Domain - - > Applicable: Microsoft Teams - The SIP domain to be enabled for online provisioning in Skype for Business Online. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses all confirmation prompts that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Enable-CsOnlineSipDomain -Domain contoso.com - - Enables the domain contoso.com for online provisioning in Skype for Business Online. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/enable-csonlinesipdomain - - - Disable-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/disable-csonlinesipdomain - - - Get-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinesipdomain - - - - - - Export-CsAcquiredPhoneNumber - Export - CsAcquiredPhoneNumber - - This cmdlet exports the list of phone numbers acquired by Teams Phone tenant. - - - - This cmdlet exports all the acquired phone numbers by the tenant to a file. The cmdlet is an asynchronus operation and will return an OrderId. Get-CsExportAcquiredPhoneNumberStatus (https://learn.microsoft.com/powershell/module/microsoftteams/get-csexportacquiredphonenumberstatus)cmdlet can be used to check the status of the OrderId including the download link to exported file. - By default, this cmdlet returns all the phone numbers acquired by the tenant with all corresponding properties in the results. The tenant admin may indicate specific properties as an input to get a list with only selected properties in the file. Available properties to use are : - - TelephoneNumber - - OperatorId - - NumberType - - LocationId - - CivicAddressId - - NetworkSiteId - - AvailableCapabilities - - AcquiredCapabilities - - AssignmentStatus - - PlaceName - - ActivationState - - PartnerName - - IsoCountryCode - - PortInOrderStatus - - CapabilityUpdateSupported - - AcquisitionDate - - TargetId - - TargetType - - AssignmentCategory - - CallingProfileId - - IsoSubdivisionCode - - NumberSource - - SupportedCustomerActions - - ReverseNumberLookup - - RoutingOptions - - - - Export-CsAcquiredPhoneNumber - - Property - - {{ Fill Property Description }} - - String - - String - - - None - - - - - - Property - - {{ Fill Property Description }} - - String - - String - - - None - - - - - - None - - - - - - - - - - System.String - - - - - - - - - The cmdlet is available in Teams PowerShell module 6.1.0 or later. - The cmdlet is only available in commercial and GCC cloud instances. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Export-CsAcquiredPhoneNumber - -0e923e2c-ab0e-4b7a-be5a-906be8c - - This example displays the output of the export acquired phone numbers operation. The OrderId shown as the output string and can be used to get the download link for the file. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" - -0e923e2c-ab0e-6h8c-be5a-906be8c - - This example displays the output of the export acquired phone numbers operation with filtered properties. This file will only contain the properties indicated. - - - - -------------------------- Example 3 -------------------------- - PS C:\> $orderId = Export-CsAcquiredPhoneNumber - - This example displays the use of variable "orderId" for the export acquired phone numbers operation. The OrderId string will be stored in the variable named "orderId" and no output will be shown for the cmdlet. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Export-CsAcquiredPhoneNumber -Property "TelephoneNumber, NumberType, AssignmentStatus" - -OrderId : 0e923e2c-ab0e-6h8c-be5a-906be8c - - This example displays the use of variable "orderId" for the export acquired phone numbers operation with filtered properties. The OrderId string will be stored in the variable named "orderId" and no output will be shown for the cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/export-csacquiredphonenumber - - - Get-CsExportAcquiredPhoneNumberStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexportacquiredphonenumberstatus - - - - - - Export-CsAutoAttendantHolidays - Export - CsAutoAttendantHolidays - - Use Export-CsAutoAttendantHolidays cmdlet to export holiday schedules of an existing Auto Attendant (AA). - - - - The Export-CsAutoAttendantHolidays cmdlet and the Import-CsAutoAttendantHolidays cmdlet enable you to export holiday schedules in your auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple tenants. - The Export-CsAutoAttendantHolidays cmdlet returns the holiday schedule information in serialized form (as a byte array). The caller can then write the bytes to the disk to obtain a CSV file. Similarly, the Import-CsAutoAttendantHolidays cmdlet accepts the holiday schedule information as a byte array, which can be read from the aforementioned CSV file. The first line of the CSV file is considered a header record and is always ignored. NOTE : Each line in the CSV file used by Export-CsAutoAttendantHolidays and Import-CsAutoAttendantHolidays cmdlet should be of the following format: - `HolidayName,StartDateTime1,EndDateTime1,StartDateTime2,EndDateTime2,...,StartDateTime10,EndDateTime10` - where - - HolidayName is the name of the holiday to be imported. - - StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet. - - EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date. - - - The first line of the CSV file is considered a header record and is always ignored by Import-CsAutoAttendantHolidays cmdlet. - - If the destination auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped. - - For holidays that are successfully imported, a default call flow is created which is configured without any greeting and simply disconnects the call on being executed. - - - - Export-CsAutoAttendantHolidays - - Identity - - The identity for the AA whose holiday schedules are to be exported. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the AA whose holiday schedules are to be exported. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Export-CsAutoAttendantHolidays cmdlet accepts a string as the Identity parameter. - - - - - - - System.Byte[] - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $bytes = Export-CsAutoAttendantHolidays -Identity 6abea1cd-904b-520b-be96-1092cc096432 -[System.IO.File]::WriteAllBytes("C:\Exports\Holidays.csv", $bytes) - - In this example, the Export-CsAutoAttendantHolidays cmdlet is used to export holiday schedules of an auto attendant with Identity of 6abea1cd-904b-520b-be96-1092cc096432. The exported bytes are then written to a file with the path "C:\Exports\Holidays.csv". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/export-csautoattendantholidays - - - Import-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/import-csautoattendantholidays - - - Get-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantholidays - - - - - - Export-CsOnlineAudioFile - Export - CsOnlineAudioFile - - Use the Export-CsOnlineAudioFile cmdlet to download an existing audio file. - - - - The Export-CsOnlineAudioFile cmdlet downloads an existing Auto Attendant (AA), Call Queue (CQ) service or Music on Hold audio file. - - - - Export-CsOnlineAudioFile - - ApplicationId - - > Applicable: Microsoft Teams - The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file is used with an organizational auto attendant, then it needs to be set to "OrgAutoAttendant". If the audio file is used with a hunt group (call queue), then it needs to be set to "HuntGroup". If the audio file is used with Microsoft Teams, then it needs to be set to "TenantGlobal" - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - System.String - - System.String - - - TenantGlobal - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to export. - - System.String - - System.String - - - None - - - - - - ApplicationId - - > Applicable: Microsoft Teams - The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file is used with an organizational auto attendant, then it needs to be set to "OrgAutoAttendant". If the audio file is used with a hunt group (call queue), then it needs to be set to "HuntGroup". If the audio file is used with Microsoft Teams, then it needs to be set to "TenantGlobal" - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - System.String - - System.String - - - TenantGlobal - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to export. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Byte[] - - - - - - - - - The audio content generated by Export-CsOnlineAudioFile is always in WAV format (PCM 16 bit and mono) irrespective on which format the audio was imported as. Therefore, ensure that the file extension used to store the content is WAV. - You are responsible for independently clearing and securing all necessary rights and permissions to use any music or audio file with your Microsoft Teams service, which may include intellectual property and other rights in any music, sound effects, audio, brands, names, and other content in the audio file from all relevant rights holders, which may include artists, actors, performers, musicians, songwriters, composers, record labels, music publishers, unions, guilds, rights societies, collective management organizations and any other parties who own, control or license the music copyrights, sound effects, audio and other intellectual property rights. - - - - - -------------------------- Example 1 -------------------------- - $content=Export-CsOnlineAudioFile -ApplicationId "HuntGroup" -Identity 57f800408f8848548dd1fbc18073fe46 -[System.IO.File]::WriteAllBytes('C:\MyWaveFile.wav', $content) - - This example exports a Call Queue audio file and saves it as MyWaveFile.wav. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/export-csonlineaudiofile - - - Get-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudiofile - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Remove-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudiofile - - - - - - Find-CsGroup - Find - CsGroup - - Use the Find-CsGroup cmdlet to search groups. - - - - The Find-CsGroup cmdlet lets you search groups in the Azure Address Book Service (AABS). - - - - Find-CsGroup - - ExactMatchOnly - - > Applicable: Microsoft Teams - The ExactMatchOnly parameter instructs the cmdlet to return exact matches only. The default value is false. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - MailEnabledOnly - - Instructs the cmdlet to return mail enabled only groups. - - Boolean - - Boolean - - - None - - - MaxResults - - > Applicable: Microsoft Teams - The MaxResults parameter identifies the maximum number of results to return. If this parameter is not provided, the default is value is 10. - - UInt32 - - UInt32 - - - None - - - SearchQuery - - > Applicable: Microsoft Teams - The SearchQuery parameter defines a search query to search the display name or the sip address or the GUID of groups. This parameter accepts partial search query. The search is not case sensitive. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - ExactMatchOnly - - > Applicable: Microsoft Teams - The ExactMatchOnly parameter instructs the cmdlet to return exact matches only. The default value is false. - - Boolean - - Boolean - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - MailEnabledOnly - - Instructs the cmdlet to return mail enabled only groups. - - Boolean - - Boolean - - - None - - - MaxResults - - > Applicable: Microsoft Teams - The MaxResults parameter identifies the maximum number of results to return. If this parameter is not provided, the default is value is 10. - - UInt32 - - UInt32 - - - None - - - SearchQuery - - > Applicable: Microsoft Teams - The SearchQuery parameter defines a search query to search the display name or the sip address or the GUID of groups. This parameter accepts partial search query. The search is not case sensitive. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Group.Models.GroupModel - - - The Find-CsGroup cmdlet returns a list of Microsoft.Rtc.Management.Hosted.Group.Models.GroupModel. Microsoft.Rtc.Management.Hosted.Group.Models.GroupModel contains Id and DisplayName. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Find-CsGroup -SearchQuery "Contoso Group" -MaxResults 5 - - This example finds and displays up to five groups that match the "Contoso Group" search query. - - - - -------------------------- Example 2 -------------------------- - Find-CsGroup -SearchQuery "ed0d1180-169e-47c7-b718-bf9e60543914" -ExactMatchOnly $true - - This example finds and displays only those groups that are an exact match to the search query. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/find-csgroup - - - - - - Find-CsOnlineApplicationInstance - Find - CsOnlineApplicationInstance - - Use the Find-CsOnlineApplicationInstance cmdlet to find application instances that match your search criteria. - - - - Use the Find-CsOnlineApplicationInstance cmdlet to find application instances that match your search criteria. - If MaxResults is not specified, the number of returned applications instances is limited to 10 application instances. - - - - Find-CsOnlineApplicationInstance - - AssociatedOnly - - The AssociatedOnly parameter instructs the cmdlet to return only application instances that are associated to a configuration. - - - SwitchParameter - - - False - - - ExactMatchOnly - - The ExactMatchOnly parameter instructs the cmdlet to return exact matches only. The default value is false. - - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MaxResults - - The MaxResults parameter identifies the maximum number of results to return. If this parameter is not provided, the default value is 10. Max allowed value is 20. - - UInt32 - - UInt32 - - - None - - - SearchQuery - - The SearchQuery parameter defines a query for application instances by display name, telephone number, or GUID of the application instance. This parameter accepts partial queries for display names and telephone numbers. The search is not case sensitive. - - System.String - - System.String - - - None - - - UnAssociatedOnly - - The UnAssociatedOnly parameter instructs the cmdlet to return only application instances that are not associated to any configuration. - - - SwitchParameter - - - False - - - - - - AssociatedOnly - - The AssociatedOnly parameter instructs the cmdlet to return only application instances that are associated to a configuration. - - SwitchParameter - - SwitchParameter - - - False - - - ExactMatchOnly - - The ExactMatchOnly parameter instructs the cmdlet to return exact matches only. The default value is false. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - MaxResults - - The MaxResults parameter identifies the maximum number of results to return. If this parameter is not provided, the default value is 10. Max allowed value is 20. - - UInt32 - - UInt32 - - - None - - - SearchQuery - - The SearchQuery parameter defines a query for application instances by display name, telephone number, or GUID of the application instance. This parameter accepts partial queries for display names and telephone numbers. The search is not case sensitive. - - System.String - - System.String - - - None - - - UnAssociatedOnly - - The UnAssociatedOnly parameter instructs the cmdlet to return only application instances that are not associated to any configuration. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.FindApplicationInstanceResult - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Find-CsOnlineApplicationInstance -SearchQuery "Test" - - This example returns up to 10 application instances whose name starts with "Test". - - - - -------------------------- Example 2 -------------------------- - Find-CsOnlineApplicationInstance -SearchQuery "Test" -MaxResults 5 - - This example returns up to 5 application instances whose name starts with "Test". - - - - -------------------------- Example 3 -------------------------- - Find-CsOnlineApplicationInstance -SearchQuery "Test Auto Attendant" -ExactMatchOnly - - This example returns up to 10 application instances whose name is "Test Auto Attendant". - - - - -------------------------- Example 4 -------------------------- - Find-CsOnlineApplicationInstance -SearchQuery "Test Auto Attendant" -AssociatedOnly - - This example returns up to 10 application instances whose name is "Test Auto Attendant", and who are associated with an application configuration, like auto attendant or call queue. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Get-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstance - - - New-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Set-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineapplicationinstance - - - - - - Get-CsAgent - Get - CsAgent - - Use the Get-CsAgent cmdlet to list the AI Agent(s). - - - - Use the Get-CsAgent cmdlet to list the AI Agent(s) configured in the tenant. When the -Id parameter is omitted, all AI Agents in the tenant are returned. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time. - - - - Get-CsAgent - - Id - - The Id of the AI Agent. Optional. - - System.String - - System.String - - - None - - - - - - Id - - The Id of the AI Agent. Optional. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAgent -Id 7d9997d0-1013-4d9c-83eb-caa6ec05f1b3 - - This example retrieves the AI Agent with the Id `7d9997d0-1013-4d9c-83eb-caa6ec05f1b3`. - - - - -------------------------- Example 2 -------------------------- - Get-CsAgent - - This example retrieves all the AI Agents. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsAgent - - - New-CsAgent - - - - Set-CsAgent - - - - Remove-CsAgent - - - - New-CsOnlineApplicationInstanceAssociation - - - - - - - Get-CsAiAgents - Get - CsAiAgents - - Retrieves the AI Agents in the tenant that match with the ProviderId. - - - - > [!NOTE] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - The Get-CsAiAgents cmdlet returns a list of all AI Agents in the tenant. - - - - Get-CsAiAgents - - AgentId - - A filter to retrieve a specific AI Agent by its unique identifier. - - System.String - - System.String - - - None - - - AgentIds - - A filter to retrieve multiple AI Agents by their unique identifiers. - - System.String - - System.String - - - None - - - ContinuationToken - - A token used to retrieve the next page of results when the result set is large. - - System.String - - System.String - - - None - - - DisplayNameContains - - A filter to retrieve AI Agents whose display name contains the specified string. - - System.String - - System.String - - - None - - - DisplayNamePrefix - - A filter to retrieve AI Agents whose display name starts with the specified string. - - System.String - - System.String - - - None - - - IsTeamsIvrEnabled - - Optional parameter. If specified, it filters the returned results to AI Agents that are compatible with Teams Interactive Voice Response (IVR). - - - System.Management.Automation.SwitchParameter - - - False - - - MaxResult - - Specifies the maximum number of results to return. - - System.Int32 - - System.Int32 - - - None - - - ProviderId - - A filter for ProviderId. - - System.String - - System.String - - - None - - - ShowCount - - Optional parameter. If specified, includes the total count of matching AI Agents in the result. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - AgentId - - A filter to retrieve a specific AI Agent by its unique identifier. - - System.String - - System.String - - - None - - - AgentIds - - A filter to retrieve multiple AI Agents by their unique identifiers. - - System.String - - System.String - - - None - - - ContinuationToken - - A token used to retrieve the next page of results when the result set is large. - - System.String - - System.String - - - None - - - DisplayNameContains - - A filter to retrieve AI Agents whose display name contains the specified string. - - System.String - - System.String - - - None - - - DisplayNamePrefix - - A filter to retrieve AI Agents whose display name starts with the specified string. - - System.String - - System.String - - - None - - - IsTeamsIvrEnabled - - Optional parameter. If specified, it filters the returned results to AI Agents that are compatible with Teams Interactive Voice Response (IVR). - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - MaxResult - - Specifies the maximum number of results to return. - - System.Int32 - - System.Int32 - - - None - - - ProviderId - - A filter for ProviderId. - - System.String - - System.String - - - None - - - ShowCount - - Optional parameter. If specified, includes the total count of matching AI Agents in the result. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentQueryResult - - - - - - - - - - - - - - ---------- Example 1 - Get AI agents from a provider ---------- - Get-CsAiAgents -IsTeamsIvrEnabled -ProviderId "9d8f559b-5de4-46a4-902a-ad4271e83efa" - -BotHandle CallingApiVersion Channel Cid IsTeamsIvrEnabled IsTeamsVoiceEnabled MessagingApiVersion MsaAppId MsaAppTenantId ProviderId PublishState ---------- ----------------- ------- --- ----------------- ------------------- ------------------- -------- -------------- ---------- ------------ -8a1b2c33-4d55-4f1e-9a2b-7f4b3a2b1c7e {msteams} 0 True True 3 c91e0a62-8d9e-4d6d-9e55-2a0b7b9f3d64 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -e5f7a913-0c2f-4f3a-8f69-9d1b40e2a3f1 {msteams} 0 True True 3 6b4a3fb2-0df5-47a8-8a77-4f1d8f6e2a39 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -1a2b3c4d-5e6f-4711-8a2b-9c0d1e2f3a4b {msteams} 0 True True 3 4f0c1a2e-7b9d-4c1e-9123-6a7b8c9d0e1f 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -9f8e7d6c-5b4a-4312-9a0b-d1c2e3f4a5b6 {msteams} 0 True True 3 a7c8d9e0-1f2a-4b3c-9d0e-1a2b3c4d5e6f 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -0a9b8c7d-6e5f-4d3c-8b7a-6c5d4e3f2a1b {msteams} 0 True True 3 d2e3f4a5-b6c7-4819-9f0e-a1b2c3d4e5f6 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -3b2c1d0e-9f8a-47b6-9123-4a5b6c7d8e9f {msteams} 0 True True 3 12ab34cd-56ef-4789-90ab-cdef12345678 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview -7c6d5e4f-3a2b-41c0-9f8e-7d6c5b4a3f2e {msteams} 0 True True 3 f0e1d2c3-b4a5-4698-8f7e-6d5c4b3a2f1e 1bdf0cd6-a880-43c0-adde-ebf94070c03d 9d8f559b-5de4-46a4-902a-ad4271e83efa Preview - - - - - - ------ Example 2 - Get AI agents from multiple providers ------ - Get-CsAiAgents -IsTeamsIvrEnabled -ProviderId "9d8f559b-5de4-46a4-902a-ad4271e83efa,905de543-6cf8-44a4-ab05-83bcd500f39e" - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csaiagents - - - - - - Get-CsApplicationAccessPolicy - Get - CsApplicationAccessPolicy - - Retrieves information about the application access policy configured for use in the tenant. - - - - This cmdlet retrieves information about the application access policy configured for use in the tenant. - - - - Get-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - A filter that is not expressed in the standard wildcard language. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - - - - - - - ----------- Retrieve all application access policies ----------- - PS C:\> Get-CsApplicationAccessPolicy - - The command shown above returns information of all application access policies that have been configured for use in the tenant. - - - - --------- Retrieve specific application access policy --------- - PS C:\> Get-CsApplicationAccessPolicy -Identity "ASimplePolicy" - - In the command shown above, information is returned for a single application access policy: the policy with the Identity ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csapplicationaccesspolicy - - - - - - Get-CsApplicationMeetingConfiguration - Get - CsApplicationMeetingConfiguration - - Retrieves information about the application meeting configuration settings configured for the tenant. - - - - This cmdlet retrieves information about the application meeting configuration settings configured for the tenant. - - - - Get-CsApplicationMeetingConfiguration - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Get-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Teams - Enables you to use wildcards when specifying the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - LocalStore - - > Applicable: Teams - Retrieves the application meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Teams - Enables you to use wildcards when specifying the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings there is little reason to use the Filter parameter. However, if you prefer, you can use syntax similar to this to retrieve the global settings: -Identity "g*". - - String - - String - - - None - - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Get-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Teams - Retrieves the application meeting configuration data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.PlatformApplications.ApplicationMeetingConfiguration - - - - - - - - - - - - - - Retrieve application meeting configuration settings for the tenant. - PS C:\> Get-CsApplicationMeetingConfiguration - - The command shown above returns application meeting configuration settings that have been configured for the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-CsApplicationMeetingConfiguration - - - Set-CsApplicationMeetingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationmeetingconfiguration - - - - - - Get-CsAutoAttendant - Get - CsAutoAttendant - - Use the Get-CsAutoAttendant cmdlet to get information about your Auto Attendants (AA). - - - - The Get-CsAutoAttendant cmdlet returns information about the AAs in your organization. - - - - Get-CsAutoAttendant - - Identity - - The identity for the AA to be retrieved. If this parameter is not specified, then all created AAs in the organization are returned. If you specify this parameter, you can't specify the other parameters. - - System.String - - System.String - - - None - - - Descending - - If specified, the retrieved auto attendants would be sorted in descending order. - - - SwitchParameter - - - False - - - ExcludeContent - - If specified, only auto attendants' names, identities and associated application instances will be retrieved. - - - SwitchParameter - - - False - - - First - - The First parameter gets the first N auto attendants, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 auto attendants. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - System.UInt32 - - System.UInt32 - - - None - - - IncludeStatus - - If specified, the status records for each auto attendant in the result set are also retrieved. - - - SwitchParameter - - - False - - - NameFilter - - If specified, only auto attendants whose names match that value would be returned. - - System.String - - System.String - - - None - - - Skip - - The Skip parameter skips the first N auto attendants. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - System.UInt32 - - System.UInt32 - - - None - - - SortBy - - If specified, the retrieved auto attendants would be sorted by the specified property. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Descending - - If specified, the retrieved auto attendants would be sorted in descending order. - - SwitchParameter - - SwitchParameter - - - False - - - ExcludeContent - - If specified, only auto attendants' names, identities and associated application instances will be retrieved. - - SwitchParameter - - SwitchParameter - - - False - - - First - - The First parameter gets the first N auto attendants, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 auto attendants. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - System.UInt32 - - System.UInt32 - - - None - - - Identity - - The identity for the AA to be retrieved. If this parameter is not specified, then all created AAs in the organization are returned. If you specify this parameter, you can't specify the other parameters. - - System.String - - System.String - - - None - - - IncludeStatus - - If specified, the status records for each auto attendant in the result set are also retrieved. - - SwitchParameter - - SwitchParameter - - - False - - - NameFilter - - If specified, only auto attendants whose names match that value would be returned. - - System.String - - System.String - - - None - - - Skip - - The Skip parameter skips the first N auto attendants. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - System.UInt32 - - System.UInt32 - - - None - - - SortBy - - If specified, the retrieved auto attendants would be sorted by the specified property. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Get-CsAutoAttendant cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendant - - This example gets the first 100 auto attendants in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoAttendant -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - -# Id : f7a821dc-2d69-5ae8-8525-bcb4a4556093 -# TenantId : 977c9d5b-2dae-5d82-aada-628bc1c14213 -# Name : Main Auto Attendant -# LanguageId : en-US -# VoiceId : Female -# DefaultCallFlow : Default Call Flow -# Operator : -# TimeZoneId : Pacific Standard Time -# VoiceResponseEnabled : False -# CallFlows : -# Schedules : -# CallHandlingAssociations : -# Status : -# DialByNameResourceId : -# DirectoryLookupScope : -# ApplicationInstances : {fa2f17ec-ebd5-43f8-81ac-959c245620fa, 56421bbe-5649-4208-a60c-24dbeded6f18, c7af9c3c-ae40-455d-a37c-aeec771e623d} - - This example gets the AA that has the identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - -------------------------- Example 3 -------------------------- - Get-CsAutoAttendant -First 10 - - This example gets the first ten auto attendants configured for use in the organization. - - - - -------------------------- Example 4 -------------------------- - Get-CsAutoAttendant -Skip 5 -First 10 - - This example skips initial 5 auto attendants and gets the next 10 AAs configured in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Get-CsAutoAttendantStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Update-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/update-csautoattendant - - - - - - Get-CsAutoAttendantHolidays - Get - CsAutoAttendantHolidays - - Use Get-CsAutoAttendantHolidays cmdlet to get the holiday information for an existing Auto Attendant (AA). - - - - The Get-CsAutoAttendantHolidays provides a convenient way to visualize the information of all the holidays contained within an auto attendant. - - - - Get-CsAutoAttendantHolidays - - Identity - - Represents the identifier for the auto attendant whose holidays are to be retrieved. - - System.String - - System.String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Names - - The Names parameter represents the names for the holidays to be retrieved. If this parameter is not specified, then all holidays in the AA are returned. - - System.Collections.Generic.List[System.Int32] - - System.Collections.Generic.List[System.Int32] - - - None - - - Years - - The Years parameter represents the years for the holidays to be retrieved. If this parameter is not specified, then holidays for all years in the AA are returned. - - System.Collections.Generic.List[System.String] - - System.Collections.Generic.List[System.String] - - - None - - - - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Represents the identifier for the auto attendant whose holidays are to be retrieved. - - System.String - - System.String - - - None - - - Names - - The Names parameter represents the names for the holidays to be retrieved. If this parameter is not specified, then all holidays in the AA are returned. - - System.Collections.Generic.List[System.Int32] - - System.Collections.Generic.List[System.Int32] - - - None - - - Years - - The Years parameter represents the years for the holidays to be retrieved. If this parameter is not specified, then holidays for all years in the AA are returned. - - System.Collections.Generic.List[System.String] - - System.Collections.Generic.List[System.String] - - - None - - - - - - System.String - - - The Get-CsAutoAttendantHolidays cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.OAA.Models.HolidayVisRecord - - - - - - - - - The DateTimeRanges parameter in the output needs to be explicitly referenced to show the value. See Example 4 for one way of doing it. - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendantHolidays -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - In this example, the Get-CsAutoAttendantHolidays cmdlet is used to get all holidays in an auto attendant with Identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoAttendantHolidays -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" -Years @(2017) - - In this example, the Get-CsAutoAttendantHolidays cmdlet is used to get all holidays in year 2017 in an auto attendant with Identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - -------------------------- Example 3 -------------------------- - Get-CsAutoAttendantHolidays -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" -Years @(2017) -Names @("Christmas") - - In this example, the Get-CsAutoAttendantHolidays cmdlet is used to get holiday named Christmas in the year 2017 in an auto attendant with Identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - -------------------------- Example 4 -------------------------- - (Get-CsAutoAttendantHolidays -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" -Years @(2017) -Names @("Christmas")).DateTimeRanges - - In this example, the Get-CsAutoAttendantHolidays cmdlet is used to retrieve the DateTimeRanges for the holiday named Christmas in the year 2017 in an auto attendant with Identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantholidays - - - Import-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/import-csautoattendantholidays - - - Export-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/export-csautoattendantholidays - - - - - - Get-CsAutoAttendantStatus - Get - CsAutoAttendantStatus - - Use Get-CsAutoAttendantStatus cmdlet to get the status of an Auto Attendant (AA) provisioning. - - - - This cmdlet provides a way to return the provisioning status of an auto attendant configured for use in your organization. - - - - Get-CsAutoAttendantStatus - - Identity - - Represents the identifier for the auto attendant whose provisioning status is to be retrieved. - - System.String - - System.String - - - None - - - IncludeResources - - The IncludeResources parameter identities the auto attendant resources whose status is to be retrieved. Available resources are: - AudioFile: Indicates status for audio files used by AA. - - DialByNameVoiceResponses: Indicates status for speech recognition when using dial-by-name (directory lookup) feature with AA. - - SipProvisioning: Indicates status for calling AA through its SIP (Primary) URI. - - - AudioFile - DialByNameVoiceResponses - SipProvisioning - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - Represents the identifier for the auto attendant whose provisioning status is to be retrieved. - - System.String - - System.String - - - None - - - IncludeResources - - The IncludeResources parameter identities the auto attendant resources whose status is to be retrieved. Available resources are: - AudioFile: Indicates status for audio files used by AA. - - DialByNameVoiceResponses: Indicates status for speech recognition when using dial-by-name (directory lookup) feature with AA. - - SipProvisioning: Indicates status for calling AA through its SIP (Primary) URI. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Get-CsAutoAttendantStatus cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.OAA.Models.StatusRecord - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendantStatus -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - In Example 1, the Get-CsAutoAttendantStatus cmdlet is used to get status records for all resources of an auto attendant with identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoAttendantStatus -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" -IncludeResources @("AudioFile") - - In Example 2, the Get-CsAutoAttendantStatus cmdlet is used to get status records pertaining to audio files only of an auto attendant with identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - - - - Get-CsAutoAttendantSupportedLanguage - Get - CsAutoAttendantSupportedLanguage - - The Get-CsAutoAttendantSupportedLanguage cmdlet gets languages that are supported by the Auto Attendant (AA) service. - - - - The Get-CsAutoAttendantSupportedLanguage cmdlet gets all languages (and their corresponding voices/speakers) that are supported by the AA service, or a specific language if its Identity is provided. - - - - Get-CsAutoAttendantSupportedLanguage - - Identity - - The Identity parameter designates a specific language to be retrieved. If this parameter is not specified, then all supported languages are returned. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The Identity parameter designates a specific language to be retrieved. If this parameter is not specified, then all supported languages are returned. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Get-CsAutoAttendantSupportedLanguage cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.Language - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendantSupportedLanguage - - This example gets all supported languages. - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoAttendantSupportedLanguage -Identity "en-US" - - This example gets the language that the Identity parameter specifies (en-US). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantsupportedlanguage - - - - - - Get-CsAutoAttendantSupportedTimeZone - Get - CsAutoAttendantSupportedTimeZone - - The Get-CsAutoAttendantSupportedTimeZone cmdlet gets supported time zones for the Auto Attendant (AA) service. - - - - The Get-CsAutoAttendantSupportedTimeZone cmdlet gets all the time zones that the AA service supports, or a specific time zone if its Identity is provided. - - - - Get-CsAutoAttendantSupportedTimeZone - - Identity - - The Identity parameter specifies a time zone to be retrieved. If this parameter is not used, then all supported time zones are returned. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The Identity parameter specifies a time zone to be retrieved. If this parameter is not used, then all supported time zones are returned. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - System.String - - - The Get-CsAutoAttendantSupportedTimeZone cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.TimeZone - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendantSupportedTimeZone - - This example gets all supported time zones. - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoAttendantSupportedTimeZone -Identity "Pacific Standard Time" - - This example gets the timezone that the Identity parameter specifies (Pacific Standard Time). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantsupportedtimezone - - - - - - Get-CsAutoAttendantTenantInformation - Get - CsAutoAttendantTenantInformation - - Gets the default tenant information for Auto Attendant (AA) feature. - - - - The Get-CsAutoAttendantTenantInformation cmdlet gets the default tenant information for Auto Attendant (AA) feature. - - - - Get-CsAutoAttendantTenantInformation - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.TenantInformation - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoAttendantTenantInformation - - Gets the default auto attendant information for the logged in tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendanttenantinformation - - - - - - Get-CsAutoRecordingTemplate - Get - CsAutoRecordingTemplate - - Use the Get-CsAutoRecordingTemplate cmdlet to list the Auto Recording templates. - - - - > [!CAUTION] > The functionality provided by this cmdlet will only work for customers that are participating in the Voice Applications private preview for this feature. General Availability for this functionality has not been determined at this time. - Use the Get-CsAutoRecordingTemplate cmdlet to list the Auto Recording templates. - - - - Get-CsAutoRecordingTemplate - - Id - - The Id of the auto recording template. - - System.String - - System.String - - - None - - - - - - Id - - The Id of the auto recording template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsAutoRecordingTemplate -Id 3a4b3d9b-91d8-4fbf-bcff-6907f325842c - - This example retrieves the Auto Recording template with the Id `3a4b3d9b-91d8-4fbf-bcff-6907f325842c` - - - - -------------------------- Example 2 -------------------------- - Get-CsAutoRecordingTemplate - - This example retrieves all the Auto Recording templates. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsAutoRecordingTemplate - - - New-CsAutoRecordingTemplate - - - - Set-CsAutoRecordingTemplate - - - - Remove-CsAutoRecordingTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Get-CsBatchPolicyAssignmentOperation - Get - CsBatchPolicyAssignmentOperation - - This cmdlet is used to retrieve the status of batch policy assignment operations. - - - - This cmdlets returns the status of all batch policy assignment operations for the last 30 days. If an operation ID is specified, the detailed status for that operation is returned including the status for each user in the batch. - - - - Get-CsBatchPolicyAssignmentOperation - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - The ID of a batch policy assignment operation. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - Get-CsBatchPolicyAssignmentOperation - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - Status - - Option filter - - String - - String - - - None - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - The ID of a batch policy assignment operation. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - Status - - Option filter - - String - - String - - - None - - - - - - - OperationId - - - The ID of the operation that can be used with the Get-CsBatchPolicyAssignmentOperation cmdlet to get the status of the operation. - - - - - CompletedCount - - - The number of users in the batch for which the assignment has been completed (possibly with an error). - - - - - CompletedTime - - - The date and time when the operation was completed. - - - - - CreatedTime - - - The date and time when the operation was created. - - - - - ErrorCount - - - The number of users in the batch for which the assignment failed. - - - - - InProgressCount - - - The number of users in the batch for which the assignment is in progress. - - - - - NotStartedCount - - - The number of users in the batch for which the assignment has not yet been performed. - - - - - OperationId - - - The ID of the operation. - - - - - OperationName - - - The name of the operation, if one was specific when the operation was created. - - - - - OverallStatus - - - The overall status of the operations: NotStarted, InProgress, Complete - - - - - UserState - - - Contains the status for each user in the batch. Id: The ID of the user as specified when the batch was submitted. Either the user object ID (guid) or UPN/SIP/email. result: The result of the assignment operation for the user: Success or an error. Some common errors include: - User not found. Check the ID or SIP address of the user to confirm it is correct. If the UPN or email address was used, but it does not match the SIP address, then the user will not be found. - - Multiple users found with a given SIP address. This is typically a result of on-prem to cloud sync. Check your directory and update the affected users. - - User invalid. If you are syncing users from on-prem to the cloud, some users might not have been synced properly and are in an invalid state. Check the sync status for the user. - - User ineligible for the policy or missing a necessary license. Check the documentation for the specific policy type being assigned to understand the requirements and update the user accordingly. - - The policy settings are incorrect. Check the documentation for the specific policy type being assigned to understand the requirements and update the policy accordingly. - - Unknown errors. In rare cases, there can be transient system errors that failed on all initial retry attempts during batch process. Resubmit these users in a separate batch. state: The status for the user: NotStarted, InProgress, Completed - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Get-CsBatchPolicyAssignmentOperation - -OperationId OperationName OverallStatus CreatedTime CreatedBy ------------ ------------- ------------- ----------- --------- -e640a5c9-c74f-4df7-b62e-4b01ae878bdc Assigning Kiosk mtg Completed 1/30/2020 3:21:07 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -01b9b2b7-5dbb-487c-b4ea-887c7c66559c Assigning allow calling Completed 1/30/2020 3:55:16 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -47bbc636-365d-4441-af34-9e0eceb05ef1 Completed 1/30/2020 4:14:22 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - In this example, the status of all batch assignment operations is returned. - - - - -------------------------- EXAMPLE 2 -------------------------- - Get-CsBatchPolicyAssignmentOperation -OperationId 01b9b2b7-5dbb-487c-b4ea-887c7c66559c | fl - -OperationId : 01b9b2b7-5dbb-487c-b4ea-887c7c66559c -OperationName : Assigning allow calling -OverallStatus : Completed -CreatedBy : aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -CreatedTime : 1/30/2020 3:55:16 PM -CompletedTime : 1/30/2020 3:59:06 PM -CompletedCount : 3 -ErrorCount : 1 -InProgressCount : 0 -NotStartedCount : 0 -UserState : {f0d9c148-27c1-46f5-9685-544d20170ea1, cc05e18d-5fc0-4096-8461-ded64d7356e0, - bcff5b7e-8d3c-4721-b34a-63552a6a53f9} - - In this example, the details of a specific operation are returned. - - - - -------------------------- EXAMPLE 3 -------------------------- - Get-CsBatchPolicyAssignmentOperation -OperationId 001141c3-1daa-4da1-88e9-66cc01c511e1 | Select -ExpandProperty UserState - -Id Result State --- ------ ----- -f0d9c148-27c1-46f5-9685-544d20170ea1 Success Completed -cc05e18d-5fc0-4096-8461-ded64d7356e0 Success Completed -bcff5b7e-8d3c-4721-b34a-63552a6a53f9 User not found Completed - - In this example, the UserState property is expanded to see the status of each user in the batch. In this example, one of the users was not found. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csbatchpolicyassignmentoperation - - - New-CsBatchPolicyAssignmentOperation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchpolicyassignmentoperation - - - - - - Get-CsBatchTeamsDeploymentStatus - Get - CsBatchTeamsDeploymentStatus - - This cmdlet is used to get the status of the batch deployment orchestration. - - - - After deploying teams using New-CsBatchTeamsDeployment, an admin can check the status of the job/orchestration using Get-CsBatchTeamsDeploymentStatus. - To learn more, see Deploy Teams at scale for frontline workers (https://learn.microsoft.com/microsoft-365/frontline/deploy-teams-at-scale). - - - - Get-CsBatchTeamsDeploymentStatus - - OrchestrationId - - This ID is generated when a batch deployment is submitted with the New-CsBatchTeamsDeployment cmdlet. - - String - - String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - OrchestrationId - - This ID is generated when a batch deployment is submitted with the New-CsBatchTeamsDeployment cmdlet. - - String - - String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - - Status of the orchestrationId - - - Running: The orchestration is running. Completed: The orchestration is completed, either succeeded, partially succeeded, or failed. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Get-CsBatchTeamsDeploymentStatus -OrchestrationId "My-Orchestration-Id" - - This command provides the status of the specified batch deployment orchestrationId. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsBatchTeamsDeploymentStatus - - - New-CsBatchTeamsDeployment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchteamsdeployment - - - - - - Get-CsCallingLineIdentity - Get - CsCallingLineIdentity - - Use the `Get-CsCallingLineIdentity` cmdlet to display the Caller ID policies for your organization. - - - - Use the `Get-CsCallingLineIdentity` cmdlet to display the Caller ID policies for your organization. - - - - Get-CsCallingLineIdentity - - Filter - - > Applicable: Microsoft Teams - The Filter parameter lets you insert a string through which your search results are filtered. - - String - - String - - - None - - - - Get-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - The Filter parameter lets you insert a string through which your search results are filtered. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsCallingLineIdentity - - The example gets and displays the Caller ID policies for your organization. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsCallingLineIdentity -Filter "tag:Sales*" - - The example gets and displays the Caller ID policies with Identity starting with Sales. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - - - - Get-CsCallQueue - Get - CsCallQueue - - The Get-CsCallQueue cmdlet returns the identified Call Queues. - - - - The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues in your organization. Call Queue output contains statistical data on the number of active calls that are in the queue. - - - - Get-CsCallQueue - - Descending - - The Descending parameter sorts Call Queues in descending order - - - SwitchParameter - - - False - - - ExcludeContent - - The ExcludeContent parameter only displays the Name and Id of the Call Queues - - - SwitchParameter - - - False - - - First - - The First parameter gets the first N Call Queues, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 call queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - NameFilter - - The NameFilter parameter returns Call Queues where name contains specified string - - String - - String - - - None - - - Skip - - The Skip parameter skips the first N call queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - Sort - - The Sort parameter specifies the property used to sort. - - String - - String - - - Name - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Descending - - The Descending parameter sorts Call Queues in descending order - - SwitchParameter - - SwitchParameter - - - False - - - ExcludeContent - - The ExcludeContent parameter only displays the Name and Id of the Call Queues - - SwitchParameter - - SwitchParameter - - - False - - - First - - The First parameter gets the first N Call Queues, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 call queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - NameFilter - - The NameFilter parameter returns Call Queues where name contains specified string - - String - - String - - - None - - - Skip - - The Skip parameter skips the first N call queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - Sort - - The Sort parameter specifies the property used to sort. - - String - - String - - - Name - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Identity - - - Represents the unique identifier of a Call Queue. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsCallQueue - - This example gets the first 100 call queues in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsCallQueue -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example gets the Call Queue with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Call Queue exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallqueue - - - - - - Get-CsCloudCallDataConnection - Get - CsCloudCallDataConnection - - This cmdlet retrieves an already existing online call data connection. - - - - This cmdlet retrieves an already existing online call data connection. Output of this cmdlet contains a token value, which is needed when configuring your on-premises environment with Set-CsCloudCallDataConnector. - - - - Get-CsCloudCallDataConnection - - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The Get-CsCloudCallDataConnection cmdlet is only supported in commercial environments from Teams PowerShell Module versions 4.6.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsCloudCallDataConnection - -Token ------ -00000000-0000-0000-0000-000000000000 - - Returns a token value, which is needed when configuring your on-premises environment with Set-CsCloudCallDataConnector. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscloudcalldataconnection - - - Configure Call Data Connector - https://learn.microsoft.com/skypeforbusiness/hybrid/configure-call-data-connector - - - New-CsCloudCallDataConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscloudcalldataconnection - - - - - - Get-CsComplianceRecordingForCallQueueTemplate - Get - CsComplianceRecordingForCallQueueTemplate - - Retrieves a Compliance Recording for Call Queues template. - - - - Use the Get-CsComplianceRecordingForCallQueueTemplate cmdlet to retrieve a Compliance Recording for Call Queues template. - - - - Get-CsComplianceRecordingForCallQueueTemplate - - Id - - The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsComplianceRecordingForCallQueueTemplate - - This example gets all Compliance Recording for Call Queue Templates in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example gets the Compliance Recording for Call Queue template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Compliance Recording for Call Queue template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsComplianceRecordingForCallQueueTemplate - - - New-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Get-CsDialPlan - Get - CsDialPlan - - Returns information about the dial plans used in your organization. This cmdlet was introduced in Lync Server 2010. - - - - This cmdlet returns information about one or more dial plans (also known as a location profiles) in an organization. Dial plans provide information required to enable Enterprise Voice users to make telephone calls. Dial plans are also used by the Conferencing Attendant application for dial-in conferencing. A dial plan determines such things as which normalization rules are applied and whether a prefix must be dialed for external calls. - Note: You can use the Get-CsDialPlan cmdlet to retrieve specific information about the normalization rules of a dial plan, but if that's the only dial plan information you need, you can also use the Get-CsVoiceNormalizationRule cmdlet. - - - - Get-CsDialPlan - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, and for per-user scope a name, to identify the dial plan you want to retrieve. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Performs a wildcard search that allows you to narrow down your results to only dial plans with identities that match the given wildcard string. - - String - - String - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial plan information from the local replica of the Central Management store, rather than the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Performs a wildcard search that allows you to narrow down your results to only dial plans with identities that match the given wildcard string. - - String - - String - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The unique identifier designating the scope, and for per-user scope a name, to identify the dial plan you want to retrieve. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Retrieves the dial plan information from the local replica of the Central Management store, rather than the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Skype for Business Online - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.LocationProfile - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsDialPlan - - Example 1 returns a collection of all the dial plans configured for use in your organization; this is done by calling the Get-CsDialPlan cmdlet without any additional parameters. - - - - -------------------------- Example 2 -------------------------- - Get-CsDialPlan -Identity RedmondDialPlan - - In Example 2, the Identity parameter is used to limit the retrieved data to dial plans that have a per-user dial plan with the Identity RedmondDialPlan. Because identities must be unique, this command will return only the specified dial plan. - - - - -------------------------- Example 3 -------------------------- - Get-CsDialPlan -Identity site:Redmond - - Example 3 is identical to Example 2 except that instead of retrieving a per-user dial plan, we're retrieving a dial plan assigned to a site. We do that by specifying the value site: followed by the site name (in this case Redmond) of the site we want to retrieve. - - - - -------------------------- Example 4 -------------------------- - Get-CsDialPlan -Filter tag:* - - This example uses the Filter parameter to return a collection of all the dial plans that have been configured at the per-user scope. (Settings configured at the per-user, or tag, scope can be directly assigned to users and groups.) The wildcard string tag:* instructs the cmdlet to return only those dial plans that have an identity beginning with the string value tag:, which identifies a dial plan as a per-user dial plan. - - - - -------------------------- Example 5 -------------------------- - Get-CsDialPlan | Select-Object -ExpandProperty NormalizationRules - - This example displays the normalization rules used by the dial plans configured for use in your organization. Because the NormalizationRules property consists of an array of objects, the complete set of normalization rules is typically not displayed on screen. To see all of these rules, this sample command first uses the Get-CsDialPlan cmdlet to retrieve a collection of all the dial plans. That collection is then piped to the Select-Object cmdlet; in turn, the ExpandProperty parameter of the Select-Object cmdlet is used to "expand" the values found in the NormalizationRules property. Expanding the values simply means that all the normalization rules will be listed out individually on the screen, the same output that would be seen if the Get-CsVoiceNormalizationRule cmdlet had been called. - - - - -------------------------- Example 6 -------------------------- - Get-CsDialPlan | Where-Object {$_.Description -match "Redmond"} - - In Example 6, the Get-CsDialPlan cmdlet and the Where-Object cmdlet are used to retrieve a collection of all the dial plans that include the word Redmond in their description. To do this, the command first uses the Get-CsDialPlan cmdlet to retrieve all the dial plans. That collection is then piped to the Where-Object cmdlet, which applies a filter that limits the returned data to profiles that have the word Redmond somewhere in their Description. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialplan - - - New-CsDialPlan - - - - Remove-CsDialPlan - - - - Set-CsDialPlan - - - - Grant-CsDialPlan - - - - Test-CsDialPlan - - - - Get-CsVoiceNormalizationRule - - - - - - - Get-CsEffectiveTenantDialPlan - Get - CsEffectiveTenantDialPlan - - Use the Get-CsEffectiveTenantDialPlan cmdlet to retrieve an effective tenant dial plan. - - - - The Get-CsEffectiveTenantDialPlan cmdlet returns information about the effective tenant dial plan in an organization. The returned effective Tenant Dial Plan contains the EffectiveTenantDialPlanName and the Normalization rules that are effective for the user while using the EnterpriseVoice features. The EffectiveTenantDialPlanName is in the form TenantGUID_GlobalVoiceDialPlan_TenantDialPlan. - - - - Get-CsEffectiveTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the user for whom to retrieve the effective tenant dial plan. - - UserIdParameter - - UserIdParameter - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CallerNumber - - > Applicable: Microsoft Teams - The Caller Number parameter is the phone number assigned to the user for whom to retrieve the effective tenant dial plan. - - PhoneNumber - - PhoneNumber - - - None - - - OU - - > Applicable: Microsoft Teams Note: This parameter is not supported in Teams PowerShell Module version 3.0.0 or later. - The OrganizationalUnit parameter filters the results based on the object's location in Active Directory. Only objects that exist in the specified location are returned. - - OUIdParameter - - OUIdParameter - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note: This parameter is not supported in Teams PowerShell Module version 3.0.0 or later. - Specifies the number of records returned by the cmdlet. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0, the command will run, but no data will be returned. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the user for whom to retrieve the effective tenant dial plan. - - UserIdParameter - - UserIdParameter - - - None - - - CallerNumber - - > Applicable: Microsoft Teams - The Caller Number parameter is the phone number assigned to the user for whom to retrieve the effective tenant dial plan. - - PhoneNumber - - PhoneNumber - - - None - - - OU - - > Applicable: Microsoft Teams Note: This parameter is not supported in Teams PowerShell Module version 3.0.0 or later. - The OrganizationalUnit parameter filters the results based on the object's location in Active Directory. Only objects that exist in the specified location are returned. - - OUIdParameter - - OUIdParameter - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note: This parameter is not supported in Teams PowerShell Module version 3.0.0 or later. - Specifies the number of records returned by the cmdlet. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0, the command will run, but no data will be returned. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsEffectiveTenantDialPlan -Identity Vt1_User1 - - This example gets the effective tenant dial plan for the Vt1_User1. - - - - -------------------------- Example 2 -------------------------- - Get-CsEffectiveTenantDialPlan -Identity Vt1_User1 -CallerNumber 1234567890 - - This example gets the effective tenant dial plan assigned to the phone number 1234567890 for the Vt1_User1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cseffectivetenantdialplan - - - - - - Get-CsExportAcquiredPhoneNumberStatus - Get - CsExportAcquiredPhoneNumberStatus - - This cmdlet shows the status of the Export-CsAcquiredPhoneNumber (https://learn.microsoft.com/powershell/module/microsoftteams/export-csacquiredphonenumber)cmdlet. - - - - This cmdlet returns OrderId status from the respective Export-CsAcquiredPhoneNumber (https://learn.microsoft.com/powershell/module/microsoftteams/export-csacquiredphonenumber)operation. The response will include the download link to the file if operation has been completed. - By default, the download link will remain active for 1 hour. - - - - Get-CsExportAcquiredPhoneNumberStatus - - OrderId - - The orderId of the ExportAcquiredNumberStatus cmdlet. - - String - - String - - - None - - - - - - OrderId - - The orderId of the ExportAcquiredNumberStatus cmdlet. - - String - - String - - - None - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetExportAcquiredTelephoneNumbersResponse - - - - - - - - - The cmdlet is available in Teams PowerShell module 6.1.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsExportAcquiredPhoneNumberStatus -OrderId 0e923e2c-ab0e-4b7a-be5a-906be8c - -Id : 0e923e2c-ab0e-4b7a-be5a-906be8c -CreatedAt : 2024-08-29 21:50:54Z -status : Success -DownloadLinkExpiry : 2024-08-29 22:51:17Z -DownloadLink : <link> - - This example displays the status of the export acquired phone numbers operation. The OrderId is the output from Export-CsAcquiredPhoneNumber (https://learn.microsoft.com/powershell/module/microsoftteams/export-csacquiredphonenumber)cmdlet. The status contains the download link for the file along with expiry date. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId - -Id : 0e923e2c-ab0e-4b7a-be5a-906be8c -CreatedAt : 2024-08-29 21:50:54Z -status : Success -DownloadLinkExpiry : 2024-08-29 22:51:17Z -DownloadLink : <link> - - This example displays the status of the export acquired phone numbers operation with the use of a variable named "orderId". - - - - -------------------------- Example 3 -------------------------- - PS C:\> $order = Get-CsExportAcquiredPhoneNumberStatus -OrderId $orderId -PS C:\> $order - -Id : 0e923e2c-ab0e-4b7a-be5a-906be8c -CreatedAt : 2024-08-29 21:50:54Z -status : Success -DownloadLinkExpiry : 2024-08-29 22:51:17Z -DownloadLink : <link> - - This example stores the Get-CsExportAcquiredPhoneNumberStatus (https://learn.microsoft.com/powershell/module/microsoftteams/get-csexportacquiredphonenumberstatus)cmdlet status for the "orderId" in the variable "order". This will allow a quick view of the order status without typing the cmdlet again. - - - - - - Get-CsExportAcquiredPhoneNumberStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csexportacquiredphonenumberstatus - - - - - - Get-CsGroupPolicyAssignment - Get - CsGroupPolicyAssignment - - This cmdlet is used to return group policy assignments. - - - - This cmdlets returns group policy assignments. Optional parameters allow the results to be restricted to policies assigned to a specific group or policies of a specific type. - - - - Get-CsGroupPolicyAssignment - - GroupId - - The ID of a group whose policy assignments will be returned. - - String - - String - - - None - - - PolicyType - - The policy type for which group policy assignments will be returned. Possible values: - ApplicationAccessPolicy CallingLineIdentity ExternalAccessPolicy OnlineAudioConferencingRoutingPolicy OnlineVoicemailPolicy OnlineVoiceRoutingPolicy TeamsAppSetupPolicy TeamsAudioConferencingPolicy TeamsCallHoldPolicy TeamsCallingPolicy TeamsCallParkPolicy TeamsChannelsPolicy TeamsComplianceRecordingPolicy TeamsCortanaPolicy TeamsEmergencyCallingPolicy TeamsEmergencyCallRoutingPolicy TeamsEnhancedEncryptionPolicy TeamsEventsPolicy TeamsFeedbackPolicy TeamsFilesPolicy TeamsIPPhonePolicy TeamsMediaLoggingPolicy TeamsMeetingBrandingPolicy TeamsMeetingBroadcastPolicy TeamsMeetingPolicy TeamsMeetingTemplatePermissionPolicy TeamsMessagingPolicy TeamsMobilityPolicy TeamsRoomVideoTeleConferencingPolicy TeamsSharedCallingRoutingPolicy TeamsShiftsPolicy TeamsUpdateManagementPolicy TeamsVdiPolicy TeamsVideoInteropServicePolicy TeamsVirtualAppointmentsPolicy TenantDialPlan - - String - - String - - - None - - - - - - GroupId - - The ID of a group whose policy assignments will be returned. - - String - - String - - - None - - - PolicyType - - The policy type for which group policy assignments will be returned. Possible values: - ApplicationAccessPolicy CallingLineIdentity ExternalAccessPolicy OnlineAudioConferencingRoutingPolicy OnlineVoicemailPolicy OnlineVoiceRoutingPolicy TeamsAppSetupPolicy TeamsAudioConferencingPolicy TeamsCallHoldPolicy TeamsCallingPolicy TeamsCallParkPolicy TeamsChannelsPolicy TeamsComplianceRecordingPolicy TeamsCortanaPolicy TeamsEmergencyCallingPolicy TeamsEmergencyCallRoutingPolicy TeamsEnhancedEncryptionPolicy TeamsEventsPolicy TeamsFeedbackPolicy TeamsFilesPolicy TeamsIPPhonePolicy TeamsMediaLoggingPolicy TeamsMeetingBrandingPolicy TeamsMeetingBroadcastPolicy TeamsMeetingPolicy TeamsMeetingTemplatePermissionPolicy TeamsMessagingPolicy TeamsMobilityPolicy TeamsRoomVideoTeleConferencingPolicy TeamsSharedCallingRoutingPolicy TeamsShiftsPolicy TeamsUpdateManagementPolicy TeamsVdiPolicy TeamsVideoInteropServicePolicy TeamsVirtualAppointmentsPolicy TenantDialPlan - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsGroupPolicyAssignment - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingBroadcastPolicy Vendor Live Events 1 10/25/2019 12:40:09 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -e2a3ed24-97be-494d-8d3c-dbc04cbb878a TeamsCallingPolicy AllowCalling 1 11/4/2019 12:54:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -19b881b4-c54c-4075-b1e8-a6ce55b12818 TeamsMeetingPolicy Kiosk 2 11/1/2019 8:22:06 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -0c0c1b45-bfc9-4718-b8ae-291439ac6fa4 TeamsCallingPolicy AllowCalling 2 11/1/2019 10:51:43 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -19c4909c-7d34-4e1f-b736-47caa2205768 TeamsMeetingBroadcastPolicy Employees Events 2 11/4/2019 12:56:57 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsCallingPolicy DisallowCalling 3 11/1/2019 10:53:16 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - -------------------------- Example 2 -------------------------- - Get-CsGroupPolicyAssignment -GroupId e050ce51-54bc-45b7-b3e6-c00343d31274 - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingBroadcastPolicy Vendor Live Events 1 10/25/2019 12:40:09 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsCallingPolicy AllowCalling 3 11/1/2019 10:53:16 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy kiosk 7 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - -------------------------- Example 3 -------------------------- - GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -e2a3ed24-97be-494d-8d3c-dbc04cbb878a TeamsCallingPolicy AllowCalling 1 11/4/2019 12:54:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -0c0c1b45-bfc9-4718-b8ae-291439ac6fa4 TeamsCallingPolicy AllowCalling 2 11/1/2019 10:51:43 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsCallingPolicy AllowCalling 3 11/1/2019 10:53:16 PM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csgrouppolicyassignment - - - New-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment - - - Remove-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csgrouppolicyassignment - - - - - - Get-CsHybridTelephoneNumber - Get - CsHybridTelephoneNumber - - This cmdlet displays information about one or more hybrid telephone numbers. - - - - > [!IMPORTANT] > This cmdlet is being deprecated. Use the Get-CsPhoneNumberAssignment cmdlet to display information about one or more phone numbers. Detailed instructions on how to use the new cmdlet can be found at Get-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment)This cmdlet displays information about one or more hybrid telephone numbers used for Audio Conferencing with Direct Routing for GCC High and DoD clouds. - Returned results are sorted by telephone number in ascending order. - - - - Get-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - The identity parameter. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - - Get-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - Filters the returned results to a specific phone number. The number should be specified without a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - The identity parameter. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - Filters the returned results to a specific phone number. The number should be specified without a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.5.0 or later. - The cmdlet is only available in GCC High and DoD cloud instances. - - - - - -------------------------- Example 1 -------------------------- - Get-CsHybridTelephoneNumber -TelephoneNumber 14025551234 - -Id O365Region SourceType TargetType TelephoneNumber UserId --- ---------- ---------- ---------- --------------- ------ -14025551234 NOAM Hybrid 14025551234 00000000-0000-0000-0000-000000000000 - - This example displays information about the phone number +1 (402) 555-1234. - - - - -------------------------- Example 2 -------------------------- - Get-CsHybridTelephoneNumber - -Id O365Region SourceType TargetType TelephoneNumber UserId --- ---------- ---------- ---------- --------------- ------ -14025551234 Hybrid 14025551234 -14025551235 Hybrid 14025551235 - - This example displays information about all hybrid telephone numbers in the tenant. Note that O365Region, TargetType, and UserId will not be populated. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cshybridtelephonenumber - - - New-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-cshybridtelephonenumber - - - Remove-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cshybridtelephonenumber - - - - - - Get-CsInboundBlockedNumberPattern - Get - CsInboundBlockedNumberPattern - - Returns a list of all blocked number patterns added to the tenant list. - - - - This cmdlet returns a list of all blocked number patterns added to the tenant list including Name, Description, Enabled (True/False), and Pattern for each. - - - - Get-CsInboundBlockedNumberPattern - - Filter - - Enables you to limit the returned data by filtering on the Identity. - - String - - String - - - None - - - - Get-CsInboundBlockedNumberPattern - - Identity - - Indicates the Identity of the blocked number patterns to return. - - String - - String - - - None - - - - - - Filter - - Enables you to limit the returned data by filtering on the Identity. - - String - - String - - - None - - - Identity - - Indicates the Identity of the blocked number patterns to return. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Get-CsInboundBlockedNumberPattern - - In this example, the Get-CsInboundBlockedNumberPattern cmdlet is called without any parameters in order to return all the blocked number patterns. - - - - -------------------------- Example 2 -------------------------- - PS> Get-CsInboundBlockedNumberPattern -Filter Block* - - In this example, the Get-CsInboundBlockedNumberPattern cmdlet will return all the blocked number patterns which identity starts with Block. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - Get-CsInboundExemptNumberPattern - Get - CsInboundExemptNumberPattern - - Returns a specific or the full list of all number patterns exempt from call blocking. - - - - This cmdlet returns a specific or all exempt number patterns added to the tenant list for call blocking including Name, Description, Enabled (True/False), and Pattern for each. - - - - Get-CsInboundExemptNumberPattern - - Filter - - Enables you to limit the returned data by filtering on Identity. - - String - - String - - - None - - - - Get-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - - - - Filter - - Enables you to limit the returned data by filtering on Identity. - - String - - String - - - None - - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your call block and exempt phone number ranges. - - - - - -------------------------- Example 1 -------------------------- - PS>Get-CsInboundExemptNumberPattern - - This returns all exempt number patterns. - - - - -------------------------- Example 2 -------------------------- - PS>Get-CsInboundExemptNumberPattern -Identity "Exempt1" - - This returns the exempt number patterns with Identity Exempt1. - - - - -------------------------- Example 3 -------------------------- - PS>Get-CsInboundExemptNumberPattern -Filter "Exempt*" - - This example returns the exempt number patterns with Identity starting with Exempt. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Get-CsMainlineAttendantAppointmentBookingFlow - Get - CsMainlineAttendantAppointmentBookingFlow - - The Get-CsMainlineAttendantAppointmentBookingFlow cmdlet returns the identified Mainline attendant appointment booking flow. - - - - The Get-CsMainlineAttendantAppointmentBookingFlow cmdlet lets you retrieve information about the Mainline attendant appointment booking flows n your organization. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantAppointmentBookingFlow - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - First - - The First parameter gets the first N appointment flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 appointment flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts appointment booking flows in descending order - - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns appointment booking flows where the name contains specified string - - String - - String - - - None - - - - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - First - - The First parameter gets the first N appointment flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 appointment flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts appointment booking flows in descending order - - SwitchParameter - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns appointment booking flows where the name contains specified string - - String - - String - - - None - - - - - - Identity - - - Represents the unique identifier of an appointment booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantAppointmentBookingFlow - - This example gets the first 100 Mainline attendant appointment booking flows in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsMainlineAttendantAppointmentBookingFlow -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example gets the Mainline attendant appointment booking flow with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no appointment booking flow exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineattendantappointmentbookingflow - - - - - - Get-CsMainlineAttendantFlow - Get - CsMainlineAttendantFlow - - The Get-CsMainlineAttendantFlow cmdlet returns information about the Mainline Attendant flows configured in your organization - - - - The Get-CsMainlineAttendantFlow cmdlet returns information about the Mainline Attendant flows configured in your organization. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantFlow - - RelatedConfigurationIds - - The Mainline Attendant configuration Id - - String - - String - - - None - - - Type - - The Mainline Attendant flow type - PARAMVALUE: AppointmentBooking | QuestionAnswer - - String - - String - - - None - - - Identity - - The Mainline Attendant identity - - String - - String - - - None - - - First - - The First parameter gets the first N Mainline Attendant flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 Mainline Attendant flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N Mainline Attendant flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts Mainline Attendant flows in descending order - - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns appointment booking flows where the name contains specified string - - String - - String - - - None - - - - - - RelatedConfigurationIds - - The Mainline Attendant configuration Id - - String - - String - - - None - - - Type - - The Mainline Attendant flow type - PARAMVALUE: AppointmentBooking | QuestionAnswer - - String - - String - - - None - - - Identity - - The Mainline Attendant identity - - String - - String - - - None - - - First - - The First parameter gets the first N Mainline Attendant flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 Mainline Attendant flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N Mainline Attendant flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts Mainline Attendant flows in descending order - - SwitchParameter - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns appointment booking flows where the name contains specified string - - String - - String - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantFlow - - This example will list all the Mainline Attendant flows in the tenant. - - - - -------------------------- Example 2 -------------------------- - Get-CsMainlineAttendantFlow -RelatedConfigurationIds 0b31bbe5-e2a0-4117-9b6f-956bca6023f8 - - This example will list all the Mainline Attendant flows associated with the specific configuration id. - - - - -------------------------- Example 3 -------------------------- - Get-CsMainlineAttendantFlow -Type AppointmentBooking - - This example will list all the Mainline Attendant Appointment flows. - - - - -------------------------- Example 4 -------------------------- - Get-CsMainlineAttendantFlow -Type QuestionAnswer - - This example will list all the Mainline Attendant Question and Answer flows with the specified type. - - - - -------------------------- Example 5 -------------------------- - Get-CsMainlineAttendantFlow -Identity 956bca6-e2a0-4117-9b6f-023f80b31bbe5 - - This example will list the Mainline Attendant flow with the specified identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineattendantflow - - - - - - Get-CsMainlineAttendantQuestionAnswerFlow - Get - CsMainlineAttendantQuestionAnswerFlow - - The Get-CsMainlineAttendantQuestionAnswerFlow cmdlet returns the identified Mainline attendant question and answer flow. - - - - The Get-CsMainlineAttendantQuestionAnswerFlow cmdlet lets you retrieve information about the Mainline attendant question and answer flows n your organization. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantQuestionAnswerFlow - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - First - - The First parameter gets the first N appointment flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 question and answer flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts appointment booking flows in descending order - - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns question and answer booking flows where the name contains specified string - - String - - String - - - None - - - - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - First - - The First parameter gets the first N appointment flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 question and answer flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. - - Int32 - - Int32 - - - 100 - - - Skip - - The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. - - Int32 - - Int32 - - - None - - - SortBy - - The SortBy parameter specifies the property used to sort. - - String - - String - - - Name - - - Descending - - The Descending parameter sorts appointment booking flows in descending order - - SwitchParameter - - SwitchParameter - - - False - - - NameFilter - - The NameFilter parameter returns question and answer booking flows where the name contains specified string - - String - - String - - - None - - - - - - Identity - - - Represents the unique identifier of a question and answer booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantQuestionAnswerFlow - - This example gets the first 100 Mainline attendant question and answer flows in the organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsMainlineAttendantQuestionAnswerFlow -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example gets the Mainline attendant question and answer flow with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no question and answer flow exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineattendantquestionanswerflow - - - - - - Get-CsMainlineAttendantSupportedLanguages - Get - CsMainlineAttendantSupportedLanguages - - The Get-CsMainlineAttendantSupportedLanguages cmdlet returns a list of languages that are supported for use with Mainline Attendant. - - - - The Get-CsMainlineAttendantSupportedLanguages cmdlet returns a list of languages that are supported for use with Mainline Attendant. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantSupportedLanguages - - - - - - - Identity - - - Represents the unique identifier of a question and answer booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantSupportedLanguages - - - - - - ----------------------- CommonParameters ----------------------- - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineattendantsupportedlanguages - - - - - - Get-CsMainlineAttendantSupportedVoices - Get - CsMainlineAttendantSupportedVoices - - The Get-CsMainlineAttendantSupportedVoices cmdlet returns a list of voices that are supported for use with Mainline Attendant. - - - - The Get-CsMainlineAttendantSupportedVoices cmdlet returns a list of voices that are supported for use with Mainline Attendant. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantSupportedVoices - - - - - - - Identity - - - Represents the unique identifier of a question and answer booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantSupportedVoices - - - - - - ----------------------- CommonParameters ----------------------- - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineattendantsupportedvoices - - - - - - Get-CsMainlineAttendantTenantInformation - Get - CsMainlineAttendantTenantInformation - - The Get-CsMainlineAttendantTenantInformation cmdlet returns the default language and voice configured in the tenant for Mainline Attendant. - - - - The Get-CsMainlineAttendantTenantInformation cmdlet returns the following Mainline Attendant information: - - DefaultLanguageId - - DefaultVoiceId - - DefaultTimeZoneId - - SupportedLanguages - - SupportedVoices - - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsMainlineAttendantTenantInformation - - - - - - - Identity - - - Represents the unique identifier of a question and answer booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsMainlineAttendantTenantInformation - - - - - - ----------------------- CommonParameters ----------------------- - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmainlineatendanttenantinformation - - - - - - Get-CsMeetingMigrationStatus - Get - CsMeetingMigrationStatus - - You use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting migrations. - - - - Meeting Migration Service (MMS) is a Skype for Business service that runs in the background and automatically updates Skype for Business and Microsoft Teams meetings for users. MMS is designed to eliminate the need for users to run the Meeting Migration Tool to update their Skype for Business and Microsoft Teams meetings. - You can use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting migrations. - - - - Get-CsMeetingMigrationStatus - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - EndTime - - > Applicable: Microsoft Teams - Specifies the end date of the date range. - - Object - - Object - - - None - - - StartTime - - > Applicable: Microsoft Teams - Specifies the start date of the date range. - - Object - - Object - - - None - - - State - - > Applicable: Microsoft Teams - With this parameter you can filter by migration state. Possible values are: - - Pending - - InProgress - - Failed - - Succeeded - - StateType - - StateType - - - None - - - SummaryOnly - - > Applicable: Microsoft Teams - Specified that you want a summary status of MMS migrations returned. - - - SwitchParameter - - - False - - - - - - EndTime - - > Applicable: Microsoft Teams - Specifies the end date of the date range. - - Object - - Object - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - StartTime - - > Applicable: Microsoft Teams - Specifies the start date of the date range. - - Object - - Object - - - None - - - State - - > Applicable: Microsoft Teams - With this parameter you can filter by migration state. Possible values are: - - Pending - - InProgress - - Failed - - Succeeded - - StateType - - StateType - - - None - - - SummaryOnly - - > Applicable: Microsoft Teams - Specified that you want a summary status of MMS migrations returned. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - CorrelationId : 849d3e3b-3e1d-465f-8dde-785aa9e3f856 CreateDate : 2024-04-27T00:24:00.1442688Z FailedMeeting : 0 InvitesUpdate : 0 LastMessage : MigrationType : AllToTeams ModifiedDate : 2024-04-27T00:24:00.1442688Z RetryCount : 0 State : Pending SucceededMeeting : 0 TotalMeeting : 0 UserId : 27c6ee67-c71d-4386-bf84-ebfdc7c3a171 UserPrincipalName : syntest1-prod@TESTTESTMMSSYNTHETICUSWESTT.onmicrosoft.com - where MigrationType can have the following values: - - SfbToTeams (Skype for Business On-prem to Teams) - TeamsToTeams (Teams to Teams) - ToSameType (Same source and target meeting types) - AllToTeams (All types to Teams) - - - - - -------------------------- Example 1 -------------------------- - Get-CsMeetingMigrationStatus -SummaryOnly - - This example is used to get a summary status of all MMS migrations. - - - - -------------------------- Example 2 -------------------------- - Get-CsMeetingMigrationStatus -Identity "ashaw@contoso.com" - - This example gets the meeting migration status for user ashaw@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmeetingmigrationstatus - - - Get-CsTenantMigrationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantmigrationconfiguration - - - Get-CsOnlineDialInConferencingTenantSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantsettings - - - Start-CsExMeetingMigration - https://learn.microsoft.com/powershell/module/microsoftteams/start-csexmeetingmigration - - - - - - Get-CsOnlineApplicationInstance - Get - CsOnlineApplicationInstance - - Get application instance for the tenant from Microsoft Entra ID. - - - - This cmdlet is used to get details of an application instance. - - - - Get-CsOnlineApplicationInstance - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Identities - - The UPNs or the object IDs of the application instances to retrieve, separated with comma. If this parameter nor parameter Identity are not provided, it will retrieve all application instances in the tenant. - - System.String - - System.String - - - None - - - Identity - - The UPN or the object ID of the application instance to retrieve. If this parameter nor parameter Identities are not provided, it will retrieve all application instances in the tenant. - - System.String - - System.String - - - None - - - ResultSize - - The result size for bulk get. This parameter is currently not working. - - System.Int32 - - System.Int32 - - - None - - - Skip - - Skips the first specified number of returned results. The default value is 0. This parameter is currently not working. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identities - - The UPNs or the object IDs of the application instances to retrieve, separated with comma. If this parameter nor parameter Identity are not provided, it will retrieve all application instances in the tenant. - - System.String - - System.String - - - None - - - Identity - - The UPN or the object ID of the application instance to retrieve. If this parameter nor parameter Identities are not provided, it will retrieve all application instances in the tenant. - - System.String - - System.String - - - None - - - ResultSize - - The result size for bulk get. This parameter is currently not working. - - System.Int32 - - System.Int32 - - - None - - - Skip - - Skips the first specified number of returned results. The default value is 0. This parameter is currently not working. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineApplicationInstance -Identity appinstance01@contoso.com - - This example returns the application instance with identity "appinstance01@contoso.com". - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineApplicationInstance -Identities appinstance01@contoso.com,appinstance02@contoso.com - - This example returns the application instance with identities "appinstance01@contoso.com" and "appinstance02@contoso.com". Query with multiple comma separated Identity. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineApplicationInstance -ResultSize 10 - - This example returns the first 10 application instances. - - - - -------------------------- Example 4 -------------------------- - Get-CsOnlineApplicationInstance - - This example returns the details of all application instances. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstance - - - Set-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineapplicationinstance - - - New-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Sync-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/sync-csonlineapplicationinstance - - - - - - Get-CsOnlineApplicationInstanceAssociation - Get - CsOnlineApplicationInstanceAssociation - - Use the Get-CsOnlineApplicationInstanceAssociation cmdlet to get information about the associations setup in your organization. - - - - Use the Get-CsOnlineApplicationInstanceAssociation cmdlet to get information about the associations setup between online application instances and the application configurations, like auto attendants and call queues. - - - - Get-CsOnlineApplicationInstanceAssociation - - Identity - - The identity for the application instance whose association is to be retrieved. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the application instance whose association is to be retrieved. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Get-CsOnlineApplicationInstanceAssociation cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.ApplicationInstanceAssociation - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineApplicationInstanceAssociation -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - This example gets the association object for the application instance that has the identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociation - - - Get-CsOnlineApplicationInstanceAssociationStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociationstatus - - - New-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstanceassociation - - - Remove-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineapplicationinstanceassociation - - - - - - Get-CsOnlineApplicationInstanceAssociationStatus - Get - CsOnlineApplicationInstanceAssociationStatus - - Use the Get-CsOnlineApplicationInstanceAssociationStatus cmdlet to get the provisioning status for the associations you have setup in your organization. - - - - Use the Get-CsOnlineApplicationInstanceAssociationStatus cmdlet to get provisioning status for the associations you have setup between online application instances and the application configurations, like auto attendants and call queues. - - - - Get-CsOnlineApplicationInstanceAssociationStatus - - Identity - - The identity for the application instance whose association provisioning status is to be retrieved. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the application instance whose association provisioning status is to be retrieved. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Get-CsOnlineApplicationInstanceAssociationStatus cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.StatusRecord - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineApplicationInstanceAssociationStatus -Identity "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - This example gets the provisioning status for the association object of the application instance that has the identity of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociationstatus - - - Get-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociation - - - New-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstanceassociation - - - Remove-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineapplicationinstanceassociation - - - - - - Get-CsOnlineAudioConferencingRoutingPolicy - Get - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet retrieves all online audio conferencing routing policies for the tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineAudioConferencingRoutingPolicy - - Retrieves all Online Audio Conferencing Routing Policy instances - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Get-CsOnlineAudioFile - Get - CsOnlineAudioFile - - Returns information about a specific or all uploaded audio files of a given application type. - - - - This cmdlet returns information on a specific or all uploaded audio files of a given application type. If you are not specifying any parameters you will get information of all uploaded audio files with ApplicationId = TenantGlobal. - - - - Get-CsOnlineAudioFile - - ApplicationId - - The ApplicationId parameter specifies the identifier for the application that was specified when audio file was uploaded. For example, if the audio file is used with an auto attendant, then it should specified as "OrgAutoAttendant". If the audio file is used with a hunt group (call queue), then it needs to be specified as "HuntGroup". If the audio file is used for music on hold, the it needs to specified as "TenantGlobal". - If you are not specifying an ApplicationId it is assumed to be TenantGlobal. - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - System.String - - System.String - - - TenantGlobal - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to see information about. If you are only specifying -Identity, the -ApplicationId it is assumed to be TenantGlobal. - If you need to see the information of a specific audio file with ApplicationId of OrgAutoAttendant or HuntGroup, you need to specify -ApplicationId with the corresponding value and -Identity with the Id of the audio file. - - System.String - - System.String - - - None - - - - - - ApplicationId - - The ApplicationId parameter specifies the identifier for the application that was specified when audio file was uploaded. For example, if the audio file is used with an auto attendant, then it should specified as "OrgAutoAttendant". If the audio file is used with a hunt group (call queue), then it needs to be specified as "HuntGroup". If the audio file is used for music on hold, the it needs to specified as "TenantGlobal". - If you are not specifying an ApplicationId it is assumed to be TenantGlobal. - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - System.String - - System.String - - - TenantGlobal - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to see information about. If you are only specifying -Identity, the -ApplicationId it is assumed to be TenantGlobal. - If you need to see the information of a specific audio file with ApplicationId of OrgAutoAttendant or HuntGroup, you need to specify -ApplicationId with the corresponding value and -Identity with the Id of the audio file. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.4.0-preview or later. - If you call the cmdlet without having uploaded any audio files, with a non-existing Identity or with an illegal ApplicationId, you will receive a generic error message. In addition, the ApplicationId is case sensitive. - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineAudioFile - -Id : 85364afb59a143fc9466979e0f34f749 -FileName : CustomMoH.mp3 -ApplicationId : TenantGlobal -MarkedForDeletion : False - - This returns information about all uploaded audio files with ApplicationId = TenantGlobal. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineAudioFile -ApplicationId HuntGroup -Identity dcfcc31daa9246f29d94d0a715ef877e - -Id : dcfcc31daa9246f29d94d0a715ef877e -FileName : SupportCQ.mp3 -ApplicationId : HuntGroup -MarkedForDeletion : False - - This cmdlet returns information about the audio file with Id dcfcc31daa9246f29d94d0a715ef877e and with ApplicationId = HuntGroup. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineAudioFile -ApplicationId OrgAutoAttendant - -Id : 58083ae8bc9e4a66a6b2810b2e1f4e4e -FileName : MainAAAnnouncement.mp3 -ApplicationId : OrgAutoAttendant -MarkedForDeletion : False - - This cmdlet returns information about all uploaded audio files with ApplicationId = OrgAutoAttendant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudiofile - - - Export-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/export-csonlineaudiofile - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Remove-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudiofile - - - - - - Get-CsOnlineDialInConferencingBridge - Get - CsOnlineDialInConferencingBridge - - Use the Get-CsOnlineDialInConferencingBridge cmdlet to view the settings on an audio conferencing bridge that is used when Microsoft is the audio conferencing provider. - - - - The Get-CsOnlineDialInConferencingBridge cmdlet is used to view all of the settings for all dial-in conferencing bridges or for a specific dial-in conferencing bridge. However, if the PSTN conferencing service status of the tenant is Disabled, no results will be displayed. - - - - Get-CsOnlineDialInConferencingBridge - - Identity - - > Applicable: Skype for Business Online - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - DomainController - - > Applicable: Skype for Business Online - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): - `-DomainController atl-cs-001.Contoso.com` - Computer name: - `-DomainController atl-cs-001` - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Name - - > Applicable: Skype for Business Online - Specifies the name of the audio conferencing bridge. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - DomainController - - > Applicable: Skype for Business Online - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): - `-DomainController atl-cs-001.Contoso.com` - Computer name: - `-DomainController atl-cs-001` - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Skype for Business Online - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - Name - - > Applicable: Skype for Business Online - Specifies the name of the audio conferencing bridge. - - String - - String - - - None - - - Tenant - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Skype for Business Online - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialInConferencingBridge | fl - - This example shows how to return all of the audio conferencing bridges that are being used and returns the results in a formatted list. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineDialInConferencingBridge -Tenant 26efe125-c070-46f9-8ed0-fc02165a167c - - This example shows how to return all of the audio conferencing bridges for the given tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csonlinedialinconferencingbridge - - - - - - Get-CsOnlineDialInConferencingLanguagesSupported - Get - CsOnlineDialInConferencingLanguagesSupported - - Use the Get-CsOnlineDialInConferencingLanguagesSupported cmdlet to view the list of languages that are supported when an organization uses Microsoft as the dial-in audio conferencing provider. - - - - The Get-CsOnlineDialInConferencingLanguagesSupported cmdlet is used to view the primary and secondary languages that are set for a dial-in conferencing service number. There is a primary language that is set along with secondary languages (up to 4) that can also be set. - Primary and secondary languages are those languages that are used to play prompts when a caller calls into a dial-in service number. When no languages are specified for a dial-in service number it will get the set of default languages. - - - - Get-CsOnlineDialInConferencingLanguagesSupported - - DomainController - - > Applicable: Skype for Business Online - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com` - Computer name: `-DomainController atl-cs-001` - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - - - - DomainController - - > Applicable: Skype for Business Online - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com` - Computer name: `-DomainController atl-cs-001` - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Skype for Business Online - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialInConferencingLanguagesSupported | fl - - This example allows returns the list of supported languages when you are using Microsoft as your dial-in audio conferencing provider and displays them in a formatted list. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csonlinedialinconferencinglanguagessupported - - - - - - Get-CsOnlineDialinConferencingPolicy - Get - CsOnlineDialinConferencingPolicy - - Retrieves the available Dial-in Conferencing policies in the tenant. - - - - Retrieves the available Dial-in Conferencing policies in the tenant. - - - - Get-CsOnlineDialinConferencingPolicy - - Identity - - > Applicable: Microsoft Teams - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Reserved for Microsoft Internal use. - - - SwitchParameter - - - False - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - A unique identifier specifying the scope and, in some cases the name, of the policy. If this parameter is omitted, all policies for the organization are returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Reserved for Microsoft Internal use. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialinConferencingPolicy - - This example retrieves all the available Dial in Conferencing policies in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingpolicy - - - - - - Get-CsOnlineDialInConferencingServiceNumber - Get - CsOnlineDialInConferencingServiceNumber - - Use the Get-CsOnlineDialInConferencingServiceNumber cmdlet to return all of the default dial-in service numbers that are assigned to an Office 365 audio conferencing bridge. - - - - The Get-CsOnlineDialInConferencingServiceNumber cmdlet returns all of the dial-in service numbers for a given tenant or Office 365 organization that are assigned to an audio conferencing bridge. If the cmdlet is run by a tenant administrator for an organization, it will run within the tenant's scope. A tenant administrator can only retrieve and view information that is associated with their organization. - - - - Get-CsOnlineDialInConferencingServiceNumber - - Identity - - > Applicable: Microsoft Teams - Specifies the default dial-in service number string. - - String - - String - - - None - - - BridgeId - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. When it's used it returns all of the service numbers that are configured on the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge. When it is used it returns all of the service numbers that are configured on the audio conferencing bridge. - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city geocode to be used. When used it lists all of the service numbers for a specific city geocode. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com.` - Computer name: `-DomainController atl-cs-001` - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - BridgeId - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. When it's used it returns all of the service numbers that are configured on the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge. When it is used it returns all of the service numbers that are configured on the audio conferencing bridge. - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city geocode to be used. When used it lists all of the service numbers for a specific city geocode. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com.` - Computer name: `-DomainController atl-cs-001` - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the default dial-in service number string. - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialInConferencingServiceNumber | fl - - This example returns all of the default service numbers for an organization in a formatted list. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineDialInConferencingServiceNumber -BridgeId 72dfe128-d079-46f8-8tr0-gb12369p167c | fl - - This example returns all of the default service numbers for a specified audio conferencing bridge in a formatted list. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineDialInConferencingBridge -Name "Conference Bridge" - - This example returns all of the default service numbers for the audio conferencing bridge named "Conference Bridge". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingservicenumber - - - - - - Get-CsOnlineDialinConferencingTenantConfiguration - Get - CsOnlineDialinConferencingTenantConfiguration - - Use the Get-CsOnlineDialinConferencingTenantConfiguration cmdlet to retrieve the tenant level configuration for dial-in conferencing. - - - - The dial-in conferencing configuration specifies only if dial-in conferencing is enabled for the tenant. By contrast, the dial-in conferencing tenant settings specify what functions are available during a conference call. For example, whether or not entries and exits from the call are announced. The settings also manage some of the administrative functions, such as when users get notification of administrative actions, like a PIN change. For more information on settings and their customization, see Set-CsOnlineDialInConferencingTenantSettings. - This cmdlet currently displays only the enabled or disabled status of your tenant configuration. There is one configuration per tenant. - - - - Get-CsOnlineDialinConferencingTenantConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the configuration from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the configuration from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.OnLineDialInConferencing.OnLineDialInConferencingTenantConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialinConferencingTenantConfiguration - - This example returns the configuration for the tenant administrator's organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantconfiguration - - - - - - Get-CsOnlineDialInConferencingTenantSettings - Get - CsOnlineDialInConferencingTenantSettings - - Use the Get-CsOnlineDialInConferencingTenantSettings cmdlet to retrieve tenant level settings for dial-in conferencing. - - - - - - - - Get-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the settings from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - Retrieves the settings from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.OnLineDialInConferencing.OnLineDialInConferencingTenantSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialInConferencingTenantSettings - - This example returns the global setting for the tenant administrator's organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantsettings - - - - - - Get-CsOnlineDialInConferencingUser - Get - CsOnlineDialInConferencingUser - - Use the `Get-CsOnlineDialInConferencingUser` cmdlet to view the properties and settings of users that are enabled for dial-in conferencing and are using Microsoft as their PSTN conferencing provider. - - - - This cmdlet will only return users that have been enabled for audio conferencing using Microsoft as the audio conferencing provider. Users that are enabled for audio conferencing using a third-party audio conferencing provider won't be returned. If there are no users in the organization that have been enabled for audio conferencing, then the cmdlet will return no results. - The see a list of users with conferencing providers other than Microsoft use the Get-CsUserAcp cmdlet. NOTE : In the Teams PowerShell Module version 3.0 or later, the following input parameters have been deprecated for TeamsOnly customers (removed or very low usage): - - BridgeId - - BridgeName - - DomainController - - Force - - LdapFilter - - ServiceNumber - - TenantDomain - - Common Parameters - - - - Get-CsOnlineDialInConferencingUser - - Identity - - > Applicable: Microsoft Teams - Specifies the user to retrieve. The user can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - BridgeId - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies the name for the audio conferencing bridge. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - LdapFilter - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Enables you to limit the returned data by filtering on generic Active Directory attributes (that is, attributes that are not specific to Skype for Business Server 2015). For example, you can limit returned data to users who work in a specific department, or users who have a specified manager or job title. The LdapFilter parameter uses the LDAP query language when creating filters. For example, a filter that returns only users who work in the city of Redmond would look like this: "l=Redmond", with "l" (a lowercase L) representing the Active Directory attribute (locality); "=" representing the comparison operator (equal to); and "Redmond" representing the filter value. - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams - Enables you to limit the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Int32 - - Int32 - - - None - - - ServiceNumber - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies a service number to serve as a filter for the returned user collection. Only users who have been assigned the specified number will be returned. The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - NOTE: This parameter is reserved for internal Microsoft use. - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308". You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - - - - BridgeId - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies the name for the audio conferencing bridge. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the user to retrieve. The user can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - LdapFilter - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Enables you to limit the returned data by filtering on generic Active Directory attributes (that is, attributes that are not specific to Skype for Business Server 2015). For example, you can limit returned data to users who work in a specific department, or users who have a specified manager or job title. The LdapFilter parameter uses the LDAP query language when creating filters. For example, a filter that returns only users who work in the city of Redmond would look like this: "l=Redmond", with "l" (a lowercase L) representing the Active Directory attribute (locality); "=" representing the comparison operator (equal to); and "Redmond" representing the filter value. - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams - Enables you to limit the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Int32 - - Int32 - - - None - - - ServiceNumber - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Specifies a service number to serve as a filter for the returned user collection. Only users who have been assigned the specified number will be returned. The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - NOTE: This parameter is reserved for internal Microsoft use. - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308". You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineDialInConferencingUser -Identity Ken.Myer@contoso.com - - This example uses the User Principal Name (UPN) to retrieve the BridgeID and ServiceNumber information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencinguser - - - Set-CsOnlineDialInConferencingUser - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencinguser - - - - - - Get-CsOnlineDialOutPolicy - Get - CsOnlineDialOutPolicy - - Use the `Get-CsOnlineDialOutPolicy` cmdlet to get all the available outbound calling restriction policies in your organization. - - - - In Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization. The policies apply to all the different PSTN connectivity options for Microsoft Teams; Calling Plan, Direct Routing, and Operator Connect. - To get all the available policies in your organization run `Get-CsOnlineDialOutPolicy`. To assign one of these policies to a user run `Grant-CsDialoutPolicy`. - - - - Get-CsOnlineDialOutPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - - Get-CsOnlineDialOutPolicy - - Identity - - Unique identifier of the outbound calling restriction policy to be returned. To refer to the global policy, use this syntax: "-Identity Global". To refer to a per-user policy, use syntax similar to this: -Identity DialoutCPCandPSTNDisabled. - If this parameter is omitted, then all the outbound calling restriction policies configured for use in your tenant will be returned. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Unique identifier of the outbound calling restriction policy to be returned. To refer to the global policy, use this syntax: "-Identity Global". To refer to a per-user policy, use syntax similar to this: -Identity DialoutCPCandPSTNDisabled. - If this parameter is omitted, then all the outbound calling restriction policies configured for use in your tenant will be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDialOutPolicy - - In Example 1, `Get-CsOnlineDialOutPolicy` is called without any additional parameters; this returns a collection of all the outbound calling restriction policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineDialOutPolicy -Identity DialoutCPCandPSTNDisabled - - In Example 2, `Get-CsOnlineDialOutPolicy` is used to return the per-user outbound calling restriction policy that has an Identity DialoutCPCandPSTNDisabled. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialoutpolicy - - - Grant-CsDialoutPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csdialoutpolicy - - - - - - Get-CsOnlineDirectoryTenant - Get - CsOnlineDirectoryTenant - - Use the Get-CsOnlineDirectoryTenant cmdlet to retrieve a tenant and associated parameters from the Business Voice Directory. - - - - Note : Starting with Teams PowerShell Module 4.0, this cmdlet will be deprecated. Use the Get-CsTenant or Get-CsOnlineDialInConferencingBridge cmdlet to view information previously present in Get-CsOnlineDirectoryTenant. - Use the Get-CsOnlineDirectoryTenant cmdlet to retrieve tenant parameters like AnnouncementsDisabled, NameRecordingDisabled and Bridges from the Business Voice Directory. - - - - Get-CsOnlineDirectoryTenant - - Tenant - - > Applicable: Microsoft Teams - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter are either the fully qualified domain name (FQDN) or the computer name. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter are either the fully qualified domain name (FQDN) or the computer name. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can find your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Deserialized.Microsoft.Rtc.Management.Hosted.Bvd.Types.LacTenant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineDirectoryTenant -Tenant 7a205197-8e59-487d-b9fa-3fc1b108f1e5 - - This example returns the tenant specified by GUID. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedirectorytenant - - - Get-CsOnlineTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumber - - - - - - Get-CsOnlineEnhancedEmergencyServiceDisclaimer - Get - CsOnlineEnhancedEmergencyServiceDisclaimer - - Use the Get-CsOnlineEnhancedEmergencyServiceDisclaimer cmdlet to determine whether your organization has accepted the terms and conditions of enhanced emergency service. - - - - You can use this cmdlet to determine whether your organization has accepted the terms and conditions of enhanced emergency service. The United States is currently the only country supported. - - - - Get-CsOnlineEnhancedEmergencyServiceDisclaimer - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the region or country whose terms and conditions you wish to verify. The United States is currently the only country supported, but it must be specified as "US". - - CountryInfo - - CountryInfo - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Version - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the region or country whose terms and conditions you wish to verify. The United States is currently the only country supported, but it must be specified as "US". - - CountryInfo - - CountryInfo - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Version - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineEnhancedEmergencyServiceDisclaimer -CountryOrRegion "US" - - This example returns your organization's enhanced emergency service terms and conditions acceptance status. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineenhancedemergencyservicedisclaimer - - - Set-CsOnlineEnhancedEmergencyServiceDisclaimer - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineenhancedemergencyservicedisclaimer - - - - - - Get-CsOnlineLisCivicAddress - Get - CsOnlineLisCivicAddress - - Use the Get-CsOnlineLisCivicAddress cmdlet to retrieve information about existing emergency civic addresses defined in the Location Information Service (LIS). - - - - Returns one or more emergency civic addresses. - - - - Get-CsOnlineLisCivicAddress - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved addresses have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target civic address. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identity of the civic address to return. - - Guid - - Guid - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target civic address. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the target civic address. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - LocationId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of civic addresses, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return civic addresses 26-50 for Seattle. - `Get-CsOnlineLisCivicAddress -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of phone numbers at the returned addresses. - - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned addresses. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Valid, Invalid, and Notvalidated. - - String - - String - - - None - - - - - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved addresses have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target civic address. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identity of the civic address to return. - - Guid - - Guid - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target civic address. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the target civic address. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - LocationId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of civic addresses, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return civic addresses 26-50 for Seattle. - `Get-CsOnlineLisCivicAddress -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of phone numbers at the returned addresses. - - SwitchParameter - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned addresses. - - SwitchParameter - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Valid, Invalid, and Notvalidated. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisCivicAddress -CivicAddressId 235678321ee38d9a5-33dc-4a32-9fb8-f234cedb91ac - - This example returns the civic address with the specified identification. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisCivicAddress -City Seattle - - This example returns all the civic addresses in the city of Seattle. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress - - - Set-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliscivicaddress - - - New-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineliscivicaddress - - - Remove-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliscivicaddress - - - - - - Get-CsOnlineLisLocation - Get - CsOnlineLisLocation - - Use the Get-CsOnlineLisLocation cmdlet to retrieve information on previously defined locations in the Location Information Service (LIS.) - - - - - - - - Get-CsOnlineLisLocation - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved locations have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target location. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identification number of the civic address that is associated with the target locations. - - Guid - - Guid - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target location. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the civic address that is associated with the target locations. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of locations, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return locations 26-50 for Seattle. - `Get-CsOnlineLisLocation -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of telephone numbers at the returned locations. - - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned locations. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Validated, Invalid, and Notvalidated. - - String - - String - - - None - - - - Get-CsOnlineLisLocation - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved locations have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target location. - - String - - String - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target location. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the civic address that is associated with the target locations. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the location to retrieve. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of locations, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return locations 26-50 for Seattle. - `Get-CsOnlineLisLocation -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of telephone numbers at the returned locations. - - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned locations. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Validated, Invalid, and Notvalidated. - - String - - String - - - None - - - - Get-CsOnlineLisLocation - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved locations have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target location. - - String - - String - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target location. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the civic address that is associated with the target locations. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the target location. - - Guid - - Guid - - - None - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of locations, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return locations 26-50 for Seattle. - `Get-CsOnlineLisLocation -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of telephone numbers at the returned locations. - - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned locations. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Validated, Invalid, and Notvalidated. - - String - - String - - - None - - - - - - AssignmentStatus - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Specifies whether the retrieved locations have been assigned to users or not. Valid inputs are "Assigned", or "Unassigned". - - String - - String - - - None - - - City - - > Applicable: Microsoft Teams - Specifies the city of the target location. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identification number of the civic address that is associated with the target locations. - - Guid - - Guid - - - None - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the target location. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the civic address that is associated with the target locations. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the location to retrieve. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the target location. - - Guid - - Guid - - - None - - - NumberOfResultsToSkip - - > Applicable: Microsoft Teams - Specifies the number of results to skip. If there are a large number of locations, you can limit the number of results by using the ResultSize parameter. If you limited the first cmdlet execution to 25 results, and want to look at the next 25 locations, then you leave ResultSize at 25 and set NumberOfResultsToSkip to 25 to omit the first 25 you've reviewed. For example the command below will return locations 26-50 for Seattle. - `Get-CsOnlineLisLocation -City Seattle -ResultSize 25 -NumberOfResultsToSkip 25` - - Int32 - - Int32 - - - None - - - PopulateNumberOfTelephoneNumbers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfTelephoneNumbers switch causes the cmdlet to provide the number of telephone numbers at the returned locations. - - SwitchParameter - - SwitchParameter - - - False - - - PopulateNumberOfVoiceUsers - - > Applicable: Microsoft Teams - If present, the PopulateNumberOfVoiceUsers switch causes the cmdlet to provide the number of voice users at the returned locations. - - SwitchParameter - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the maximum number of results to return. - - Int32 - - Int32 - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Specifies the validation status of the addresses to be returned. Valid inputs are: Validated, Invalid, and Notvalidated. - - String - - String - - - None - - - - - - None - - - - - - - - - - PSObject - - - Returns an instance, or instances of emergency location objects. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisLocation -City Seattle -ResultSize 25 -ValidationStatus Validated - - This example returns a maximum of 25 validated locations in Seattle. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisLocation -CivicAddressId a363a9b8-1acd-41de-916a-296c7998a024 - - This example returns the locations associated with a civic address specified by its unique identifier. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineLisLocation -Location "3rd Floor Cafe" - - This example returns the location described as the "3rd Floor Cafe". - - - - -------------------------- Example 4 -------------------------- - Get-CsOnlineLisLocation -LocationId 5aa884e8-d548-4b8e-a289-52bfd5265a6e - - This example returns the information on one location specified by its unique identifier. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation - - - Set-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelislocation - - - New-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinelislocation - - - Remove-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelislocation - - - - - - Get-CsOnlineLisPort - Get - CsOnlineLisPort - - Retrieves one or more ports from the location configuration database. - - - - Each port can be associated with a location, in which case this cmdlet will also retrieve the location information of the ports. This location association is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet retrieves information on associations between physical locations and the port through which the client is connected. - - - - Get-CsOnlineLisPort - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - This parameter identifies the ID of the port. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - This parameter identifies the ID of the port. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisPort - -PortID ChassisID LocationId Description ------- --------- ---------- ----------- -G1/0/30 B8-BE-BF-4A-A3-00 9905bca0-6fb0-11ec-84a4-25019013784a -S2/0/25 F6-26-79-B5-3D-49 d7714269-ee52-4635-97b0-d7c228801d24 - - Example 1 retrieves all Location Information Server (LIS) ports and any associated locations. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisPort -ChassisID 'B8-BE-BF-4A-A3-00' -PortID 'G1/0/30' - -PortID ChassisID LocationId Description ------- --------- ---------- ----------- -G1/0/30 B8-BE-BF-4A-A3-00 9905bca0-6fb0-11ec-84a4-25019013784a - - Example 2 retrieves the location information for port G1/0/30 with ChassisID B8-BE-BF-4A-A3-00. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisport - - - Set-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisport - - - Remove-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisport - - - - - - Get-CsOnlineLisSubnet - Get - CsOnlineLisSubnet - - Retrieves one or more subnets from the location configuration database. - - - - Each subnet can be associated with a location, in which case this cmdlet will also retrieve the location information of the subnets. This location association is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet retrieves information on associations between physical locations and the subnet through which calls are routed. - The location ID which is associating with the subnet is not required to be the existing location. - - - - Get-CsOnlineLisSubnet - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisSubnet - - Example 1 retrieves all Location Information Server (LIS) subnets. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisSubnet -Subnet 10.106.89.12 - - Example 2 retrieves the Location Information Server (LIS) subnet for Subnet ID "10.106.89.12". - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineLisSubnet -Subnet 2001:4898:e8:6c:90d2:28d4:76a4:ec5e - - Example 2 retrieves the Location Information Server (LIS) subnet for Subnet ID "2001:4898:e8:6c:90d2:28d4:76a4:ec5e". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelissubnet - - - - - - Get-CsOnlineLisSwitch - Get - CsOnlineLisSwitch - - Retrieves one or more network switches from the location configuration database. - - - - Each switch can be associated with a location, in which case this cmdlet will also retrieve the location information of the switches. This location association is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet retrieves information on associations between physical locations and the network switch through which the client is connected. - - - - Get-CsOnlineLisSwitch - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - System.String - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisSwitch - -ChassisID LocationId Description ---------- ---------- ----------- -B8-BE-BF-4A-A3-00 9905bca0-6fb0-11ec-84a4-25019013784a DKSwitch1 -F6-26-79-B5-3D-49 d7714269-ee52-4635-97b0-d7c228801d24 USSwitch1 - - Example 1 retrieves all Location Information Server (LIS) switches and any associated locations. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisSwitch -ChassisID B8-BE-BF-4A-A3-00 - -ChassisID LocationId Description ---------- ---------- ----------- -B8-BE-BF-4A-A3-00 9905bca0-6fb0-11ec-84a4-25019013784a DKSwitch1 - - Example 2 retrieves Location Information Server (LIS) switch "B8-BE-BF-4A-A3-00" and associated location. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisswitch - - - Set-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisswitch - - - Remove-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisswitch - - - - - - Get-CsOnlineLisWirelessAccessPoint - Get - CsOnlineLisWirelessAccessPoint - - Retrieves one or more wireless access points (WAPs) from the location configuration database. - - - - Each WAP can be associated with a location, in which case this cmdlet will also retrieve the location information of the WAPs. This location association is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet retrieves information on associations between physical locations and the WAP through which the client is connected. - The BSSID (Basic Service Set Identifiers) is used to describe sections of a wireless local area network. It is the MAC of the 802.11 side of the access point. The BSSID parameter in this command also supports the wildcard format to cover all BSSIDs in the range which are sharing the same description and Location ID. The wildcard '*' can be on either the last one or two character(s). - If a BSSID with a wildcard format is already exists, a location request with a WAP which is within this wildcard range will return the access point that is configured with the wildcard format. - - - - Get-CsOnlineLisWirelessAccessPoint - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineLisWirelessAccessPoint - -BSSID LocationId Description ------ ---------- ----------- -F0-6E-0B-C2-03-23 d7714269-ee52-4635-97b0-d7c228801d24 USWAP1 -34-E3-80-D5-AB-60 9905bca0-6fb0-11ec-84a4-25019013784a DKWAP1 -F0-6E-0B-C2-03-* b2804a1a-e4cf-47df-8964-3eaf6fe1ae3a SEWAPs - - Example 1 retrieves all Location Information Server (LIS) wireless access points and any associated locations. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-03-23 - -BSSID LocationId Description ------ ---------- ----------- -F0-6E-0B-C2-03-23 d7714269-ee52-4635-97b0-d7c228801d24 USWAP1 - - Example 2 retrieves Location Information Server (LIS) wireless access point "F0-6E-0B-C2-03-23" and associated location. - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-03-* - -BSSID LocationId Description ------ ---------- ----------- -F0-6E-0B-C2-03-* b2804a1a-e4cf-47df-8964-3eaf6fe1ae3a SEWAPs - - Example 3 retrieves Location Information Server (LIS) wireless access point "F0-6E-0B-C2-03-*" and associated location. - - - - -------------------------- Example 4 -------------------------- - Get-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-03-12 - -BSSID LocationId Description ------ ---------- ----------- -F0-6E-0B-C2-03-* b2804a1a-e4cf-47df-8964-3eaf6fe1ae3a SEWAPs - - Example 4 retrieves Location Information Server (LIS) wireless access point "F0-6E-0B-C2-03-12" and associated location. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliswirelessaccesspoint - - - Set-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliswirelessaccesspoint - - - Remove-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliswirelessaccesspoint - - - - - - Get-CsOnlinePSTNGateway - Get - CsOnlinePSTNGateway - - Shows the configuration of the previously defined Session Border Controller(s) (SBC(s)) that describes the settings for the peer entity. This cmdlet was introduced with Microsoft Phone System Direct Routing. - - - - Use this cmdlet to show the configuration of the previously created Session Border Controller(s) (SBC(s)) configuration. Each configuration contains specific settings for an SBC. These settings configure such entities as SIP signaling port, whether media bypass is enabled on this SBC, will the SBC send SIP options, specify the limit of maximum concurrent sessions, The cmdlet also let drain the SBC by setting parameter -Enabled to true or false state. When the Enabled parameter set to $false, the SBC will continue existing calls, bit all new calls routed to another SBC in a route (if exists). - - - - Get-CsOnlinePSTNGateway - - Filter - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - String - - String - - - None - - - - Get-CsOnlinePSTNGateway - - Identity - - > Applicable: Microsoft Teams - The parameter is optional for the cmdlet. If not set all SBCs paired to the tenant are listed. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The parameter is optional for the cmdlet. If not set all SBCs paired to the tenant are listed. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlinePSTNGateway - - This example shows all SBCs paired with the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlinePSTNGateway -Filter "*.contoso.com" - - This example selects all SBCs with identities matching the pattern *.contoso.com, such as sbc1.contoso.com and sbc2.contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstngateway - - - Set-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstngateway - - - New-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinepstngateway - - - Remove-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinepstngateway - - - - - - Get-CsOnlinePstnUsage - Get - CsOnlinePstnUsage - - Returns information about online public switched telephone network (PSTN) usage records used in your tenant. - - - - Online PSTN usages are string values that are used for call authorization. An online PSTN usage links an online voice policy to a route. The `Get-CsOnlinePstnUsage` cmdlet retrieves the list of all online PSTN usages available within a tenant. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Get-CsOnlinePstnUsage - - Filter - - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - - Get-CsOnlinePstnUsage - - Identity - - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to retrieve only those PSTN usages with an Identity matching a particular wildcard string. However, the only Identity available to PSTN usages is Global, so this parameter is not useful for this cmdlet. - - String - - String - - - None - - - Identity - - The level at which these settings are applied. The only identity that can be applied to PSTN usages is Global. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CSOnlinePSTNUsage - - This command returns the list of global PSTN usages available within the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstnusage - - - Set-CsOnlinePstnUsage - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstnusage - - - - - - Get-CsOnlineSchedule - Get - CsOnlineSchedule - - Use the Get-CsOnlineSchedule cmdlet to get information about schedules that belong to your organization. - - - - The Get-CsOnlineSchedule cmdlet returns information about the schedules in your organization. - - - - Get-CsOnlineSchedule - - Id - - > Applicable: Microsoft Teams - The Id for the schedule to be retrieved. If this parameter is not specified, then all schedules in the organization are returned. - - System.String - - System.String - - - None - - - - - - Id - - > Applicable: Microsoft Teams - The Id for the schedule to be retrieved. If this parameter is not specified, then all schedules in the organization are returned. - - System.String - - System.String - - - None - - - - - - System.String - - - The Get-CsOnlineSchedule cmdlet accepts a string as the Id parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.Schedule - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineSchedule - - This example retrieves all schedules that belong to your organization. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineSchedule -Id "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - This example gets the schedules that has the Id of f7a821dc-2d69-5ae8-8525-bcb4a4556093. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineschedule - - - New-CsOnlineTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetimerange - - - New-CsOnlineDateTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedatetimerange - - - New-CsAutoAttendantCallFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - - - - Get-CsOnlineSipDomain - Get - CsOnlineSipDomain - - This cmdlet lists online sip domains and their enabled/disabled status. In a disabled domain, provisioning of users is blocked. Once a domain is re-enabled, provisioning of users in that domain will happen. - - - - This cmdlet is useful for organizations consolidating multiple on-premises deployments of Skype for Business Server into a single Office 365 tenant. During consolidation, sip domains for all forests hosting Skype for Business Server - other than the forest currently in hybrid mode - must be disabled. Once a hybrid deployment is fully migrated to the cloud and detached from Office 365, the next forest can start migration to the cloud. This cmdlet allows administrators to view the status of sip domains in their Office 365 tenant. For full details on cloud consolidation scenarios, see Cloud consolidation for Teams and Skype for Business (https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation). - - - - Get-CsOnlineSipDomain - - Domain - - > Applicable: Microsoft Teams - A specific domain to get the status of. - - String - - String - - - None - - - DomainStatus - - > Applicable: Microsoft Teams - This indicates the status of an online sip domain, which can be either enabled or disabled. - - - All - Enabled - Disabled - - DomainStatus - - DomainStatus - - - None - - - - - - Domain - - > Applicable: Microsoft Teams - A specific domain to get the status of. - - String - - String - - - None - - - DomainStatus - - > Applicable: Microsoft Teams - This indicates the status of an online sip domain, which can be either enabled or disabled. - - DomainStatus - - DomainStatus - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Provision.OSD.OnlineSipDomainBase+DomainState - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineSipDomain - - List all online SIP domains in the tenant and show their enabled/disabled status. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineSipDomain -DomainStatus Disabled - - List all disabled online SIP domains in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinesipdomain - - - Disable-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/disable-csonlinesipdomain - - - Enable-CsOnlineSipDomain - https://learn.microsoft.com/powershell/module/microsoftteams/enable-csonlinesipdomain - - - Cloud consolidation for Teams and Skype for Business - https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation - - - - - - Get-CsOnlineTelephoneNumber - Get - CsOnlineTelephoneNumber - - Use the `Get-CsOnlineTelephoneNumber` to retrieve telephone numbers from the Business Voice Directory. - - - - Note : This cmdlet has been deprecated. Use the new Get-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment) cmdlet instead. For Microsoft 365 GCC High and DoD cloud instances use the new [Get-CshybridTelephoneNumber](https://learn.microsoft.com/powershell/module/microsoftteams/get-cshybridtelephonenumber)cmdlet instead. - - Use the `Get-CsOnlineTelephoneNumber` to retrieve telephone numbers from the Business Voice Directory. Note: By default the result size is limited to 500 items, specify a higher result size using ResultSize parameter. - - - - Get-CsOnlineTelephoneNumber - - ActivationState - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Assigned - - > Applicable: Microsoft Teams - Specifies the function of the telephone number. The acceptable values are: - * "caa" for numbers assigned to conferencing functions. - * "user" for numbers assigned to public switched telephone network (PSTN) functions. - The values for the Assigned parameter are case-sensitive. - - MultiValuedProperty - - MultiValuedProperty - - - None - - - CapitalOrMajorCity - - > Applicable: Microsoft Teams - Specifies the city by a concatenated string in the form: region-country-area-city. For example, "NOAM-US-OR-PO" would specify Portland, Oregon. - The values for the CapitalOrMajorCity parameter are case-sensitive. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - ExpandLocation - - > Applicable: Microsoft Teams - Displays the location parameter with its value. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InventoryType - - > Applicable: Microsoft Teams - Specifies the target telephone number type for the cmdlet. Acceptable values are: - * "Service" for numbers assigned to conferencing support, call queue or auto attendant. - * "Subscriber" for numbers supporting public switched telephone network (PSTN) functions. - The values for the InventoryType parameter are case-sensitive. - - MultiValuedProperty - - MultiValuedProperty - - - None - - - IsNotAssigned - - > Applicable: Microsoft Teams - Specifying this switch parameter will return only telephone numbers which are not assigned. - - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the number of records returned by the cmdlet. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0, the command will run, but no data will be returned. - - UInt32 - - UInt32 - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Specifies the target telephone number. For example: - `-TelephoneNumber tel:+18005551234, or -TelephoneNumber +14251234567` - - String - - String - - - None - - - TelephoneNumberGreaterThan - - > Applicable: Microsoft Teams - Specifies a telephone number used by the cmdlet as the lower boundary of the telephone numbers returned. The telephone numbers returned will all be greater than the number provided. The telephone number should be in E.164 format. - - String - - String - - - None - - - TelephoneNumberLessThan - - > Applicable: Microsoft Teams - Specifies a telephone number used by the cmdlet as the upper boundary of the telephone numbers returned. The telephone numbers returned will all be less than the number provided. The telephone number should be in E.164 format. - - String - - String - - - None - - - TelephoneNumberStartsWith - - > Applicable: Microsoft Teams - Specifies the digits that the returned telephone numbers must begin with. To return numbers in the North American Numbering Plan 425 area code, use this syntax: -TelephoneNumberStartsWith 1425. To return numbers that are in the 206 area code and that begin with 88, use this syntax: -TelephoneNumberStartsWith 120688. You can use up to nine digits. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - ActivationState - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Assigned - - > Applicable: Microsoft Teams - Specifies the function of the telephone number. The acceptable values are: - * "caa" for numbers assigned to conferencing functions. - * "user" for numbers assigned to public switched telephone network (PSTN) functions. - The values for the Assigned parameter are case-sensitive. - - MultiValuedProperty - - MultiValuedProperty - - - None - - - CapitalOrMajorCity - - > Applicable: Microsoft Teams - Specifies the city by a concatenated string in the form: region-country-area-city. For example, "NOAM-US-OR-PO" would specify Portland, Oregon. - The values for the CapitalOrMajorCity parameter are case-sensitive. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - ExpandLocation - - > Applicable: Microsoft Teams - Displays the location parameter with its value. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - InventoryType - - > Applicable: Microsoft Teams - Specifies the target telephone number type for the cmdlet. Acceptable values are: - * "Service" for numbers assigned to conferencing support, call queue or auto attendant. - * "Subscriber" for numbers supporting public switched telephone network (PSTN) functions. - The values for the InventoryType parameter are case-sensitive. - - MultiValuedProperty - - MultiValuedProperty - - - None - - - IsNotAssigned - - > Applicable: Microsoft Teams - Specifying this switch parameter will return only telephone numbers which are not assigned. - - SwitchParameter - - SwitchParameter - - - False - - - ResultSize - - > Applicable: Microsoft Teams - Specifies the number of records returned by the cmdlet. The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0, the command will run, but no data will be returned. - - UInt32 - - UInt32 - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Specifies the target telephone number. For example: - `-TelephoneNumber tel:+18005551234, or -TelephoneNumber +14251234567` - - String - - String - - - None - - - TelephoneNumberGreaterThan - - > Applicable: Microsoft Teams - Specifies a telephone number used by the cmdlet as the lower boundary of the telephone numbers returned. The telephone numbers returned will all be greater than the number provided. The telephone number should be in E.164 format. - - String - - String - - - None - - - TelephoneNumberLessThan - - > Applicable: Microsoft Teams - Specifies a telephone number used by the cmdlet as the upper boundary of the telephone numbers returned. The telephone numbers returned will all be less than the number provided. The telephone number should be in E.164 format. - - String - - String - - - None - - - TelephoneNumberStartsWith - - > Applicable: Microsoft Teams - Specifies the digits that the returned telephone numbers must begin with. To return numbers in the North American Numbering Plan 425 area code, use this syntax: -TelephoneNumberStartsWith 1425. To return numbers that are in the 206 area code and that begin with 88, use this syntax: -TelephoneNumberStartsWith 120688. You can use up to nine digits. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Deserialized.Microsoft.Skype.EnterpriseVoice.BVDClient.Number - - - An instance or array of the objects. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumber -TelephoneNumber 19294450177 - - This example gets the attributes of a specific phone number. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumber -CapitalOrMajorCity NOAM-US-NY-NY - -RunspaceId : f90303a9-c6a8-483c-b3b3-a5b8cdbab19c - -ActivationState : Activated - -BridgeNumber : - -CallingProfile : BandwidthUS - -InventoryType : Service - -CityCode : NOAM-US-NY-NY - -Id : 19294450177 - -InventoryType : Service - -Location : - -O365Region : NOAM - -SourceType : Tnm - -TargetType : caa - -Tenant : - -TenantId : - -UserId : - -IsManagedByServiceDesk : True - -PortInOrderStatus : - - This example gets the phone numbers with the city code designating New York, New York. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumber - - - Remove-CsOnlineTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinetelephonenumber - - - - - - Get-CsOnlineTelephoneNumberCountry - Get - CsOnlineTelephoneNumberCountry - - Use the `Get-CsOnlineTelephoneNumberCountry` cmdlet to get the list of supported countries or regions to search and acquire new telephone numbers. - - - - Use the `Get-CsOnlineTelephoneNumberCountry` cmdlet to get the list of supported countries or regions to search and acquire new telephone numbers. The telephone numbers can then be used to set up calling features for users and services in your organization. - - - - Get-CsOnlineTelephoneNumberCountry - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineTelephoneNumberCountry - -Name Value ----- ----- -Antigua and Barbuda AG -Argentina AR -Australia AU -Austria AT -... -United Kingdom GB -United States US -Uruguay UY -Venezuela VE -Vietnam VN - - This example returns the list of supported countries or regions for the cmdlet search and acquire of new telephone numbers. - - - - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - - - - Get-CsOnlineTelephoneNumberOrder - Get - CsOnlineTelephoneNumberOrder - - Use the `Get-CsOnlineTelephoneNumberOrder` cmdlet to get the order report of a specific telephone number order. - - - - This `Get-CsOnlineTelephoneNumberOrder` cmdlet can be used to get the status of specific telephone number orders. Currently supported orders for retrievals are: Search New-CsOnlineTelephoneNumberOrder (https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder), Direct Routing Number Upload [New-CsOnlineDirectRoutingTelephoneNumberUploadOrder](https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedirectroutingtelephonenumberuploadorder), Direct Routing Number Release [New-CsOnlineTelephoneNumberReleaseOrder](https://learn.microsoft.com/powershell/module/microsoftteams/New-csonlinetelephonenumberreleaseorder), and SMS Activation/Deactivation. When the OrderType is not indicated, the cmdlet will default to a Search order. - - - - Get-CsOnlineTelephoneNumberOrder - - OrderId - - Use the OrderId received as output of your order creation cmdlets. - - String - - String - - - None - - - OrderType - - Specifies the type of telephone number order to look up. Valid values are Search , Release , DirectRoutingNumberCreation , and SmsActivation . You can use SmsActivation to find orders for both activating and deactivating SMS. The default value is Search . - - String - - String - - - None - - - - - - OrderId - - Use the OrderId received as output of your order creation cmdlets. - - String - - String - - - None - - - OrderType - - Specifies the type of telephone number order to look up. Valid values are Search , Release , DirectRoutingNumberCreation , and SmsActivation . You can use SmsActivation to find orders for both activating and deactivating SMS. The default value is Search . - - String - - String - - - None - - - - - - - Updates in Teams PowerShell Module version 6.7.1 and later: - A new optional parameter `OrderType` is introduced. If no OrderType is provided, it will default to a Search order. - - [BREAKING CHANGE] When a Search order is queried, the property name `TelephoneNumber` in the output will be changed to `TelephoneNumbers`. The structure of the `TelephoneNumbers` output will remain unchanged. - - Impact: Scripts and processes that reference the `TelephoneNumber` property will need to be updated to use `TelephoneNumbers`. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $order = Get-CsOnlineTelephoneNumberOrder -OrderType Search -OrderId 1fd52b3b-b804-4ac4-a84d-4d70b51dd4be - -Key Value ---- ----- -Id 1fd52b3b-b804-4ac4-a84d-4d70b51dd4be -Name Postal Code Search Test -CreatedAt 2024-11-30T00:34:00.0825627+00:00 -CreatedBy ContosoAdmin -Description Postal Code Search Test -NumberType UserSubscriber -SearchType PostalCode -AreaCode 778 -PostalOrZipCode V7Y 1G5 -Quantity 2 -Status Reserved -IsManual False -TelephoneNumbers {System.Collections.Generic.Dictionary`2[System.String,System.Object], System.Collections.Generic.Dictionary`2[System.String,System.Object]} -ReservationExpiryDate 2024-11-30T00:50:01.1794152+00:00 -ErrorCode NoError -InventoryType Subscriber -SendToServiceDesk False -CountryCode CA - -PS C:\> $order.TelephoneNumbers - -Key Value ---- ----- -Location Vancouver -TelephoneNumber +16046606034 -Location Vancouver -TelephoneNumber +16046606030 - - This example returns a successful telephone number search and the telephone numbers are reserved for purchase. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $order = Get-CsOnlineTelephoneNumberOrder -OrderType Search -OrderId 8d23e073-bc98-4f73-8e05-7517655d7042 - -Key Value ---- ----- -Id 8d23e073-bc98-4f73-8e05-7517655d7042 -Name Postal Code Search Test -CreatedAt 2024-11-30T00:34:00.0825627+00:00 -CreatedBy ContosoAdmin -Description Prefix Search Test -NumberType UserSubscriber -SearchType Prefix -AreaCode -PostalOrZipCode -Quantity 1 -Status Error -IsManual False -TelephoneNumbers {} -ReservationExpiryDate -ErrorCode OutOfStock -InventoryType Subscriber -SendToServiceDesk False -CountryCode - - This example returns a failed telephone number search and the `ErrorCode` is showing that telephone numbers with `NumberPrefix: 1425` is `OutOfStock`. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumberOrder -OrderId 1fd52b3b-b804-4ac4-a84d-4d70b51dd4be - -Key Value ---- ----- -Id 1fd52b3b-b804-4ac4-a84d-4d70b51dd4be -Name Postal Code Search Test -CreatedAt 2024-11-30T00:34:00.0825627+00:00 -CreatedBy TNM -Description Postal Code Search Test from Postman -NumberType UserSubscriber -SearchType PostalCode -AreaCode 778 -PostalOrZipCode V7Y 1G5 -Quantity 2 -Status Expired -IsManual False -TelephoneNumbers {System.Collections.Generic.Dictionary`2[System.String,System.Object], System.Collections.Generic.Dictionary`2[System.String,System.Object]} -ReservationExpiryDate 2024-11-30T00:50:01.1794152+00:00 -ErrorCode NoError -InventoryType Subscriber -SendToServiceDesk False -CountryCode CA - - When the OrderType is not indicated, the cmdlet will default to a Search order. This example returns a successful telephone number search and the telephone numbers are reserved for purchase. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId 6aa4f786-8628-4923-9df1-896f3d84016c - -Key Value ---- ----- -OrderId 6aa4f786-8628-4923-9df1-896f3d84016c -CreatedAt 2024-11-27T06:44:26.1975766+00:00 -Status Complete -TotalCount 3 -SuccessCount 3 -FailureCount 0 -SuccessPhoneNumbers {+12063866355, +12063868075, +12063861642} -FailedPhoneNumbers {} - - This example returns the status of a successful release order for Direct Routing telephone numbers. - - - - -------------------------- Example 5 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId faef09f7-5bd5-4740-9e76-9a5762380f34 - -Key Value ---- ----- -OrderId faef09f7-5bd5-4740-9e76-9a5762380f34 -CreatedAt 2024-11-30T00:22:59.4989508+00:00 -Status Success -TotalCount 1 -SuccessCount 1 -FailureCount 0 -WarningCount 0 -FailedPhoneNumbers {} -WarningPhoneNumbers {} -SuccessPhoneNumbers {+99999980} - - This example returns the status of a successful upload order for a Direct Routing phone number. - - - - -------------------------- Example 6 -------------------------- - PS C:\> $results = Get-CsOnlineTelephoneNumberOrder -OrderId acf9d459-083b-4f8e-b365-c0a07817b879 -OrderType NumberUpdate - -Key Value ---- ----- -OrderId 4b9cbc43-5bd5-4740-9e76-9a5762380f9d -CreatedAt 2025-10-30T00:22:59.4989508+00:00 -Status PartialSuccess -TotalCount 4 -SuccessCount 3 -FailureCount 1 -WarningCount 0 -SuccessPhoneNumbers {+12345678910, +1253489001, +14579824781} -FailedPhoneNumbers {+100001} -WarningPhoneNumbers {} -AdditionalDetails {System.Collections.Generic.Dictionary`2[System.String,System.Object]} - -PS C:\> $results.AdditionalDetails - -Key Value ---- ----- -TelephoneNumber +100001 -Status Error -Message The Number is not found. - - This example returns the status of a partially successful NumberUpdate order for a telephone number tags. - - - - -------------------------- Example 7 -------------------------- - PS C:\> $results = Get-CsOnlineTelephoneNumberOrder -OrderId 0fba1633-81f0-435d-b0a8-81d073cc6f29 -OrderType SmsActivation - -Key Value ---- ----- -OrderId 0fba1633-81f0-435d-b0a8-81d073cc6f29 -Status PendingTelcoCallback -OrderType SmsActivation -CreatedAt 1/6/2026 7:28:09 PM +00:00 -CreatedBy UNATTRIBUTED -TelephoneNumbers {System.Collections.Generic.Dictionary`2[System.String,System.Object]} - -PS C:\> $results.TelephoneNumbers - -Key Value ---- ----- -TelephoneNumber +12065555555 - - This example returns the status of an in progress SMS Activation order. - - - - -------------------------- Example 8 -------------------------- - PS C:\> $results = Get-CsOnlineTelephoneNumberOrder -OrderId 0fba1633-81f0-435d-b0a8-81d073cc6f29 -OrderType NumberUsageUpdate - -Key Value ---- ----- -OrderId 0fba1633-81f0-435d-b0a8-81d073cc6f29 -Status Success -ErrorMessage -OrderType NumberUsageUpdate -CreatedAt 1/6/2026 7:28:09 PM +00:00 -CreatedBy UNATTRIBUTED -TelephoneNumbers {System.Collections.Generic.Dictionary`2[System.String,System.Object]} - -PS C:\> $results.TelephoneNumbers - -Key Value ---- ----- -TelephoneNumber +12065555555 - - This example returns the status of a successful Number Usage Update order. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedirectroutingtelephonenumberuploadorder - - - New-CsOnlineTelephoneNumberReleaseOrder - https://learn.microsoft.com/powershell/module/microsoftteams/New-csonlinetelephonenumberreleaseorder - - - - - - Get-CsOnlineTelephoneNumberType - Get - CsOnlineTelephoneNumberType - - Use the `Get-CsOnlineTelephoneNumberType` cmdlet to get the list of supported telephone number offerings in a given country or region. - - - - Use the `Get-CsOnlineTelephoneNumberType` cmdlet to get the list of supported telephone number offerings in a given country or region. The `NumberType` field in the response is used to indicate the capabilities of a given offering. The telephone numbers can then be used to set up calling features for users and services in your organization. - - - - Get-CsOnlineTelephoneNumberType - - Country - - Specifies the country or region that the number offerings belong. The country code uses ISO 3166 standard and the list of supported countries or regions can be found by calling `Get-CsOnlineTelephoneNumberCountry`. - - String - - String - - - None - - - - - - Country - - Specifies the country or region that the number offerings belong. The country code uses ISO 3166 standard and the list of supported countries or regions can be found by calling `Get-CsOnlineTelephoneNumberCountry`. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumberType -Country US - -AllowedSearchType : {CivicAddress, Prefix} -AreaCode : -AvailabilityInfo : Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AvailabilityInfo -Id : 470316bd-815e-459d-80e7-d7332f00fcb9 -NumberType : UserSubscriber -OfferModel : DirectStock -PrefixSearchOption : Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PrefixSearchOptions -RequiresCivicAddress : True - -AllowedSearchType : {CivicAddress, Prefix} -AreaCode : -AvailabilityInfo : Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.AvailabilityInfo -Id : 25444938-a335-4a85-b64d-d445b45f04e3 -NumberType : UserSubscriberVoiceAndSms -OfferModel : DirectStock -PrefixSearchOption : Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.PrefixSearchOptions -RequiresCivicAddress : True - - This example returns the list of supported number offerings in United States. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineTelephoneNumberType -Country CA | ft NumberType - -NumberType ----------- -UserSubscriber -UserSubscriberVoiceAndSms -ConferenceToll -ConferenceTollFree -CallQueueToll -CallQueueTollFree -AutoAttendantToll -AutoAttendantTollFree - - This example returns the list of supported NumberTypes in Canada. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - - - - Get-CsOnlineUser - Get - CsOnlineUser - - Returns information about users who have accounts homed on Microsoft Teams or Skype for Business Online. - - - - The Get-CsOnlineUser cmdlet returns information about users who have accounts homed on Microsoft Teams The returned information includes standard Active Directory account information (such as the department the user works in, his or her address and phone number, etc.): the Get-CsOnlineUser cmdlet returns information about such things as whether or not the user has been enabled for Enterprise Voice and which per-user policies (if any) have been assigned to the user. - Note that the Get-CsOnlineUser cmdlet does not have a TenantId parameter; that means you cannot use a command similar to this in order to limit the returned data to users who have accounts with a specific Microsoft Teams or Skype for Business Online tenant: - `Get-CsOnlineUser -TenantId "bf19b7db-6960-41e5-a139-2aa373474354"` - However, if you have multiple tenants you can return users from a specified tenant by using the Filter parameter and a command similar to this: - `Get-CsOnlineUser -Filter "TenantId -eq 'bf19b7db-6960-41e5-a139-2aa373474354'"` - That command will limit the returned data to user accounts belong to the tenant with the TenantId "bf19b7db-6960-41e5-a139-2aa373474354". If you do not know your tenant IDs you can return that information by using this command: - `Get-CsTenant` - If you have a hybrid or "split domain" deployment (that is, a deployment in which some users have accounts homed on Skype for Business Online while other users have accounts homed on an on-premises version of Skype for Business Server 2015) keep in mind that the Get-CsOnlineUser cmdlet only returns information for Skype for Business Online users. However, the cmdlet will return information for both online users and on-premises users. If you want to exclude Skype for Business Online users from the data returned by the Get-CsUser cmdlet, use the following command: - `Get-CsUser -Filter "TenantId -eq '00000000-0000-0000-0000-000000000000'"` - By definition, users homed on the on-premises version will always have a TenantId equal to 00000000-0000-0000-0000-000000000000. Users homed on Skype for Business Online will a TenantId that is equal to some value other than 00000000-0000-0000-0000-000000000000. - - - - Get-CsOnlineUser - - AccountType - - > Applicable: Microsoft Teams - This parameter is added to Get-CsOnlineUser starting from TPM 4.5.1 to indicate the user type. The possible values for the AccountType parameter are: - - `User` - to query for user accounts. - - `ResourceAccount` - to query for app endpoints or resource accounts. - - `Guest` - to query for guest accounts. - - `SfBOnPremUser` - to query for users that are hosted on-premises - - `IneligibleUser` - to query for a user that does not have valid Teams license (except Guest, ResourceAccount and SfbOnPremUser). - - UserIdParameter - - UserIdParameter - - - None - - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account to be retrieved. - For TeamsOnly customers using the Teams PowerShell Module version 3.0.0 or later, you use the following values to identify the account: - - GUID - - SIP address - - UPN - - Alias - - Using the Teams PowerShell Module version 2.6 or earlier only, you can use the following values to identify the account: - - GUID - - SIP address - - UPN - - Alias - - Display name. Supports the asterisk ( \ ) wildcard character. For example, `-Identity " Smith"` returns all the users whose display names end with Smith. - - UserIdParameter - - UserIdParameter - - - None - - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on specific attributes. For example, you can limit returned data to users who have been assigned a specific voice policy, or users who have not been assigned a specific voice policy. - The Filter parameter uses the same filtering syntax as the Where-Object cmdlet. For example, the following filter returns only users who have been enabled for Enterprise Voice: `-Filter 'EnterpriseVoiceEnabled -eq $True'` or ``-Filter "EnterpriseVoiceEnabled -eq `$True"``. - Examples: - Get-CsOnlineUser -Filter {AssignedPlan -like " MCO "} - Get-CsOnlineUser -Filter {UserPrincipalName -like "test " -and (AssignedPlans -eq "MCOEV" -or AssignedPlans -like "MCOPSTN ")} - Get-CsOnlineUser -Filter {OnPremHostingProvider -ne $null} - - Get-CsOnlineUser -Filter {WhenChanged -gt "1/25/2022 11:59:59 PM"} - - String - - String - - - None - - - Properties - - > Applicable: Microsoft Teams - Allows you to specify the properties you want to include in the output. Provide the properties as a comma-separated list. Identity, UserPrincipalName, Alias, AccountEnabled and DisplayName attributes will always be present in the output. Please note that only attributes available in the output of the Get-CsOnlineUser cmdlet can be selected. For a complete list of available attributes, refer to the response of the Get-CsOnlineUser cmdlet. - Examples: - Get-CsOnlineUser -Properties DisplayName, UserPrincipalName, FeatureTypes - - Get-CsOnlineUser -Properties DisplayName, Alias, LineURI - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note : Starting with Teams PowerShell Modules version 4.0 and later, "-ResultSize" type has been changed to uint32. - Enables you to limit the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. The value 0 returns no data. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Unlimited - - Unlimited - - - None - - - SkipUserPolicies - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - SoftDeletedUser - - > Applicable: Microsoft Teams - This parameter enables you to return a collection of all the users who are deleted and can be restored within 30 days from their deletion time - - - SwitchParameter - - - False - - - Sort - - > Applicable: Microsoft Teams - Sorting is now enabled in Teams PowerShell Module by using the "-Sort" or "-OrderBy" parameters. For example: - - Get-CsOnlineUser -Filter {LineURI -like 123 } -OrderBy "DisplayName asc" - Get-CsOnlineUser -Filter {DisplayName -like '*abc'} -OrderBy {DisplayName desc} Note : Sorting on few attributes like LineURI can be case-sensitive. - - String - - String - - - None - - - - - - AccountType - - > Applicable: Microsoft Teams - This parameter is added to Get-CsOnlineUser starting from TPM 4.5.1 to indicate the user type. The possible values for the AccountType parameter are: - - `User` - to query for user accounts. - - `ResourceAccount` - to query for app endpoints or resource accounts. - - `Guest` - to query for guest accounts. - - `SfBOnPremUser` - to query for users that are hosted on-premises - - `IneligibleUser` - to query for a user that does not have valid Teams license (except Guest, ResourceAccount and SfbOnPremUser). - - UserIdParameter - - UserIdParameter - - - None - - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on specific attributes. For example, you can limit returned data to users who have been assigned a specific voice policy, or users who have not been assigned a specific voice policy. - The Filter parameter uses the same filtering syntax as the Where-Object cmdlet. For example, the following filter returns only users who have been enabled for Enterprise Voice: `-Filter 'EnterpriseVoiceEnabled -eq $True'` or ``-Filter "EnterpriseVoiceEnabled -eq `$True"``. - Examples: - Get-CsOnlineUser -Filter {AssignedPlan -like " MCO "} - Get-CsOnlineUser -Filter {UserPrincipalName -like "test " -and (AssignedPlans -eq "MCOEV" -or AssignedPlans -like "MCOPSTN ")} - Get-CsOnlineUser -Filter {OnPremHostingProvider -ne $null} - - Get-CsOnlineUser -Filter {WhenChanged -gt "1/25/2022 11:59:59 PM"} - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account to be retrieved. - For TeamsOnly customers using the Teams PowerShell Module version 3.0.0 or later, you use the following values to identify the account: - - GUID - - SIP address - - UPN - - Alias - - Using the Teams PowerShell Module version 2.6 or earlier only, you can use the following values to identify the account: - - GUID - - SIP address - - UPN - - Alias - - Display name. Supports the asterisk ( \ ) wildcard character. For example, `-Identity " Smith"` returns all the users whose display names end with Smith. - - UserIdParameter - - UserIdParameter - - - None - - - Properties - - > Applicable: Microsoft Teams - Allows you to specify the properties you want to include in the output. Provide the properties as a comma-separated list. Identity, UserPrincipalName, Alias, AccountEnabled and DisplayName attributes will always be present in the output. Please note that only attributes available in the output of the Get-CsOnlineUser cmdlet can be selected. For a complete list of available attributes, refer to the response of the Get-CsOnlineUser cmdlet. - Examples: - Get-CsOnlineUser -Properties DisplayName, UserPrincipalName, FeatureTypes - - Get-CsOnlineUser -Properties DisplayName, Alias, LineURI - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note : Starting with Teams PowerShell Modules version 4.0 and later, "-ResultSize" type has been changed to uint32. - Enables you to limit the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which seven users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. The value 0 returns no data. If you set the ResultSize to 7 but you have only three users in your forest, the command will return those three users, and then complete without error. - - Unlimited - - Unlimited - - - None - - - SkipUserPolicies - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - SoftDeletedUser - - > Applicable: Microsoft Teams - This parameter enables you to return a collection of all the users who are deleted and can be restored within 30 days from their deletion time - - SwitchParameter - - SwitchParameter - - - False - - - Sort - - > Applicable: Microsoft Teams - Sorting is now enabled in Teams PowerShell Module by using the "-Sort" or "-OrderBy" parameters. For example: - - Get-CsOnlineUser -Filter {LineURI -like 123 } -OrderBy "DisplayName asc" - Get-CsOnlineUser -Filter {DisplayName -like '*abc'} -OrderBy {DisplayName desc} Note : Sorting on few attributes like LineURI can be case-sensitive. - - String - - String - - - None - - - - - - - A recent fix has addressed an issue where some Guest users were being omitted from the output of the Get-CsOnlineUser cmdlet, resulting in an increase in the reported user count. Commonly used FeatureTypes and their descriptions: - Teams: Enables Users to access Teams - - AudioConferencing': Enables users to call-in to Teams meetings from their phones - - PhoneSystem: Enables users to place, receive, transfer, mute, unmute calls in Teams with mobile device, PC, or IP Phones - - CallingPlan: Enables an All-in-the-cloud voice solution for Teams users that connects Teams Phone System to the PSTN to enable external calling. With this option, Microsoft acts as the PSTN carrier. - - TeamsMultiGeo: Enables Teams chat data to be stored at rest in a specified geo location - - VoiceApp: Enables to set up resource accounts to support voice applications like Auto Attendants and Call Queues - - M365CopilotTeams: Enables Copilot in Teams - - TeamsProMgmt: Enables enhanced meeting recap features like AI generated notes and tasks from meetings, view when a screen was shared etc - - TeamsProProtection: Enables additional ways to safeguard and monitor users' Teams experiences with features like Sensitivity labels, Watermarking, end-to-end encryption etc. - - TeamsProWebinar: Enables advances webinar features like engagement reports, RTMP-In, Webinar Wait List, in Teams. - - TeamsProCust: Enables meeting customization features like branded meetings, together mode, in Teams. - - TeamsProVirtualAppt: Enables advances virtual appointment features like SMS notifications, custom waiting room, in Teams. - - TeamsRoomPro: Enables premium in-room meeting experience like intelligent audio, large galleries in Teams. - - TeamsRoomBasic: Enables core meeting experience with Teams Rooms Systems. - - TeamsAdvComms: Enables advances communication management like custom communication policies in Teams. - - TeamsMobileExperience: Enables users to use a single phone number in Teams across both sim-enabled mobile phone and desk lines. - - Conferencing_RequiresCommunicationCredits: Allows pay-per minute Audio Conferencing without monthly licenses. - - CommunicationCredits: Enables users to pay Teams calling and conferencing through the credits. Updates in Teams PowerShell Module verion 7.1.1 Preview and later : - - EffectivePolicyAssignments: The EffectivePolicyAssignments attribute has been added to the Get-CsOnlineUser cmdlet in commercial environments. This new attribute provides information about a user's effective policy assignments. Each assignment includes the following details: - PolicyType - which specifies the type of policy assigned (for example, TeamsMeetingPolicy, TeamsCallingPolicy, and so on.) - PolicyAssignment - which includes the display name of the assigned policy (displayName), the assignment type (assignmentType) indicating whether it is direct or group-based, the unique identifier of the policy (policyId), and the group identifier (groupId) if applicable. Note : The policyId property isn't currently supported. Updates in Teams PowerShell Module : - - DialPlan: DialPlan attribute will be deprecated and no longer populated in the output of Get-CsOnlineUser in all clouds. Updates in Teams PowerShell Module version 7.0.0 and later : - - OptionFlags: OptionFlags attribute will no longer be populated with value in the output of Get-CsOnlineUser in all clouds. It's important to note that other details besides EnterpriseVoiceEnabled, previously found in OptionFlags, are no longer relevant for Teams. Administrators can still utilize the EnterpriseVoiceEnabled attribute in the output of the Get-CsOnlineUser cmdlet to get this information. This change will be rolled out to all Teams Powershell Module versions. Updates in Teams PowerShell Module version 6.9.0 and later : - Adds new attribute in the output of Get-CsOnlineUser cmdlet in commercial environments. - TelephoneNumbers: A new list of complex object that includes telephone number and its corresponding assignment category. The assignment category can include values such as 'Primary', 'Private', and 'Alternate'. - Adds new parameter to the Get-CsOnlineUser cmdlet in all clouds: - Properties: Allows you to specify the properties you want to include in the output. Provide the properties as a comma-separated list. Note that the following properties will always be present in the output: Identity, UserPrincipalName, Alias, AccountEnabled, DisplayName. Updates in Teams PowerShell Module version 6.8.0 and later : - New policies - TeamsBYODAndDesksPolicy, TeamsAIPolicy, TeamsWorkLocationDetectionPolicy, TeamsMediaConnectivityPolicy, TeamsMeetingTemplatePermissionPolicy, TeamsVirtualAppointmentsPolicy and TeamsWorkLoadPolicy will be visible in the Get-CsOnlineUser cmdlet output. - The following updates are applicable for organizations having TeamsOnly users that use Microsoft Teams PowerShell version 6.8.0 or later for Microsoft Teams operated by 21Vianet. These updates will be rolled out gradually to older Microsoft Teams PowerShell versions. - The following attributes are populated with correct values in the output of Get-CsOnlineUser when not using the "-identity" parameter: - - CountryAbbreviation - - UserValidationErrors - - WhenCreated - - The following updates are applicable to the output in scenarios where "-identity" parameter is not used: - - Only valid OnPrem users would be available in the output: These are users that are DirSyncEnabled and have a valid OnPremSipAddress or SIP address in ShadowProxyAddresses. - - Guest are available in the output - - Unlicensed Users: Unlicensed users would show up in the output of Get-CsOnlineUser (note Unlicensed users in commercial clouds would show up in the output for only 30 days post-license removal.) - - Soft deleted users: These users will be displayed in the output of Get-CsOnlineUser and the TAC Manage Users page by default with SoftDeletionTimestamp set to a value. - - AccountType as Unknown will be renamed to AccountType as IneligibleUser in GCC High and DoD environments. IneligibleUser will include users who do not have any valid Teams licenses (except Guest, SfbOnPremUser, ResourceAccount). - - If any information is required for a user that is not available in the output (when not using "-identity" parameter) then it can be obtained using the "-identity" parameter. Information for all users would be available using the "-identity" parameter until they are hard deleted. - If Guest, Soft Deleted Users, IneligibleUser are not required in the output then they can be filtered out by using filter on AccountType and SoftDeletionTimestamp. For example: - - Get-CsOnlineUser -Filter {AccountType -ne 'Guest'} - - Get-CsOnlineUser -Filter {SoftDeletionTimestamp -eq $null} - - Get-CsOnlineUser -Filter {AccountType -ne 'IneligibleUser'} Updates in Teams PowerShell Module version 6.1.1 Preview and later : - The following updates are applicable for organizations that use Microsoft Teams PowerShell version 6.1.1 (Targeted Release: April 15th, 2024) or later. These changes will be gradually rolled out for all tenants starting from April 26th, 2024. - When using the Get-CsOnlineUser cmdlet in Teams PowerShell Module without the -identity parameter, we are introducing these updates: - - Before the rollout, unlicensed users who did not have a valid Teams license were displayed in the output of the Get-CsOnlineUser cmdlet for 30 days after license removal. After the rollout, Get-CsOnlineUser will show unlicensed users after the initial 30 days and also include unlicensed users who never had a valid Teams license. - - The AccountType value Unknown is being renamed to IneligibleUser, and will include users who do not have a valid Teams license (exceptions: Guest, SfbOnPremUser, and ResourceAccount). - - You can exclude users with the AccountType as IneligibleUser from the output with the AccountType filter. For example, Get-CsOnlineUser -Filter {AccountType -ne 'IneligibleUser'} - - When Get-CsOnlineUser is used with the -identity parameter, you can also use UPN, Alias, and SIP Address with the -identity parameter to obtain the information for a specific unlicensed user. Updates in Teams PowerShell Module version 6.1.0 and later : - The following updates are applicable for organizations that use Microsoft Teams PowerShell version 6.1.0 or later. - - LocationPolicy: LocationPolicy attribute is being deprecated from the output of Get-CsOnlineUser in all clouds. Get-CsPhoneNumberAssignment -IsoCountryCode can be used to get the LocationPolicy information. (Note: LocationPolicy attribute will no longer be populated with value in the older Teams Powershell Module versions (<6.1.0) starting from 20th March 2024.) Updates in Teams PowerShell Module version 6.0.0 and later : - The following updates are applicable for organizations having TeamsOnly users that use Microsoft Teams PowerShell version 6.0.0 or later. - - GracePeriodExpiryDate: GracePeriodExpiryDate attribute is being introduced within the AssignedPlan JSON array. It specifies the date when the grace period of a previously deleted license expires, and the license will be permanently deleted. The attribute remains empty/null for active licenses. (Note: The attribute is currently in private preview and will display valid values only for private preview) - - IsInGracePeriod: IsInGracePeriod attribute is a boolean flag that indicates that the associated plan is in grace period after deletion. (Note: The attribute is currently in private preview and will display valid values only for private preview) Updates in Teams PowerShell Module version 5.9.0 and later : - The following updates are applicable for organizations having TeamsOnly users that use Microsoft Teams PowerShell version 5.9.0 or later in GCC High and DoD environments (note that these changes are already rolled out in commercial environments). These updates will be applicable to older Teams PowerShell versions from 15th March 2024 in GCC High and DoD environments: - The following attributes are populated with correct values in the output of Get-CsOnlineUser when not using the "-identity" parameter: - - CountryAbbreviation - - UserValidationErrors - - WhenCreated - - The following updates are applicable to the output in scenarios where "-identity" parameter is not used: - - Only valid OnPrem users would be available in the output: These are users that are DirSyncEnabled and have a valid OnPremSipAddress or SIP address in ShadowProxyAddresses. - - Guest are available in the output - - Unlicensed Users: Unlicensed users would show up in the output of Get-CsOnlineUser (note Unlicensed users in commercial clouds would show up in the output for only 30 days post-license removal.) - - Soft deleted users: These users will be displayed in the output of Get-CsOnlineUser and the TAC Manage Users page by default with SoftDeletionTimestamp set to a value. - - AccountType as Unknown will be renamed to AccountType as IneligibleUser in GCC High and DoD environments. IneligibleUser will include users who do not have any valid Teams licenses (except Guest, SfbOnPremUser, ResourceAccount). - - If any information is required for a user that is not available in the output (when not using "-identity" parameter) then it can be obtained using the "-identity" parameter. Information for all users would be available using the "-identity" parameter until they are hard deleted. - If Guest, Soft Deleted Users, IneligibleUser are not required in the output then they can be filtered out by using filter on AccountType and SoftDeletionTimestamp. For example: - - Get-CsOnlineUser -Filter {AccountType -ne 'Guest'} - - Get-CsOnlineUser -Filter {SoftDeletionTimestamp -eq $null} - - Get-CsOnlineUser -Filter {AccountType -ne 'IneligibleUser'} Updates in Teams PowerShell Module version 3.0.0 and above : - The following updates are applicable for organizations having TeamsOnly users that use Microsoft Teams PowerShell version 3.0.0 and later, excluding updates mentioned previously for Teams PowerShell Module version 5.0.0: New user attributes : - FeatureTypes: Array of unique strings specifying what features are enabled for a user. This attribute is an alternative to several attributes that have been dropped as outlined in the next section. - Some of the commonly used FeatureTypes include: - - Teams - - AudioConferencing - - PhoneSystem - - CallingPlan Note : This attribute is now filterable in Teams PowerShell Module versions 4.0.0 and later using the "-Contains" operator as shown in Example 7. - AccountEnabled: Indicates whether a user is enabled for login in Microsoft Entra ID. Dropped attributes : - The following attributes are no longer relevant to Teams and have been dropped from the output: - - AcpInfo - - AdminDescription - - ArchivingPolicy - - AudioVideoDisabled - - BaseSimpleUrl - - BroadcastMeetingPolicy - - CallViaWorkPolicy - - ClientPolicy - - ClientUpdateOverridePolicy - - ClientVersionPolicy - - CloudMeetingOpsPolicy - - CloudMeetingPolicy - - CloudVideoInteropPolicy - - ContactOptionFlags - - CountryOrRegionDisplayName - - Description - - DistinguishedName - - EnabledForRichPresence - - ExchangeArchivingPolicy - - ExchUserHoldPolicies - - ExperiencePolicy - - ExternalUserCommunicationPolicy - - ExUmEnabled - - Guid - - HomeServer - - HostedVoicemailPolicy - - IPPBXSoftPhoneRoutingEnabled - - IPPhone - - IPPhonePolicy - - IsByPassValidation - - IsValid - - LegalInterceptPolicy - - LicenseRemovalTimestamp - - LineServerURI - - Manager - - MNCReady - - Name - - NonPrimaryResource - - ObjectCategory - - ObjectClass - - ObjectState - - OnPremHideFromAddressLists - - OriginalPreferredDataLocation - - OriginatingServer - - OriginatorSid - - OverridePreferredDataLocation - - PendingDeletion - - PrivateLine - - ProvisioningCounter - - ProvisioningStamp - - PublishingCounter - - PublishingStamp - - Puid - - RemoteCallControlTelephonyEnabled - - RemoteMachine - - SamAccountName - - ServiceInfo - - StsRefreshTokensValidFrom - - SubProvisioningCounter - - SubProvisioningStamp - - SubProvisionLineType - - SyncingCounter - - TargetRegistrarPool - - TargetServerIfMoving - - TeamsInteropPolicy - - ThumbnailPhoto - - UpgradeRetryCounter - - UserAccountControl - - UserProvisionType - - UserRoutingGroupId - - VoicePolicy - Alternative is the CallingPlan and PhoneSystem string in FeatureTypes - - XForestMovePolicy - - AddressBookPolicy - - GraphPolicy - - PinPolicy - - PreferredDataLocationOverwritePolicy - - PresencePolicy - - SmsServicePolicy - - TeamsVoiceRoute - - ThirdPartyVideoSystemPolicy - - UserServicesPolicy - - ConferencingPolicy - - Id - - MobilityPolicy - - OnlineDialinConferencingPolicy - Alternative is the AudioConferencing string in FeatureTypes - - Sid - - TeamsWorkLoadPolicy - - VoiceRoutingPolicy - - ClientUpdatePolicy - - HomePhone - - HostedVoiceMail - - MobilePhone - - OtherTelephone - - StreetAddress - - WebPage - - AssignedLicenses - - OnPremisesUserPrincipalName - - HostedVoiceMail - - LicenseAssignmentStates - - OnPremDomainName - - OnPremSecurityIdentifier - - OnPremSamAccountName - - CallerIdPolicy - - Fax - - LastName (available in Teams PowerShell Module 4.2.1 and later) - - Office - - Phone - - WindowsEmailAddress - - SoftDeletedUsers (available in Teams PowerShell Module 4.4.3 and later) - - The following attributes are temporarily unavailable in the output when using the "-Filter" or when used without the "-Identity" parameter: - - WhenChanged - - CountryAbbreviation Note : These attributes will be available in the near future. Attributes renamed : - - ObjectId renamed to Identity - - FirstName renamed to GivenName - - DirSyncEnabled renamed to UserDirSyncEnabled - - MCOValidationErrors renamed to UserValidationErrors - - Enabled renamed to IsSipEnabled - - TeamsBranchSurvivabilityPolicy renamed to TeamsSurvivableBranchAppliancePolicy - - CountryOrRegionDisplayName introduced as Country (in versions 4.2.0 and later) - - InterpretedUserType: "AADConnectEnabledOnline" prefix for the InterpretedUserType output value has now been renamed DirSyncEnabledOnline, for example, AADConnectEnabledOnlineTeamsOnlyUser is now DirSyncEnabledOnlineTeamsOnlyUser. Attributes that have changed in meaning/format : OnPremLineURI : This attribute previously used to refer to both: - 1. LineURI set via OnPrem AD. 2. Direct Routing numbers assigned to users via Set-CsUser. - In Teams PowerShell Modules 3.0.0 and above OnPremLineURI will only refer to the LineURI set via OnPrem AD. Direct Routing numbers will be available from the LineURI field. Direct Routing Numbers can be distinguished from Calling Plan Numbers by looking at the FeatureTypes attribute. - - The output format of AssignedPlan and ProvisionedPlan have now changed from XML to JSON array. - The output format of Policies has now changed from String to JSON type UserPolicyDefinition. - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineUser - - The command shown in Example 1 returns information for all the users configured as online users. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineUser -Identity "sip:kenmyer@litwareinc.com" - - In Example 2 information is returned for a single online user: the user with the SIP address "sip:kenmyer@litwareinc.com". - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineUser -Filter "ArchivingPolicy -eq 'RedmondArchiving'" - - Example 3 uses the Filter parameter to limit the returned data to online users who have been assigned the per-user archiving policy RedmondArchiving. - To do this, the filter value {ArchivingPolicy -eq "RedmondArchiving"} is employed; that syntax limits returned data to users where the ArchivingPolicy property is equal to (-eq) "RedmondArchiving". - - - - -------------------------- Example 4 -------------------------- - Get-CsOnlineUser -Filter {HideFromAddressLists -eq $True} - - Example 4 returns information only for user accounts that have been configured so that the account does not appear in Microsoft Exchange address lists. - (That is, the Active Directory attribute msExchHideFromAddressLists is True.) To carry out this task, the Filter parameter is included along with the filter value {HideFromAddressLists -eq $True}. - - - - -------------------------- Example 5 -------------------------- - Get-CsOnlineUser -Filter {LineURI -eq "tel:+1234"} -Get-CsOnlineUser -Filter {LineURI -eq "tel:+1234,ext:"} -Get-CsOnlineUser -Filter {LineURI -eq "1234"} - - Example 5 returns information for user accounts that have been assigned a designated phone number. - - - - -------------------------- Example 6 -------------------------- - Get-CsOnlineUser -AccountType ResourceAccount - - Example 6 returns information for user accounts that are categorized as resource accounts. - - - - -------------------------- Example 7 -------------------------- - Get-CsOnlineUser -Filter "FeatureTypes -Contains 'PhoneSystem'" - - Example 7 returns information for user's assigned plans. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineuser - - - Set-CsUser - https://learn.microsoft.com/powershell/module/microsoftteams/set-csuser - - - - - - Get-CsOnlineVoicemailUserSettings - Get - CsOnlineVoicemailUserSettings - - Use the Get-CsOnlineVoicemailUserSettings cmdlet to get information about online voicemail user settings of a specific user. - - - - The Get-CsOnlineVoicemailUserSettings cmdlet returns information about online voicemail user settings of a specific user in your organization. - - - - Get-CsOnlineVoicemailUserSettings - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP URI or an Object ID. - - System.String - - System.String - - - None - - - - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP URI or an Object ID. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Voicemail.Models.VoicemailUserSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsOnlineVoicemailUserSettings -Identity sip:user@contoso.com - - This example gets the online voicemail user settings of user with SIP URI sip:user@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailusersettings - - - Set-CsOnlineVoicemailUserSettings - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings - - - - - - Get-CsOnlineVoiceRoute - Get - CsOnlineVoiceRoute - - Returns information about the online voice routes configured for use in your tenant. - - - - Use this cmdlet to retrieve one or more existing online voice routes in your tenant. Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - This cmdlet can be used to retrieve voice route information such as which online PSTN gateways the route is associated with (if any), which online PSTN usages are associated with the route, the pattern (in the form of a regular expression) that identifies the phone numbers to which the route applies, and caller ID settings. The PSTN usage associates the voice route to an online voice policy. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Get-CsOnlineVoiceRoute - - Filter - - This parameter filters the results of the Get operation based on the wildcard value passed to this parameter. - - String - - String - - - None - - - - Get-CsOnlineVoiceRoute - - Identity - - A string that uniquely identifies the voice route. If no identity is provided, all voice routes for the organization are returned. - - String - - String - - - None - - - - - - Filter - - This parameter filters the results of the Get operation based on the wildcard value passed to this parameter. - - String - - String - - - None - - - Identity - - A string that uniquely identifies the voice route. If no identity is provided, all voice routes for the organization are returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute - - Retrieves the properties for all voice routes defined within the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute -Identity Route1 - - Retrieves the properties for the Route1 voice route. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute -Filter *test* - - This command displays voice route settings where the Identity contains the string "test" anywhere within the value. To find the string test only at the end of the Identity, use the value \ test. Similarly, to find the string test only if it occurs at the beginning of the Identity, specify the value test\ . - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsOnlineVoiceRoute | Where-Object {$_.OnlinePstnGatewayList.Count -eq 0} - - This command retrieves all voice routes that have not had any PSTN gateways assigned. First all voice routes are retrieved using the Get-CsOnlineVoiceRoute cmdlet. These voice routes are then piped to the Where-Object cmdlet. The Where-Object cmdlet narrows down the results of the Get operation. In this case we look at each voice route (that's what the $_ represents) and check the Count property of the PstnGatewayList property. If the count of PSTN gateways is 0, the list is empty and no gateways have been defined for the route. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - Get-CsOnlineVoiceRoutingPolicy - Get - CsOnlineVoiceRoutingPolicy - - Returns information about the online voice routing policies configured for use in your tenant. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Get-CsOnlineVoiceRoutingPolicy - - Filter - - Enables you to use wildcards when retrieving one or more online voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - - Get-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier of the online voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then `Get-CsOnlineVoiceRoutingPolicy` returns all the voice routing policies configured for use in the tenant. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcards when retrieving one or more online voice routing policies. For example, to return all the policies configured at the per-user scope, use this syntax: - -Filter "tag:*" - - String - - String - - - None - - - Identity - - Unique identifier of the online voice routing policy to be retrieved. To return the global policy, use this syntax: - -Identity global - To return a policy configured at the per-user scope, use syntax like this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - You cannot use wildcard characters when specifying the Identity. - If neither the Identity nor the Filter parameters are specified, then `Get-CsOnlineVoiceRoutingPolicy` returns all the voice routing policies configured for use in the tenant. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy - - The command shown in Example 1 returns information for all the online voice routing policies configured for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" - - In Example 2, information is returned for a single online voice routing policy: the policy with the Identity RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Filter "tag:*" - - The command shown in Example 3 returns information about all the online voice routing policies configured at the per-user scope. To do this, the command uses the Filter parameter and the filter value "tag:*"; that filter value limits the returned data to policies that have an Identity that begins with the string value "tag:". - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Long Distance"} - - In Example 4, information is returned only for those online voice routing policies that include the PSTN usage "Long Distance". To carry out this task, the command first calls `Get-CsVoiceRoutingPolicy` without any parameters; that returns a collection of all the voice routing policies configured for use in the organization. This collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the usage "Long Distance". - - - - -------------------------- Example 5 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -notcontains "Long Distance"} - - Example 5 is a variation on the command shown in Example 4; in this case, however, information is returned only for those online voice routing policies that do not include the PSTN usage "Long Distance". In order to do that, the Where-Object cmdlet uses the -notcontains operator, which limits returned data to policies that do not include the usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Get-CsOnlineVoiceUser - Get - CsOnlineVoiceUser - - Use the `Get-CsOnlineVoiceUser` cmdlet to retrieve a voice user's telephone number and location. - - - - Note : This cmdlet is no longer supported on the public and GCC cloud instances. You should use the replacement cmdlets described here. - The following table lists the parameters to `Get-CsOnlineVoiceUser` and the alternative method of getting the same data using a combination of `Get-CsOnlineUser`, `Get-CsPhoneNumberAssignment`, `Get-CsOnlineLisLocation`, and `Get-CsOnlineLisCivicAddress`. - | Parameter | Description | Alternative | | :------------| :------- | :------- | | No parameters | Get information for all users | `Get-CsOnlineUser -Filter {(FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` | | CivicAddressId | Find phone number information where the assigned phone number is associated with the CivicAddressId | `Get-CsPhoneNumberAssignment -CivicAddressId <CivicAddressId>` | | EnterpriseVoiceStatus | Find enabled users based on EnterpriseVoiceEnabled | `Get-CsOnlineUser -Filter {(EnterpriseVoiceEnabled -eq $True) -and (FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` or `Get-CsOnlineUser -Filter {(EnterpriseVoiceEnabled -eq $False) -and (FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` | | ExpandLocation | Show information about the LocationId | `Get-CsOnlineLisLocation -LocationId <LocationId>` | | Identity | Get information for a user | `Get-CsOnlineUser -Identity <Identity>` | | LocationId | Find phone number information where the assigned phone number is associated with the LocationId | `Get-CsPhoneNumberAssignment -LocationId <LocationId>` | | NumberAssigned | Find enabled users with a phone number assigned | `Get-CsOnlineUser -Filter {(LineUri -ne $Null) -and (FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` | | NumberNotAssigned | Find users without a phone number assigned | `Get-CsOnlineUser -Filter {(LineUri -eq $Null) -and (FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` | | PSTNConnectivity | Find enabled users with PhoneSystem (OnPremises) or CallingPlan (Online) | Online: `Get-CsOnlineUser -Filter {(FeatureTypes -contains 'CallingPlan') -and (AccountEnabled -eq $True)} -AccountType User` OnPremises: `Get-CsOnlineUser -Filter {-not (FeatureTypes -contains 'CallingPlan') -and (FeatureTypes -contains 'PhoneSystem') -and (AccountEnabled -eq $True)} -AccountType User` | - The following table lists the output fields from `Get-CsOnlineVoiceUser` and the alternative method of getting the same information using a combination of `Get-CsOnlineUser`, `Get-CsPhoneNumberAssignment`, and `Get-CsOnlineLisLocation`. - | Output field | Alternative | | :---------------------------------| :--------------------------------- | | Name | DisplayName in the output from `Get-CsOnlineUser` | | Id | Identity in the output from `Get-CsOnlineUser`| | SipDomain | Extract SipDomain from the SipAddress in the output from `Get-CsOnlineUser` | | DataCenter | Extract DataCenter from RegistrarPool in the output from `Get-CsOnlineUser`| | TenantId | TenantId in the output from `Get-CsOnlineUser`| | PstnConnectivity | FeatureTypes in the output from `Get-CsOnlineUser`. If FeatureTypes contains `CallingPlan`, PstnConnectivity is `Online`. If FeatureTypes contains `PhoneSystem` and does not contain `CallingPlan`, PstnConnectivity is `OnPremises` | | UsageLocation | UsageLocation in the output from `Get-CsOnlineUser` | | EnterpriseVoiceEnabled | EnterpriseVoiceEnabled in the output from `Get-CsOnlineUser` | | Number | LineUri in the output from `Get-CsOnlineUser`. You can get same phone number format by doing LineUri.Replace('tel:+','') | | Location | Use LocationId in the output from `Get-CsPhoneNumberAssignment -AssignedPstnTargetId <Identity>` as the input to `Get-CsOnlineLisLocation -LocationId` | - In Teams PowerShell Module version 3.0 and later in commercial cloud (and Teams PowerShell Module versions 5.0.1 and later in GCCH and DOD), the following improvements have been introduced for organizations using Teams: - This cmdlet now accurately returns users who are voice-enabled (the older cmdlet in version 2.6.0 and earlier returned users without MCOEV* plans assigned). - - The result size is not limited to 100 users anymore (the older cmdlet in version 2.6.0 and earlier limited the result size to 100). - - In Teams PowerShell Module version 2.6.2 and later in commercial cloud (and Teams PowerShell Module versions 5.0.1 and later in GCCH and DOD), the following attributes are deprecated for organizations with Teams users using the ExpandLocation parameter: - - Force - - NumberOfResultsToSkip - - CorrelationId - - Verb - - ResultSize - - LicenceState - - In Teams PowerShell Module version 2.6.2 and later in commercial cloud (and Teams PowerShell Module versions 5.0.1 and later in GCCH and DOD), the following input parameters are deprecated for organizations with Teams users due to low or zero usage: - - DomainController - - Force - - GetFromAAD - - GetPendingUsers - - SearchQuery - - Skip - - Tenant - - Common Parameters - - - - Get-CsOnlineVoiceUser - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identity of the civic address that is assigned to the target users. - - XdsCivicAddressId - - XdsCivicAddressId - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - EnterpriseVoiceStatus - - > Applicable: Microsoft Teams - Possible values are: * All - * Enabled - * Disabled - - MultiValuedProperty - - MultiValuedProperty - - - None - - - ExpandLocation - - > Applicable: Microsoft Teams - Displays the location parameter with its value. - - - SwitchParameter - - - False - - - First - - > Applicable: Microsoft Teams - Specifies the number of users to return. The default is 100. - - Unlimited - - Unlimited - - - None - - - Force - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - GetFromAAD - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Use this switch to get the users from Microsoft Entra ID. - - - SwitchParameter - - - False - - - GetPendingUsers - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Use this switch to get only the users in pending state. - - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - - UserIdParameter - - UserIdParameter - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the location identity of the location whose users will be returned. You can find location identifiers by using the `Get-CsOnlineLisLocation` cmdlet. - - LocationID - - LocationID - - - None - - - NumberAssigned - - > Applicable: Microsoft Teams - If specified, the query will return users who have a phone number assigned. - - - SwitchParameter - - - False - - - NumberNotAssigned - - > Applicable: Microsoft Teams - If specified, the query will return users who do not have a phone number assigned. - - - SwitchParameter - - - False - - - PSTNConnectivity - - > Applicable: Microsoft Teams - Possible values are: * All - * Online - * OnPremises - - MultiValuedProperty - - MultiValuedProperty - - - None - - - SearchQuery - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The SearchQuery parameter specifies a search string or a query formatted using Keyword Query Language (KQL). For more details about KQL, see Keyword Query Language syntax reference (https://go.microsoft.com/fwlink/p/?linkid=269603). - If this parameter is empty, all users are returned. - - String - - String - - - None - - - Skip - - > Applicable: Microsoft Teams - Specifies the number of users to skip. If you used the First parameter to return the first 50 users and wanted to get another 50, you could use -Skip 50 to avoid returning the first 50 you've already reviewed. The default is 0. - - Unlimited - - Unlimited - - - None - - - Tenant - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the identity of the civic address that is assigned to the target users. - - XdsCivicAddressId - - XdsCivicAddressId - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - EnterpriseVoiceStatus - - > Applicable: Microsoft Teams - Possible values are: * All - * Enabled - * Disabled - - MultiValuedProperty - - MultiValuedProperty - - - None - - - ExpandLocation - - > Applicable: Microsoft Teams - Displays the location parameter with its value. - - SwitchParameter - - SwitchParameter - - - False - - - First - - > Applicable: Microsoft Teams - Specifies the number of users to return. The default is 100. - - Unlimited - - Unlimited - - - None - - - Force - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - GetFromAAD - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Use this switch to get the users from Microsoft Entra ID. - - SwitchParameter - - SwitchParameter - - - False - - - GetPendingUsers - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - Use this switch to get only the users in pending state. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - - UserIdParameter - - UserIdParameter - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the location identity of the location whose users will be returned. You can find location identifiers by using the `Get-CsOnlineLisLocation` cmdlet. - - LocationID - - LocationID - - - None - - - NumberAssigned - - > Applicable: Microsoft Teams - If specified, the query will return users who have a phone number assigned. - - SwitchParameter - - SwitchParameter - - - False - - - NumberNotAssigned - - > Applicable: Microsoft Teams - If specified, the query will return users who do not have a phone number assigned. - - SwitchParameter - - SwitchParameter - - - False - - - PSTNConnectivity - - > Applicable: Microsoft Teams - Possible values are: * All - * Online - * OnPremises - - MultiValuedProperty - - MultiValuedProperty - - - None - - - SearchQuery - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - The SearchQuery parameter specifies a search string or a query formatted using Keyword Query Language (KQL). For more details about KQL, see Keyword Query Language syntax reference (https://go.microsoft.com/fwlink/p/?linkid=269603). - If this parameter is empty, all users are returned. - - String - - String - - - None - - - Skip - - > Applicable: Microsoft Teams - Specifies the number of users to skip. If you used the First parameter to return the first 50 users and wanted to get another 50, you could use -Skip 50 to avoid returning the first 50 you've already reviewed. The default is 0. - - Unlimited - - Unlimited - - - None - - - Tenant - - > Applicable: Microsoft Teams This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage . - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Deserialized.Microsoft.Rtc.Management.Hosted.Bvd.Types.LacUser - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsOnlineVoiceUser -Identity Ken.Myer@contoso.com - - This example uses the User Principal Name (UPN) to retrieve the location and phone number information. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceuser - - - Set-CsOnlineVoiceUser - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceuser - - - - - - Get-CsPersonalAttendantSettings - Get - CsPersonalAttendantSettings - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - This cmdlet will show personal attendant settings for a user. - - - - This cmdlet shows the personal attendant settings for a user. - - - - Get-CsPersonalAttendantSettings - - Identity - - The Identity of the user to show personal attendant settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - Identity - - The Identity of the user to show personal attendant settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.3.0 or later. - - - - - -------------------------- Example 1 -------------------------- - Get-CsPersonalAttendantSettings -Identity user1@contoso.com - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : False -IsNonContactCallbackEnabled : False -IsCallScreeningEnabled : False -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : False -AllowInboundPSTNCalls : False -IsAutomaticTranscriptionEnabled : False -IsAutomaticRecordingEnabled : False - - This example shows that user1@contoso.com has personal attendant enabled (personal attendant communicates in English). Personal attendant will refer to its owner as User1. Personal attendant is only enabled for inbound Teams calls from the user's domain. Additional capabilities are turned off. - - - - -------------------------- Example 2 -------------------------- - Get-CsPersonalAttendantSettings -InputObject @{ UserId = "user11@contoso.com"; } - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : False -IsNonContactCallbackEnabled : False -IsCallScreeningEnabled : False -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : False -AllowInboundPSTNCalls : False -IsAutomaticTranscriptionEnabled : False -IsAutomaticRecordingEnabled : False - - This example returns same output as Example 1 but fetched using identity parameter. - - - - -------------------------- Example 3 -------------------------- - Get-CsPersonalAttendantSettings -Identity user1@contoso.com - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : True -IsNonContactCallbackEnabled : False -IsCallScreeningEnabled : False -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : False -AllowInboundPSTNCalls : False -IsAutomaticTranscriptionEnabled : False -IsAutomaticRecordingEnabled : False - - This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is able to access personal bookings calendar, fetch the user's availability and schedule callbacks on behalf of the user. Calendar operations are enabled for all incoming callers. user1 must specify the bookings link in Teams Personal Attendant settings. - - - - -------------------------- Example 4 -------------------------- - Get-CsPersonalAttendantSettings -Identity user1@contoso.com - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : True -IsNonContactCallbackEnabled : True -IsCallScreeningEnabled : False -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : True -AllowInboundPSTNCalls : True -IsAutomaticTranscriptionEnabled : False -IsAutomaticRecordingEnabled : False - - This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled for all incoming calls: the user's domain, other domains and PSTN. - - - - -------------------------- Example 5 -------------------------- - Get-CsPersonalAttendantSettings -Identity user1@contoso.com - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : True -IsNonContactCallbackEnabled : True -IsCallScreeningEnabled : True -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : True -AllowInboundPSTNCalls : True -IsAutomaticTranscriptionEnabled : False -IsAutomaticRecordingEnabled : False - - This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled to evaluate the call's context and pass the info to the user. - - - - -------------------------- Example 6 -------------------------- - Get-CsPersonalAttendantSettings -Identity user1@contoso.com - -IsPersonalAttendantEnabled : True -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : User1 -DefaultTone : Formal -IsBookingCalendarEnabled : True -IsNonContactCallbackEnabled : True -IsCallScreeningEnabled : True -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : True -AllowInboundPSTNCalls : True -IsAutomaticTranscriptionEnabled : True -IsAutomaticRecordingEnabled : True - - This example shows that user1@contoso.com has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is automatically storing call transcription and recording. - - - - -------------------------- Example 7 -------------------------- - Get-CsPersonalAttendantSettings -Identity user11@contoso.com - -IsPersonalAttendantEnabled : False -DefaultLanguage : en-US -DefaultVoice : Female -CalleeName : -DefaultTone : Formal -IsBookingCalendarEnabled : False -IsNonContactCallbackEnabled : False -IsCallScreeningEnabled : True -AllowInboundInternalCalls : True -AllowInboundFederatedCalls : True -AllowInboundPSTNCalls : True -IsAutomaticTranscriptionEnabled : True -IsAutomaticRecordingEnabled : True - - This example shows the default settings for the user that has never changed the personal attendant settings via Microsoft Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspersonalattendantsettings - - - Set-CsPersonalAttendantSettings - - - - - - - Get-CsPhoneNumberAssignment - Get - CsPhoneNumberAssignment - - This cmdlet displays information about one or more phone numbers. - - - - This cmdlet displays information about one or more phone numbers. You can filter the phone numbers to return by using different parameters. Returned results are sorted by TelephoneNumber in ascending order. Supported list of attributes for Filter are: - TelephoneNumber - - OperatorId - - PstnAssignmentStatus (also supported AssignmentStatus) - - ActivationState - - IsoCountryCode - - Capability (also supported AcquiredCapabilities) - - IsOperatorConnect - - PstnPartnerName (also supported PartnerName) - - LocationId - - CivicAddressId - - NetworkSiteId - - NumberType - - AssignedPstnTargetId (also supported TargetId) - - TargetType - - AssignmentCategory - - ResourceAccountSharedCallingPolicySupported - - SupportedCustomerActions - - ReverseNumberLookup - - RoutingOptions - - SmsActivationState - - Tags - - If you are using both -Skip X and -Top Y for filtering, the returned results will first be skipped by X, and then the top Y results will be returned. - By default, this cmdlet returns a maximum of 500 results. A maximum of 1000 results can be returned using -Top filter. If you need to get more than 1000 results, a combination of -Skip and -Top filtering can be used to list incremental returns of 1000 numbers. If a full list of telephone numbers acquired by the tenant is required, you can use Export-CsAcquiredPhoneNumber (./export-csacquiredphonenumber.md)cmdlet to download a list of all acquired telephone numbers. - - - - Get-CsPhoneNumberAssignment - - ActivationState - - > Applicable: Microsoft Teams - Filters the returned results based on the number type. Supported values are Activated, AssignmentPending, AssignmentFailed, UpdatePending, and UpdateFailed. - - System.String - - System.String - - - None - - - AssignedPstnTargetId - - > Applicable: Microsoft Teams - Filters the returned results based on the user or resource account ID the phone number is assigned to. Supported values are UserPrincipalName, SIP address, ObjectId, and the Teams shared calling routing policy instance name. - - System.String - - System.String - - - None - - - AssignmentCategory - - > Applicable: Microsoft Teams - This parameter is used to differentiate between Primary and Private line assignment for a user. - - System.String - - System.String - - - None - - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - CapabilitiesContain - - > Applicable: Microsoft Teams - Filters the returned results based on the capabilities assigned to the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and TeamsPhoneMobile. - If you specify only one capability, you will get all phone numbers returned that have that capability assigned. If you specify a comma separated list for instance like ConferenceAssignment, VoiceApplicationAssignment you will get all phone numbers that have both capabilities assigned, but you won't get phone numbers that have only VoiceApplicationAssignment or ConferenceAssignment assigned as capability. - - System.String - - System.String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Filters the returned results based on the CivicAddressId assigned to the phone number. You can get the CivicAddressId by using Get-CsOnlineLisCivicAddress (https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress). - - System.String - - System.String - - - None - - - Filter - - This can be used to filter on one or more parameters within the search results. - - System.String - - System.String - - - None - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - IsoCountryCode - - > Applicable: Microsoft Teams - Filters the returned results based on the ISO 3166-1 Alpha-2 country code assigned to the phone number. - - System.String - - System.String - - - None - - - LocationId - - > Applicable: Microsoft Teams - Filters the returned results based on the LocationId assigned to the phone number. You can get the LocationId by using Get-CsOnlineLisLocation (https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation). - - System.String - - System.String - - - None - - - NetworkSiteId - - > Applicable: Microsoft Teams - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - NumberType - - > Applicable: Microsoft Teams - Filters the returned results based on the number type. Supported values are DirectRouting, CallingPlan, and OperatorConnect. - - System.String - - System.String - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - PstnAssignmentStatus - - > Applicable: Microsoft Teams - Filters the returned results based on the assignment status. Supported values are Unassigned, UserAssigned, ConferenceAssigned, VoiceApplicationAssigned, ThirdPartyAppAssigned, and PolicyAssigned. - - System.String - - System.String - - - None - - - Skip - - Skips the first X returned results and the default value is 0. - - System.Int32 - - System.Int32 - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Filters the returned results to a specific phone number. It is optional to specify a prefixed "+". The phone number can't have "tel:" prefixed. We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234. - - System.String - - System.String - - - None - - - TelephoneNumberContain - - > Applicable: Microsoft Teams - Filters the returned results based on substring match for the specified string on TelephoneNumber. To search for a number with an extension, you need to specify the digits of the extension. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberGreaterThan - - > Applicable: Microsoft Teams - Filters the returned results based on greater than match for the specified string on TelephoneNumber. Can be used together with TelephoneNumberLessThan to specify a range of phone numbers to return results for. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberLessThan - - > Applicable: Microsoft Teams - Filters the returned results based on less than match for the specified string on TelephoneNumber. Can be used together with TelephoneNumberGreaterThan to specify a range of phone numbers to return results for. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberStartsWith - - > Applicable: Microsoft Teams - Filters the returned results based on starts with string match for the specified string on TelephoneNumber. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - Top - - > Applicable: Microsoft Teams - Returns the first X returned results and the default value is 500. - - System.Int32 - - System.Int32 - - - None - - - - - - ActivationState - - > Applicable: Microsoft Teams - Filters the returned results based on the number type. Supported values are Activated, AssignmentPending, AssignmentFailed, UpdatePending, and UpdateFailed. - - System.String - - System.String - - - None - - - AssignedPstnTargetId - - > Applicable: Microsoft Teams - Filters the returned results based on the user or resource account ID the phone number is assigned to. Supported values are UserPrincipalName, SIP address, ObjectId, and the Teams shared calling routing policy instance name. - - System.String - - System.String - - - None - - - AssignmentCategory - - > Applicable: Microsoft Teams - This parameter is used to differentiate between Primary and Private line assignment for a user. - - System.String - - System.String - - - None - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - CapabilitiesContain - - > Applicable: Microsoft Teams - Filters the returned results based on the capabilities assigned to the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and TeamsPhoneMobile. - If you specify only one capability, you will get all phone numbers returned that have that capability assigned. If you specify a comma separated list for instance like ConferenceAssignment, VoiceApplicationAssignment you will get all phone numbers that have both capabilities assigned, but you won't get phone numbers that have only VoiceApplicationAssignment or ConferenceAssignment assigned as capability. - - System.String - - System.String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Filters the returned results based on the CivicAddressId assigned to the phone number. You can get the CivicAddressId by using Get-CsOnlineLisCivicAddress (https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress). - - System.String - - System.String - - - None - - - Filter - - This can be used to filter on one or more parameters within the search results. - - System.String - - System.String - - - None - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - IsoCountryCode - - > Applicable: Microsoft Teams - Filters the returned results based on the ISO 3166-1 Alpha-2 country code assigned to the phone number. - - System.String - - System.String - - - None - - - LocationId - - > Applicable: Microsoft Teams - Filters the returned results based on the LocationId assigned to the phone number. You can get the LocationId by using Get-CsOnlineLisLocation (https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation). - - System.String - - System.String - - - None - - - NetworkSiteId - - > Applicable: Microsoft Teams - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - NumberType - - > Applicable: Microsoft Teams - Filters the returned results based on the number type. Supported values are DirectRouting, CallingPlan, and OperatorConnect. - - System.String - - System.String - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - PstnAssignmentStatus - - > Applicable: Microsoft Teams - Filters the returned results based on the assignment status. Supported values are Unassigned, UserAssigned, ConferenceAssigned, VoiceApplicationAssigned, ThirdPartyAppAssigned, and PolicyAssigned. - - System.String - - System.String - - - None - - - Skip - - Skips the first X returned results and the default value is 0. - - System.Int32 - - System.Int32 - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Filters the returned results to a specific phone number. It is optional to specify a prefixed "+". The phone number can't have "tel:" prefixed. We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234. - - System.String - - System.String - - - None - - - TelephoneNumberContain - - > Applicable: Microsoft Teams - Filters the returned results based on substring match for the specified string on TelephoneNumber. To search for a number with an extension, you need to specify the digits of the extension. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberGreaterThan - - > Applicable: Microsoft Teams - Filters the returned results based on greater than match for the specified string on TelephoneNumber. Can be used together with TelephoneNumberLessThan to specify a range of phone numbers to return results for. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberLessThan - - > Applicable: Microsoft Teams - Filters the returned results based on less than match for the specified string on TelephoneNumber. Can be used together with TelephoneNumberGreaterThan to specify a range of phone numbers to return results for. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - TelephoneNumberStartsWith - - > Applicable: Microsoft Teams - Filters the returned results based on starts with string match for the specified string on TelephoneNumber. For supported formats see TelephoneNumber. - - System.String - - System.String - - - None - - - Top - - > Applicable: Microsoft Teams - Returns the first X returned results and the default value is 500. - - System.Int32 - - System.Int32 - - - None - - - - - - None - - - - - - - - - - ActivationState - - - The activation state of the telephone number. - - - - - AssignedPstnTargetId - - - The ID of the object the phone number is assigned to, either the ObjectId of a user or resource account or the policy instance ID of a Teams shared calling routing policy instance. - - - - - AssignmentBlockedState - - - The state of the number in terms of blocked assignment: NotBlocked if there is no assignment block on the number, BlockedForever if assignment is blocked indefinitely for the number, BlockedUntil if assignment is blocked for a specific amount of days (limited time assignment block currently not available). - - - - - AssignmentBlockedUntil - - - The date until which assignment is blocked for the phone number. Null if the number is blocked for assignment indefinitely. - - - - - AssignmentCategory - - - Contains the assignment category such as Primary, Alternate or Private. - - - - - Capability - - - The list of capabilities assigned to the phone number. - - - - - City - - - The city where the phone number is located. - - - - - CivicAddressId - - - The ID of the CivicAddress assigned to the phone number. - - - - - IsoCountryCode - - - The ISO country code assigned to the phone number. - - - - - IsoSubDivision - - - The subdivision within the country/region assigned to the phone number, for example, the state for US phone numbers. - - - - - LocationId - - - The ID of the Location assigned to the phone number. - - - - - LocationUpdateSupported - - - Boolean stating if updating of the location assigned to the phone number is allowed. - - - - - NetworkSiteId - - - This parameter is reserved for internal Microsoft use. - - - - - NumberSource - - - The source of the phone number. Online for phone numbers assigned in Microsoft 365 and OnPremises for phone numbers assigned in AD on-premises and synchronized into Microsoft 365. - - - - - NumberType - - - The type of the phone number. - - - - - OperatorId - - - The ID of the operator. - - - - - PortInOrderStatus - - - The status of any port in order covering the phone number. - - - - - PstnAssignmentStatus - - - The assignment status of the phone number. - - - - - PstnPartnerId - - - The ID of the PSTN partner providing the phone number. - - - - - PstnPartnerName - - - The name of the PSTN partner. - - - - - SmsActivationState - - - The SMS activation state of the number. - - - - - SmsProfileId - - - The Id of the SMS partner. - - - - - TelephoneNumber - - - The phone number. The number is always displayed with prefixed "+", even if it was not assigned using prefixed "+". - The object returned is of type SkypeTelephoneNumberMgmtCmdletAcquiredTelephoneNumber. - - - - - ReverseNumberLookup - - - Status of Reverse Number Lookup (RNL). When it is set to SkipInternalVoip, the calls are handled through external PSTN connection instead of internal VoIP lookup. - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. The parameter AssignmentCategory was introduced in Teams PowerShell module 5.3.1-preview. The parameter NetworkSiteId was introduced in Teams PowerShell module 5.5.0. The output parameter NumberSource was introduced in Teams PowerShell module 5.7.0. Multi-line related cmdlets are available from Teams PowerShell module 7.6.0. - The cmdlet is only available in commercial, GCC, GCCH and DoD cloud instances. - - - - - -------------------------- Example 1 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +14025551234 - -TelephoneNumber : +14025551234 -OperatorId : 2b24d246-a9ee-428b-96bc-fb9d9a053c8d -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : dc13d97b-7897-494e-bc28-6b469bf7a70e -AssignmentCategory : Primary -Capability : {UserAssignment} -City : Omaha -CivicAddressId : 703b30e5-dbdd-4132-9809-4c6160a6acc7 -IsoCountryCode : US -IsoSubdivision : Nebraska -LocationId : 407c17ae-8c41-431e-894a-38787c682f68 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example displays information about the Microsoft Calling Plan subscriber phone number +1 (402) 555-1234. You can see that it is assigned to a user. - - - - -------------------------- Example 2 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber "+12065551000;ext=524" - -TelephoneNumber : +12065551000;ext=524 -OperatorId : 83d289bc-a4d3-41e6-8a3f-cff260a3f091 -NumberType : DirectRouting -ActivationState : Activated -AssignedPstnTargetId : 2713551e-ed63-415d-9175-fc4ff825a0be -AssignmentCategory : Primary -Capability : {ConferenceAssignment, VoiceApplicationAssignment, UserAssignment} -City : -CivicAddressId : 00000000-0000-0000-0000-000000000000 -IsoCountryCode : -IsoSubdivision : -LocationId : 00000000-0000-0000-0000-000000000000 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : -PstnPartnerName : -NumberSource : OnPremises -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example displays information about the Direct Routing phone number +1 (206) 555-1000;ext=524. You can see that it is assigned to a user. - - - - -------------------------- Example 3 -------------------------- - Get-CsPhoneNumberAssignment -CapabilitiesContain "VoiceApplicationAssignment,ConferenceAssignment" - - This example returns all phone numbers that have both the capability VoiceApplicationAssignment and the capability ConferenceAssignment assigned, but phone numbers that have only one of these capabilities assigned won't be returned. - - - - -------------------------- Example 4 -------------------------- - Get-CsPhoneNumberAssignment -AssignedPstnTargetId user1@contoso.com - - This example returns information about the phone number assigned to user1@contoso.com. - - - - -------------------------- Example 5 -------------------------- - Get-CsPhoneNumberAssignment -AssignedPstnTargetId aa1@contoso.com - - This example returns information about the phone number assigned to resource account aa1@contoso.com. - - - - -------------------------- Example 6 -------------------------- - Get-CsPhoneNumberAssignment -ActivationState Activated -CapabilitiesContain VoiceApplicationAssignment -PstnAssignmentStatus Unassigned - - This example returns information about all activated phone numbers with the capability VoiceApplicationAssignment that are not assigned. - - - - -------------------------- Example 7 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumberContain "524" - - This example returns information about all phone numbers that contain the digits 524, including the phone number with extension 524 used in example 2. - - - - -------------------------- Example 8 -------------------------- - Get-CsPhoneNumberAssignment -Skip 1000 -Top 1000 - - This example returns all phone numbers sequenced between 1001 to 2000 in the record of phone numbers. - - - - -------------------------- Example 9 -------------------------- - Get-CsPhoneNumberAssignment -AssignedPstnTargetId 'TeamsSharedCallingRoutingPolicy|Tag:SC1' - - This example returns all phone numbers assigned as emergency numbers in the Teams shared calling routing policy instance SC1. - - - - -------------------------- Example 10 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber "+12065551000;ext=524" - -TelephoneNumber : +12065551000;ext=524 -OperatorId : 83d289bc-a4d3-41e6-8a3f-cff260a6f091 -NumberType : DirectRouting -ActivationState : Activated -AssignedPstnTargetId : 2713551e-ed63-415d-9175-fc4ff825a0be -AssignmentCategory : Primary -Capability : {ConferenceAssignment, VoiceApplicationAssignment, UserAssignment} -City : -CivicAddressId : 00000000-0000-0000-0000-000000000000 -IsoCountryCode : -IsoSubdivision : -LocationId : 00000000-0000-0000-0000-000000000000 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : -PstnPartnerName : -NumberSource : OnPremises -ReverseNumberLookup : {SkipInternalVoip} -Tag : {} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example displays when SkipInternalVoip option is turned on for a number. - - - - -------------------------- Example 11 -------------------------- - Get-CsPhoneNumberAssignment -Filter "TelephoneNumber -eq '+12065551000'" - -TelephoneNumber : +12065551000 -OperatorId : 83d289bc-a4d3-41e6-8a3f-cff260a3f091 -NumberType : DirectRouting -ActivationState : Activated -AssignedPstnTargetId : 2713551e-ed63-415d-9175-fc4ff825a0be -AssignmentCategory : Primary -Capability : {ConferenceAssignment, VoiceApplicationAssignment, UserAssignment} -City : -CivicAddressId : 00000000-0000-0000-0000-000000000000 -IsoCountryCode : -IsoSubdivision : -LocationId : 00000000-0000-0000-0000-000000000000 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : -PstnPartnerName : -NumberSource : OnPremises -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example shows a way to use -Filter parameter to display information of a specific number. - - - - -------------------------- Example 12 -------------------------- - Get-CsPhoneNumberAssignment -Filter "TelephoneNumber -like '+12065551000' -and NumberType -eq 'DirectRouting'" - -TelephoneNumber : +12065551000 -OperatorId : 83d289bc-a4d3-41e6-8a3f-cff260a3f591 -NumberType : DirectRouting -ActivationState : Activated -AssignedPstnTargetId : 2713551e-ed63-415d-9175-fc4ff825a0be -AssignmentCategory : Primary -Capability : {ConferenceAssignment, VoiceApplicationAssignment, UserAssignment} -City : -CivicAddressId : 00000000-0000-0000-0000-000000000000 -IsoCountryCode : -IsoSubdivision : -LocationId : 00000000-0000-0000-0000-000000000000 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : -PstnPartnerName : -NumberSource : OnPremises -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example shows a way to get filtered results using multiple Filter parameters. - - - - -------------------------- Example 13 -------------------------- - Get-CsPhoneNumberAssignment -Filter "Tags -contains ['Engineering']" - -TelephoneNumber : +12065551102 -OperatorId : 83d289bc-a4d3-41e6-8a3f-cff260a3f071 -NumberType : DirectRouting -ActivationState : Activated -AssignedPstnTargetId : 2713551e-ed63-415d-9175-fc4ff825a0be -AssignmentCategory : Primary -Capability : {ConferenceAssignment, VoiceApplicationAssignment, UserAssignment} -City : -CivicAddressId : 00000000-0000-0000-0000-000000000000 -IsoCountryCode : -IsoSubdivision : -LocationId : 00000000-0000-0000-0000-000000000000 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : -PstnPartnerName : -NumberSource : OnPremises -ReverseNumberLookup : {} -Tag : {Engineering} -AssignmentBlockedState : -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example shows a way to get filtered results using tags. Tags are not case sensitive. - - - - -------------------------- Example 14 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +14025551234 - -TelephoneNumber : +14025551234 -OperatorId : 2b24d246-a9ee-428b-96bc-fb9d9a053c8d -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : -AssignmentCategory : -Capability : {UserAssignment} -City : Omaha -CivicAddressId : -IsoCountryCode : US -IsoSubdivision : Nebraska -LocationId : -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : Unassigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : BlockedForever -AssignmentBlockedUntil : -SmsActivationState : NotActivated - - This example displays information about the telephone number +1 (402) 555-1234 which has a permanent assignment block. This block prevents the number from being assigned to any other user. Admin can remove the block using Remove-CsPhoneNumberAssignmentBlock (./remove-csphonenumberassignmentblock.md). - - - - -------------------------- Example 15 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +14025551234 - -TelephoneNumber : +14025551234 -OperatorId : 2b24d246-a9ee-428b-96bc-fb9d9a053c8d -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : -AssignmentCategory : -Capability : {UserAssignment} -City : Omaha -CivicAddressId : -IsoCountryCode : US -IsoSubdivision : Nebraska -LocationId : -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : Unassigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : BlockedUntil -AssignmentBlockedUntil : 2025-10-11T21:30:00.0000000Z -SmsActivationState : NotActivated - - This example displays information about the telephone number +1 (402) 555-1234 which has a temporary assignment block. This block prevents the number from being assigned to any other user. Once the period shown in AssignmentBlockedUntil passes, the AssignmentBlock will be automatically removed and the number will become available to be assigned to any user. Admin can also remove the block manually using Remove-CsPhoneNumberAssignmentBlock (./remove-csphonenumberassignmentblock.md). - - - - -------------------------- Example 16 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +13603227351 - -TelephoneNumber : +13603227351 -OperatorId : 0019adbc-b82a-47b4-a799-4e993a9982f1 -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : 2d43c5da-649b-406b-9d32-d130d2c53018 -AssignmentCategory : Primary -Capability : {Geographic, InboundCalling, OutboundCalling, UserAssignment} -City : Marysville -CivicAddressId : 822d4d26-2c43-460f-921c-179163b106f8 -IsoCountryCode : US -IsoSubdivision : Washington -LocationId : 4040949c-2424-469c-a9bc-563a5e5964f3 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : NotBlocked -AssignmentBlockedUntil : -SmsActivationState : Activated - - This example displays information about the telephone number +1 (360) 322-7351 that is enabled for SMS. - - - - -------------------------- Example 17 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +13603227351 - -TelephoneNumber : +13603227351 -OperatorId : 0019adbc-b82a-47b4-a799-4e993a9982f1 -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : 2d43c5da-649b-406b-9d32-d130d2c53018 -AssignmentCategory : Primary -Capability : {Geographic, InboundCalling, OutboundCalling, UserAssignment} -City : Marysville -CivicAddressId : 822d4d26-2c43-460f-921c-179163b106f8 -IsoCountryCode : US -IsoSubdivision : Washington -LocationId : 4040949c-2424-469c-a9bc-563a5e5964f3 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : NotBlocked -AssignmentBlockedUntil : -SmsActivationState : UpdatePending - - This example displays information about the telephone number +1 (360) 322-7351 where SMS activation is pending. - - - - -------------------------- Example 18 -------------------------- - Get-CsPhoneNumberAssignment -TelephoneNumber +13603227351 - -TelephoneNumber : +1555555555 -OperatorId : 0019adbc-b82a-47b4-a799-4e993a9982f1 -NumberType : CallingPlan -ActivationState : Activated -AssignedPstnTargetId : 2d43c5da-649b-406b-9d32-d130d2c53018 -AssignmentCategory : Alternate -Capability : {UserAssignment} -City : Marysville -CivicAddressId : 822d4d26-2c43-460f-921c-179163b106f8 -IsoCountryCode : US -IsoSubdivision : Washington -LocationId : 4040949c-2424-469c-a9bc-563a5e5964f3 -LocationUpdateSupported : True -NetworkSiteId : -PortInOrderStatus : -PstnAssignmentStatus : UserAssigned -PstnPartnerId : 7fc2f2eb-89aa-41d7-93de-73d015d22ff0 -PstnPartnerName : Microsoft -NumberSource : Online -ReverseNumberLookup : {} -Tag : {} -AssignmentBlockedState : NotBlocked -AssignmentBlockedUntil : -SmsActivationState : - - This example displays information about the telephone number +1 (360) 322-7351 which is assigned as an alternate number for the user. (Multi-line feature is in Public Preview) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment - - - Remove-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment - - - Set-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment - - - - - - Get-CsPhoneNumberPolicyAssignment - Get - CsPhoneNumberPolicyAssignment - - This cmdlet retrieves policy assignments associated with a specific telephone number or a list of telephone numbers in Microsoft Teams. - - - - This cmdlet retrieves policy assignments associated with one or more telephone numbers. It supports querying a single telephone number or a list of numbers, with optional filtering by policy type or policy name. This functionality is particularly useful for administrators managing Teams voice configurations, including scenarios with multiline support. - When querying a single telephone number, the cmdlet returns the most recent effective policy assignment. Note that it may take several minutes for newly applied assignments to propagate and appear in the results. - - - - Get-CsPhoneNumberPolicyAssignment - - TelephoneNumber - - Specifies the telephone number to query. - - System.String - - System.String - - - None - - - PolicyType - - Filters results by the type of policy assigned (e.g., TenantDialPlan, CallingLineIdentity etc.). - - System.String - - System.String - - - None - - - PolicyName - - Filters results by the name of the policy. To use this parameter, `-PolicyType` must also be specified. - - System.String - - System.String - - - None - - - ResultSize - - Limits the number of telephone numbers returned in the results. - - System.Int32 - - System.Int32 - - - None - - - - - - TelephoneNumber - - Specifies the telephone number to query. - - System.String - - System.String - - - None - - - PolicyType - - Filters results by the type of policy assigned (e.g., TenantDialPlan, CallingLineIdentity etc.). - - System.String - - System.String - - - None - - - PolicyName - - Filters results by the name of the policy. To use this parameter, `-PolicyType` must also be specified. - - System.String - - System.String - - - None - - - ResultSize - - Limits the number of telephone numbers returned in the results. - - System.Int32 - - System.Int32 - - - None - - - - - - None - - - - - - - - - - TelephoneNumber - - - The telephone number. - - - - - PolicyType - - - The type of the policy assigned to the telephone number. - - - - - PolicyName - - - The name of the policy assigned to the telephone number. - - - - - Reference - - - Metadata that describes the origin or mechanism of the policy assignment. It helps administrators understand whether a policy was explicitly set or inherited through broader configuration scopes. This cmdlet returns only Direct assignments, which are policies that are explicitly assigned to telephone numbers by a tenant admin. - - - - - - The cmdlet is available in Teams PowerShell module 7.3.1 or later. The cmdlet is only available in commercial cloud instances. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsPhoneNumberPolicyAssignment -TelephoneNumber 17789493766 - -TelephoneNumber PolicyType PolicyName Authority AssignmentType Reference ---------------- ---------- ---------- --------- -------------- --------- -14255551234 TenantDialPlan PolicyOne Tenant Direct Direct -14255551234 CallingLineIdentity PolicyTwo Tenant Direct Direct - - This example returns all policy assigned for the specified telephone number. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsPhoneNumberPolicyAssignment - -TelephoneNumber PolicyType PolicyName Authority AssignmentType Reference ---------------- ---------- ---------- --------- -------------- --------- -1234567 TenantDialPlan TestPolicy Tenant Direct Direct -14255551234 TenantDialPlan PolicyOne Tenant Direct Direct -14255551234 CallingLineIdentity PolicyTwo Tenant Direct Direct - - This example returns a list of all the telephone numbers in the tenant that have at least one policy assigned. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsPhoneNumberPolicyAssignment -PolicyType TenantDialPlan - -TelephoneNumber PolicyType PolicyName Reference ---------------- ---------- ---------- --------- -1234567 TenantDialPlan TestPolicy Direct -14255551234 TenantDialPlan PolicyOne Direct - - This example returns a list of all the telephone numbers in tenant that have TenantDialPlan assigned. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsPhoneNumberPolicyAssignment -PolicyType TenantDialPlan -PolicyName PolicyFoo -ResultSize 1 - -TelephoneNumber PolicyType PolicyName Reference ---------------- ---------- ---------- --------- -14255551234 TenantDialPlan PolicyFoo Direct - - This example returns the top 1 telephone number with policy assignment matching the specified type and name. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberpolicyassignment - - - Set-CsPhoneNumberPolicyAssignment - - - - - - - Get-CsPhoneNumberTag - Get - CsPhoneNumberTag - - This cmdlet allows the admin to get a list of existing tags for telephone numbers. - - - - This cmdlet will get a list of all existing tags that are assigned to phone numbers in the tenant. - - - - Get-CsPhoneNumberTag - - - - - - - None - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletTenantTagRecord - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsPhoneNumberTag - -TagValue -HR -Redmond HQ -Executives - - This example shows how to get a list of existing tags for telephone numbers - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumbertag - - - - - - Get-CsPhoneNumberTenantConfiguration - Get - CsPhoneNumberTenantConfiguration - - This cmdlet displays existing tenant level telephone number default configurations. - - - - This cmdlet displays existing tenant level telephone number default configurations. - - - - Get-CsPhoneNumberTenantConfiguration - - - - - - - None - - - - - - - - - - AssignmentEmailEnabled - - - Boolean stating if email notifications would be sent for telephone number assignment operations. - - - - - UnassignmentEmailEnabled - - - Boolean stating if email notifications would be sent for telephone number unassignment operations. - - - - - AssignmentBlockedForever - - - Boolean stating if assignment is blocked indefinitely. - - - - - AssignmentBlockedDays - - - The number of days that assignment is blocked. - - - - - AllowOnPremToOnlineMigration - - - Boolean stating if migrating Direct Routing numbers from OnPremises to Online is supported. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsPhoneNumberTenantConfiguration - -AssignmentEmailEnabled : True -UnassignmentEmailEnabled : True -AssignmentBlockedForever : -AssignmentBlockedDays : -AllowOnPremToOnlineMigration : -TenantId : 407c17ae-8c41-431e-894a-38787c682f68 - - This example that email notifications are enabled for any telephone number assignment and unassignment operations. End users will receive an email about the change unless configuration is overridden during assignment or unassignment operations. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsPhoneNumberTenantConfiguration - -AssignmentEmailEnabled : False -UnassignmentEmailEnabled : False -AssignmentBlockedForever : True -AssignmentBlockedDays : -AllowOnPremToOnlineMigration : -TenantId : 407c17ae-8c41-431e-894a-38787c682f68 - - This example displays that both email notifications and AssignmentBlockedForever is set by default. If a telephone number is unassigned, an email is sent to end user and the number is blocked from new assignment until the block is manually removed (https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignmentblock?view=teams-ps). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumbertenantconfiguration - - - Remove-CsPhoneNumberTenantConfiguration - - - - Set-CsPhoneNumberTenantConfiguration - - - - - - - Get-CsPolicyPackage - Get - CsPolicyPackage - - This cmdlet supports retrieving all the policy packages available on a tenant. - - - - This cmdlet supports retrieving all the policy packages available on a tenant. Provide the identity of a specific policy package to retrieve its definition, including details on the policies applied with the package. For more information on policy packages, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - Get-CsPolicyPackage - - Identity - - > Applicable: Microsoft Teams - The name of a specific policy package. All possible policy package names can be found by running Get-CsPolicyPackage. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - The name of a specific policy package. All possible policy package names can be found by running Get-CsPolicyPackage. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsPolicyPackage - - Returns all policy packages available on the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsPolicyPackage -Identity Education_PrimaryStudent - - Returns only the Education_PrimaryStudent policy package. - - - - -------------------------- Example 3 -------------------------- - PS C:\> $a = Get-CsPolicyPackage -Identity Education_PrimaryStudent -PS C:\> $a.Policies - -# In module versions 1.1.9+ -PS C:\> $a = Get-CsPolicyPackage -Identity Education_PrimaryStudent -PS C:\> $a.Policies.AdditionalProperties - -Key Value ---- ----- -TeamsMessagingPolicy {[Identity, Education_PrimaryStudent], [Description, This is an Education_PrimarySt... -TeamsMeetingPolicy {[Identity, Education_PrimaryStudent], [Description, This is an Education_PrimarySt... -TeamsAppSetupPolicy {[Identity, Education_PrimaryStudent], [Description, This is an Education_PrimarySt... -TeamsCallingPolicy {[Identity, Education_PrimaryStudent], [Description, This is an Education_PrimarySt... -TeamsMeetingBroadcastPolicy {[Identity, Education_PrimaryStudent], [Description, This is an Education_PrimarySt... - - Returns the set of policies in the Education_PrimaryStudent policy package. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - Get-CsUserPolicyPackageRecommendation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackagerecommendation - - - Get-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackage - - - Grant-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csuserpolicypackage - - - - - - Get-CsSdgBulkSignInRequestsSummary - Get - CsSdgBulkSignInRequestsSummary - - Get the tenant level summary of all bulk sign in requests executed in the past 30 days. - - - - This cmdlet gives the overall tenant level summary of all bulk sign in requests executed for a particular tenant within the last 30 days. Status is shown at batch level as succeeded / failed. - - - - Get-CsSdgBulkSignInRequestsSummary - - - - - - - None - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestsSummaryResponseItem - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsSdgBulkSignInRequestsSummary - - This example shows how to run the cmdlet to get a tenant level summary. - - - - - - - - Get-CsSdgBulkSignInRequestStatus - Get - CsSdgBulkSignInRequestStatus - - Get the status of an active bulk sign in request. - - - - Use this cmdlet to get granular device level details of a bulk sign in request. Status is shown for every username and hardware ID pair included in the device details CSV used as input to the bulk sign in request. - - - - Get-CsSdgBulkSignInRequestStatus - - Batchid - - Batch ID is the response returned by the `New-CsSdgBulkSignInRequest` cmdlet. It is used as input for querying the status of the batch through `Get-CsSdgBulkSignInRequestStatus` cmdlet. - - String - - String - - - None - - - - - - Batchid - - Batch ID is the response returned by the `New-CsSdgBulkSignInRequest` cmdlet. It is used as input for querying the status of the batch through `Get-CsSdgBulkSignInRequestStatus` cmdlet. - - String - - String - - - None - - - - - - None - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestStatusResult - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $newBatchResponse = New-CsSdgBulkSignInRequest -DeviceDetailsFilePath .\Example.csv -Region APAC -$newBatchResponse.BatchId -$getBatchStatusResponse = Get-CsSdgBulkSignInRequestStatus -Batchid $newBatchResponse.BatchId -$getBatchStatusResponse | ft -$getBatchStatusResponse.BatchItem - - This example shows how to read the batch status response into a new variable and print the status for every batch item. - - - - - - - - Get-CsSharedCallHistoryTemplate - Get - CsSharedCallHistoryTemplate - - Use the Get-CsSharedCallHistoryTemplate cmdlet to list the Shared Call History templates. - - - - Use the Get-CsSharedCallHistory cmdlet to list the Shared Call History templates. - - - - Get-CsSharedCallHistoryTemplate - - Id - - The Id of the shared call history template. - - System.String - - System.String - - - None - - - - - - Id - - The Id of the shared call history template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsSharedCallHistoryTemplate -Id 3a4b3d9b-91d8-4fbf-bcff-6907f325842c - - This example retrieves the Shared Call History Template with the Id `3a4b3d9b-91d8-4fbf-bcff-6907f325842c` - - - - -------------------------- Example 2 -------------------------- - Get-CsSharedCallHistoryTemplate - - This example retrieves all the Shared Call History Templates - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsSharedCallHistoryTemplate - - - New-CsSharedCallHistoryTemplate - - - - Set-CsSharedCallHistoryTemplate - - - - Remove-CsSharedCallHistoryTemplate - - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - - - - Get-CsSharedCallQueueHistoryTemplate - Get - CsSharedCallQueueHistoryTemplate - - This PowerShell cmdlet is being deprecated, please use the new version Get-CsSharedCallHistoryTemplate (./Get-CsSharedCallHistoryTemplate.md)instead - - - - Use the Get-CsSharedCallQueueHistory cmdlet to list the Shared Call Queue History templates. - - - - Get-CsSharedCallQueueHistoryTemplate - - Id - - The Id of the shared call queue history template. - - System.String - - System.String - - - None - - - - - - Id - - The Id of the shared call queue history template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsSharedCallQueueHistoryTemplate -Id 3a4b3d9b-91d8-4fbf-bcff-6907f325842c - - This example retrieves the Shared Call Queue History Template with the Id `3a4b3d9b-91d8-4fbf-bcff-6907f325842c` - - - - -------------------------- Example 2 -------------------------- - Get-CsSharedCallQueueHistoryTemplate - - This example retrieves all the Shared Call Queue History Templates - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsSharedCallQueueHistoryTemplate - - - New-CsSharedCallQueueHistoryTemplate - - - - Set-CsSharedCallQueueHistoryTemplate - - - - Remove-CsSharedCallQueueHistoryTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Get-CsTagsTemplate - Get - CsTagsTemplate - - Retrieves the Tag templates in the tenant. - - - - The Get-CsTagTemplate cmdlet returns a list of all Tag templates in the tenant. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Get-CsTagsTemplate - - Id - - The unique identifier for the Tag template. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Id - - The unique identifier for the Tag template. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstagstemplate - - - New-CsTagsTemplate - - - - Set-CsTagsTemplate - - - - Remove-CsTagsTemplate - - - - New-CsTag - - - - - - - Get-CsTeamsAudioConferencingPolicy - Get - CsTeamsAudioConferencingPolicy - - Audio conferencing policies can be used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - The Get-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. The Get-CsTeamsAudioConferencingPolicy cmdlet enables you to return information about all the audio-conferencing policies that have been configured for use in your organization. - - - - Get-CsTeamsAudioConferencingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - Get-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users". If this parameter is not included, the Get-CsTeamsAudioConferencingPolicy cmdlet will return a collection of all the teams audio conferencing policies configured for use in your organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be retrieved. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity "EMEA Users". If this parameter is not included, the Get-CsTeamsAudioConferencingPolicy cmdlet will return a collection of all the teams audio conferencing policies configured for use in your organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsAudioConferencingPolicy - - The command shown in Example 1, Get-CsTeamsAudioConferencingPolicy is called without any additional parameters; this returns a collection of all the teams audio conferencing policies configured for use in your organization. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" - - The command shown in Example 2, Get-CsTeamsAudioConferencingPolicy is used to return the per-user audio conferencing policy that has an Identity "EMEA Users". Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - New-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Get-CsTeamsCallParkPolicy - Get - CsTeamsCallParkPolicy - - The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Get-CsTeamsCallParkPolicy cmdlet returns the policies that are available for your organization. - NOTE: the call park feature is currently only available in the desktop and web clients. Call Park functionality is currently completely disabled in mobile clients. - - - - Get-CsTeamsCallParkPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsCallParkPolicy - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsCallParkPolicy - - Retrieve all policies that are available in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallparkpolicy - - - - - - Get-CsTeamsCortanaPolicy - Get - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, if a user can use Cortana voice assistant in Microsoft Teams and determines Cortana invocation behavior via CortanaVoiceInvocationMode parameter - - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - - - Get-CsTeamsCortanaPolicy - - Filter - - Enables you to use wildcards when specifying the policy (or policies) to be retrieved. For example, this syntax returns all the policies that have been configured at the site scope: -Filter "site:". This syntax returns all the policies that have been configured at the per-user scope: -Filter "tag:". You cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsCortanaPolicy - - Identity - - Unique identifier for the policy to be returned. To return the global policy, use this syntax: -Identity global. To return a policy configured at the site scope, use syntax similar to this: -Identity "site:Redmond". To return a policy configured at the service scope, use syntax similar to this: -Identity "Registrar:atl-cs-001.litwareinc.com". - Policies can also be configured at the per-user scope. To return one of these policies, use syntax similar to this: -Identity "SalesDepartmentPolicy". If this parameter is not included then all of Cortana voice assistant policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - Enables you to use wildcards when specifying the policy (or policies) to be retrieved. For example, this syntax returns all the policies that have been configured at the site scope: -Filter "site:". This syntax returns all the policies that have been configured at the per-user scope: -Filter "tag:". You cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be returned. To return the global policy, use this syntax: -Identity global. To return a policy configured at the site scope, use syntax similar to this: -Identity "site:Redmond". To return a policy configured at the service scope, use syntax similar to this: -Identity "Registrar:atl-cs-001.litwareinc.com". - Policies can also be configured at the per-user scope. To return one of these policies, use syntax similar to this: -Identity "SalesDepartmentPolicy". If this parameter is not included then all of Cortana voice assistant policies configured for use in your organization will be returned. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Retrieves the Cortana voice assistant policy data from the local replica of the Central Management store rather than from the Central Management store itself. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the Skype for Business Online tenant account whose Cortana voice assistant policies are being returned. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsCortanaPolicy - - In the first example, the Get-CsTeamsCortanaPolicy cmdlet is called without specifying any additional parameters. This causes the Get-CsTeamsCortanaPolicy cmdlet to return a collection of all the Cortana voice assistant policies configured for use in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Get-CsTeamsEmergencyCallRoutingPolicy - Get - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet returns one or more Emergency Call Routing policies. - - - - This cmdlet returns one or more Emergency Call Routing policies. This policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - Get-CsTeamsEmergencyCallRoutingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - - Get-CsTeamsEmergencyCallRoutingPolicy - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Specify the policy that you would like to retrieve. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy - - Retrieves all emergency call routing policies that are available in your scope. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy -Identity TestECRP - - Retrieves one emergency call routing policy specifying the identity. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsEmergencyCallRoutingPolicy -Filter 'Test*' - - Retrieves all emergency call routing policies with identity starting with Test. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - - - - Get-CsTeamsEnhancedEncryptionPolicy - Get - CsTeamsEnhancedEncryptionPolicy - - Returns information about the teams enhanced encryption policies configured for use in your organization. - - - - Returns information about the Teams enhanced encryption policies configured for use in your organization. The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Get-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy - - The command shown in Example 1 returns information for all the teams enhanced encryption policies configured for use in the tenant. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy -Identity 'ContosoPartnerEnhancedEncryptionPolicy' - - In Example 2, information is returned for a single teams enhanced encryption policy: the policy with the Identity ContosoPartnerEnhancedEncryptionPolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Get-CsTeamsEventsPolicy - Get - CsTeamsEventsPolicy - - Returns information about the Teams Events policy. Note that this policy is currently still in preview. - - - - Returns information about the Teams Events policy. TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - Get-CsTeamsEventsPolicy - - Filter - - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - - Get-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - - - - Filter - - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsEventsPolicy - - Returns information for all Teams Events policies available for use in the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsEventsPolicy -Identity Global - - Returns information for Teams Events policy with identity "Global". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamseventspolicy - - - - - - Get-CsTeamsGuestCallingConfiguration - Get - CsTeamsGuestCallingConfiguration - - Returns information about the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. - - - - Returns information about the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. To set the configuration in your organization, use Set-CsTeamsGuestCallingConfiguration - - - - Get-CsTeamsGuestCallingConfiguration - - Identity - - Internal Microsoft use - customers can have only one TeamsGuestCallingConfiguration - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - LocalStore - - Internal Microsoft use - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - Filter - - Internal Microsoft use - - String - - String - - - None - - - Identity - - Internal Microsoft use - customers can have only one TeamsGuestCallingConfiguration - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestCallingConfiguration - - Returns the results - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestcallingconfiguration - - - - - - Get-CsTeamsGuestMeetingConfiguration - Get - CsTeamsGuestMeetingConfiguration - - Designates what meeting features guests using Microsoft Teams will have available. - - - - The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Get-CsTeamsGuestMeetingConfiguration cmdlet to return what values are set for your organization. - - - - Get-CsTeamsGuestMeetingConfiguration - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - Filter - - Internal Microsoft use. - - String - - String - - - None - - - Identity - - The only value accepted is Global - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestMeetingConfiguration - - Returns the TeamsGuestMeetingConfiguration set in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestmeetingconfiguration - - - - - - Get-CsTeamsGuestMessagingConfiguration - Get - CsTeamsGuestMessagingConfiguration - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. This cmdlet returns your organization's current settings. - - - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. - - - - Get-CsTeamsGuestMessagingConfiguration - - Identity - - Specifies the collection of tenant guest messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of guest messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant guest messaging configuration settings. Because each tenant is limited to a single, global collection of guest messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - LocalStore - - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters in order to return a collection of tenant guest messaging configuration settings. Because each tenant is limited to a single, global collection of guest messaging configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - Identity - - Specifies the collection of tenant guest messaging configuration settings to be returned. Because each tenant is limited to a single, global collection of guest messaging settings there is no need include this parameter when calling the cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsGuestMessagingConfiguration - - The command shown in Example 1 returns teams guest messaging configuration information for the current tenant - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsguestmessagingconfiguration - - - - - - Get-CsTeamsIPPhonePolicy - Get - CsTeamsIPPhonePolicy - - Get-CsTeamsIPPhonePolicy allows IT Admins to view policies for IP Phone experiences in Microsoft Teams. - - - - Returns information about the Teams IP Phone Policies configured for use in your organization. Teams IP phone policies enable you to configure the different sign-in experiences based upon the function the device is performing; example: common area phone. - - - - Get-CsTeamsIPPhonePolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTeamsIPPhonePolicy - - Identity - - Specify the unique name of the TeamsIPPhonePolicy that you would like to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the policies, use this syntax: -Filter "tag:*". - - String - - String - - - None - - - Identity - - Specify the unique name of the TeamsIPPhonePolicy that you would like to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsIPPhonePolicy -identity CommonAreaPhone - - Retrieves the IP Phone Policy with name "CommonAreaPhone". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsipphonepolicy - - - - - - Get-CsTeamsMediaLoggingPolicy - Get - CsTeamsMediaLoggingPolicy - - Returns information about the Teams Media Logging policy. - - - - Returns information about the Teams Media Logging policy. TeamsMediaLoggingPolicy allows administrators to enable media logging for users. When assigned, it will enable media logging for the user overriding other settings. After removing the policy, media logging setting will revert to the previous value. - NOTES: TeamsMediaLoggingPolicy has only one instance that is built into the system, so there is no corresponding New cmdlet. - - - - Get-CsTeamsMediaLoggingPolicy - - Filter - - > Applicable: Microsoft Teams - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - - Get-CsTeamsMediaLoggingPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier assigned to the Teams Media Logging policy. Note that Teams Media Logging policy has only one instance that has Identity "Enabled". - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables using wildcards when specifying the policy (or policies) to be retrieved. Note that you cannot use both the Filter and the Identity parameters in the same command. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Unique identifier assigned to the Teams Media Logging policy. Note that Teams Media Logging policy has only one instance that has Identity "Enabled". - Use the "Global" Identity if you wish to retrieve the policy set for the entire tenant. - - String - - String - - - None - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamsMediaLoggingPolicy - - Return information for all Teams Media Logging policies available for use in the tenant. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsMediaLoggingPolicy -Identity Global - - Return Teams Media Logging policy that is set for the entire tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmedialoggingpolicy - - - Grant-CsTeamsMediaLoggingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmedialoggingpolicy - - - - - - Get-CsTeamsMeetingBroadcastConfiguration - Get - CsTeamsMeetingBroadcastConfiguration - - Gets Tenant level configuration for broadcast events in Teams. - - - - Tenant level configuration for broadcast events in Teams - - - - Get-CsTeamsMeetingBroadcastConfiguration - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - ExposeSDNConfigurationJsonBlob - - Extract SDN properties as a Json Blob in get. - - Boolean - - Boolean - - - None - - - Filter - - Not applicable to online service - you can only have one configuration. - - String - - String - - - None - - - LocalStore - - Not applicable to online service. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service - - Guid - - Guid - - - None - - - - - - ExposeSDNConfigurationJsonBlob - - Extract SDN properties as a Json Blob in get. - - Boolean - - Boolean - - - None - - - Filter - - Not applicable to online service - you can only have one configuration. - - String - - String - - - None - - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Not applicable to online service. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbroadcastconfiguration - - - - - - Get-CsTeamsMeetingBroadcastPolicy - Get - CsTeamsMeetingBroadcastPolicy - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. Use this cmdlet to retrieve one or more policies. - - - - Get-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be retrieved. Policies can be configured at the global scope or at the per-user scope. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity SalesPolicy. - If this parameter is not included, the cmdlet will return a collection of all the policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a policy. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - LocalStore - - Not applicable to the online service. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - - - - Filter - - Enables you to use wildcard characters when specifying the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier for the policy to be retrieved. Policies can be configured at the global scope or at the per-user scope. To retrieve the global policy, use this syntax: -Identity global. To retrieve a per-user policy use syntax similar to this: -Identity SalesPolicy. - If this parameter is not included, the cmdlet will return a collection of all the policies configured for use in your organization. - Note that wildcards are not allowed when specifying an Identity. Use the Filter parameter if you need to use wildcards when specifying a policy. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Not applicable to the online service. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsMeetingBroadcastPolicy - - Returns all the Teams Meeting Broadcast policies. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsMeetingBroadcastPolicy -Filter "Education_Teacher" - - In this example, the -Filter parameter is used to return all the policies that match "Education_Teacher". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingbroadcastpolicy - - - - - - Get-CsTeamsMobilityPolicy - Get - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Get-CsTeamsMobilityPolicy cmdlet allows administrators to get all teams mobility policies. - NOTE: Please note that this cmdlet was deprecated and then removed from this PowerShell module. This reference will continue to be listed here for legacy purposes. - - - - Get-CsTeamsMobilityPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - - Get-CsTeamsMobilityPolicy - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. For example, to return a collection of all the per-user policies, use this syntax: -Filter "tag:". - - String - - String - - - None - - - Identity - - Specify the unique name of a policy you would like to retrieve - - XdsIdentity - - XdsIdentity - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsMobilityPolicy - - Retrieve all teams mobility policies that are available in your organization - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmobilitypolicy - - - - - - Get-CsTeamsNetworkRoamingPolicy - Get - CsTeamsNetworkRoamingPolicy - - Get-CsTeamsNetworkRoamingPolicy allows IT Admins to view policies for the Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Returns information about the Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - Get-CsTeamsNetworkRoamingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTeamsNetworkRoamingPolicy - - Identity - - Unique identifier of the policy to be returned. If this parameter is omitted, then all the Teams Network Roaming Policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. If this parameter is omitted, then all the Teams Network Roaming Policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsNetworkRoamingPolicy - - In Example 1, Get-CsTeamsNetworkRoamingPolicy is called without any additional parameters; this returns a collection of all the teams network roaming policies configured for use in your organization. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsNetworkRoamingPolicy -Identity OfficePolicy - - In Example 2, Get-CsTeamsNetworkRoamingPolicy is used to return the network roaming policy that has an Identity OfficePolicy. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsnetworkroamingpolicy - - - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - Get - CsTeamsRoomVideoTeleConferencingPolicy - - Use this cmdlet to retrieve the current Teams Room Video TeleConferencing policies. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - The name the tenant admin gave to the Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - The name the tenant admin gave to the Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsroomvideoteleconferencingpolicy - - - - - - Get-CsTeamsSettingsCustomApp - Get - CsTeamsSettingsCustomApp - - Get the Custom Apps Setting's value of Teams Admin Center. - - - - There is a switch for managing Custom Apps in the Org-wide app settings page of Teams Admin Center. The command can get the current value of this switch. If the switch is enabled, the custom apps can be uploaded as app packages and available in the organization's app store, vice versa. - - - - Get-CsTeamsSettingsCustomApp - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsSettingsCustomApp - -IsSideloadedAppsInteractionEnabled ----------------------------------- - False - - Get the value of Custom Apps Setting. The value in the example is False, so custom apps are unavailable in the organization's app store. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssettingscustomapp - - - Set-CsTeamsSettingsCustomApp - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssettingscustomapp - - - - - - Get-CsTeamsShiftsAppPolicy - Get - CsTeamsShiftsAppPolicy - - Returns information about the Teams Shifts App policies that have been configured for use in your organization. - - - - The Teams Shifts app is designed to help frontline workers and their managers manage schedules and communicate effectively. - - - - Get-CsTeamsShiftsAppPolicy - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - Get-CsTeamsShiftsAppPolicy - - Identity - - Unique Identity assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - - - Filter - - This parameter accepts a wildcard string and returns all policies with identities matching that string. For example, a Filter value of tag:* will return all policies defined at the per-user level. - - String - - String - - - None - - - Identity - - Unique Identity assigned to the policy when it was created. - - String - - String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsAppPolicy - - Lists any available Teams Shifts Apps Policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsapppolicy - - - - - - Get-CsTeamsShiftsConnection - Get - CsTeamsShiftsConnection - - This cmdlet returns the list of existing workforce management (WFM) connections. It can also return the configuration details for a given WFM connection. - - - - This cmdlet returns the list of existing connections. It can also return the configuration details for a given connection. - - - - Get-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - ConnectionId - - The connection ID. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - Get-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - The connection ID. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnection | Format-List - -ConnectorId : 6A51B888-FF44-4FEA-82E1-839401E00000 -ConnectorSpecificSettingAdminApiUrl : https://www.contoso.com/retail/data/wfmadmin/api/v1-beta3 -ConnectorSpecificSettingApiUrl : -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : -ConnectorSpecificSettingCookieAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingEssApiUrl : https://www.contoso.com/retail/data/wfmess/api/v1-beta2 -ConnectorSpecificSettingFederatedAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingRetailWebApiUrl : https://www.contoso.com/retail/data/retailwebapi/api/v1 -ConnectorSpecificSettingSiteManagerUrl : https://www.contoso.com/retail/data/wfmsm/api/v1-beta4 -ConnectorSpecificSettingSsoUrl : -CreatedDateTime : 24/03/2023 04:58:23 -Etag : "5b00dd1b-0000-0400-0000-641d2df00000" -Id : 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -LastModifiedDateTime : 24/03/2023 04:58:23 -Name : My connection 1 -State : Active -TenantId : dfd24b34-ccb0-47e1-bdb7-000000000000 - -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -ConnectorSpecificSettingAdminApiUrl : -ConnectorSpecificSettingApiUrl : https://www.contoso.com/api -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W -ConnectorSpecificSettingCookieAuthUrl : -ConnectorSpecificSettingEssApiUrl : -ConnectorSpecificSettingFederatedAuthUrl : -ConnectorSpecificSettingRetailWebApiUrl : -ConnectorSpecificSettingSiteManagerUrl : -ConnectorSpecificSettingSsoUrl : https://www.contoso.com/sso -CreatedDateTime : 06/04/2023 11:05:39 -Etag : "3100fd6e-0000-0400-0000-642ea7840000" -Id : a2d1b091-5140-4dd2-987a-98a8b5338744 -LastModifiedDateTime : 06/04/2023 11:05:39 -Name : My connection 2 -State : Active -TenantId : dfd24b34-ccb0-47e1-bdb7-000000000000 - - Returns the list of connections. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $connection = Get-CsTeamsShiftsConnection -ConnectionId a2d1b091-5140-4dd2-987a-98a8b5338744 -PS C:\> $connection.ToJsonString() - -{ - "connectorSpecificSettings": { - "apiUrl": "https://www.contoso.com/api", - "ssoUrl": "https://www.contoso.com/sso", - "clientId": "Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W" - }, - "id": "a2d1b091-5140-4dd2-987a-98a8b5338744", - "tenantId": "dfd24b34-ccb0-47e1-bdb7-000000000000", - "connectorId": "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0", - "name": "My connection 2", - "etag": "\"3100fd6e-0000-0400-0000-642ea7840000\"", - "createdDateTime": "2023-04-06T11:05:39.8790000Z", - "lastModifiedDateTime": "2023-04-06T11:05:39.8790000Z", - "state": "Active" -} - - Returns the connection with the specified -ConnectionId. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - New-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - Set-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnection - - - Update-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnection - - - - - - Get-CsTeamsShiftsConnectionConnector - Get - CsTeamsShiftsConnectionConnector - - This cmdlet supports retrieving the available Shifts Connectors. - - - - This cmdlet shows the available list of Shifts Connectors that can be used to synchronize a third-party workforce management system with Teams and the types of data that can be synchronized. - - - - Get-CsTeamsShiftsConnectionConnector - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionConnector | Format-List - -Id : 6A51B888-FF44-4FEA-82E1-839401E9CD74 -Name : Contoso V1 -SupportedSyncScenarioOfferShiftRequest : {Disabled, FromWfmToShifts, TwoWay} -SupportedSyncScenarioOpenShift : {Disabled, FromWfmToShifts} -SupportedSyncScenarioOpenShiftRequest : {Disabled, FromWfmToShifts, TwoWay} -SupportedSyncScenarioShift : {Disabled, FromWfmToShifts} -SupportedSyncScenarioSwapRequest : {Disabled, FromWfmToShifts, TwoWay} -SupportedSyncScenarioTimeCard : {Disabled, FromWfmToShifts, TwoWay} -SupportedSyncScenarioTimeOff : {Disabled, FromWfmToShifts} -SupportedSyncScenarioTimeOffRequest : {Disabled, FromWfmToShifts, TwoWay} -SupportedSyncScenarioUserShiftPreference : {Disabled, FromWfmToShifts, TwoWay} -Version : 2020.3 - 2021.1 - - Get the list of Shifts Connectors available on the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionconnector - - - New-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - New-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - Get-CsTeamsShiftsConnectionErrorReport - Get - CsTeamsShiftsConnectionErrorReport - - This cmdlet returns the list of all the team mapping error reports. It can also return the configuration details of one mapping error report with its ID provided or other filter parameters. - - - - This cmdlet returns the list of existing team mapping error reports. It can also return the configuration details for mapping result with given ID or other filters. - - - - Get-CsTeamsShiftsConnectionErrorReport - - Activeness - - > Applicable: Microsoft Teams - The flag indicating results should have which activeness. Set this to `ActiveOnly` to get Error reports that are not resolved. Set this to `InactiveOnly` to get Error reports that are resolved. Set this to `Both` to get both active and inactive Error reports. - - String - - String - - - None - - - After - - > Applicable: Microsoft Teams - The timestamp indicating results should be after which date and time. - - String - - String - - - None - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Before - - > Applicable: Microsoft Teams - The timestamp indicating results should be before which date and time. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Code - - > Applicable: Microsoft Teams - The enum value of error code, human readable string defined in codebase. - - String - - String - - - None - - - ConnectionId - - > Applicable: Microsoft Teams - The UUID of a WFM connection. - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The UUID of a connector instance. - - String - - String - - - None - - - ErrorReportId - - > Applicable: Microsoft Teams - The ID of the error report. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Operation - - > Applicable: Microsoft Teams - The name of the action of the controller or the name of the command. - - String - - String - - - None - - - Procedure - - > Applicable: Microsoft Teams - The name of the executing function or procedure. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The UUID of a team in Graph. - - String - - String - - - None - - - - Get-CsTeamsShiftsConnectionErrorReport - - Activeness - - > Applicable: Microsoft Teams - The flag indicating results should have which activeness. Set this to `ActiveOnly` to get Error reports that are not resolved. Set this to `InactiveOnly` to get Error reports that are resolved. Set this to `Both` to get both active and inactive Error reports. - - String - - String - - - None - - - After - - > Applicable: Microsoft Teams - The timestamp indicating results should be after which date and time. - - String - - String - - - None - - - Before - - > Applicable: Microsoft Teams - The timestamp indicating results should be before which date and time. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Code - - > Applicable: Microsoft Teams - The enum value of error code, human readable string defined in codebase. - - String - - String - - - None - - - ConnectionId - - > Applicable: Microsoft Teams - The UUID of a WFM connection. - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The UUID of a connector instance. - - String - - String - - - None - - - ErrorReportId - - > Applicable: Microsoft Teams - The ID of the error report. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Operation - - > Applicable: Microsoft Teams - The name of the action of the controller or the name of the command. - - String - - String - - - None - - - Procedure - - > Applicable: Microsoft Teams - The name of the executing function or procedure. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The UUID of a team in Graph. - - String - - String - - - None - - - - - - Activeness - - > Applicable: Microsoft Teams - The flag indicating results should have which activeness. Set this to `ActiveOnly` to get Error reports that are not resolved. Set this to `InactiveOnly` to get Error reports that are resolved. Set this to `Both` to get both active and inactive Error reports. - - String - - String - - - None - - - After - - > Applicable: Microsoft Teams - The timestamp indicating results should be after which date and time. - - String - - String - - - None - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Before - - > Applicable: Microsoft Teams - The timestamp indicating results should be before which date and time. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - Code - - > Applicable: Microsoft Teams - The enum value of error code, human readable string defined in codebase. - - String - - String - - - None - - - ConnectionId - - > Applicable: Microsoft Teams - The UUID of a WFM connection. - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The UUID of a connector instance. - - String - - String - - - None - - - ErrorReportId - - > Applicable: Microsoft Teams - The ID of the error report. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Operation - - > Applicable: Microsoft Teams - The name of the action of the controller or the name of the command. - - String - - String - - - None - - - Procedure - - > Applicable: Microsoft Teams - The name of the executing function or procedure. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The UUID of a team in Graph. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionErrorReport - -Code ConnectionId CreatedAt Culture ErrorNotificationSent ErrorType Id IntermediateIncident Message ----- ------------ --------- ------- --------------------- --------- -- -------------------- ------- -WFMAuthError 30/09/2022 14:14:08 en-US False WFMAuthErrorMessageType 74091f69-29b7-4884-aab9-ee5d705f36e3 1042 The workforce management system account credentials you've ... -WFMAuthError 17/10/2022 19:42:15 en-US False WFMAuthErrorMessageType b0d04444-d80b-490a-a573-ae3bb7f871bc 40 The workforce management system account credentials you've ... -WFMAuthError 17/10/2022 20:27:31 en-US False WFMAuthErrorMessageType 91ca35d9-1abc-4ded-bcda-dbf58a155930 94 The workforce management system account credentials you've ... -GraphUserAuthError 18/10/2022 04:46:57 en-US False GraphUserAuthErrorMessageType 4d26df1c-7133-4477-9266-5d7ffb70aa88 0 Authentication failed. Ensure that you've entered valid cre... -UserMappingError 18/10/2022 04:47:15 en-US False UserMappingErrorMessageType 6a90b796-9cda-4cc9-a74c-499de91073f9 0 Mapping failed for some users: 3 succeeded, 0 failed AAD us... -BatchTeamMappingError 06/04/2023 15:24:22 en-US False BatchTeamMappingErrorMessageType bf1bc3ea-1e40-483b-b6cc-669f22f24c48 1 This designated actor profile doesn't have team ownership p... - - Returns the list of all the error reports. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionErrorReport -ErrorReportId 74091f69-29b7-4884-aab9-ee5d705f36e3 | Format-List - -Code : WFMAuthError -ConnectionId : -CreatedAt : 30/09/2022 14:14:08 -Culture : en-US -ErrorNotificationSent : False -ErrorType : WFMAuthErrorMessageType -Id : 74091f69-29b7-4884-aab9-ee5d705f36e3 -IntermediateIncident : 1042 -Message : The workforce management system account credentials you've provided are invalid or this account doesn't have the required permissions. -Operation : SyncSwapShiftRequestCommand -Parameter : -Procedure : ExecuteAsync -ReferenceLink : -ResolvedAt : -ResolvedNotificationSentOn : -RevisitIntervalInMinute : 1440 -RevisitedAt : -ScheduleSequenceNumber : 310673843 -Severity : Critical -TeamId : -TenantId : dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a -TotalIncident : 1042 -Ttl : 2505600 -WfmConnectorInstanceId : WCI-6f8eb424-c347-46b4-a50b-118af8d3d546 - - Returns the error report with ID `18b3e490-e6ed-4c2e-9925-47e36609dff3`. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionErrorReport -Code UserMappingError - -Code ConnectionId CreatedAt Culture ErrorNotificationSent ErrorType Id IntermediateIncident Message ----- ------------ --------- ------- --------------------- --------- -- -------------------- ------- -UserMappingError 18/10/2022 04:47:15 en-US False UserMappingErrorMessageType 6a90b796-9cda-4cc9-a74c-499de91073f9 0 Mapping failed for some users: 3 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:47:28 en-US False UserMappingErrorMessageType 005c4a9d-552e-4ea1-9d6a-c0316d272bc9 0 Mapping failed for some users: 3 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:48:25 en-US False UserMappingErrorMessageType 841e00b5-c4e5-4e24-89d2-703d79250516 0 Mapping failed for some users: 4 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:54:05 en-US False UserMappingErrorMessageType 0e10d036-c071-4db2-9cac-22e520f929d9 0 Mapping failed for some users: 5 succeeded, 0 failed AAD user(s) and ... - - Returns the error report with error code `UserMappingError`. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionErrorReport -Operation UserMappingHandler - -Code ConnectionId CreatedAt Culture ErrorNotificationSent ErrorType Id IntermediateIncident Message ----- ------------ --------- ------- --------------------- --------- -- -------------------- ------- -UserMappingError 18/10/2022 04:47:15 en-US False UserMappingErrorMessageType 6a90b796-9cda-4cc9-a74c-499de91073f9 0 Mapping failed for some users: 3 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:47:28 en-US False UserMappingErrorMessageType 005c4a9d-552e-4ea1-9d6a-c0316d272bc9 0 Mapping failed for some users: 3 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:48:25 en-US False UserMappingErrorMessageType 841e00b5-c4e5-4e24-89d2-703d79250516 0 Mapping failed for some users: 4 succeeded, 0 failed AAD user(s) and ... -UserMappingError 18/10/2022 04:54:05 en-US False UserMappingErrorMessageType 0e10d036-c071-4db2-9cac-22e520f929d9 0 Mapping failed for some users: 5 succeeded, 0 failed AAD user(s) and ... - - Returns the error report with operation `UserMappingHandler`. - - - - -------------------------- Example 5 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionErrorReport -After 2022-12-12T19:11:39.073Z - -Code ConnectionId CreatedAt Culture ErrorNotificationSent ErrorType Id IntermediateIncident Message ----- ------------ --------- ------- --------------------- --------- -- -------------------- ------- -UserMappingError 26/01/2023 14:42:27 en-US True UserMappingErrorMessageType d7ab9ab4-b60c-44d3-8c12-d8ee64a67ce8 172 Mapping failed for some users: 1 succeeded, 2 failed AAD us... -WFMAuthError 26/01/2023 16:08:31 en-US False WFMAuthErrorMessageType 7adc3e4e-124e-4613-855c-9ac1b338400a 1 The workforce management system account credentials you've ... - - Returns the error report created after `2022-12-12T19:11:39.073Z`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionerrorreport - - - Disable-CsTeamsShiftsConnectionErrorReport - https://learn.microsoft.com/powershell/module/microsoftteams/disable-csteamsshiftsconnectionerrorreport - - - - - - Get-CsTeamsShiftsConnectionInstance - Get - CsTeamsShiftsConnectionInstance - - This cmdlet returns the list of existing connection instances. It can also return the configuration details for a given connection instance. - - - - This cmdlet returns the list of existing connections. It can also return the configuration details for a given connection instance. - - - - Get-CsTeamsShiftsConnectionInstance - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - ConnectorInstanceId - - The connector instance id - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - Get-CsTeamsShiftsConnectionInstance - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - ConnectorInstanceId - - The connector instance id - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionInstance | Format-List - -ConnectionId : a2d1b091-5140-4dd2-987a-98a8b5338744 -ConnectorAdminEmail : {testAdmin@contoso.com} -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -CreatedDateTime : 07/04/2023 10:53:59 -DesignatedActorId : ec1a4edb-1a5f-4b2d-b2a4-37aaf3acd231 -Etag : "4f00c221-0000-0400-0000-642ff6480000" -Id : WCI-b58d7a98-ab2c-473f-99a5-e0627d54c062 -LastModifiedDateTime : 07/04/2023 10:53:59 -Name : My connection instance 1 -State : Active -SyncFrequencyInMin : 10 -SyncScenarioOfferShiftRequest : FromWfmToShifts -SyncScenarioOpenShift : FromWfmToShifts -SyncScenarioOpenShiftRequest : FromWfmToShifts -SyncScenarioShift : FromWfmToShifts -SyncScenarioSwapRequest : FromWfmToShifts -SyncScenarioTimeCard : FromWfmToShifts -SyncScenarioTimeOff : FromWfmToShifts -SyncScenarioTimeOffRequest : FromWfmToShifts -SyncScenarioUserShiftPreference : FromWfmToShifts -TenantId : dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a -WorkforceIntegrationId : WFI_2ab21992-b9b1-464a-b9cd-e0de1fac95b1 - -ConnectionId : a2d1b091-5140-4dd2-987a-98a8b5338744 -ConnectorAdminEmail : {} -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -CreatedDateTime : 07/04/2023 10:54:01 -DesignatedActorId : ec1a4edb-1a5f-4b2d-b2a4-37aab6ebd231 -Etag : "4f005d22-0000-0400-0000-642ff64a0000" -Id : WCI-eba2865f-6cac-46f9-8733-e0631a4536e1 -LastModifiedDateTime : 07/04/2023 10:54:01 -Name : My connection instance 2 -State : Active -SyncFrequencyInMin : 30 -SyncScenarioOfferShiftRequest : FromWfmToShifts -SyncScenarioOpenShift : FromWfmToShifts -SyncScenarioOpenShiftRequest : FromWfmToShifts -SyncScenarioShift : FromWfmToShifts -SyncScenarioSwapRequest : Disabled -SyncScenarioTimeCard : Disabled -SyncScenarioTimeOff : FromWfmToShifts -SyncScenarioTimeOffRequest : FromWfmToShifts -SyncScenarioUserShiftPreference : Disabled -TenantId : dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a -WorkforceIntegrationId : WFI_6b225907-b476-4d40-9773-08b86db7b11b - - Returns the list of connection instances. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $ci = Get-CsTeamsShiftsConnectionInstance -ConnectorInstanceId WCI-78F5116E-9098-45F5-B595-1153DF9D6F70 -PS C:\> $ci.ToJsonString() - -{ - "syncScenarios": { - "offerShiftRequest": "FromWfmToShifts", - "openShift": "FromWfmToShifts", - "openShiftRequest": "FromWfmToShifts", - "shift": "FromWfmToShifts", - "swapRequest": "Disabled", - "timeCard": "Disabled", - "timeOff": "FromWfmToShifts", - "timeOffRequest": "FromWfmToShifts", - "userShiftPreferences": "Disabled" - }, - "id": "WCI-78F5116E-9098-45F5-B595-1153DF9D6F70", - "tenantId": "dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a", - "connectionId": "a2d1b091-5140-4dd2-987a-98a8b5338744", - "connectorAdminEmails": [ ], - "connectorId": "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0", - "designatedActorId": "ec1a4edb-1a5f-4b2d-b2a4-37aab6ebd231", - "name": "My connection instance 2", - "syncFrequencyInMin": 30, - "workforceIntegrationId": "WFI_6b225907-b476-4d40-9773-08b86db7b11b", - "etag": "\"4f005d22-0000-0400-0000-642ff64a0000\"", - "createdDateTime": "2023-04-07T10:54:01.8170000Z", - "lastModifiedDateTime": "2023-04-07T10:54:01.8170000Z", - "state": "Active" -} - - Returns the connection instance with the specified -ConnectorInstanceId. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - New-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Remove-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - - - - Get-CsTeamsShiftsConnectionOperation - Get - CsTeamsShiftsConnectionOperation - - This cmdlet gets the requested batch mapping operation. - - - - This cmdlet returns the details of a specific batch team mapping operation. The batch mapping operation can be submitted by running New-CsTeamsShiftsConnectionBatchTeamMap (New-CsTeamsShiftsConnectionBatchTeamMap.md). - - - - Get-CsTeamsShiftsConnectionOperation - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - Get-CsTeamsShiftsConnectionOperation - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - OperationId - - The ID of the batch mapping operation. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - - - Break - - Wait for the .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - OperationId - - The ID of the batch mapping operation. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionOperation -OperationId c79131b7-9ecb-484b-a8df-2959c7c1e5f2 - -CreatedDateTime LastActionDateTime Id Status TenantId Type WfmConnectorInstanceId ---------------- ------------------ ----------- ------ -------- ---- ---------------------- -12/6/2021 7:28:51 PM 12/6/2021 7:28:51 PM c79131b7-9ecb-484b-a8df-2959c7c1e5f2 NotStarted dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a TeamsMappingOperation WCI-2afeb8ec-a0f6-4580-8f1e-85fd4a113e01 - - Returns the details of batch mapping operation with ID `c79131b7-9ecb-484b-a8df-2959c7c1e5f2`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionoperation - - - New-CsTeamsShiftsConnectionBatchTeamMap - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectionbatchteammap - - - - - - Get-CsTeamsShiftsConnectionSyncResult - Get - CsTeamsShiftsConnectionSyncResult - - This cmdlet supports retrieving the list of user details in the mapped teams of last sync. - - - - This cmdlet supports retrieving the list of successful and failed users in the mapped teams of last sync. - - - - Get-CsTeamsShiftsConnectionSyncResult - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. It can be retrieved by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - TeamId - - > Applicable: Microsoft Teams - The Teams team ID. It can be retrieved by visiting AzureAAD (https://portal.azure.com/#blade/Microsoft_AAD_IAM/GroupsManagementMenuBlade/AllGroups). - - String - - String - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. It can be retrieved by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - TeamId - - > Applicable: Microsoft Teams - The Teams team ID. It can be retrieved by visiting AzureAAD (https://portal.azure.com/#blade/Microsoft_AAD_IAM/GroupsManagementMenuBlade/AllGroups). - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionSyncResult -ConnectorInstanceId "WCI-d1addd70-2684-4723-b8f2-7fa2230648c9" -TeamId "12345d29-7ee1-4259-8999-946953feb79e" - -FailedAadUser FailedWfmUser SuccessfulUser -------------- ------------- -------------- -{LABRO} {FRPET, WAROS, JOREE} {user3@contoso.com, user2@contoso.comm, user@contoso.com} - - Returns the successful and failed users in the team mapping of Teams `12345d29-7ee1-4259-8999-946953feb79e` in the instance with ID `WCI-d1addd70-2684-4723-b8f2-7fa2230648c9`. `LABRO` in FailedAadUser column shows the list of users who failed to sync from Teams to Wfm. `FRPET, WAROS, JOREE` in FailedWfmUser column shows the list of users who failed to sync from Wfm to Teams. `user3@contoso.com, user2@contoso.comm, user@contoso.com` in SuccessfulUser column shows the list of users who synced in both Wfm and Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionsyncresult - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - - - - Get-CsTeamsShiftsConnectionTeamMap - Get - CsTeamsShiftsConnectionTeamMap - - This cmdlet supports retrieving the list of team mappings. - - - - Workforce management (WFM) systems have locations / sites that are mapped to a Microsoft Teams team for synchronization of shifts data. This cmdlet shows the list of mapped teams inside the connection instance. Instance IDs can be found by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - - - Get-CsTeamsShiftsConnectionTeamMap - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. - - String - - String - - - None - - - InputObject - - The Identity parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. - - String - - String - - - None - - - InputObject - - The Identity parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionTeamMap -ConnectorInstanceId "WCI-d1addd70-2684-4723-b8f2-7fa2230648c9" - -TeamId TeamName TimeZone WfmTeamId WfmTeamName ------- -------- -------- --------- ----------- -12344689-758c-4598-9206-3e23416da8c2 America/Los_Angeles 1000107 - - Returns the list of team mappings in the instance with ID `WCI-d1addd70-2684-4723-b8f2-7fa2230648c9`. - In case of error, we can capture the error response as following: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionteammap - - - Remove-CsTeamsShiftsConnectionTeamMap - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectionteammap - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - - - - Get-CsTeamsShiftsConnectionWfmTeam - Get - CsTeamsShiftsConnectionWfmTeam - - This cmdlet supports retrieving the list of available Workforce management (WFM) teams in the connection instance. - - - - This cmdlet shows the WFM teams that are not currently mapped to a Microsoft Teams team, and thus can be mapped to a Microsoft Teams team in the connection instance. - - - - Get-CsTeamsShiftsConnectionWfmTeam - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection. You can retrieve it by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. You can retrieve it by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - Get-CsTeamsShiftsConnectionWfmTeam - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection. You can retrieve it by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. You can retrieve it by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - Get-CsTeamsShiftsConnectionWfmTeam - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection. You can retrieve it by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. You can retrieve it by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection. You can retrieve it by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. You can retrieve it by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionWfmTeam -ConnectorInstanceId "WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b" - -Id Name --- ---- -1000105 0002 - Bucktown -1000106 0003 - West Town -1000107 0005 - Old Town -1000108 0004 - River North -1000109 0001 - Wicker Park -1000111 2055 -1000112 2056 -1000114 1004 -1000115 1003 -1000116 1002 -1000122 0010 -1000124 0300 -1000125 1000 -1000126 4500 -1000128 0006 - WFM Team 1 -1000129 Test - - Returns the WFM teams for the connection instance with ID `WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b`. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionWfmTeam -ConnectionId "a2d1b091-5140-4dd2-987a-98a8b5338744" - -Id Name --- ---- -1000105 0002 - Bucktown -1000106 0003 - West Town -1000107 0005 - Old Town -1000108 0004 - River North -1000109 0001 - Wicker Park -1000111 2055 -1000112 2056 -1000114 1004 -1000115 1003 -1000116 1002 -1000122 0010 -1000124 0300 -1000125 1000 -1000126 4500 -1000128 0006 - WFM Team 1 -1000129 Test - - Returns the WFM teams for the WFM connection with ID `a2d1b091-5140-4dd2-987a-98a8b5338744`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmteam - - - Get-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionWfmUser - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmuser - - - - - - Get-CsTeamsShiftsConnectionWfmUser - Get - CsTeamsShiftsConnectionWfmUser - - This cmdlet shows the list of Workforce management (WFM) users in a specified WFM team. - - - - This cmdlet shows the list of Workforce management (WFM) users in a specified WFM team. - - - - Get-CsTeamsShiftsConnectionWfmUser - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. It can be retrieved by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - WfmTeamId - - > Applicable: Microsoft Teams - The Teams team ID. It can be retrieved by running Get-CsTeamsShiftsConnectionWfmTeam (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmteam). - - String - - String - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance. It can be retrieved by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - WfmTeamId - - > Applicable: Microsoft Teams - The Teams team ID. It can be retrieved by running Get-CsTeamsShiftsConnectionWfmTeam (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmteam). - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsShiftsConnectionWfmUser -ConnectorInstanceId "WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b" -WfmTeamId "1000107" - -Id Name --- ---- -1000111 FRPET -1000121 WAROS -1000123 LABRO -1000125 JOREE -1006068 ABC -1006069 XYZ -1006095 DEF - - Returns the users in the WFM team with ID `1000107` in the connection instances with ID `WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmuser - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionWfmTeam - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionwfmteam - - - - - - Get-CsTeamsSurvivableBranchAppliance - Get - CsTeamsSurvivableBranchAppliance - - Gets the Survivable Branch Appliance (SBA) configured in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Get-CsTeamsSurvivableBranchAppliance - - Filter - - This parameter can be used to fetch instances based on partial matches on the Identity field. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssurvivablebranchappliance - - - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - Get - CsTeamsSurvivableBranchAppliancePolicy - - Get the Survivable Branch Appliance (SBA) Policy defined in the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - This parameter can be used to fetch policy instances based on partial matches on the Identity field. - - String - - String - - - None - - - Identity - - This parameter can be used to fetch a specific instance of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssurvivablebranchappliancepolicy - - - - - - Get-CsTeamsTargetingPolicy - Get - CsTeamsTargetingPolicy - - The Get-CsTeamsTargetingPolicy cmdlet enables you to return information about all the Tenant tag setting policies that have been configured for use in your organization. - - - - The CsTeamsTargetingPolicy cmdlets enable administrators to control the type of tags that users can create or the features that they can access in Teams. It also helps determine how tags deal with Teams members or guest users. - - - - Get-CsTeamsTargetingPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - Get-CsTeamsTargetingPolicy - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-tenant policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the tenant tag setting policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be returned. To refer to the global policy, use this syntax: -Identity global. To refer to a per-tenant policy, use syntax similar to this: -Identity SalesDepartmentPolicy. If this parameter is omitted, then all the tenant tag setting policies configured for use in your organization will be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsTargetingPolicy -Identity SalesPolicy - - In this example Get-CsTeamsTargetingPolicy is used to return the per-tenant tag policy that has an Identity SalesPolicy. Because identities are unique, this command will never return more than one item. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Set-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - Remove-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - - - - Get-CsTeamsTranslationRule - Get - CsTeamsTranslationRule - - Cmdlet to get an existing number manipulation rule (or list of rules). - - - - You can use this cmdlet to get an existing number manipulation rule (or list of rules). The rule can be used, for example, in the settings of your SBC (Set-CSOnlinePSTNGateway) to convert a callee or caller number to a desired format before entering or leaving Microsoft Phone System. - - - - Get-CsTeamsTranslationRule - - Filter - - > Applicable: Microsoft Teams - The filter to use against the Identity of translation rules. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - Get-CsTeamsTranslationRule - - Identity - - > Applicable: Microsoft Teams - Identifier of the specific translation rule to display. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - The filter to use against the Identity of translation rules. - - System.String - - System.String - - - None - - - Identity - - > Applicable: Microsoft Teams - Identifier of the specific translation rule to display. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsTranslationRule - - This command will show all translation rules that exist in the tenant. Identity, Name, Description, Pattern, and Translation parameters are listed for each rule. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsTranslationRule -Identity AddPlus1 - - This command will show Identity, Name, Description, Pattern, and Translation parameters for the "AddPlus1" rule. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsTranslationRule -Filter 'Add*' - - This command will show Identity, Name, Description, Pattern, and Translation parameters for all rules with Identity starting with Add. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstranslationrule - - - New-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstranslationrule - - - Test-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamstranslationrule - - - Set-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstranslationrule - - - Remove-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstranslationrule - - - - - - Get-CsTeamsUnassignedNumberTreatment - Get - CsTeamsUnassignedNumberTreatment - - Displays a specific or all treatments for how calls to an unassigned number range should be routed. - - - - This cmdlet displays a specific or all treatments for how calls to an unassigned number range should be routed. - - - - Get-CsTeamsUnassignedNumberTreatment - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on the Identity attribute. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - Get-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment to show. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to limit the returned data by filtering on the Identity attribute. - - System.String - - System.String - - - None - - - Identity - - The Id of the specific treatment to show. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - - - - - -------------------------- Example 1 -------------------------- - Get-CsTeamsUnassignedNumberTreatment -Identity MainAA - - This example displays the treatment MainAA. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsUnassignedNumberTreatment - - This example displays all configured treatments. - - - - -------------------------- Example 3 -------------------------- - Get-CsTeamsUnassignedNumberTreatment -Filter Ann* - - This example displays all configured treatments with an Identity starting with Ann. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - - - - Get-CsTeamsUpgradePolicy - Get - CsTeamsUpgradePolicy - - This cmdlet returns the set of instances of this policy. - - - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. As an organization with Skype for Business starts to adopt Teams, administrators can manage the user experience in their organization using the concept of coexistence "mode". Mode defines in which client incoming chats and calls land as well as in what service (Teams or Skype for Business) new meetings are scheduled in. Mode also governs whether chat, calling, and meeting scheduling functionality are available in the Teams client. Finally, prior to upgrading to TeamsOnly mode administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade. - > [!IMPORTANT] > It can take up to 24 hours for a change to TeamsUpgradePolicy to take effect. Before then, user presence status may not be correct (may show as Unknown ). - - NOTES: - Except for on-premise versions of Skype for Business Server, all relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet. - If you are using Skype for Business Server, there are no built-in instances and you'll need to create one. Also, only the NotifySfBUsers property is available. Mode is not present. - Using TeamsUpgradePolicy in an on-premises environmention requires Skype for Business Server 2015 with CU8 or later. - You can also find more guidance here: Migration and interoperability guidance for organizations using Teams together with Skype for Business (https://learn.microsoft.com/microsoftteams/migration-interop-guidance-for-teams-with-skype). - - - - Get-CsTeamsUpgradePolicy - - Identity - - > Applicable: Microsoft Teams - If identity parameter is passed, this will return a specific instance. If no identity parameter is specified, the cmdlet returns all instances. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - {{Fill Filter Description}} - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - {{Fill Filter Description}} - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - If identity parameter is passed, this will return a specific instance. If no identity parameter is specified, the cmdlet returns all instances. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{Fill Tenant Description}} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - Example 1: List all instances of TeamsUpgradePolicy (Skype for Business Online) - PS C:\> Get-CsTeamsUpgradePolicy - -Identity : Global -Description : Users can use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False - -Identity : Tag:UpgradeToTeams -Description : Use Teams Only -Mode : TeamsOnly -NotifySfbUsers : False - -Identity : Tag:Islands -Description : Use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False -Action : None - -Identity : Tag:IslandsWithNotify -Description : Use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : True - -Identity : Tag:SfBOnly -Description : Use only Skype for Business -Mode : SfBOnly -NotifySfbUsers : False - -Identity : Tag:SfBOnlyWithNotify -Description : Use only Skype for Business -Mode : SfBOnly -NotifySfbUsers : True - -Identity : Tag:SfBWithTeamsCollab -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollab -NotifySfbUsers : False - -Identity : Tag:SfBWithTeamsCollabWithNotify -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollab -NotifySfbUsers : True - -Identity : Tag:SfBWithTeamsCollabAndMeetings -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollabAndMeetings -NotifySfbUsers : False - -Identity : Tag:SfBWithTeamsCollabAndMeetingsWithNotify -Description : Use Skype for Business and use Teams only for group collaboration -Mode : SfBWithTeamsCollabAndMeetings -NotifySfbUsers : True - - List all instances of TeamsUpgradePolicy - - - - Example 2: List the global instance of TeamsUpgradePolicy (which applies to all users in a tenant unless they are explicitly assigned an instance of this policy) - PS C:\> Get-CsTeamsUpgradePolicy -Identity Global - -Identity : Global -Description : Users can use either Skype for Business client or Teams client -Mode : Islands -NotifySfbUsers : False - - List the global instance of TeamsUpgradePolicy - - - - Example 3: List all instances of TeamsUpgradePolicy in an on-premises environment - PS C:\> Get-CsTeamsUpgradePolicy -Identity Global - -Identity : Global -Description : Notifications are disabled -NotifySfbUsers : False - - List all on-premises instances (if any) of TeamsUpgradePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/get-csteamsupgradepolicy - - - Get-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradeconfiguration - - - Set-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Grant-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - - - - Get-CsTeamsVideoInteropServicePolicy - Get - CsTeamsVideoInteropServicePolicy - - The Get-CsTeamsVideoInteropServicePolicy cmdlet allows you to identify the pre-constructed policies that you can use in your organization. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization. Microsoft provides pre-constructed policies for each of our supported partners that allow you to designate which partner(s) to use for cloud video interop. You can assign this policy to one or more of your users leveraging the Grant-CsTeamsVideoInteropServicePolicy cmdlet. - - - - Get-CsTeamsVideoInteropServicePolicy - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsTeamsVideoInteropServicePolicy - - Identity - - Specify the known name of a policy that has been pre-constructed for you to use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies. - - String - - String - - - None - - - Identity - - Specify the known name of a policy that has been pre-constructed for you to use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsVideoInteropServicePolicy -Filter "*enabled*" - - This example returns all of the policies that have been pre-constructed for you to use when turning on Cloud Video Interop with one of our supported partners. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvideointeropservicepolicy - - - - - - Get-CsTeamsWorkLoadPolicy - Get - CsTeamsWorkLoadPolicy - - This cmdlet applies an instance of the Teams Workload policy to users or groups in a tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Get-CsTeamsWorkLoadPolicy - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - Get-CsTeamsWorkLoadPolicy - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the policy (or policies) to be returned. - - String - - String - - - None - - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTeamsWorkLoadPolicy - - Retrieves the Teams Workload Policy instances and shows assigned values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Get-CsTeamTemplate - Get - CsTeamTemplate - - This cmdlet supports retrieving details of a team template available to your tenant given the team template uri. - - - - This cmdlet supports retrieving details of a team template available to your tenant given the team template uri. - NOTE: The returned template definition is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management. - - - - Get-CsTeamTemplate - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - Get-CsTeamTemplate - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - OdataId - - A composite URI of a template. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - OdataId - - A composite URI of a template. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject - - - - - - - - - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - INPUTOBJECT <IConfigApiBasedCmdletsIdentity>: Identity Parameter - `[Bssid <String>]`: - `[ChassisId <String>]`: - `[CivicAddressId <String>]`: Civic address id. - `[Country <String>]`: - `[GroupId <String>]`: The ID of a group whose policy assignments will be returned. - `[Id <String>]`: - `[Identity <String>]`: - `[Locale <String>]`: - `[LocationId <String>]`: Location id. - `[OdataId <String>]`: A composite URI of a template. - `[OperationId <String>]`: The ID of a batch policy assignment operation. - `[OrderId <String>]`: - `[PackageName <String>]`: The name of a specific policy package - `[PolicyType <String>]`: The policy type for which group policy assignments will be returned. - `[Port <String>]`: - `[PortInOrderId <String>]`: - `[PublicTemplateLocale <String>]`: Language and country code for localization of publicly available templates. - `[SubnetId <String>]`: - `[TenantId <String>]`: - `[UserId <String>]`: UserId. Supports Guid. Eventually UPN and SIP. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where Name -like 'test' | ForEach-Object {Get-CsTeamTemplate -OdataId $_.OdataId} - - Within the universe of templates the admin's tenant has access to, returns a template definition object (displayed as a JSON by default) for every custom and every Microsoft en-US template which names include 'test'. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/cefcf333-91a9-43d0-919f-bbca5b7d2b24/Tenant/en-US' > 'config.json' - - Saves the template with specified template ID as a JSON file. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplate - - - Get-CsTeamTemplateList - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist - - - Get-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplate - - - New-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamtemplate - - - Update-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamtemplate - - - Remove-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamtemplate - - - - - - Get-CsTeamTemplateList - Get - CsTeamTemplateList - - Get a list of available team templates - - - - This cmdlet supports retrieving information of all team templates available to your tenant, including both first party Microsoft team templates as well as custom templates. The templates information retrieved includes OData Id, template name, short description, count of channels and count of applications. Note: All custom templates will be retrieved, regardless of the locale specification. If you have hidden templates in the admin center, you will still be able to see the hidden templates here. - - - - Get-CsTeamTemplateList - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - - Get-CsTeamTemplateList - - PublicTemplateLocale - - The language and country code of templates localization for Microsoft team templates. This will not be applied to your tenant custom team templates. Defaults to en-US. - - String - - String - - - 'en-US' - - - - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PublicTemplateLocale - - The language and country code of templates localization for Microsoft team templates. This will not be applied to your tenant custom team templates. Defaults to en-US. - - String - - String - - - 'en-US' - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary - - - - - - - - - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties.\ For information on hash tables, run Get-Help about_Hash_Tables.\ \ INPUTOBJECT <IConfigApiBasedCmdletsIdentity>: Identity Parameter\ [Bssid <String>]:\ [ChassisId <String>]:\ [CivicAddressId <String>]: Civic address id.\ [Country <String>]:\ [GroupId <String>]: The ID of a group whose policy assignments will be returned.\ [Id <String>]:\ [Identity <String>]:\ [Locale <String>]: The language and country code of templates localization.\ [LocationId <String>]: Location id.\ [OdataId <String>]: A composite URI of a template.\ [OperationId <String>]: The ID of a batch policy assignment operation.\ [OrderId <String>]:\ [PackageName <String>]: The name of a specific policy package\ [PolicyType <String>]: The policy type for which group policy assignments will be returned.\ [Port <String>]:\ [PortInOrderId <String>]:\ [SubnetId <String>]:\ [TenantId <String>]:\ [UserId <String>]: UserId.\ Supports Guid.\ Eventually UPN and SIP. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Get-CsTeamTemplateList - - Returns all en-US templates within the universe of templates the admin's tenant has access to. - Note: All 1P Microsoft templates will always be returned in the specified locale. If the locale is not specified, en-US will be used. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where ChannelCount -GT 3 - - Returns all en-US templates that have 3 channels within the universe of templates the admin's tenant has access to. - - - - - - Get-CsTeamTemplateList - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist - - - Get-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplate - - - New-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamtemplate - - - Update-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamtemplate - - - Remove-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamtemplate - - - - - - Get-CsTenant - Get - CsTenant - - Returns information about the Microsoft Teams or Skype for Business Online tenants that have been configured for use in your organization. Tenants represent groups of online users. - - - - In Microsoft Teams or Skype for Business Online, tenants are groups of users who have accounts homed on the service. Organizations will typically have a single tenant in which to house all their user accounts. - In the Teams PowerShell Module version 3.0.0 or later, the following attributes have been deprecated for organizations with Teams users: - - AdminDescription - - AllowedDataLocation - - AssignedLicenses - - DefaultDataLocation - - DefaultPoolFqdn - - Description - - DisableExoPlanProvisioning - - DistinguishedName - - DomainUrlMap - - ExperiencePolicy - - Guid - - HostedVoiceMail - - HostedVoiceMailNotProvisioned - - Id - - Identity - - IsByPassValidation - - IsMNC - - IsO365MNC - - IsReadinessUploaded - - IsUpgradeReady - - IsValid - - LastSubProvisionTimeStamp - - MNCEnableTimeStamp - - Name - - NonPrimarySource - - ObjectCategory - - ObjectClass - - ObjectId - - ObjectState - - OcoDomainTracked - - OnPremisesImmutableId - - OnPremisesUserPrincipalName - - OnPremSamAccountName - - OnPremSecurityIdentifier - - OriginalRegistrarPool - - OriginatingServer - - PendingDeletion - - Phone - - ProvisioningCounter - - ProvisioningStamp - - ProvisionType - - PublicProvider - - PublishingCounter - - PublishingStamp - - RegistrarPool - - RemoteMachine - - SubProvisioningCounter - - SubProvisioningStamp - - SyncingCounter - - TeamsUpgradeEligible - - TelehealthEnabled - - TenantNotified - - TenantPoolExtension - - UpgradeRetryCounter - - UserRoutingGroupIds - - XForestMovePolicy - - In the Teams PowerShell Module version 3.0.0 or later, the following attributes have been renamed for TeamsOnly customers: - - CountryAbbreviation is now CountryLetterCode - - CountryOrRegionDisplayName is now Country - - StateOrProvince is now State - - - - Get-CsTenant - - Identity - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Unique identifier for the tenant. For example: - -Identity "bf19b7db-6960-41e5-a139-2aa373474354" - If you do not include either the Identity or the Filter parameter then the `Get-CsTenant` cmdlet will return information about all your tenants. - - OUIdParameter - - OUIdParameter - - - None - - - DomainController - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online and will be deprecated in the near future. - - Fqdn - - Fqdn - - - None - - - Filter - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Enables you to return data by using Active Directory attributes and without having to specify the full Active Directory distinguished name. For example, to retrieve a tenant by using the tenant display name, use syntax similar to this: - Get-CsTenant -Filter {DisplayName -eq "FabrikamTenant"} - To return all tenants that use a Fabrikam domain use this syntax: - Get-CsTenant -Filter {Domains -like " fabrikam "} - The Filter parameter uses the same Windows PowerShell filtering syntax is used by the `Where-Object` cmdlet. - You cannot use both the Identity parameter and the Filter parameter in the same command. - - String - - String - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Enables you to limit the number of records returned by the cmdlet. For example, to return seven tenants (regardless of the number of tenants that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which 7 users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the tenants to 7 but you have only three contacts in your forest, the command will return those three tenants and then complete without error. - - Int32 - - Int32 - - - None - - - - - - DomainController - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online and will be deprecated in the near future. - - Fqdn - - Fqdn - - - None - - - Filter - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Enables you to return data by using Active Directory attributes and without having to specify the full Active Directory distinguished name. For example, to retrieve a tenant by using the tenant display name, use syntax similar to this: - Get-CsTenant -Filter {DisplayName -eq "FabrikamTenant"} - To return all tenants that use a Fabrikam domain use this syntax: - Get-CsTenant -Filter {Domains -like " fabrikam "} - The Filter parameter uses the same Windows PowerShell filtering syntax is used by the `Where-Object` cmdlet. - You cannot use both the Identity parameter and the Filter parameter in the same command. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Unique identifier for the tenant. For example: - -Identity "bf19b7db-6960-41e5-a139-2aa373474354" - If you do not include either the Identity or the Filter parameter then the `Get-CsTenant` cmdlet will return information about all your tenants. - - OUIdParameter - - OUIdParameter - - - None - - - ResultSize - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - Enables you to limit the number of records returned by the cmdlet. For example, to return seven tenants (regardless of the number of tenants that are in your forest) include the ResultSize parameter and set the parameter value to 7. Note that there is no way to guarantee which 7 users will be returned. - The result size can be set to any whole number between 0 and 2147483647, inclusive. If set to 0 the command will run, but no data will be returned. If you set the tenants to 7 but you have only three contacts in your forest, the command will return those three tenants and then complete without error. - - Int32 - - Int32 - - - None - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.TenantObject or String - - - The `Get-CsTenant` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.ADConnect.Schema.TenantObject object as well as string values representing the Identity of the tenant (for example "bf19b7db-6960-41e5-a139-2aa373474354"). - - - - - - - Microsoft.Rtc.Management.ADConnect.Schema.TenantObject - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenant - - The command shown in Example 1 returns information about your tenant. Organizations will have only one tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenant - - - - - - Get-CsTenantBlockedCallingNumbers - Get - CsTenantBlockedCallingNumbers - - Use the Get-CsTenantBlockedCallingNumbers cmdlet to retrieve tenant blocked calling numbers setting. - - - - Microsoft Direct Routing, Operator Connect and Calling Plans supports blocking of inbound calls from the public switched telephone network (PSTN). This feature allows a tenant-global list of number patterns to be defined so that the caller ID of every incoming PSTN call to the tenant can be checked against the list for a match. If a match is made, an incoming call is rejected. - The tenant blocked calling numbers includes a list of inbound blocked number patterns. Number patterns are managed through the CsInboundBlockedNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - You can also configure a list of number patterns to be exempt from call blocking. Exempt number patterns are managed through the CsInboundExemptNumberPattern commands New, Get, Set, and Remove. - You can test your call blocking by using the command Test-CsInboundBlockedNumberPattern. - The scope of tenant blocked calling numbers is global across the given tenant. - - - - Get-CsTenantBlockedCallingNumbers - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - Get-CsTenantBlockedCallingNumbers - - Identity - - The Identity parameter is a unique identifier that designates the scope, and for per-user scope a name, which identifies the TenantBlockedCallingNumbers to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope, and for per-user scope a name, which identifies the TenantBlockedCallingNumbers to retrieve. - - String - - String - - - None - - - MsftInternalProcessingMode - - Internal Microsoft use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantBlockedCallingNumbers - - This example returns the tenant global settings for blocked calling numbers. It includes a list of inbound blocked number patterns and exempt number patterns. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - Set-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantblockedcallingnumbers - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - - - - Get-CsTenantDialPlan - Get - CsTenantDialPlan - - Use the Get-CsTenantDialPlan cmdlet to retrieve a tenant dial plan. - - - - The Get-CsTenantDialPlan cmdlet returns information about one or more tenant dial plans (also known as a location profiles) in an organization. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - You can use the Get-CsTenantDialPlan cmdlet to retrieve specific information about the normalization rules of a tenant dial plan. - - - - Get-CsTenantDialPlan - - Filter - - > Applicable: Microsoft Teams - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to retrieve. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to retrieve. - - String - - String - - - None - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantDialPlan - - This example retrieves all existing tenant dial plans. - - - - -------------------------- Example 2 -------------------------- - Get-CsTenantDialPlan -Identity Vt1TenantDialPlan2 - - This example retrieves the tenant dial plan that has an identity of Vt1TenantDialplan2. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - Get-CsTenantFederationConfiguration - Get - CsTenantFederationConfiguration - - Returns information about the federation configuration settings for your Skype for Business Online tenants. Federation configuration settings are used to determine which domains (if any) your users are allowed to communicate with. - - - - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and, if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, AOL, and Yahoo. - The Get-CsTenantFederationConfiguration cmdlet provides a way for administrators to return federation information for their Skype for Business Online tenants. This cmdlet can also be used to review the allowed and blocked lists, lists which are used to specify domains that users can and cannot communicate with. However, administrators must use the Get-CsTenantPublicProvider cmdlet in order to see which public IM and presence providers users are allowed to communicate with. - - - - Get-CsTenantFederationConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be returned. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Get-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant federation configuration settings. Because each tenant is limited to a single, global collection of federation configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsTenantFederationConfiguration cmdlet: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Filter "g*"` - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant federation configuration settings. Because each tenant is limited to a single, global collection of federation configuration settings there is no need to use the Filter parameter. However, this is valid syntax for the Get-CsTenantFederationConfiguration cmdlet: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Filter "g*"` - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be returned. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Get-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Get-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is not used with Skype for Business Online. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being returned. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return the tenant ID for each of your tenants by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantFederationConfiguration - - The command shown in Exercise 1 returns federation configuration information for the current tenant: - - - - -------------------------- Example 2 -------------------------- - Get-CsTenantFederationConfiguration | Select-Object -ExpandProperty AllowedDomains - - In Example 2, information is returned for all the allowed domains found on the federation configuration for the current tenant (This list represents all the domains that the tenant is allowed to federate with). To do this, the command first calls the Get-CsTenantFederationConfiguration cmdlet to return federation information for the specified tenant. That information is then piped to the Select-Object cmdlet, which uses the ExpandProperty to "expand" the property AllowedDomains. Expanding a property simply means displaying all the information stored in that property onscreen, and in an easy-to-read format. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantfederationconfiguration - - - Set-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - - - - Get-CsTenantLicensingConfiguration - Get - CsTenantLicensingConfiguration - - Indicates whether licensing information for the specified tenant is available in the Teams admin center. - - - - The Get-CsTenantLicensingConfiguration cmdlet indicates whether licensing information for the specified tenant is available in the Teams admin center. The cmdlet returns information similar to this: - Identity : GlobalStatus : Enabled - If the Status is equal to Enabled then licensing information is available in the admin center. If not, then licensing information is not available in the admin center. - - - - Get-CsTenantLicensingConfiguration - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant licensing configuration settings. Because each tenant is limited to a single, global collection of licensing configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - Get-CsTenantLicensingConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant licensing configuration settings to be returned. Because each tenant is limited to a single, global collection of licensing settings there is no need include this parameter when calling the Get-CsTenantLicensingConfiguration cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - Enables you to use wildcard characters in order to return a collection of tenant licensing configuration settings. Because each tenant is limited to a single, global collection of licensing configuration settings there is no need to use the Filter parameter. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant licensing configuration settings to be returned. Because each tenant is limited to a single, global collection of licensing settings there is no need include this parameter when calling the Get-CsTenantLicensingConfiguration cmdlet. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - - - - None - - - - - - - - - - Deserialized.Microsoft.Rtc.Management.WritableConfig.Settings.TenantConfiguration.TenantLicensingConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsTenantLicensingConfiguration - - The command shown in Example 1 returns licensing configuration information for the current tenant: - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantlicensingconfiguration - - - Get-CsTenant - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenant - - - - - - Get-CsTenantMigrationConfiguration - Get - CsTenantMigrationConfiguration - - Use the Get-CsTenantMigrationConfiguration cmdlet to check if Meeting Migration Service (MMS) is enabled in your organization. - - - - Meeting Migration Service (MMS) is a Skype for Business service that runs in the background and automatically updates Skype for Business and Microsoft Teams meetings for users. MMS is designed to eliminate the need for users to run the Meeting Migration Tool to update their Skype for Business and Microsoft Teams meetings. This tool does not migrate Skype for Business meetings into Microsoft Teams meetings. - The Get-CsTenantMigrationConfiguration cmdlet retrieves the Meeting Migration Service configuration in your organization. - - - - Get-CsTenantMigrationConfiguration - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - Filter - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - LocalStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantMigrationConfiguration - - This example shows the MMS configuration in your organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantmigrationconfiguration - - - Set-CsTenantMigrationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantmigrationconfiguration - - - - - - Get-CsTenantNetworkConfiguration - Get - CsTenantNetworkConfiguration - - Returns information about the network regions, sites and subnets in the tenant network configuration. Tenant network configuration is used for Location Based Routing. - - - - Tenant Network Configuration contains the list of network sites, subnets and regions configured. - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Each network site must be associated with a network region. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. - Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - A network region interconnects various parts of a network across multiple geographic areas. - A network region contains a collection of network sites. For example, if your organization has many sites located in India, then you may choose to designate "India" as a network region. - Location-Based Routing is a feature that allows PSTN toll bypass to be restricted for users based on policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in Microsoft 365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkConfiguration - - Filter - - Enables you to use wildcard characters when indicating the network configuration (or network configurations) to be returned. - - String - - String - - - None - - - - Get-CsTenantNetworkConfiguration - - Identity - - The Identity parameter is a unique identifier for the network configuration. - - String - - String - - - None - - - - - - Filter - - Enables you to use wildcard characters when indicating the network configuration (or network configurations) to be returned. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier for the network configuration. - - String - - String - - - None - - - - - - None - - - - - - - - - - Identity - - - The Identity of the network configuration. - - - - - NetworkRegions - - - The list of network regions of the network configuration. - - - - - NetworkSites - - - The list of network sites of the network configuration. - - - - - Subnets - - - The list of network subnets of the network configuration. - - - - - PostalCodes - - - This parameter is reserved for internal Microsoft use. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration - - The command shown in Example 1 returns the list of network configuration for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration -Identity Global - - The command shown in Example 2 returns the network configuration within the scope of Global. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsTenantNetworkConfiguration -Filter "global" - - The command shown in Example 3 returns the network site that matches the specified filter. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkconfiguration - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - - - - Get-CsTenantNetworkRegion - Get - CsTenantNetworkRegion - - Returns information about the network region setting in the tenant. Tenant network region is used for Location Based Routing. - - - - A network region interconnects various parts of a network across multiple geographic areas. - A network region contains a collection of network sites. For example, if your organization has many sites located in India, then you may choose to designate "India" as a network region. - Location-Based Routing is a feature that allows PSTN toll bypass to be restricted for users based on policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in Microsoft 365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkRegion - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantNetworkRegion - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkRegion - - The command shown in Example 1 returns the list of network regions for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkRegion -Identity RedmondRegion - - The command shown in Example 2 returns the network region within the scope of RedmondRegion. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - Get-CsTenantNetworkSubnet - Get - CsTenantNetworkSubnet - - Returns information about the network subnet setting in the tenant. Tenant network subnet is used for Location Based Routing. - - - - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. - Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantNetworkSubnet - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - - Get-CsTenantNetworkSubnet - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network subnets to be returned. - - String - - String - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network subnets to be returned. - - String - - String - - - None - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantNetworkSubnet - - The command shown in Example 1 returns the list of network subnets for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantNetworkSubnet -Identity '2001:4898:e8:25:844e:926f:85ad:dd70' - - The command shown in Example 2 returns the IPv6 format network subnet within the scope of '2001:4898:e8:25:844e:926f:85ad:dd70'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - Get-CsTenantTrustedIPAddress - Get - CsTenantTrustedIPAddress - - Returns information about the external trusted IPs in the tenant. Trusted IP address from user's endpoint will be checked to determine which internal subnet the user's endpoint is located. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. Trusted IP addresses in both IPv4 and IPv6 formats are accepted. - If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Location Based Routing is a feature which allows PSTN toll bypass to be restricted for users based upon policy and the user's geographic location at the time of an incoming or outgoing PSTN call. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. It is now available in O365 for Teams clients. For toll bypass restricted locations, each IP subnet and PSTN gateway for that location are associated to a network site by the administrator. A user's location is determined by the IP subnet which the user's Teams endpoint(s) is connected to at the time of a PSTN call. A user may have multiple Teams clients located at different sites, in which case Location-Based Routing will enforce each client's routing separately depending on the location of its endpoint. - - - - Get-CsTenantTrustedIPAddress - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - Get-CsTenantTrustedIPAddress - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of trusted IP address to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - The Filter parameter allows you to limit the number of results based on filters you specify. - - String - - String - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the scope. It specifies the collection of trusted IP address to be returned. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP addresses are being returned. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsTenantTrustedIPAddress - - The command shown in Example 1 returns the list of trusted IP addresses for the current tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsTenantTrustedIPAddress -Identity '2001:4898:e8:25:8440::' - - The command shown in Example 2 returns the IPv6 format trusted IP address detail of '2001:4898:e8:25:8440::'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenanttrustedipaddress - - - - - - Get-CsUserCallingSettings - Get - CsUserCallingSettings - - This cmdlet will show the call forwarding, simultaneous ringing, call group and delegation settings for a user. - - - - This cmdlet shows the call forwarding, simultaneous ringing, call group and delegation settings for a user. It will also show any call groups the user is a member of and if someone else has added the user as a delegate. - - - - Get-CsUserCallingSettings - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to show call forwarding, simultaneous ringing, call group and delegation settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - - Get-CsUserCallingSettings - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - {{ Fill InputObject Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to show call forwarding, simultaneous ringing, call group and delegation settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - InputObject - - {{ Fill InputObject Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. - - - - - -------------------------- Example 1 -------------------------- - Get-CsUserCallingSettings -Identity user1@contoso.com - -SipUri : sip:user1@contoso.com -IsForwardingEnabled : True -ForwardingType : Immediate -ForwardingTarget : -ForwardingTargetType : Voicemail -IsUnansweredEnabled : False -UnansweredTarget : -UnansweredTargetType : Voicemail -UnansweredDelay : 00:00:20 -Delegates : -Delegators : -CallGroupOrder : InOrder -CallGroupTargets : {} -GroupMembershipDetails : -GroupNotificationOverride : - - This example shows that user1@contoso.com has immediate call forwarding set (IsForwardingEnabled and ForwardingType) to route all incoming calls to voicemail (ForwardingTargetType). - - - - -------------------------- Example 2 -------------------------- - Get-CsUserCallingSettings -Identity user2@contoso.com - -SipUri : sip:user2@contoso.com -IsForwardingEnabled : True -ForwardingType : Simultaneous -ForwardingTarget : sip:user3@contoso.com -ForwardingTargetType : SingleTarget -IsUnansweredEnabled : True -UnansweredTarget : -UnansweredTargetType : Voicemail -UnansweredDelay : 00:00:20 -Delegates : -Delegators : -CallGroupOrder : InOrder -CallGroupTargets : {} -GroupMembershipDetails : -GroupNotificationOverride : - - This example shows that user2@contoso.com has simultaneous ringing set (IsForwardingEnabled and ForwardingType) to user3@contoso.com (ForwardingTarget and ForwardingTargetType) and if the call has not been answered (IsUnansweredEnabled) within 20 seconds (UnansweredDelay) the call is routed to voicemail (UnansweredTargetType). - - - - -------------------------- Example 3 -------------------------- - Get-CsUserCallingSettings -Identity user4@contoso.com - -SipUri : sip:user4@contoso.com -IsForwardingEnabled : True -ForwardingType : Simultaneous -ForwardingTarget : -ForwardingTargetType : Group -IsUnansweredEnabled : True -UnansweredTarget : -UnansweredTargetType : Voicemail -UnansweredDelay : 00:00:20 -Delegates : -Delegators : -CallGroupOrder : InOrder -CallGroupTargets : {sip:user5@contoso.com} -GroupMembershipDetails : CallGroupOwnerId:sip:user6@contoso.com -GroupNotificationOverride : Mute - -(Get-CsUserCallingSettings -Identity user4@contoso.com).GroupMembershipDetails - -CallGroupOwnerId NotificationSetting ----------------- ------------------- -sip:user6@contoso.com Ring - - This example shows that user4@contoso.com has simultaneous ringing set to his/her call group (ForwardingTargetType) and that the call group contains user5@contoso.com (CallGroupTargets). The call group is defined to ring members in the order listed in the call group (CallGroupOrder). - You can also see that user4@contoso.com is a member of user6@contoso.com's call group (GroupMembershipDetails), that user6@contoso.com defined the call group with Ring notification for user4@contoso.com (NotificationSetting) and that user4@contoso.com has decided to turn off call notification for call group calls (GroupNotificationOverride). - - - - -------------------------- Example 4 -------------------------- - Get-CsUserCallingSettings -Identity user7@contoso.com - -SipUri : sip:opr7@contoso.com -IsForwardingEnabled : True -ForwardingType : Simultaneous -ForwardingTarget : -ForwardingTargetType : MyDelegates -IsUnansweredEnabled : True -UnansweredTarget : -UnansweredTargetType : Voicemail -UnansweredDelay : 00:00:20 -Delegates : Id:sip:user8@contoso.com -Delegators : -CallGroupOrder : InOrder -CallGroupTargets : {} -GroupMembershipDetails : -GroupNotificationOverride : Ring - -(Get-CsUserCallingSettings -Identity user7@contoso.com).Delegates - -Id : sip:user8@contoso.com -MakeCalls : True -ManageSettings : True -ReceiveCalls : True -PickUpHeldCalls : True -JoinActiveCalls : True - - This example shows that user7@contoso.com has simultaneous ringing set to his/her delegates (ForwardingTargetType). User8@contoso.com is the only delegate (Delegates) and that user has all the permissions you can have as a delegate (Delegates). - - - - -------------------------- Example 5 -------------------------- - Get-CsUserCallingSettings -Identity user9@contoso.com - -SipUri : sip:user9@contoso.com -IsForwardingEnabled : False -ForwardingType : Immediate -ForwardingTarget : -ForwardingTargetType : Voicemail -IsUnansweredEnabled : True -UnansweredTarget : -UnansweredTargetType : Voicemail -UnansweredDelay : 00:00:20 -Delegates : -Delegators : Id:sip:user10@contoso.com -CallGroupOrder : InOrder -CallGroupTargets : {} -GroupMembershipDetails : -GroupNotificationOverride : Ring - -(Get-CsUserCallingSettings -Identity user9@contoso.com).Delegators - -Id : sip:user10@contoso.com -MakeCalls : True -ManageSettings : True -ReceiveCalls : True -PickUpHeldCalls : True -JoinActiveCalls : True - - This example shows that user9@contoso.com is a delegate of user10@contoso.com (Delegators) and that user10@contoso.com has given user9@contoso.com all the permissions you can have as a delegate (Delegators). - - - - -------------------------- Example 6 -------------------------- - Get-CsUserCallingSettings -Identity user11@contoso.com - -SipUri : sip:user11@contoso.com -IsForwardingEnabled : -ForwardingType : -ForwardingTarget : -ForwardingTargetType : -IsUnansweredEnabled : -UnansweredTarget : -UnansweredTargetType : -UnansweredDelay : 00:00:20 -Delegates : -Delegators : -CallGroupOrder : Simultaneous -CallGroupTargets : {} -GroupMembershipDetails : -GroupNotificationOverride : - - This example shows the default settings for a user that has never changed the call forward settings via Microsoft Teams. Note that for users with settings as shown here, unanswered calls will by default be forwarded to voicemail after 30 seconds. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csusercallingsettings - - - Set-CsUserCallingSettings - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingsettings - - - New-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csusercallingdelegate - - - Set-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingdelegate - - - Remove-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csusercallingdelegate - - - - - - Get-CsUserPolicyAssignment - Get - CsUserPolicyAssignment - - This cmdlet is used to return the policy assignments for a user, both directly assigned and inherited from a group. - - - - This cmdlets returns the effective policies for a user, based on either direct policy assignment or inheritance from a group policy assignment. For a given policy type, if an effective policy is not returned, this indicates that the effective policy for the user is either the tenant global default policy (if set) or the system global default policy. - This cmdlet does not currently support returning policies for multiple users. - - - - Get-CsUserPolicyAssignment - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - The identify of the user whose policy assignments will be returned. - The -Identity parameter can be in the form of the users ObjectID (taken from Microsoft Entra ID) or in the form of the UPN (a.smith@example.com) - - String - - String - - - None - - - PolicyType - - Use to filter to a specific policy type. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - Get-CsUserPolicyAssignment - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IIc3AdminConfigRpPolicyIdentity - - IIc3AdminConfigRpPolicyIdentity - - - None - - - PolicyType - - Use to filter to a specific policy type. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - The identify of the user whose policy assignments will be returned. - The -Identity parameter can be in the form of the users ObjectID (taken from Microsoft Entra ID) or in the form of the UPN (a.smith@example.com) - - String - - String - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - IIc3AdminConfigRpPolicyIdentity - - IIc3AdminConfigRpPolicyIdentity - - - None - - - PolicyType - - Use to filter to a specific policy type. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.Config.Cmdlets.Models.IIc3AdminConfigRpPolicyIdentity - - - - - - - - - - Microsoft.Teams.Config.Cmdlets.Models.IEffectivePolicy - - - - - - - - - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - INPUTOBJECT <IIc3AdminConfigRpPolicyIdentity>: Identity Parameter [GroupId <String>]: The ID of a group whose policy assignments will be returned. [Identity <String>]: [OperationId <String>]: The ID of a batch policy assignment operation. [PolicyType <String>]: The policy type for which group policy assignments will be returned. - - - - - -------------------------- Example 1 -------------------------- - Get-CsUserPolicyAssignment -Identity f0d9c148-27c1-46f5-9685-544d20170ea1 - -PolicyType PolicyName PolicySource ----------- ---------- ------------ -TeamsMeetingPolicy Kiosk {Kiosk, Kiosk} -MeetingPolicy BposSAllModality {BposSAllModality} -ExternalAccessPolicy FederationAndPICDefault {FederationAndPICDefault} -TeamsMeetingBroadcastPolicy Vendor Live Events {Vendor Live Events, Employees Events} -TeamsCallingPolicy AllowCalling {AllowCalling} - - - - - - -------------------------- Example 2 -------------------------- - Get-CsUserPolicyAssignment -Identity 3b90faad-9056-49ff-8357-0b53b1d45d39 -PolicyType TeamsMeetingBroadcastPolicy | select -ExpandProperty PolicySource - -AssignmentType PolicyName Reference --------------- ---------- --------- -Direct Employees Events -Group Vendor Live Events 566b8d39-5c5c-4aaa-bc07-4f36278a1b38 - - - - - - -------------------------- Example 3 -------------------------- - Get-CsUserPolicyAssignment -Identity 3b90faad-9056-49ff-8357-0b53b1d45d39 -PolicyType TeamsMeetingPolicy | select -ExpandProperty PolicySource - -AssignmentType PolicyName Reference --------------- ---------- --------- -Group AllOn d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 -Group Kiosk 566b8d39-5c5c-4aaa-bc07-4f36278a1b38 - -Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy kiosk 2 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicyassignment - - - New-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment - - - Remove-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csgrouppolicyassignment - - - - - - Get-CsUserPolicyPackage - Get - CsUserPolicyPackage - - This cmdlet supports retrieving the policy package that's assigned to a user. - - - - This cmdlet supports retrieving the policy package that's assigned to a user. Provide the identity of a user to retrieve the definition of their assigned policy package. For more information on policy packages, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - Get-CsUserPolicyPackage - - Identity - - > Applicable: Microsoft Teams - The user that will get their assigned policy package. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - The user that will get their assigned policy package. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsUserPolicyPackage -Identity johndoe@example.com - - Returns the policy package that's assigned to johndoe@example.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackage - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - Get-CsUserPolicyPackageRecommendation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackagerecommendation - - - Grant-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csuserpolicypackage - - - - - - Get-CsUserPolicyPackageRecommendation - Get - CsUserPolicyPackageRecommendation - - This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user. - - - - This cmdlet supports retrieving recommendations for which policy packages are best suited for a given user. This recommendation is based on tenant and user information such as license types. For more information on policy packages, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - Get-CsUserPolicyPackageRecommendation - - Identity - - > Applicable: Microsoft Teams - The user that will receive policy package recommendations. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - The user that will receive policy package recommendations. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsUserPolicyPackageRecommendation -Identity johndoe@example.com - - Returns recommendations for which policy packages are best suited for johndoe@example.com. The recommendation value per package can either be none, weak, or strong based on how confident the existing signals (e.g. license type) imply a user role. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackagerecommendation - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - Get-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackage - - - Grant-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csuserpolicypackage - - - - - - Get-CsVideoInteropServiceProvider - Get - CsVideoInteropServiceProvider - - Get information about the Cloud Video Interop for Teams. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - - - - Get-CsVideoInteropServiceProvider - - Filter - - A regex string filter on the providers that have been set up for use within the organization. - - String - - String - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - Get-CsVideoInteropServiceProvider - - Identity - - Retrieve the specific provider information by name if is known - returns only those providers that have already been set within the tenant. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - Filter - - A regex string filter on the providers that have been set up for use within the organization. - - String - - String - - - None - - - Identity - - Retrieve the specific provider information by name if is known - returns only those providers that have already been set within the tenant. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - LocalStore - - Internal Microsoft use only. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Get-CsVideoInteropServiceProvider - - Get all of the providers that have been configured for use within the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csvideointeropserviceprovider - - - - - - Grant-CsApplicationAccessPolicy - Grant - CsApplicationAccessPolicy - - Assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user. - - - - This cmdlet assigns a per-user application access policy to one or more users. After assigning an application access policy to a user, the applications configured in the policy will be authorized to access online meetings on behalf of that user. Note: You can assign only 1 application access policy at a time to a particular user. Assigning a new application access policy to a user will override the existing application access policy if any. - - - - Grant-CsApplicationAccessPolicy - - Identity - - Indicates the user (object) ID of the user account to be assigned the per-user application access policy. - - UserIdParameter - - UserIdParameter - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. For example, if the user already have application access policy "A" assigned, and tenant admin assigns "B" globally, then application access policy "A" will take effect for the user. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. Be aware that this parameter is tied to the cmdlet itself instead of to a property of the input object. - - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy. - - PSListModifier - - PSListModifier - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. For example, if the user already have application access policy "A" assigned, and tenant admin assigns "B" globally, then application access policy "A" will take effect for the user. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the user (object) ID of the user account to be assigned the per-user application access policy. - - UserIdParameter - - UserIdParameter - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. Be aware that this parameter is tied to the cmdlet itself instead of to a property of the input object. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:ASimplePolicy has a PolicyName equal to ASimplePolicy. - - PSListModifier - - PSListModifier - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------- Assign an application access policy to a user -------- - PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName "ASimplePolicy" - - The command shown above assigns the per-user application access policy "ASimplePolicy" to the user with object ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624". - - - - ------ Unassign an application access policy from a user ------ - PS C:\> Grant-CsApplicationAccessPolicy -Identity "dc17674c-81d9-4adb-bfb2-8f6a442e4624" -PolicyName $Null - - In the command shown above, any per-user application access policy previously assigned to the user with user (object) ID "dc17674c-81d9-4adb-bfb2-8f6a442e4624" is unassigned from that user; as a result, applications configured in the policy can no longer access online meetings on behalf of that user. To unassign a per-user policy, set the PolicyName to a null value ($Null). - - - - Assign an application access policy to all users in the tenant - PS C:\> Get-CsOnlineUser | Grant-CsApplicationAccessPolicy -PolicyName "ASimplePolicy" - - The command shown above assigns the per-user application access policy ASimplePolicy to all the users in the tenant. To do this, the command first calls the `Get-CsOnlineUser` cmdlet to get all user accounts enabled for Microsoft Teams or Skype for Business Online. Those user accounts are then piped to the `Grant-CsApplicationAccessPolicy` cmdlet, which assigns each user the application access policy "ASimplePolicy". - - - - Assign an application access policy to users who have not been assigned one - PS C:\> Grant-CsApplicationAccessPolicy -PolicyName "ASimplePolicy" -Global - - The command shown above assigns the per-user application access policy "ASimplePolicy" to all the users in the tenant, except any that have an explicit policy assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Grant-CsCallingLineIdentity - Grant - CsCallingLineIdentity - - Use the `Grant-CsCallingLineIdentity` cmdlet to apply a Caller ID policy to a user account, to a group of users, or to set the tenant Global instance. - - - - You can either assign a Caller ID policy to a specific user, to a group of users, or you can set the Global policy instance. - - - - Grant-CsCallingLineIdentity - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - Grant-CsCallingLineIdentity - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - Grant-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity of the user to whom the policy is being assigned. User Identities can be specified using the user's SIP address, the user's user principal name (UPN), or the user's ObjectId/Identity. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity of the user to whom the policy is being assigned. User Identities can be specified using the user's SIP address, the user's user principal name (UPN), or the user's ObjectId/Identity. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsCallingLineIdentity cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The name (Identity) of the Caller ID policy to be assigned. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsCallingLineIdentity -Identity Ken.Myer@contoso.com -PolicyName CallerIDRedmond - - This example assigns the Caller ID policy with the Identity CallerIDRedmond to the user Ken.Myer@contoso.com - - - - -------------------------- Example 2 -------------------------- - Grant-CsCallingLineIdentity -PolicyName CallerIDSeattle -Global - - This example copies the Caller ID policy CallerIDSeattle to the Global policy instance. - - - - -------------------------- Example 3 -------------------------- - Grant-CsCallingLineIdentity -Group sales@contoso.com -PolicyName CallerIDSeattle -Rank 10 - - This example assigns the Caller ID policy with the Identity CallerIDSeattle to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - - - - Grant-CsDialoutPolicy - Grant - CsDialoutPolicy - - Use the `Grant-CsDialoutPolicy` cmdlet to assign the tenant global, a group of users, or a per-user outbound calling restriction policy to one or more users. - - - - In Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization. The policies apply to all the different PSTN connectivity options for Microsoft Teams; Calling Plan, Direct Routing, and Operator Connect. - To get all the available policies in your organization run `Get-CsOnlineDialOutPolicy`. - - - - Grant-CsDialoutPolicy - - PolicyName - - > Applicable: Microsoft Teams - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DialoutCPCZoneAPSTNDomestic has a PolicyName equal to DialoutCPCZoneAPSTNDomestic. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - This parameter sets the tenant global policy instance. This is the policy that all users in the tenant will get unless they have a specific policy instance assigned. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsDialoutPolicy - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DialoutCPCZoneAPSTNDomestic has a PolicyName equal to DialoutCPCZoneAPSTNDomestic. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsDialoutPolicy - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of three formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's ObjectId/Identity. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DialoutCPCZoneAPSTNDomestic has a PolicyName equal to DialoutCPCZoneAPSTNDomestic. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - This parameter sets the tenant global policy instance. This is the policy that all users in the tenant will get unless they have a specific policy instance assigned. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of three formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's ObjectId/Identity. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Returns the results of the command. By default, this cmdlet does not generate any output. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DialoutCPCZoneAPSTNDomestic has a PolicyName equal to DialoutCPCZoneAPSTNDomestic. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - The cmdlet is not supported for Teams resource accounts. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsDialoutPolicy -Identity "ken.myer@contoso.com" -PolicyName "DialoutCPCandPSTNInternational" - - This example assigns the per-user outbound calling restriction policy DialoutCPCandPSTNInternational to the user with the User Principal Name "ken.myer@contoso.com". - - - - -------------------------- Example 2 -------------------------- - Grant-CsDialoutPolicy -Identity "ken.myer@contoso.com" -PolicyName $Null - - In this example, any per-user outbound calling restriction policy previously assigned to the user ken.myer@contoso.com is unassigned from that user; as a result, Ken Myer will be managed by the global outbound calling restriction policy. To unassign a per-user policy, set the PolicyName to a null value ($Null). - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineUser | Grant-CsDialoutPolicy -PolicyName "DialoutCPCInternationalPSTNDisabled" - - This example assigns the per-user outbound calling restriction policy DialoutCPCInternationalPSTNDisabled to all the users in your organization. - - - - -------------------------- Example 4 -------------------------- - Grant-CsDialoutPolicy -Global -PolicyName "DialoutCPCandPSTNInternational" - - This example sets the tenant global policy instance to DialoutCPCandPSTNInternational. - - - - -------------------------- Example 5 -------------------------- - Grant-CsDialoutPolicy -Group support@contoso.com -Rank 10 -PolicyName "DialoutCPCandPSTNInternational" - - This example assigns the policy instance "DialoutCPCandPSTNInternational" to the members of the group support@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csdialoutpolicy - - - Get-CsOnlineDialOutPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialoutpolicy - - - - - - Grant-CsGroupPolicyPackageAssignment - Grant - CsGroupPolicyPackageAssignment - - This cmdlet assigns a policy package to a group in a tenant. - - - - This cmdlet assigns a policy package to a group in a tenant. The available policy packages and their definitions can be found by running Get-CsPolicyPackage. For more information on policy packages, please review Manage policy packages in Microsoft Teams (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages). - Policy rankings can be optionally specified for each policy type in the package to determine which policies will be assigned to the user in case they belong to two or more groups. If policy rankings for a policy type is not specified, one of two things can happen: - - If the policy type was previously assigned to the group, the ranking for the policy type will not change. - - If the policy type was not previously assigned to the group, the ranking for the policy type will be ranked last. - - Finally, if a user was directly assigned a package, direct assignment takes precedence over group assignment. For more information on policy rankings and group policy assignments, please review the description section under New-CsGroupPolicyAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment#description). - - - - Grant-CsGroupPolicyPackageAssignment - - GroupId - - > Applicable: Microsoft Teams - A group id in the tenant. It can either be a group's object id or a group's email address. - - String - - String - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a policy package. All policy package names can be found by running Get-CsPolicyPackage. To reset the currently assigned package value for the group, use $null or an empty string "". This will not remove any existing policy assignments to the group. - - String - - String - - - None - - - PolicyRankings - - > Applicable: Microsoft Teams - The policy rankings for each of the policy types in the package. To specify the policy rankings, follow this format: "<PolicyType>, <PolicyRank>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). Policy rank must be a number greater than or equal to 1. - - String[] - - String[] - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - GroupId - - > Applicable: Microsoft Teams - A group id in the tenant. It can either be a group's object id or a group's email address. - - String - - String - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a policy package. All policy package names can be found by running Get-CsPolicyPackage. To reset the currently assigned package value for the group, use $null or an empty string "". This will not remove any existing policy assignments to the group. - - String - - String - - - None - - - PolicyRankings - - > Applicable: Microsoft Teams - The policy rankings for each of the policy types in the package. To specify the policy rankings, follow this format: "<PolicyType>, <PolicyRank>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). Policy rank must be a number greater than or equal to 1. - - String[] - - String[] - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsGroupPolicyPackageAssignment -GroupId 1bc0b35f-095a-4a37-a24c-c4b6049816ab -PackageName Education_PrimaryStudent - - Assigns the Education_PrimaryStudent policy package to the group. The group will receive the lowest policy ranking for each policy type in the Education_PrimaryStudent package if the policy type is newly assigned to the group. If a policy type was already assigned to the group, the group will receive the same policy ranking as before. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsGroupPolicyPackageAssignment -GroupId 1bc0b35f-095a-4a37-a24c-c4b6049816ab -PackageName Education_Teacher -PolicyRankings "TeamsMessagingPolicy, 1", "TeamsMeetingPolicy, 1", "TeamsCallingPolicy, 2" - - Assigns the Education_Teacher policy package to the group. The group will receive a policy ranking of 1 for TeamsMessagingPolicy policy type, a policy ranking of 1 for TeamsMeetingPolicy policy type and a policy ranking of 2 for TeamsCallingPolicy policy type. For each unspecified policy type in the package, the group will receive the lowest policy ranking if it is newly assigned to the group. If a policy type was already assigned to the group, the group will receive the same policy ranking as before. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csgrouppolicypackageassignment - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - New-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment - - - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - Grant - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet applies an instance of the Online Audio Conferencing Routing policy to users or groups in a tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - This can be used to apply the policy to the entire tenant. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This can be used to apply the policy to the entire tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Applies the policy "test" to the user "<testuser@test.onmicrosoft.com>". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -PolicyName Test -Identity Global - - Applies the policy "test" to the entire tenant. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsOnlineAudioConferencingRoutingPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Applies the policy "test" to the specified group. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Grant-CsOnlineVoicemailPolicy - Grant - CsOnlineVoicemailPolicy - - Assigns an online voicemail policy to a user account, to a group of users, or set the tenant Global instance. Online voicemail policies manage usages for Voicemail service. - - - - This cmdlet assigns an existing user-specific online voicemail policy to a user, a group of users, or the Global policy instance. - - - - Grant-CsOnlineVoicemailPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - A unique identifier(name) of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - String - - String - - - None - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP address or an Object ID. - - System.String - - System.String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsOnlineVoicemailPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - String - - String - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP address or an Object ID. - - System.String - - System.String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsOnlineVoicemailPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - A unique identifier(name) of the policy. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsOnlineVoicemailPolicy -Identity "user@contoso.com" -PolicyName TranscriptionDisabled - - The command shown in Example 1 assigns the per-user online voicemail policy TranscriptionDisabled to a single user user@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsOnlineVoicemailPolicy -Group sales@contoso.com -Rank 10 -PolicyName TranscriptionDisabled - - The command shown in Example 2 assigns the online voicemail policy TranscriptionDisabled to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoicemailpolicy - - - Get-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailpolicy - - - Set-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailpolicy - - - New-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoicemailpolicy - - - Remove-CsOnlineVoicemailPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoicemailpolicy - - - - - - Grant-CsOnlineVoiceRoutingPolicy - Grant - CsOnlineVoiceRoutingPolicy - - Assigns a per-user online voice routing policy to one user, a group of users, or sets the Global policy instance. Online voice routing policies manage online PSTN usages for Phone System users. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Grant-CsOnlineVoiceRoutingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - Grant-CsOnlineVoiceRoutingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsOnlineVoiceRoutingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. By default, the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:RedmondOnlineVoiceRoutingPolicy has a PolicyName equal to RedmondOnlineVoiceRoutingPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Identity Ken.Myer@contoso.com -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - The command shown in Example 1 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy to the user ken.myer@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Identity Ken.Myer@contoso.com -PolicyName $Null - - In Example 2, any per-user online voice routing policy previously assigned to the user Ken Myer is unassigned from that user; as a result, Ken Myer will be managed by the global online voice routing policy. To unassign a per-user policy, set the PolicyName to a null value ($null). - - - - -------------------------- Example 3 -------------------------- - Get-CsOnlineUser | Grant-CsOnlineVoiceRoutingPolicy -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - Example 3 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy to all the users in the tenant. To do this, the command first calls the `Get-CsOnlineUser` cmdlet to get all user accounts enabled for Microsoft Teams or Skype for Business Online. Those user accounts are then piped to the `Grant-CsOnlineVoiceRoutingPolicy` cmdlet, which assigns each user the online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 4 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -PolicyName "RedmondOnlineVoiceRoutingPolicy" -Global - - Example 4 assigns the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy as the global online voice routing policy. This affects all the users in the tenant, except any that have an explicit policy assignment. - - - - -------------------------- Example 5 -------------------------- - Grant-CsOnlineVoiceRoutingPolicy -Group sales@contoso.com -Rank 10 -PolicyName "RedmondOnlineVoiceRoutingPolicy" - - Example 5 assigns the online voice routing policy RedmondOnlineVoiceRoutingPolicy to all members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Grant-CsTeamsAudioConferencingPolicy - Grant - CsTeamsAudioConferencingPolicy - - Assigns a Teams audio-conferencing policy at the per-user scope. Audio conferencing policies are used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Granular control over which audio conferencing features your users can or cannot use is an important feature for many organizations. This cmdlet lets you assign a teams audio conferencing policy at the per-user scope. Audio conferencing policies determine the audio-conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Grant-CsTeamsAudioConferencingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAudioConferencingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsAudioConferencingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: 1) the user's SIP address; 2) the user's user principal name (UPN); or, 3) the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user online voice routing policy. User Identities can be specified using one of the following formats: 1) the user's SIP address; 2) the user's user principal name (UPN); or, 3) the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. Enables you to pass a user object through the pipeline that represents the user account being assigned the online voice routing policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - String - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsAudioCOnferencingPolicy -identity "Ken Myer" -PolicyName "Emea Users" - - In this example, a user with identity "Ken Myer" is being assigned the "Emea Users" policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Remove-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaudioconferencingpolicy - - - - - - Grant-CsTeamsCallHoldPolicy - Grant - CsTeamsCallHoldPolicy - - Assigns a per-user Teams call hold policy to one or more users. The Teams call hold policy is used to customize the call hold experience for Teams clients. - - - - Teams call hold policies are used to customize the call hold experience for teams clients. When Microsoft Teams users participate in calls, they have the ability to hold a call and have the other entity in the call listen to an audio file during the duration of the hold. - Assigning a teams call hold policy to a user sets an audio file to be played during the duration of the hold. - - - - Grant-CsTeamsCallHoldPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallHoldPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallHoldPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams call hold policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams call hold policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the Grant-CsTeamsCallHoldPoly cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - For example, a policy with the Identity Tag:ContosoPartnerCallHoldPolicy has a PolicyName equal to ContosoPartnerCallHoldPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'KenMyer@contoso.com' -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 1 assigns the per-user Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the user with the user principal name (UPN) "KenMyer@contoso.com". - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'Ken Myer' -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 2 assigns the per-user Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the user with the display name "Ken Myer". - - - - -------------------------- Example 3 -------------------------- - Grant-CsTeamsCallHoldPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 3, any per-user Teams call hold policy previously assigned to the user "Ken Myer" is revoked. As a result, the user will be managed by the global Teams call hold policy. - - - - -------------------------- Example 4 -------------------------- - Grant-CsTeamsCallHoldPolicy -Global -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 4 sets the Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, as the Global policy which will apply to all users in your tenant. - - - - -------------------------- Example 5 -------------------------- - Grant-CsTeamsCallHoldPolicy -Group sales@contoso.com -Rank 10 -PolicyName 'ContosoPartnerTeamsCallHoldPolicy' - - The command shown in Example 5 sets the Teams call hold policy, ContosoPartnerTeamsCallHoldPolicy, to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallholdpolicy - - - New-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy - - - Get-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallholdpolicy - - - Set-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallholdpolicy - - - Remove-CsTeamsCallHoldPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallholdpolicy - - - - - - Grant-CsTeamsCallParkPolicy - Grant - CsTeamsCallParkPolicy - - The Grant-CsTeamsCallParkPolicy cmdlet lets you assign a custom policy to a specific user. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: the call park feature currently only available in desktop, web clients and mobile clients. Call Park functionality is currently on the roadmap for Teams IP Phones. Supported with TeamsOnly mode for users with the Phone System license - - - - Grant-CsTeamsCallParkPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallParkPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCallParkPolicy - - Identity - - The User ID of the user to whom the policy is being assigned. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The User ID of the user to whom the policy is being assigned. - - String - - String - - - None - - - PassThru - - If present, causes the cmdlet to pass the user object (or objects) through the Windows PowerShell pipeline. By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope ("tag:"). For example, a policy that has the Identity tag:Redmond has a PolicyName equal to Redmond; a policy with the Identity tag:RedmondConferencingPolicy has a PolicyName equal to RedmondConferencingPolicy. - If you set PolicyName to a null value, the command will unassign any per-user policy assigned to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsCallParkPolicy -PolicyName SalesPolicy -Identity Ken.Myer@contoso.com - - Assigns a custom policy "Sales Policy" to the user Ken Myer. - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsCallParkPolicy -Group sales@contoso.com -Rank 10 -PolicyName SalesPolicy - - Assigns a custom policy "Sales Policy" to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscallparkpolicy - - - Set-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallparkpolicy - - - Get-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscallparkpolicy - - - New-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallparkpolicy - - - Remove-CsTeamsCallParkPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallparkpolicy - - - - - - Grant-CsTeamsChannelsPolicy - Grant - CsTeamsChannelsPolicy - - The Grant-CsTeamsChannelsPolicy allows you to assign specific policies to users that have been created in your tenant. - - - - The CsTeamsChannelsPolicy allows you to manage features related to the Teams & Channels experience within the Teams application. - - - - Grant-CsTeamsChannelsPolicy - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Global - - Use the -Global flag to convert the values of the Global policy to the values of the specified policy. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsChannelsPolicy - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsChannelsPolicy - - Identity - - Specify the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft usage only. - - Fqdn - - Fqdn - - - None - - - Global - - Use the -Global flag to convert the values of the Global policy to the values of the specified policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Specify the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specify the policy that should be granted to the user - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsChannelsPolicy -Identity studentaccount@company.com -PolicyName StudentPolicy - - Assigns a custom policy to a specific user in an organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamschannelspolicy - - - - - - Grant-CsTeamsComplianceRecordingPolicy - Grant - CsTeamsComplianceRecordingPolicy - - Assigns a per-user Teams recording policy to one or more users. This policy is used to govern automatic policy-based recording in your tenant. Automatic policy-based recording is only applicable to Microsoft Teams users. - - - - Teams recording policies are used in automatic policy-based recording scenarios. When Microsoft Teams users participate in meetings or make or receive calls, the policy-based recording applications i.e. bots associated with the user's Teams recording policy are invited into the call or meeting to record audio, video and video-based screen sharing activity. - Note that simply assigning a Teams recording policy to a Microsoft Teams user will not activate automatic policy-based recording for all Microsoft Teams calls and meetings that the user participates in. Among other things, you will need to create an application instance of a policy-based recording application i.e. a bot in your tenant and will then need to assign an appropriate policy to the user. - Please work with your Microsoft certified policy-based recording application provider to obtain an instance of their recording application. Please refer to the documentation of the CsOnlineApplicationInstance cmdlets for information on how to create an application instance of a policy-based recording application. - Assigning your Microsoft Teams users a Teams recording policy activates automatic policy-based recording for all new Microsoft Teams calls and meetings that the users participate in. The system will load the recording application and join it to appropriate calls and meetings in order for it to enforce compliance with the administrative set policy. Existing calls and meetings are unaffected. - - - - Grant-CsTeamsComplianceRecordingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsComplianceRecordingPolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsComplianceRecordingPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams recording policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams recording policy. User Identities can be specified using one of the following formats: - - The user's SIP address; - - The user's user principal name (UPN); - - The user's Active Directory display name (for example, Ken Myer). - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams recording policy. By default, the Grant-CsTeamsComplianceRecordingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope i.e. the "Tag:" prefix. For example, a policy with the Identity Tag:ContosoPartnerComplianceRecordingPolicy has a PolicyName equal to ContosoPartnerComplianceRecordingPolicy. - To revoke a per-user policy previously assigned to a user, set the PolicyName to a null value ($null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose Teams recording policies are being queried. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Microsoft Teams or Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName 'ContosoPartnerComplianceRecordingPolicy' - - The command shown in Example 1 assigns the per-user Teams recording policy ContosoPartnerComplianceRecordingPolicy to the user with the display name "Ken Myer". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsComplianceRecordingPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 2, any per-user Teams recording policy previously assigned to the user "Ken Myer" is revoked. As a result, the user will be managed by the global Teams recording policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingpolicy - - - New-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpolicy - - - Set-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingpolicy - - - Remove-CsTeamsComplianceRecordingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingpolicy - - - Get-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingapplication - - - Set-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscompliancerecordingapplication - - - Remove-CsTeamsComplianceRecordingApplication - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscompliancerecordingapplication - - - New-CsTeamsComplianceRecordingPairedApplication - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscompliancerecordingpairedapplication - - - - - - Grant-CsTeamsCortanaPolicy - Grant - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - This cmdlet lets you assign a Teams Cortana policy at the per-user scope. - - - - Grant-CsTeamsCortanaPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCortanaPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsCortanaPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. User identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsCortanaPolicy -identity "Ken Myer" -PolicyName MyCortanaPolicy - - In this example, a user with identity "Ken Myer" is being assigned the MyCortanaPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Grant-CsTeamsEmergencyCallingPolicy - Grant - CsTeamsEmergencyCallingPolicy - - This cmdlet assigns a Teams Emergency Calling policy. - - - - This cmdlet assigns a Teams Emergency Calling policy to a user, a group of users, or to the Global policy instance. Emergency Calling policy is used for the life cycle of emergency calling experience for the security desk and Teams client location experience. - - - - Grant-CsTeamsEmergencyCallingPolicy - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams Emergency Calling policy to apply to the user. To remove an existing user level policy assignment, specify PolicyName as $null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module version 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsEmergencyCallingPolicy -Identity user1 -PolicyName TestTECP - - This example assigns the Teams Emergency Calling policy TestTECP to a user - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsEmergencyCallingPolicy -Global -PolicyName SalesTECP - - Assigns the Teams Emergency Calling policy called "SalesTECP" to the Global policy instance. This sets the parameters in the Global policy instance to the values found in the SalesTECP instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallingpolicy - - - New-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallingpolicy - - - Get-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallingpolicy - - - Remove-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallingpolicy - - - Set-CsTeamsEmergencyCallingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallingpolicy - - - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - Grant - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet assigns a Teams Emergency Call Routing policy. - - - - This cmdlet assigns a Teams Emergency Call Routing policy to a user, a group of users, or to the Global policy instance. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEmergencyCallRoutingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams Emergency Call Routing policy to apply. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The GrantToGroup syntax is supported in Teams PowerShell Module version 4.5.1-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTeamsEmergencyCallRoutingPolicy -Identity user1 -PolicyName Test - - This example assigns a Teams Emergency Call Routing policy (Test) to a user (user1). - - - - -------------------------- Example 2 -------------------------- - Grant-CsTeamsEmergencyCallRoutingPolicy -Group sales@contoso.com -Rank 10 -PolicyName Test - - This example assigns the Teams Emergency Call Routing policy (Test) to the members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - - - - Grant-CsTeamsEnhancedEncryptionPolicy - Grant - CsTeamsEnhancedEncryptionPolicy - - Cmdlet to assign a specific Teams enhanced encryption Policy to a user. - - - - Cmdlet to assign a specific Teams enhanced encryption Policy to a user. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEnhancedEncryptionPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"). A policy that has an identity of "Tag:ContosoPartnerTeamsEnhancedEncryptionPolicy" has a PolicyName of "ContosoPartnerTeamsEnhancedEncryptionPolicy". If you set PolicyName to a null value, then the command will unassign any individual policy assigned to the user. For example: Grant-CsTeamsEnhancedEncryptionPolicy -Identity "Ken Myer" -PolicyName $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsEnhancedEncryptionPolicy -Identity 'KenMyer@contoso.com' -PolicyName 'ContosoPartnerTeamsEnhancedEncryptionPolicy' - - The command shown in Example 1 assigns the per-user Teams enhanced encryption policy, ContosoPartnerTeamsEnhancedEncryptionPolicy, to the user with the user principal name (UPN) "KenMyer@contoso.com". - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Grant-CsTeamsEnhancedEncryptionPolicy -Identity 'Ken Myer' -PolicyName $null - - In Example 2, any per-user Teams enhanced encryption policy previously assigned to the user "Ken Myer" is revoked. - As a result, the user will be managed by the global Teams enhanced encryption policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - - - - Grant-CsTeamsEventsPolicy - Grant - CsTeamsEventsPolicy - - Assigns Teams Events policy to a user, group of users, or the entire tenant. Note that this policy is currently still in preview. - - - - Assigns Teams Events policy to a user, group of users, or the entire tenant. - TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - Grant-CsTeamsEventsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEventsPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsEventsPolicy - - Identity - - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PassThru - - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsEventsPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:DisablePublicWebinars has a PolicyName equal to DisablePublicWebinars. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Identity "user1@contoso.com" -Policy DisablePublicWebinars - - The command shown in Example 1 assigns the per-user Teams Events policy, DisablePublicWebinars, to the user with the user principal name (UPN) "user1@contoso.com". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Identity "user1@contoso.com" -Policy $null - - The command shown in Example 2 revokes the per-user Teams Events policy for the user with the user principal name (UPN) "user1@contoso.com". As a result, the user will be managed by the global Teams Events policy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsEventsPolicy -Group "sales@contoso.com" -Rank 10 -Policy DisablePublicWebinars - - The command shown in Example 3 assigns the Teams Events policy, DisablePublicWebinars, to the members of the group "sales@contoso.com". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamseventspolicy - - - - - - Grant-CsTeamsFeedbackPolicy - Grant - CsTeamsFeedbackPolicy - - Use this cmdlet to grant a specific Teams Feedback policy to a user (the ability to send feedback about Teams to Microsoft and whether they receive the survey). - - - - Grants a specific Teams Feedback policy to a user (the ability to send feedback about Teams to Microsoft and whether they receive the survey) or to set a specific Teams feedback policy the new effective global policy. - - - - Grant-CsTeamsFeedbackPolicy - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsFeedbackPolicy - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsFeedbackPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The identity of the policy to be granted. - - Object - - Object - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsFeedbackPolicy -PolicyName "New Hire Feedback Policy" -Identity kenmyer@litwareinc.com - - In this example, the policy "New Hire Feedback Policy" is granted to the user kenmyer@litwareinc.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsfeedbackpolicy - - - - - - Grant-CsTeamsIPPhonePolicy - Grant - CsTeamsIPPhonePolicy - - Use the Grant-CsTeamsIPPhonePolicy cmdlet to assign a set of Teams phone policies to a user account or group of user accounts. Teams phone policies determine the features that are available to users of Teams phones. For example, you might enable the hot desking feature for some users while disabling it for others. - - - - Use the Grant-CsTeamsIPPhonePolicy cmdlet to assign a set of Teams phone policies to a phone signed in with an account that may be used by end users, common area phones, or meeting room accounts. - Note: Assigning a per user policy will override any global policy taking effect against the respective user account. - - - - Grant-CsTeamsIPPhonePolicy - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsIPPhonePolicy - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsIPPhonePolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Microsoft Internal Use Only. - - Object - - Object - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - Object - - Object - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The Identity of the Teams phone policy to apply to the user. - - XdsIdentity - - XdsIdentity - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Microsoft internal usage only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsIPPhonePolicy -Identity Foyer1@contoso.com -PolicyName CommonAreaPhone - - This example shows assignment of the CommonAreaPhone policy to user account Foyer1@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsipphonepolicy - - - - - - Grant-CsTeamsMediaLoggingPolicy - Grant - CsTeamsMediaLoggingPolicy - - Assigns Teams Media Logging policy to a user or entire tenant. - - - - Assigns Teams Media Logging policy to a user or entire tenant. TeamsMediaLoggingPolicy allows administrators to enable media logging for users. When assigned, it will enable media logging for the user overriding other settings. After unassigning the policy, media logging setting will revert to the previous value. - - - - Grant-CsTeamsMediaLoggingPolicy - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - When this cmdlet is used with `-Global` identity, the policy applies to all users in the tenant, except any that have an explicit policy assignment. For example, if the user already has Media Logging policy set to "Enabled", and tenant admin assigns "$null" globally, the user will still have Media Logging policy "Enabled". - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMediaLoggingPolicy - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMediaLoggingPolicy - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - > Applicable: Microsoft Teams - When this cmdlet is used with `-Global` identity, the policy applies to all users in the tenant, except any that have an explicit policy assignment. For example, if the user already has Media Logging policy set to "Enabled", and tenant admin assigns "$null" globally, the user will still have Media Logging policy "Enabled". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - Enables passing a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsMediaLoggingPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), e.g. a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - Note that Teams Media Logging policy has only one instance that has PolicyName "Enabled". - If you set PolicyName to a null value, the command will unassign any individual policy assigned to the user. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Identity 'KenMyer@contoso.com' -PolicyName Enabled - - Assign Teams Media Logging policy to a single user with the user principal name (UPN) "KenMyer@contoso.com". This will enable media logging for the user. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Identity 'KenMyer@contoso.com' -PolicyName $null - - Unassign Teams Media Logging policy from a single user with the user principal name (UPN) "KenMyer@contoso.com". This will revert media logging setting to the previous value. - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Global -PolicyName Enabled - - Assign Teams Media Logging policy to the entire tenant. Note that this will enable logging for every single user in the tenant without a possibility to disable it for individual users. - - - - -------------------------- EXAMPLE 4 -------------------------- - PS C:\> Grant-CsTeamsMediaLoggingPolicy -Global -PolicyName $null - - Unassign Teams Media Logging policy from the entire tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmedialoggingpolicy - - - Get-CsTeamsMediaLoggingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmedialoggingpolicy - - - - - - Grant-CsTeamsMeetingBroadcastPolicy - Grant - CsTeamsMeetingBroadcastPolicy - - Use this cmdlet to assign a policy to a user. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - Grant-CsTeamsMeetingBroadcastPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMeetingBroadcastPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMeetingBroadcastPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Not applicable to online service. - - Fqdn - - Fqdn - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingbroadcastpolicy - - - - - - Grant-CsTeamsMeetingPolicy - Grant - CsTeamsMeetingPolicy - - Assigns a teams meeting policy at the per-user scope. The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users - - - - Assigns a teams meeting policy at the per-user scope. The CsTeamsMeetingPolicy cmdlets enable administrators to control the type of meetings that users can create or the features that they can access while in a meeting. It also helps determine how meetings deal with anonymous or external users - - - - Grant-CsTeamsMeetingPolicy - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - Grant-CsTeamsMeetingPolicy - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - DomainController - - > Applicable: Microsoft Teams - {{ Fill DomainController Description }} - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMeetingPolicy -identity "Ken Myer" -PolicyName StudentMeetingPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentMeetingPolicy - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmeetingpolicy - - - - - - Grant-CsTeamsMessagingPolicy - Grant - CsTeamsMessagingPolicy - - Assigns a teams messaging policy at the per-user scope. Teams messaging policies determine the features and capabilities that can be used in messaging within the teams client. - - - - Granular control over which messaging features your users can or cannot use is an important feature for many organizations. This cmdlet lets you assign a teams messaging policy at the per-user scope. Teams messaging policies determine the features and capabilities that can be used in messaging within the teams client. - - - - Grant-CsTeamsMessagingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMessagingPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMessagingPolicy - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account the policy should be assigned to. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the default tenant policy, you can assign to $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMessagingPolicy -identity "Ken Myer" -PolicyName StudentMessagingPolicy - - In this example, a user with identity "Ken Myer" is being assigned the StudentMessagingPolicy - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineUser -Filter {Department -eq 'Executive Management'} | Grant-CsTeamsMessagingPolicy -PolicyName "ExecutivesPolicy" - - In this example, the ExecutivesPolicy is being assigned to a whole department by piping the result of Get-CsOnlineUser cmdlet - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmessagingpolicy - - - - - - Grant-CsTeamsMobilityPolicy - Grant - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - Assigns a teams mobility policy at the per-user scope. - The Grant-CsTeamsMobilityPolicy cmdlet lets an Admin assign a custom teams mobility policy to a user. - - - - Grant-CsTeamsMobilityPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMobilityPolicy - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsMobilityPolicy - - Identity - - The User Id of the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The User Id of the user to whom the policy is being assigned. - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the custom policy that is being assigned to the user. To remove a specific assignment and fall back to the Global policy, you can assign $Null. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsMobilityPolicy -PolicyName SalesPolicy -Identity "Ken Myer" - - Assigns a custom policy "Sales Policy" to the user "Ken Myer" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsmobilitypolicy - - - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - Grant - CsTeamsRoomVideoTeleConferencingPolicy - - Assigns a TeamsRoomVideoTeleConferencingPolicy to a Teams Room Alias on a per-room or per-Group basis. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a identity, the policy applies to all rooms in your tenant, except any that have an explicit policy assignment. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - The alias of the Teams room that the IT admin is granting this PolicyName to. - - String - - String - - - None - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a identity, the policy applies to all rooms in your tenant, except any that have an explicit policy assignment. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The alias of the Teams room that the IT admin is granting this PolicyName to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Allows the user to indicate whether the cmdlet passes an output object through the pipeline, in this case, after a process is stopped. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Corresponds to the name of the policy under -Identity from the cmdlet. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsroomvideoteleconferencingpolicy - - - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - Grant - CsTeamsSurvivableBranchAppliancePolicy - - Grants a Survivable Branch Appliance (SBA) Policy to users in the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The identity of the user. - - String - - String - - - None - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant. To skip a warning when you do this operation, specify "-Global". - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The identity of the user. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Name of the policy to be assigned. The PolicyName is simply the policy Identity without the policy scope, i.e. the "Tag:" prefix. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamssurvivablebranchappliancepolicy - - - - - - Grant-CsTeamsUpdateManagementPolicy - Grant - CsTeamsUpdateManagementPolicy - - Use this cmdlet to grant a specific Teams Update Management policy to a user. - - - - Grants a specific Teams Update Management policy to a user or sets a specific Teams Update Management policy as the new effective global policy. - - - - Grant-CsTeamsUpdateManagementPolicy - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - - SwitchParameter - - - False - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsUpdateManagementPolicy - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTeamsUpdateManagementPolicy - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - - SwitchParameter - - - False - - - - - - Global - - Use this parameter to make the specified policy in -PolicyName the new effective global policy. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the identity of the user account the policy should be assigned to. - - String - - String - - - None - - - PassThru - - Including this parameter (which does not take a value) displays the user information when the cmdlet completes. Normally there is no output when this cmdlet is run. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The identity of the policy to be granted. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsUpdateManagementPolicy -PolicyName "Campaign Policy" -Identity kenmyer@litwareinc.com - - In this example, the policy "Campaign Policy" is granted to the user kenmyer@litwareinc.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsupdatemanagementpolicy - - - - - - Grant-CsTeamsUpgradePolicy - Grant - CsTeamsUpgradePolicy - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. - - - - TeamsUpgradePolicy allows administrators to manage the transition from Skype for Business to Teams. As an organization with Skype for Business starts to adopt Teams, administrators can manage the user experience in their organization using the concept of coexistence "mode". Mode defines in which client incoming chats and calls land as well as in what service (Teams or Skype for Business) new meetings are scheduled in. Mode also governs what functionality is available in the Teams client. Finally, prior to upgrading to TeamsOnly mode administrators can use TeamsUpgradePolicy to trigger notifications in the Skype for Business client to inform users of the pending upgrade. - This cmdlet enables admins to apply TeamsUpgradePolicy to either individual users or to set the default for the entire organization. - > [!NOTE] > Earlier versions of this cmdlet used to support -MigrateMeetingsToTeams option. This option is removed in later versions of the module. Tenants must run Start-CsExMeetingMigration. See Start-CsExMeetingMigrationService (https://learn.microsoft.com/powershell/module/microsoftteams/start-csexmeetingmigration). - Microsoft Teams provides all relevant instances of TeamsUpgradePolicy via built-in, read-only policies. The built-in instances are as follows: - |Identity|Mode|NotifySfbUsers|Comments| |---|---|---|---| |Islands|Islands|False|Default configuration. Allows a single user to evaluate both clients side by side. Chats and calls can land in either client, so users must always run both clients.| |IslandsWithNotify|Islands|True|Same as Islands and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBOnly|SfBOnly|False|Calling, chat functionality and meeting scheduling in the Teams app are disabled.| |SfBOnlyWithNotify|SfBOnly|True|Same as SfBOnly and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBWithTeamsCollab|SfBWithTeamsCollab|False|Calling, chat functionality and meeting scheduling in the Teams app are disabled.| |SfBWithTeamsCollabWithNotify|SfBWithTeamsCollab|True|Same as SfBWithTeamsCollab and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |SfBWithTeamsCollabAndMeetings|SfBWithTeamsCollabAndMeetings|False|Calling and chat functionality in the Teams app are disabled.| |SfBWithTeamsCollabAndMeetingsWithNotify|SfBWithTeamsCollabAndMeetings|True|Same as SfBWithTeamsCollabAndMeetings and it adds a banner in the Skype for Business client informing the user that Teams will soon replace Skype for Business.| |UpgradeToTeams|TeamsOnly|False|Use this mode to upgrade users to Teams and to prevent chat, calling, and meeting scheduling in Skype for Business.| |Global|Islands|False|| - > [!IMPORTANT] > TeamsUpgradePolicy can be assigned to any Teams user, whether that user have an on-premises account in Skype for Business Server or not. However, TeamsOnly mode can only be assigned to a user who is already homed in Skype for Business Online . This is because interop with Skype for Business users and federation as well as Microsoft 365 Phone System functionality are only possible if the user is homed in Skype for Business Online. In addition, you cannot assign TeamsOnly mode as the tenant-wide default if you have any Skype for Business on-premises deployment (which is detected by presence of a lyncdiscover DNS record that points to a location other than Office 365. To make these users TeamsOnly you must first move these users individually to the cloud using `Move-CsUser`. Once all users have been moved to the cloud, you can disable hybrid to complete migration to the cloud (https://learn.microsoft.com/skypeforbusiness/hybrid/cloud-consolidation-disabling-hybrid)and then apply TeamsOnly mode at the tenant level to ensure future users are TeamsOnly by default. - > [!NOTE] > > - TeamsUpgradePolicy is available in both Office 365 and in on-premises versions of Skype for Business Server, but there are differences: > - In Office 365, admins can specify both coexistence mode and whether to trigger notifications of pending upgrade. > - In on-premises with Skype for Business Server, the only available option is to trigger notifications. Skype for Business Server 2015 with CU8 or Skype for Business Server 2019 are required. > - TeamsUpgradePolicy in Office 365 can be granted to users homed on-premises in hybrid deployments of Skype for Business as follows: > - Coexistence mode is honored by users homed on-premises, however on-premises users cannot be granted the UpgradeToTeams instance (mode=TeamsOnly) of TeamsUpgradePolicy. To be upgraded to TeamsOnly mode, users must be either homed in Skype for Business Online or have no Skype account anywhere. > - The NotifySfBUsers setting of Office 365 TeamsUpgradePolicy is not honored by users homed on-premises. Instead, the on-premises version of TeamsUpgradePolicy must be used. > - In Office 365, all relevant instances of TeamsUpgradePolicy are built into the system, so there is no corresponding New cmdlet available. In contrast, Skype for Business Server does not contain built-in instances, so the New cmdlet is available on-premises. Only NotifySfBUsers property is available in on-premises. > - When granting a user a policy with mode=TeamsOnly or mode=SfBWithTeamsCollabAndMeetings, by default, meetings organized by that user will be migrated to Teams. For details, see Using the Meeting Migration Service (MMS) (https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms). - When users are in any of the Skype for Business modes (SfBOnly, SfBWithTeamsCollab, SfBWithTeamsCollabAndMeetings), calling and chat functionality in the Teams app are disabled (but chat in the context of a Teams meeting is still allowed). Similarly, when users are in the SfBOnly or SfBWithTeamsCollab modes, meeting scheduling is disabled. For more details, see Migration and interoperability guidance for organizations using Teams together with Skype for Business (https://learn.microsoft.com/microsoftteams/migration-interop-guidance-for-teams-with-skype). - The `Grant-CsTeamsUpgradePolicy` cmdlet checks the configuration of the corresponding settings in TeamsMessagingPolicy, TeamsCallingPolicy, and TeamsMeetingPolicy to determine if those settings would be superceded by TeamsUpgradePolicy and if so, an informational message is provided in PowerShell. It is not necessary to set these other policy settings. This is for informational purposes only. Below is an example of what the PowerShell warning looks like: - `Grant-CsTeamsUpgradePolicy -Identity user1@contoso.com -PolicyName SfBWithTeamsCollab` WARNING : The user `user1@contoso.com` currently has enabled values for: AllowUserChat, AllowPrivateCalling, AllowPrivateMeetingScheduling, AllowChannelMeetingScheduling, however these values will be ignored. This is because you are granting this user TeamsUpgradePolicy with mode=SfBWithTeamsCollab, which causes the Teams client to behave as if they are disabled. - > [!NOTE] > These warning messages are not affected by the -WarningAction parameter. - - - - Grant-CsTeamsUpgradePolicy - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - Grant-CsTeamsUpgradePolicy - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - Grant-CsTeamsUpgradePolicy - - Identity - - The user you want to grant policy to. This can be specified as SIP address, UserPrincipalName, or ObjectId. - - UserIdParameter - - UserIdParameter - - - None - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - Use this switch if you want to grant the specified policy to be the default policy for all users in the tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - The user you want to grant policy to. This can be specified as SIP address, UserPrincipalName, or ObjectId. - - UserIdParameter - - UserIdParameter - - - None - - - MigrateMeetingsToTeams - - Not supported anymore, see the Description section. - - Boolean - - Boolean - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams call hold policy. - By default, the cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the policy instance. - - Object - - Object - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Do not use. - - Object - - Object - - - None - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------- Example 1: Grant Policy to an individual user -------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName UpgradeToTeams -Identity mike@contoso.com - - The above cmdlet assigns the "UpgradeToTeams" policy to user Mike@contoso.com. This effectively upgrades the user to Teams only mode. This command will only succeed if the user does not have an on-premises Skype for Business account. - - - - ------- Example 2: Remove Policy for an individual user ------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName $null -Identity mike@contoso.com - - The above cmdlet removes any policy changes made to user Mike@contoso.com and effectively Inherits the global tenant setting for teams Upgrade. - - - - --------- Example 3: Grant Policy to the entire tenant --------- - PS C:\> Grant-CsTeamsUpgradePolicy -PolicyName SfBOnly -Global - - To grant a policy to all users in the org (except any that have an explicit policy assigned), omit the identity parameter. If you do not specify the -Global parameter, you will be prompted to confirm the operation. - - - - Example 4 Get a report on existing TeamsUpgradePolicy users (Screen Report) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* - - You can get the output on the screen, on CSV or Html format. For Screen Report. - - - - Example 5 Get a report on existing TeamsUpgradePolicy users (CSV Report) - $objUsers = Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* -$objusers | ConvertTo-Csv -NoTypeInformation | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.csv" - - This will create a CSV file on the Desktop of the current user with the name "TeamsUpgrade.csv" - - - - Example 6 Get a report on existing TeamsUpgradePolicy users (HTML Report) - $objUsers = Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* -$objusers | ConvertTo-Html | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.html" - - After running these lines will create an HTML file on the Desktop of the current user with the name "TeamUpgrade.html" - - - - Example 7 Get a report on existing TeamsUpgradePolicy users (CSV Report - Oneliner version) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* | ConvertTo-Csv -NoTypeInformation | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.csv" - - This will create a CSV file on the Desktop of the current user with the name "TeamsUpgrade.csv" - - - - Example 8 Get a report on existing TeamsUpgradePolicy users (HTML Report - Oneliner Version) - Get-CSOnlineUser | select UserPrincipalName, teamsupgrade* | ConvertTo-Html | Out-File "$env:USERPROFILE\desktop\TeamsUpgrade.html" - - After running these lines will create an HTML file on the Desktop of the current user with the name "TeamUpgrade.html" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/grant-csteamsupgradepolicy - - - Migration and interoperability guidance for organizations using Teams together with Skype for Business - https://learn.microsoft.com/MicrosoftTeams/migration-interop-guidance-for-teams-with-skype - - - Using the Meeting Migration Service (MMS) - https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms - - - Coexistence with Skype for Business - https://learn.microsoft.com/microsoftteams/coexistence-chat-calls-presence - - - Get-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradeconfiguration - - - Set-CsTeamsUpgradeConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsupgradeconfiguration - - - Get-CsTeamsUpgradePolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsupgradepolicy - - - - - - Grant-CsTeamsVideoInteropServicePolicy - Grant - CsTeamsVideoInteropServicePolicy - - The Grant-CsTeamsVideoInteropServicePolicy cmdlet allows you to assign a pre-constructed policy across your whole organization or only to specific users. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization. Microsoft provides pre-constructed policies for each of our supported partners that allow you to designate which of the partners to use for cloud video interop. - User needs to be assigned one policy from admin to create a CVI meeting. There could be multiple provides in a tenant, but user can only be assigned only one policy(provide). FAQ : - Q: After running `Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy>` to assign a policy to the whole tenant, the result of `Get-CsOnlineUser -Identity {User Identity} | Format-List TeamsVideoInteropServicePolicy` that checks if the User Policy is empty. - A: Global/Tenant level Policy Assignment can be checked by running `Get-CsTeamsVideoInteropServicePolicy Global`. - Q: I assigned CVI policy to a user, but I can't create a VTC meeting with that policy or I made changes to policy assignment, but it didn't reflect on new meetings I created. - A: The policy is cached for 6 hours. Changes to the policy are updated after the cache expires. Check for your changes after 6 hours. Frequently used commands that can help identify the policy assignment : - - Command to get full list of user along with their CVI policy: `Get-CsOnlineUser | Format-List UserPrincipalName,TeamsVideoInteropServicePolicy` - - Command to get the policy assigned to the whole tenant: `Get-CsTeamsVideoInteropServicePolicy Global` - - - - Grant-CsTeamsVideoInteropServicePolicy - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Global - - Use this flag to override the warning when assigning the global policy for your tenant. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVideoInteropServicePolicy - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVideoInteropServicePolicy - - Identity - - {{Fill Identity Description}} - - UserIdParameter - - UserIdParameter - - - None - - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - Internal Microsoft use only. - - Fqdn - - Fqdn - - - None - - - Global - - Use this flag to override the warning when assigning the global policy for your tenant. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - {{Fill Identity Description}} - - UserIdParameter - - UserIdParameter - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. By default, the Grant-CsTeamsVideoInteropServicePolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specify the pre-constructed policy that you would like to assign to your tenant or a particular user. You can get the policies available for your organization using the cmdlet Get-CsTeamsVideoInteropServicePolicy. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.AD.UserIdParameter - - - - - - - - - - System.Object - - - - - - - - - - - - - - ------ Example 1: The whole tenant has the same provider ------ - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | $null> -Global - - Specify the provider for the whole tenant or use the value $null to remove the tenant-level provider and let the whole tenant fall back to the Global policy. - - - - Example 2: The tenant has two (or three) interop service providers - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | $null> -Identity <UserId> - - Specify each user with the Identity parameter, and use Provider-1 or Provider-2 for the value of the PolicyName parameter. Use the value $null to remove the provider and let the user's provider fallback to Global policy. - - - - Example 3: The tenant has a default interop service provider, but specific users (say IT folks) want to pilot another interop provider. - Grant-CsTeamsVideoInteropServicePolicy -PolicyName <Identity of the Policy | ServiceProviderDisabled> [-Identity <UserId>] - - - To assign Provider-1 as the default interop service provider, don't use the Identity parameter and use the value Provider-1 for the PolicyName parameter. - - For specific users to try Provider-2, specify each user with the Identity parameter, and use the value Provider-2 for the PolicyName parameter. - - For specific users who need to disable CVI, specify each user with the Identity parameter and use the value ServiceProviderDisabled for the PolicyName parameter. - - - - Example 4: Cloud Video Interop has been disabled for the entire tenant, except for those users that have an explicit policy assigned to them. - Grant-CsTeamsVideoInteropServicePolicy -PolicyName ServiceProviderDisabled - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvideointeropservicepolicy - - - - - - Grant-CsTeamsVoiceApplicationsPolicy - Grant - CsTeamsVoiceApplicationsPolicy - - Assigns a per-user Teams voice applications policy to one or more users. TeamsVoiceApplications policy governs what permissions the supervisors/users have over auto attendants and call queues. - - - - TeamsVoiceApplicationsPolicy is used for Supervisor Delegated Administration which allows tenant admins to permit certain users to make changes to auto attendant and call queue configurations. - - - - Grant-CsTeamsVoiceApplicationsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVoiceApplicationsPolicy - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsVoiceApplicationsPolicy - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams voice applications policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - When you use this cmdlet without specifying a user identity, the policy applies to all users in your tenant, except any that have an explicit policy assignment. To skip a warning when you do this operation, specify this parameter. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - Indicates the Identity of the user account to be assigned the per-user Teams voice applications policy. User Identities can be specified using one of the following formats: the user's SIP address, the user's user principal name (UPN), or the user's Active Directory display name (for example, Ken Myer). - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user account being assigned the Teams voice applications policy. By default, the Grant-CsTeamsVoiceApplicationsPolicy cmdlet does not pass objects through the pipeline. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - "Name" of the policy to be assigned. The PolicyName is simply the policy Identity minus the policy scope (the "tag:" prefix). For example, a policy with the Identity tag:Redmond has a PolicyName equal to Redmond; likewise, a policy with the Identity tag:SDAAllowAllTeamsVoiceApplicationsPolicy has a PolicyName equal to SDAAllowAllTeamsVoiceApplicationsPolicy. - To unassign a per-user policy previously assigned to a user, set the PolicyName to a null value ($Null). - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Grant-CsTeamsVoiceApplicationsPolicy -Identity "Ken Myer" -PolicyName "SDA-Allow-All" - - The command shown in Example 1 assigns the per-user Teams voice applications policy SDA-Allow-All to the user with the display name "Ken Myer". - - - - -------------------------- EXAMPLE 2 -------------------------- - Grant-CsTeamsVoiceApplicationsPolicy -PolicyName "SDA-Allow-All" -Global - - Example 2 assigns the per-user online voice routing policy "SDA-Allow-All to all the users in the tenant, except any that have an explicit policy assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsvoiceapplicationspolicy - - - Get-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsvoiceapplicationspolicy - - - Set-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsvoiceapplicationspolicy - - - Remove-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsvoiceapplicationspolicy - - - New-CsTeamsVoiceApplicationsPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsvoiceapplicationspolicy - - - - - - Grant-CsTeamsWorkLoadPolicy - Grant - CsTeamsWorkLoadPolicy - - This cmdlet applies an instance of the Teams Workload policy to users or groups in a tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Grant-CsTeamsWorkLoadPolicy - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsWorkLoadPolicy - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Grant-CsTeamsWorkLoadPolicy - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Global - - This is the equivalent to `-Identity Global`. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - This is the identifier of the group that the policy should be assigned to. - - String - - String - - - None - - - Identity - - Specifies the identity of the target user. - Example: <testuser@test.onmicrosoft.com> - Example: 98403f08-577c-46dd-851a-f0460a13b03d - Use the "Global" Identity if you wish to set the policy for the entire tenant. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - Specifies the name of the policy to be assigned. The PolicyName is the policy identity minus the policy scope ("tag:"), for example, a policy that has an identity of "Tag:Enabled" has a PolicyName of "Enabled". - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -PolicyName Test -Identity testuser@test.onmicrosoft.com - - Assigns a given policy to a user. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Group f13d6c9d-ce76-422c-af78-b6018b4d9c80 -PolicyName Test - - Assigns a given policy to a group. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Global -PolicyName Test - - Assigns a given policy to the tenant. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Grant-CsTeamsWorkLoadPolicy -Global -PolicyName Test - - > [!NOTE] > Using `$null` in place of a policy name can be used to unassigned a policy instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - - - - Grant-CsTenantDialPlan - Grant - CsTenantDialPlan - - Use the Grant-CsTenantDialPlan cmdlet to assign an existing tenant dial plan to a user, to a group of users, or to set the Global policy instance. - - - - The Grant-CsTenantDialPlan cmdlet assigns an existing tenant dial plan to a user, a group of users, or sets the Global policy instance. Tenant dial plans provide information that is required for Enterprise Voice users to make telephone calls. Users who do not have a valid tenant dial plan cannot make calls by using Enterprise Voice. A tenant dial plan determines such things as how normalization rules are applied. - You can check whether a user has been granted a per-user tenant dial plan by calling a command in this format: `Get-CsUserPolicyAssignment -Identity "<user name>" -PolicyType TenantDialPlan.` - - - - Grant-CsTenantDialPlan - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - - SwitchParameter - - - False - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - - Grant-CsTenantDialPlan - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - Grant-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the user to whom the policy should be assigned. - - String - - String - - - None - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - - SwitchParameter - - - False - - - - - - Global - - > Applicable: Microsoft Teams - Sets the parameters of the Global policy instance to the values in the specified policy instance. - - SwitchParameter - - SwitchParameter - - - False - - - Group - - > Applicable: Microsoft Teams - Specifies the group used for the group policy assignment. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the user to whom the policy should be assigned. - - String - - String - - - None - - - PassThru - - > Applicable: Microsoft Teams - {{ Fill PassThru Description }} - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - > Applicable: Microsoft Teams - The PolicyName parameter is the name of the tenant dial plan to be assigned. - - String - - String - - - None - - - Rank - - > Applicable: Microsoft Teams - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - Int32 - - Int32 - - - None - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Grant-CsTenantDialPlan -PolicyName Vt1tenantDialPlan9 -Identity Ken.Myer@contoso.com - - This example grants the Vt1tenantDialPlan9 dial plan to Ken.Meyer@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Grant-CsTenantDialPlan -Identity Ken.Myer@contoso.com -PolicyName $Null - - In Example 2, any dial plan previously assigned to the user Ken Myer is unassigned from that user; as a result, Ken Myer will be managed by the global dial plan. To unassign a custom tenant dial plan, set the PolicyName to a null value ($Null). - - - - -------------------------- Example 3 -------------------------- - Grant-CsTenantDialPlan -Group sales@contoso.com -Rank 10 -PolicyName Vt1tenantDialPlan9 - - This example grants the Vt1tenantDialPlan9 dial plan to members of the group sales@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - - - - Grant-CsUserPolicyPackage - Grant - CsUserPolicyPackage - - This cmdlet supports applying a policy package to users in a tenant. Note that there is a limit of 20 users you can apply the package to at a time. To apply a policy package to a larger number of users, consider using New-CsBatchPolicyPackageAssignmentOperation. - - - - This cmdlet supports applying a policy package to users in a tenant. Provide one or more user identities to assign the package with all the associated policies. The available policy packages and their definitions can be found by running Get-CsPolicyPackage. The recommended policy package for each user can be found by running Get-CsUserPolicyPackageRecommendation. For more information on policy packages, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - Grant-CsUserPolicyPackage - - Identity - - > Applicable: Microsoft Teams - A list of one or more users in the tenant. Note that there is a limit of 20 users you can apply the package to at a time. - - String[] - - String[] - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a specific policy package to apply. All possible policy package names can be found by running Get-CsPolicyPackage. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - A list of one or more users in the tenant. Note that there is a limit of 20 users you can apply the package to at a time. - - String[] - - String[] - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a specific policy package to apply. All possible policy package names can be found by running Get-CsPolicyPackage. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Grant-CsUserPolicyPackage -Identity 1bc0b35f-095a-4a37-a24c-c4b6049816ab,johndoe@example.com -PackageName Education_PrimaryStudent - - Applies the Education_PrimaryStudent policy package to two users in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csuserpolicypackage - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - Get-CsUserPolicyPackageRecommendation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackagerecommendation - - - Get-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackage - - - New-CsBatchPolicyPackageAssignmentOperation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchpolicypackageassignmentoperation - - - - - - Import-CsAutoAttendantHolidays - Import - CsAutoAttendantHolidays - - Use Import-CsAutoAttendantHolidays cmdlet to import holiday schedules of an existing Auto Attendant (AA) that were previously exported using the Export-CsAutoAttendantHolidays cmdlet. - - - - The Export-CsAutoAttendantHolidays cmdlet and the Import-CsAutoAttendantHolidays cmdlet enable you to export holiday schedules in your auto attendant and then later import that information. This can be extremely useful in a situation where you need to configure same holiday sets in multiple auto attendants. - The Export-CsAutoAttendantHolidays cmdlet returns the holiday schedule information in serialized form (as a byte array). The caller can then write the bytes to the disk to obtain a CSV file. Similarly, the Import-CsAutoAttendantHolidays cmdlet accepts the holiday schedule information as a byte array, which can be read from the aforementioned CSV file. The first line of the CSV file is considered a header record and is always ignored. NOTES : - Each line in the CSV file used by Export-CsAutoAttendantHolidays and Import-CsAutoAttendantHolidays cmdlet should be of the following format: - `HolidayName,StartDateTime1,EndDateTime1,StartDateTime2,EndDateTime2,...,StartDateTime10,EndDateTime10` - where - - HolidayName is the name of the holiday to be imported. - - StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet. - - EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date. - - - The first line of the CSV file is considered a header record and is always ignored by Import-CsAutoAttendantHolidays cmdlet. - - If the destination auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped. - - For holidays that are successfully imported, a default call flow is created which is configured without any greeting and simply disconnects the call on being executed. - - - - Import-CsAutoAttendantHolidays - - Identity - - The identity for the AA whose holiday schedules are to be imported. - - System.String - - System.String - - - None - - - Input - - The Input parameter specifies the holiday schedule information that is to be imported. - - System.Byte[] - - System.Byte[] - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the AA whose holiday schedules are to be imported. - - System.String - - System.String - - - None - - - Input - - The Input parameter specifies the holiday schedule information that is to be imported. - - System.Byte[] - - System.Byte[] - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Import-CsAutoAttendantHolidays cmdlet accepts a string as the Identity parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.HolidayImportResult - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $bytes = [System.IO.File]::ReadAllBytes("C:\Imports\Holidays.csv") -Import-CsAutoAttendantHolidays -Identity 6abea1cd-904b-520b-be96-1092cc096432 -Input $bytes - - In this example, the Import-CsAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path "C:\Imports\Holidays.csv" to an auto attendant with Identity of 6abea1cd-904b-520b-be96-1092cc096432. - - - - -------------------------- Example 2 -------------------------- - $bytes = [System.IO.File]::ReadAllBytes("C:\Imports\Holidays.csv") -Import-CsAutoAttendantHolidays -Identity 6abea1cd-904b-520b-be96-1092cc096432 -Input $bytes | Format-Table -Wrap -AutoSize - - In this example, the Import-CsAutoAttendantHolidays cmdlet is used to import holiday schedule information from a file at path "C:\Imports\Holidays.csv" to an auto attendant with Identity of 6abea1cd-904b-520b-be96-1092cc096432. The result of the import process is formatted as a table. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/import-csautoattendantholidays - - - Export-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/export-csautoattendantholidays - - - Get-CsAutoAttendantHolidays - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantholidays - - - - - - Import-CsOnlineAudioFile - Import - CsOnlineAudioFile - - Use the Import-CsOnlineAudioFile cmdlet to upload a new audio file. - - - - The Import-CsOnlineAudioFile cmdlet uploads a new audio file for use with the Auto Attendant (AA), Call Queue (CQ) service or Music on Hold for Microsoft Teams. - - - - Import-CsOnlineAudioFile - - ApplicationId - - > Applicable: Microsoft Teams - The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file will be used with an Auto Attendant, then it needs to be set to "OrgAutoAttendant". If the audio file will be used with a Call Queue, then it needs to be set to "HuntGroup". If the audio file will be used with Microsoft Teams, then it needs to be set to "TenantGlobal". - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - String - - String - - - None - - - Content - - > Applicable: Microsoft Teams - The Content parameter represents the content of the audio file. Supported formats are WAV (uncompressed, linear PCM with 8/16/32-bit depth in mono or stereo), WMA (mono only), and MP3. The audio file content cannot be more 5MB. - - Byte[] - - Byte[] - - - None - - - FileName - - > Applicable: Microsoft Teams - The FileName parameter is the name of the audio file. For example, the file name for the file C:\Media\Welcome.wav is Welcome.wav. - - String - - String - - - None - - - - - - ApplicationId - - > Applicable: Microsoft Teams - The ApplicationId parameter is the identifier for the application which will use this audio file. For example, if the audio file will be used with an Auto Attendant, then it needs to be set to "OrgAutoAttendant". If the audio file will be used with a Call Queue, then it needs to be set to "HuntGroup". If the audio file will be used with Microsoft Teams, then it needs to be set to "TenantGlobal". - Supported values: - - OrgAutoAttendant - - HuntGroup - - TenantGlobal - - String - - String - - - None - - - Content - - > Applicable: Microsoft Teams - The Content parameter represents the content of the audio file. Supported formats are WAV (uncompressed, linear PCM with 8/16/32-bit depth in mono or stereo), WMA (mono only), and MP3. The audio file content cannot be more 5MB. - - Byte[] - - Byte[] - - - None - - - FileName - - > Applicable: Microsoft Teams - The FileName parameter is the name of the audio file. For example, the file name for the file C:\Media\Welcome.wav is Welcome.wav. - - String - - String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile - - - - - - - - - When you import an audio file to be used for Auto Attendant or Call Queue, the audio file will automatically be marked for deletion (as seen by running Get-CsOnlineAudioFile) and it will be deleted after 48 to 72 hours from the time of import, unless the audio file is associated to an Auto Attendant and Call Queue before 48 hours after it was imported. - You are responsible for independently clearing and securing all necessary rights and permissions to use any music or audio file with your Microsoft Teams service, which may include intellectual property and other rights in any music, sound effects, audio, brands, names, and other content in the audio file from all relevant rights holders, which may include artists, actors, performers, musicians, songwriters, composers, record labels, music publishers, unions, guilds, rights societies, collective management organizations and any other parties who own, control or license the music copyrights, sound effects, audio and other intellectual property rights. - - - - - -------------------------- Example 1 -------------------------- - $content = [System.IO.File]::ReadAllBytes('C:\Media\Hello.wav') -$audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "Hello.wav" -Content $content - - This example creates a new audio file using the WAV content that has a filename of Hello.wav to be used with organizational auto attendants. The stored variable, $audioFile, will be used when running other cmdlets to update the audio file for Auto Attendant, for example New-CsAutoAttendantPrompt (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt). - - - - -------------------------- Example 2 -------------------------- - $content = [System.IO.File]::ReadAllBytes('C:\Media\MOH.wav') -$audioFile = Import-CsOnlineAudioFile -ApplicationId "HuntGroup" -FileName "MOH.wav" -Content $content - - This example creates a new audio file using the WAV content that has a filename of MOH.wav to be used as a Music On Hold file with a Call Queue. The stored variable, $audioFile, will be used with Set-CsCallQueue (https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallqueue)to provide the audio file id. - - - - -------------------------- Example 3 -------------------------- - $content = [System.IO.File]::ReadAllBytes('C:\Media\MOH.wav') -$audioFile = Import-CsOnlineAudioFile -ApplicationId TenantGlobal -FileName "MOH.wav" -Content $content - - This example creates a new audio file using the WAV content that has a filename of MOH.wav to be used as Music On Hold for Microsoft Teams. The stored variable, $audioFile, will be used with New-CsTeamsCallHoldPolicy (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallholdpolicy)to provide the audio file id. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Export-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/export-csonlineaudiofile - - - Get-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudiofile - - - Remove-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudiofile - - - - - - New-CsAgent - New - CsAgent - - Use the New-CsAgent cmdlet to create an AI Agent that can be associated with a Teams Phone Resource Account. - - - - Use the New-CsAgent cmdlet to create an AI Agent in the tenant. The AI Agent represents an external conversational provider (such as Microsoft Copilot Studio) that can answer calls on behalf of a Teams Phone Resource Account. After the agent is created, associate it with a Resource Account by using `New-CsOnlineApplicationInstanceAssociation`; the agent is not reachable until the association is made. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time. - - - - New-CsAgent - - Name - - The name of the AI Agent. - - String - - String - - - None - - - AIAgentId - - The ID of the agent as issued by the AI provider (for example, the Microsoft Copilot Studio agent ID). - - String - - String - - - None - - - AIAgentType - - The type of AI Agent provider. Currently supported value: MicrosoftCopilotStudio. - - String - - String - - - None - - - AIAgentTargetTagTemplateId - - Tag Template Id of this AI Agent. If given, this command will validate if the given tag template id exists or not. If the given Id of the tag template does not exist, this command will fail. - - System.String - - System.String - - - None - - - - - - Name - - The name of the AI Agent. - - String - - String - - - None - - - AIAgentId - - The ID of the agent as issued by the AI provider (for example, the Microsoft Copilot Studio agent ID). - - String - - String - - - None - - - AIAgentType - - The type of AI Agent provider. Currently supported value: MicrosoftCopilotStudio. - - String - - String - - - None - - - AIAgentTargetTagTemplateId - - Tag Template Id of this AI Agent. If given, this command will validate if the given tag template id exists or not. If the given Id of the tag template does not exist, this command will fail. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsAgent -Name "SmartAgent" -AIAgentId "9e6a9737-edbe-4452-9ec8-702944ef6a07" -AIAgentType "MicrosoftCopilotStudio" - - This example creates a new AI Agent that is associated with Microsoft Copilot Studio. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsAgent - - - Get-CsAgent - - - - Set-CsAgent - - - - Remove-CsAgent - - - - New-CsTagsTemplate - - - - New-CsOnlineApplicationInstanceAssociation - - - - - - - New-CsApplicationAccessPolicy - New - CsApplicationAccessPolicy - - Creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user. - - - - This cmdlet creates a new application access policy. Application access policy contains a list of application (client) IDs. When granted to a user, those applications will be authorized to access online meetings on behalf of that user. - - - - New-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Description - - Specifies the description of the policy. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - - - - - - - ---- Create a new application access policy with one app ID ---- - PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b7b" -Description "Some description" - - The command shown above shows how to create a new policy with one app IDs configured. - - - - - Create a new application access policy with multiple app IDs - - PS C:\> New-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds "d39597bf-8407-40ca-92ef-1ec26b885b71", "57caaef9-5ed0-48d5-8862-e5abfa71b3e1", "dc17674c-81d9-4adb-bfb2-8f6a442e4620" -Description "Some description" - - The command shown above shows how to create a new policy with a list of (three) app IDs configured. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csapplicationaccesspolicy - - - - - - New-CsAutoAttendant - New - CsAutoAttendant - - Use the New-CsAutoAttendant cmdlet to create a new Auto Attendant (AA). - - - - Auto Attendants (AAs) are a key element in the Office 365 Phone System. Each AA can be associated with phone numbers that allow callers to reach specific people in the organization through a directory lookup. Alternatively, it can route the calls to an operator, a user, another AA, or a call queue. - You can create new AAs by using the New-CsAutoAttendant cmdlet; each newly created AA gets assigned a random string that serves as the identity of the AA. - > [!IMPORTANT] > The following configuration parameters are currently only available in PowerShell and do not appear in Teams admin center: > > Authorized Users > - -HideAuthorizedUsers > > Dial by name > - -UserNameExtension > > The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. > > - -EnableMainLineAttendant > - -MainlineAttendantAgentVoiceId > - -AutoRecordingTemplateId NOTES : - - To setup your AA for calling, you need to create an application instance first using New-CsOnlineApplicationInstance (new-csonlineapplicationinstance.md) cmdlet , then associate it with your AA configuration using [New-CsOnlineApplicationInstanceAssociation](new-csonlineapplicationinstanceassociation.md)cmdlet. - The default call flow has the lowest precedence, and any custom call flow has a higher precedence and is executed if the schedule associated with it is in effect. - - Holiday call flows have higher priority than after-hours call flows. Thus, if a holiday schedule and an after-hours schedule are both in effect at a particular time, the call flow corresponding to the holiday call flow will be rendered. - - The default call flow can be used either as the 24/7 call flow if no other call flows are specified, or as the business hours call flow if an "after hours" call flow was specified together with the corresponding schedule and call handling association. - - If a user is present in both inclusion and exclusion scopes, then exclusion scope always takes priority, i.e., the user will not be able to be contacted through directory lookup feature. - - - - New-CsAutoAttendant - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - The Auto Recording template ID to apply to the Auto attendant. - > [!NOTE] > 1. Requires that Mainline attendant be enabled. > 1. The template must not have an audio file configured. - - String - - String - - - None - - - CallFlows - - The CallFlows parameter represents call flows, which are required if they are referenced in the CallHandlingAssociations parameter. - You can create CallFlows by using the New-CsAutoAttendantCallFlow (new-csautoattendantcallflow.md)cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - CallHandlingAssociations - - The CallHandlingAssociations parameter represents the call handling associations. The AA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect. - You can create CallHandlingAssociations by using the New-CsAutoAttendantCallHandlingAssociation (new-csautoattendantcallhandlingassociation.md)cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - DefaultCallFlow - - The DefaultCallFlow parameter is the flow to be executed when no other call flow is in effect (for example, during business hours). - You can create the DefaultCallFlow by using the New-CsAutoAttendantCallFlow (new-csautoattendantcallflow.md)cmdlet. - - Object - - Object - - - None - - - EnableMainlineAttendant - - The EnableMainlineAttendant parameter enables Mainline Attendant features for this Auto attendant. - > [!NOTE] > 1. The Auto attendant must have a Resource account assigned > 1. `-LanguageId` options are limited when Mainline Attendant is enabled > 1. `-EnableVoiceResponse` will be enabled automatically - - - SwitchParameter - - - False - - - MainlineAttendantAgentVoiceId - - The MainlineAttendantAgentVoiceId parameter sets the voice that will be used with Mainline Attendant. - See Get-CsMainlineAttendantSupportedVoices (get-csmainlineattendantsupportedvoices.md)for a list of supported voices. - PARAMVALUE: Alloy | Echo | Shimmer - - - SwitchParameter - - - False - - - EnableVoiceResponse - - The EnableVoiceResponse parameter indicates whether voice response for Auto attendant is enabled. - - - SwitchParameter - - - False - - - ExclusionScope - - Specifies the users to which call transfers are not allowed through directory lookup feature. If not specified, no user in the organization is excluded from directory lookup. - Dial scopes can be created by using the New-CsAutoAttendantDialScope (new-csautoattendantdialscope.md)cmdlet. - - Object - - Object - - - None - - - HideAuthorizedUsers - - The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - InclusionScope - - Specifies the users to which call transfers are allowed through directory lookup feature. If not specified, all users in the organization can be reached through directory lookup. - Dial scopes can be created by using the New-CsAutoAttendantDialScope (new-csautoattendantdialscope.md)cmdlet. - - Object - - Object - - - None - - - LanguageId - - The LanguageId parameter is the language that is used to read text-to-speech (TTS) prompts. - See Get-CsMainlineAttendantSupportedLanguages (get-csmainlineattendantsupportedlanguages.md)for a list of languages supported with Mainline attendant. - See Get-CsAutoAttendantSupportedLanguage (get-csautoattendantsupportedlanguage.md)for a list of languages supported with Auto attendant. - - System.String - - System.String - - - None - - - Name - - The Name parameter is a friendly name that is assigned to the AA. - - System.String - - System.String - - - None - - - Operator - - The Operator parameter represents the SIP address or PSTN number of the operator. - You can create callable entities by using the New-CsAutoAttendantCallableEntity (new-csautoattendantcallableentity.md)cmdlet. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - TimeZoneId - - The TimeZoneId parameter represents the AA time zone. All schedules are evaluated based on this time zone. - See Get-CsAutoAttendantSupportedTimeZone (get-csautoattendantsupportedtimezone.md)for a list of supported time zones. - - System.String - - System.String - - - None - - - UserNameExtension - - The UserNameExtension parameter is a string that specifies how to extend usernames in dial search by appending additional information after the name. This parameter is used in dial search when multiple search results are found, as it helps to distinguish users with similar names. Possible values are: - - None: Default value. No additional information is provided. -In this case, if there are two John Smiths, the caller will hear: -For John Smith, press 1.<br> For John Smith, press 2. -- Office: Adds office information from the user profile. - - Department: Adds department information from the user profile. - - System.String - - System.String - - - None - - - VoiceId - - The VoiceId parameter represents the voice that is used to read text-to-speech (TTS) prompts. - See Get-CsMainlineAttendantSupportedVoices (get-csmainlineattendantsupportedvoices.md)for a list of voices supported with Mainline attendant. - See Get-CsAutoAttendantSupportedLanguage (get-csautoattendantsupportedlanguage.md)for a list of voices supported with Auto attendant - - System.String - - System.String - - - None - - - - - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - The Auto Recording template ID to apply to the Auto attendant. - > [!NOTE] > 1. Requires that Mainline attendant be enabled. > 1. The template must not have an audio file configured. - - String - - String - - - None - - - CallFlows - - The CallFlows parameter represents call flows, which are required if they are referenced in the CallHandlingAssociations parameter. - You can create CallFlows by using the New-CsAutoAttendantCallFlow (new-csautoattendantcallflow.md)cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - CallHandlingAssociations - - The CallHandlingAssociations parameter represents the call handling associations. The AA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect. - You can create CallHandlingAssociations by using the New-CsAutoAttendantCallHandlingAssociation (new-csautoattendantcallhandlingassociation.md)cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - DefaultCallFlow - - The DefaultCallFlow parameter is the flow to be executed when no other call flow is in effect (for example, during business hours). - You can create the DefaultCallFlow by using the New-CsAutoAttendantCallFlow (new-csautoattendantcallflow.md)cmdlet. - - Object - - Object - - - None - - - EnableMainlineAttendant - - The EnableMainlineAttendant parameter enables Mainline Attendant features for this Auto attendant. - > [!NOTE] > 1. The Auto attendant must have a Resource account assigned > 1. `-LanguageId` options are limited when Mainline Attendant is enabled > 1. `-EnableVoiceResponse` will be enabled automatically - - SwitchParameter - - SwitchParameter - - - False - - - MainlineAttendantAgentVoiceId - - The MainlineAttendantAgentVoiceId parameter sets the voice that will be used with Mainline Attendant. - See Get-CsMainlineAttendantSupportedVoices (get-csmainlineattendantsupportedvoices.md)for a list of supported voices. - PARAMVALUE: Alloy | Echo | Shimmer - - SwitchParameter - - SwitchParameter - - - False - - - EnableVoiceResponse - - The EnableVoiceResponse parameter indicates whether voice response for Auto attendant is enabled. - - SwitchParameter - - SwitchParameter - - - False - - - ExclusionScope - - Specifies the users to which call transfers are not allowed through directory lookup feature. If not specified, no user in the organization is excluded from directory lookup. - Dial scopes can be created by using the New-CsAutoAttendantDialScope (new-csautoattendantdialscope.md)cmdlet. - - Object - - Object - - - None - - - HideAuthorizedUsers - - The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - InclusionScope - - Specifies the users to which call transfers are allowed through directory lookup feature. If not specified, all users in the organization can be reached through directory lookup. - Dial scopes can be created by using the New-CsAutoAttendantDialScope (new-csautoattendantdialscope.md)cmdlet. - - Object - - Object - - - None - - - LanguageId - - The LanguageId parameter is the language that is used to read text-to-speech (TTS) prompts. - See Get-CsMainlineAttendantSupportedLanguages (get-csmainlineattendantsupportedlanguages.md)for a list of languages supported with Mainline attendant. - See Get-CsAutoAttendantSupportedLanguage (get-csautoattendantsupportedlanguage.md)for a list of languages supported with Auto attendant. - - System.String - - System.String - - - None - - - Name - - The Name parameter is a friendly name that is assigned to the AA. - - System.String - - System.String - - - None - - - Operator - - The Operator parameter represents the SIP address or PSTN number of the operator. - You can create callable entities by using the New-CsAutoAttendantCallableEntity (new-csautoattendantcallableentity.md)cmdlet. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - TimeZoneId - - The TimeZoneId parameter represents the AA time zone. All schedules are evaluated based on this time zone. - See Get-CsAutoAttendantSupportedTimeZone (get-csautoattendantsupportedtimezone.md)for a list of supported time zones. - - System.String - - System.String - - - None - - - UserNameExtension - - The UserNameExtension parameter is a string that specifies how to extend usernames in dial search by appending additional information after the name. This parameter is used in dial search when multiple search results are found, as it helps to distinguish users with similar names. Possible values are: - - None: Default value. No additional information is provided. -In this case, if there are two John Smiths, the caller will hear: -For John Smith, press 1.<br> For John Smith, press 2. -- Office: Adds office information from the user profile. - - Department: Adds department information from the user profile. - - System.String - - System.String - - - None - - - VoiceId - - The VoiceId parameter represents the voice that is used to read text-to-speech (TTS) prompts. - See Get-CsMainlineAttendantSupportedVoices (get-csmainlineattendantsupportedvoices.md)for a list of voices supported with Mainline attendant. - See Get-CsAutoAttendantSupportedLanguage (get-csautoattendantsupportedlanguage.md)for a list of voices supported with Auto attendant - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $operatorObjectId = (Get-CsOnlineUser operator@contoso.com).Identity -$operatorEntity = New-CsAutoAttendantCallableEntity -Identity $operatorObjectId -Type User - -$greetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!" -$menuOptionZero = New-CsAutoAttendantMenuOption -Action TransferCallToOperator -DtmfResponse Tone0 -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign or press 0 to reach the operator." -$defaultMenu = New-CsAutoAttendantMenu -Name "Default menu" -Prompts @($menuPrompt) -MenuOptions @($menuOptionZero) -EnableDialByName -$defaultCallFlow = New-CsAutoAttendantCallFlow -Name "Default call flow" -Greetings @($greetingPrompt) -Menu $defaultMenu - -$afterHoursGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso! Unfortunately, you have reached us outside of our business hours. We value your call please call us back Monday to Friday, between 9 A.M. to 12 P.M. and 1 P.M. to 5 P.M. Goodbye!" -$automaticMenuOption = New-CsAutoAttendantMenuOption -Action Disconnect -DtmfResponse Automatic -$afterHoursMenu=New-CsAutoAttendantMenu -Name "After Hours menu" -MenuOptions @($automaticMenuOption) -$afterHoursCallFlow = New-CsAutoAttendantCallFlow -Name "After Hours call flow" -Greetings @($afterHoursGreetingPrompt) -Menu $afterHoursMenu - -$timerange1 = New-CsOnlineTimeRange -Start 09:00 -end 12:00 -$timerange2 = New-CsOnlineTimeRange -Start 13:00 -end 17:00 -$afterHoursSchedule = New-CsOnlineSchedule -Name "After Hours Schedule" -WeeklyRecurrentSchedule -MondayHours @($timerange1, $timerange2) -TuesdayHours @($timerange1, $timerange2) -WednesdayHours @($timerange1, $timerange2) -ThursdayHours @($timerange1, $timerange2) -FridayHours @($timerange1, $timerange2) -Complement - -$afterHoursCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $afterHoursSchedule.Id -CallFlowId $afterHoursCallFlow.Id - -$inclusionScopeGroupIds = @("4c3053a6-20bf-43df-bf7a-156124168856") -$inclusionScope = New-CsAutoAttendantDialScope -GroupScope -GroupIds $inclusionScopeGroupIds - -$aa = New-CsAutoAttendant -Name "Main auto attendant" -DefaultCallFlow $defaultCallFlow -EnableVoiceResponse -CallFlows @($afterHoursCallFlow) -CallHandlingAssociations @($afterHoursCallHandlingAssociation) -LanguageId "en-US" -TimeZoneId "UTC" -Operator $operatorEntity -InclusionScope $inclusionScope - - This example creates a new AA named Main auto attendant that has the following properties: - - It sets a default call flow. - - It sets an after-hours call flow. - - It enables voice response. - - The default language is en-US. - - The time zone is set to UTC. - - An inclusion scope is specified. - - - - -------------------------- Example 2 -------------------------- - $operatorObjectId = (Get-CsOnlineUser operator@contoso.com).Identity -$operatorEntity = New-CsAutoAttendantCallableEntity -Identity $operatorObjectId -Type User - -$dcfGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!" -$dcfMenuOptionZero = New-CsAutoAttendantMenuOption -Action TransferCallToOperator -DtmfResponse Tone0 -$dcfMenuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign or press 0 to reach the operator." -$dcfMenu=New-CsAutoAttendantMenu -Name "Default menu" -Prompts @($dcfMenuPrompt) -MenuOptions @($dcfMenuOptionZero) -EnableDialByName -$defaultCallFlow = New-CsAutoAttendantCallFlow -Name "Default call flow" -Greetings @($dcfGreetingPrompt) -Menu $dcfMenu - -$afterHoursGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso! Unfortunately, you have reached us outside of our business hours. We value your call please call us back Monday to Friday, between 9 A.M. to 12 P.M. and 1 P.M. to 5 P.M. Goodbye!" -$afterHoursMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$afterHoursMenu=New-CsAutoAttendantMenu -Name "After Hours menu" -MenuOptions @($afterHoursMenuOption) -$afterHoursCallFlow = New-CsAutoAttendantCallFlow -Name "After Hours call flow" -Greetings @($afterHoursGreetingPrompt) -Menu $afterHoursMenu - -$timerange1 = New-CsOnlineTimeRange -Start 09:00 -end 12:00 -$timerange2 = New-CsOnlineTimeRange -Start 13:00 -end 17:00 -$afterHoursSchedule = New-CsOnlineSchedule -Name "After Hours Schedule" -WeeklyRecurrentSchedule -MondayHours @($timerange1, $timerange2) -TuesdayHours @($timerange1, $timerange2) -WednesdayHours @($timerange1, $timerange2) -ThursdayHours @($timerange1, $timerange2) -FridayHours @($timerange1, $timerange2) -Complement - -$afterHoursCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $afterHoursSchedule.Id -CallFlowId $afterHoursCallFlow.Id - -$christmasGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Our offices are closed for Christmas from December 24 to December 26. Please call back later." -$christmasMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$christmasMenu = New-CsAutoAttendantMenu -Name "Christmas Menu" -MenuOptions @($christmasMenuOption) -$christmasCallFlow = New-CsAutoAttendantCallFlow -Name "Christmas" -Greetings @($christmasGreetingPrompt) -Menu $christmasMenu - -$dtr = New-CsOnlineDateTimeRange -Start "24/12/2017" -End "26/12/2017" -$christmasSchedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr) - -$christmasCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $christmasSchedule.Id -CallFlowId $christmasCallFlow.Id - -$aa = New-CsAutoAttendant -Name "Main auto attendant" -DefaultCallFlow $defaultCallFlow -EnableVoiceResponse -CallFlows @($afterHoursCallFlow, $christmasCallFlow) -CallHandlingAssociations @($afterHoursCallHandlingAssociation, $christmasCallHandlingAssociation) -LanguageId "en-US" -TimeZoneId "UTC" -Operator $operatorEntity - - This example creates a new AA named Main auto attendant that has the following properties: - - It sets a default call flow. - - It sets an after-hours call flow. - - It sets a call flow for Christmas holiday. - - It enables voice response. - - The default language is en-US. - - The time zone is set to UTC. - - - - -------------------------- Example 3 -------------------------- - # Create Christmas Schedule -$dtr = New-CsOnlineDateTimeRange -Start "24/12/2017" -End "26/12/2017" -$christmasSchedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr) - -# Create First Auto Attendant -$dcfGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso Customer Support!" -$dcfMenuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$dcfMenu = New-CsAutoAttendantMenu -Name "Default menu" -Prompts @($dcfMenuPrompt) -EnableDialByName -DirectorySearchMethod ByName -$defaultCallFlow = New-CsAutoAttendantCallFlow -Name "Default call flow" -Greetings @($dcfGreetingPrompt) -Menu $dcfMenu - -$christmasGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Our offices are closed for Christmas from December 24 to December 26. Please call back later." -$christmasMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$christmasMenu = New-CsAutoAttendantMenu -Name "Christmas Menu" -MenuOptions @($christmasMenuOption) -$christmasCallFlow = New-CsAutoAttendantCallFlow -Name "Christmas" -Greetings @($christmasGreetingPrompt) -Menu $christmasMenu - -$christmasCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $christmasSchedule.Id -CallFlowId $christmasCallFlow.Id - -New-CsAutoAttendant -Name "Customer Support Auto Attendant" -DefaultCallFlow $defaultCallFlow -EnableVoiceResponse -CallFlows @($afterHoursCallFlow, $christmasCallFlow) -CallHandlingAssociations @($afterHoursCallHandlingAssociation, $christmasCallHandlingAssociation) -LanguageId "en-US" -TimeZoneId "UTC" - -# Id : a65b3434-05a1-48ed-883d-e3ca35a60af8 -# TenantId : f6b89083-a2f8-55cc-9f62-33b73af44164 -# Name : Customer Support Auto Attendant -# LanguageId : en-US -# VoiceId : Female -# DefaultCallFlow : Default call flow -# Operator : -# TimeZoneId : UTC -# VoiceResponseEnabled : True -# CallFlows : Christmas -# Schedules : Christmas -# CallHandlingAssociations : Holiday(1) -# Status : Successful -# DialByNameResourceId : caddaea5-c001-5a09-b997-9d3a33e834f2 -# DirectoryLookupScope : -# ApplicationInstances : - -# Create Second Auto Attendant -$dcfGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso Store!" -$dcfMenuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$dcfMenu = New-CsAutoAttendantMenu -Name "Default menu" -Prompts @($dcfMenuPrompt) -EnableDialByName -DirectorySearchMethod ByName -$defaultCallFlow = New-CsAutoAttendantCallFlow -Name "Default call flow" -Greetings @($dcfGreetingPrompt) -Menu $dcfMenu - -$christmasGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Our offices are closed for Christmas from December 24 to December 26. Please call back later." -$christmasMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$christmasMenu = New-CsAutoAttendantMenu -Name "Christmas Menu" -MenuOptions @($christmasMenuOption) -$christmasCallFlow = New-CsAutoAttendantCallFlow -Name "Christmas" -Greetings @($christmasGreetingPrompt) -Menu $christmasMenu - -$christmasCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $christmasSchedule.Id -CallFlowId $christmasCallFlow.Id - -New-CsAutoAttendant -Name "Main auto attendant" -DefaultCallFlow $defaultCallFlow -EnableVoiceResponse -CallFlows @($afterHoursCallFlow, $christmasCallFlow) -CallHandlingAssociations @($afterHoursCallHandlingAssociation, $christmasCallHandlingAssociation) -LanguageId "en-US" -TimeZoneId "UTC" - -# Id : 236450c4-9f1e-4c19-80eb-d68819d36a15 -# TenantId : f6b89083-a2f8-55cc-9f62-33b73af44164 -# Name : Main auto attendant -# LanguageId : en-US -# VoiceId : Female -# DefaultCallFlow : Default call flow -# Operator : -# TimeZoneId : UTC -# VoiceResponseEnabled : True -# CallFlows : Christmas -# Schedules : Christmas -# CallHandlingAssociations : Holiday(1) -# Status : Successful -# DialByNameResourceId : 5abfa626-8f80-54ff-97eb-03c2aadcc329 -# DirectoryLookupScope : -# ApplicationInstances : - -# Show the auto attendants associated with this holiday schedule: -Get-CsOnlineSchedule $christmasSchedule.Id - -# Id : 578745b2-1f94-4a38-844c-6bf6996463ee -# Name : Christmas -# Type : Fixed -# WeeklyRecurrentSchedule : -# FixedSchedule : 24/12/2017 00:00 - 26/12/2017 00:00 -# AssociatedConfigurationIds : a65b3434-05a1-48ed-883d-e3ca35a60af8, 236450c4-9f1e-4c19-80eb-d68819d36a15 - - This example creates two new AAs named Main auto attendant and Customer Support Auto Attendant . Both AAs share the same Christmas holiday schedule. This was done by reusing the Schedule ID of the Christmas holiday when creating the call handling associations for those two AAs using New-CsAutoAttendantCallHandlingAssociation (new-csautoattendantcallhandlingassociation.md)cmdlet. - We can see when we ran the Get-CsOnlineSchedule (get-csonlineschedule.md)cmdlet at the end, to get the Christmas Holiday schedule information, that the configuration IDs for the newly created AAs have been added to the `AssociatedConfigurationIds` properties of that schedule. This means any updates made to this schedule would reflect in both associated AAs. - Removing an association between an AA and a schedule is as simple as deleting the CallHandlingAssociation of that schedule in the AA you want to modify. Please refer to Set-CsAutoAttendant (set-csautoattendant.md)cmdlet documentation for examples on how to do that. - - - - -------------------------- Example 4 -------------------------- - $aaName = "Main Auto Attendant" -$language = "en-US" -$greetingText = "Welcome to Contoso" -$mainMenuText = "To reach your party by name, say it now. To talk to Sales, please press 1. To talk to User2 press 2. Please press 0 for operator" -$afterHoursText = "Sorry Contoso is closed. Please call back during week days from 7AM to 8PM. Goodbye!" -$tz = "Romance Standard Time" -$operatorId = (Get-CsOnlineUser -Identity "sip:user1@contoso.com").Identity -$user1Id = (Get-CsOnlineUser -Identity "sip:user2@contoso.com").Identity -$salesCQappinstance = (Get-CsOnlineUser -Identity "sales@contoso.com").Identity # one of the application instances associated to the Call Queue -$tr1 = New-CsOnlineTimeRange -Start 07:00 -End 20:00 - -# After hours -$afterHoursSchedule = New-CsOnlineSchedule -Name "After Hours" -WeeklyRecurrentSchedule -MondayHours @($tr1) -TuesdayHours @($tr1) -WednesdayHours @($tr1) -ThursdayHours @($tr1) -FridayHours @($tr1) -Complement -$afterHoursGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt $afterHoursText -$afterHoursMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$afterHoursMenu = New-CsAutoAttendantMenu -Name "AA menu1" -MenuOptions @($afterHoursMenuOption) -$afterHoursCallFlow = New-CsAutoAttendantCallFlow -Name "After Hours" -Menu $afterHoursMenu -Greetings @($afterHoursGreetingPrompt) -$afterHoursCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $afterHoursSchedule.Id -CallFlowId $afterHoursCallFlow.Id - -# Business hours menu options -$operator = New-CsAutoAttendantCallableEntity -Identity $operatorId -Type User -$sales = New-CsAutoAttendantCallableEntity -Identity $salesCQappinstance -Type applicationendpoint -$user1 = New-CsAutoAttendantCallableEntity -Identity $user1Id -Type User -$menuOption0 = New-CsAutoAttendantMenuOption -Action TransferCallToOperator -DtmfResponse Tone0 -CallTarget $operator -$menuOption1 = New-CsAutoAttendantMenuOption -Action TransferCallToTarget -DtmfResponse Tone1 -CallTarget $sales -$menuOption2 = New-CsAutoAttendantMenuOption -Action TransferCallToTarget -DtmfResponse Tone2 -CallTarget $user1 - -# Business hours menu -$greetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt $greetingText -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt $mainMenuText -$menu = New-CsAutoAttendantMenu -Name "AA menu2" -Prompts @($menuPrompt) -EnableDialByName -MenuOptions @($menuOption0,$menuOption1,$menuOption2) -$callFlow = New-CsAutoAttendantCallFlow -Name "Default" -Menu $menu -Greetings $greetingPrompt - -# Auto attendant -New-CsAutoAttendant -Name $aaName -LanguageId $language -CallFlows @($afterHoursCallFlow) -TimeZoneId $tz -Operator $operator -DefaultCallFlow $callFlow -CallHandlingAssociations @($afterHoursCallHandlingAssociation) -EnableVoiceResponse - - This example creates a new AA named Main auto attendant that has the following properties: - - It sets a default call flow. - - It sets an after-hours call flow. - - It sets a business hours options. - - It references a call queue as a menu option. - - The default language is en-US. - - The time zone is set to Romance Standard. - - It sets user1 as operator. - - It has user2 also as a menu option. - - The Auto Attendant is voice enabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - New-CsOnlineApplicationInstanceAssociation - - - - Get-CsAutoAttendant - - - - Get-CsAutoAttendantStatus - - - - Get-CsAutoAttendantSupportedLanguage - - - - Get-CsAutoAttendantSupportedTimeZone - - - - New-CsAutoAttendantCallableEntity - - - - New-CsAutoAttendantCallFlow - - - - New-CsAutoAttendantCallHandlingAssociation - - - - New-CsOnlineSchedule - - - - Remove-CsAutoAttendant - - - - Set-CsAutoAttendant - - - - Update-CsAutoAttendant - - - - - - - New-CsAutoAttendantCallableEntity - New - CsAutoAttendantCallableEntity - - The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity. - - - - The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity for use with call transfers from the Auto Attendant service. Callable entities can be created using either Object ID or TEL URIs and can refer to any of the following entities: - - User - - ApplicationEndpoint - - ConfigurationEndpoint - - ExternalPstn - - SharedVoicemail NOTE : In order to setup a shared voicemail, an Office 365 Group that can receive external emails is required. - >[!IMPORTANT] > Authorized users can't edit call queues with these features enabled: > - The call exception routing when the destination directly references another Auto attendant or Call queue > - See Nesting Auto attendants and Call queues (/microsoftteams/plan-auto-attendant-call-queue#nested-auto-attendants-and-call-queues)> - Call priorities - - - - New-CsAutoAttendantCallableEntity - - CallPriority - - The Call Priority of the MenuOption, only applies when the `Type` is `ApplicationEndpoint` or `ConfigurationEndpoint`. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High 2 = High 3 = Normal / Default 4 = Low 5 = Very Low - - Int16 - - Int16 - - - 3 - - - EnableSharedVoicemailSystemPromptSuppression - - Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail. - - - SwitchParameter - - - False - - - EnableTranscription - - Enables the email transcription of voicemail, this is only supported with shared voicemail callable entities. - - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the callable entity; this can be either a Object ID or a TEL URI. - - Only the Object IDs of users that have Enterprise Voice enabled are supported. - - Only PSTN numbers that are acquired and assigned through Skype for Business Online are supported. - - System.String - - System.String - - - None - - - SharedVoicemailHistoryTemplateId - - >[!IMPORTANT] >The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - The SharedVoicemailHistoryTemplateId parameter specifies the ID of the Shared Call History template. When this template is assigned to an Auto Attendant, historical data for shared voicemails is collected and displayed in the Shared Call History within the Teams Queues app (https://learn.microsoft.com/microsoftteams/manage-queues-app). Removing the SharedVoicemailHistoryTemplateId stops further historical data collection for Queues App. This parameter does not affect the [Shared Voicemail](https://learn.microsoft.com/en-us/microsoftteams/manage-shared-voicemail)experience in Outlook. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - Type - - The Type parameter represents the type of the callable entity, which can be any of the following: - - User - - ApplicationEndpoint (when transferring to a Resource Account) - - ConfigurationEndpoint (when transferring directly to a nested Auto Attendant or Call Queue) - - ExternalPstn - - SharedVoicemail - - Object - - Object - - - None - - - - - - CallPriority - - The Call Priority of the MenuOption, only applies when the `Type` is `ApplicationEndpoint` or `ConfigurationEndpoint`. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High 2 = High 3 = Normal / Default 4 = Low 5 = Very Low - - Int16 - - Int16 - - - 3 - - - EnableSharedVoicemailSystemPromptSuppression - - Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail. - - SwitchParameter - - SwitchParameter - - - False - - - EnableTranscription - - Enables the email transcription of voicemail, this is only supported with shared voicemail callable entities. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the callable entity; this can be either a Object ID or a TEL URI. - - Only the Object IDs of users that have Enterprise Voice enabled are supported. - - Only PSTN numbers that are acquired and assigned through Skype for Business Online are supported. - - System.String - - System.String - - - None - - - SharedVoicemailHistoryTemplateId - - >[!IMPORTANT] >The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - The SharedVoicemailHistoryTemplateId parameter specifies the ID of the Shared Call History template. When this template is assigned to an Auto Attendant, historical data for shared voicemails is collected and displayed in the Shared Call History within the Teams Queues app (https://learn.microsoft.com/microsoftteams/manage-queues-app). Removing the SharedVoicemailHistoryTemplateId stops further historical data collection for Queues App. This parameter does not affect the [Shared Voicemail](https://learn.microsoft.com/en-us/microsoftteams/manage-shared-voicemail)experience in Outlook. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - Type - - The Type parameter represents the type of the callable entity, which can be any of the following: - - User - - ApplicationEndpoint (when transferring to a Resource Account) - - ConfigurationEndpoint (when transferring directly to a nested Auto Attendant or Call Queue) - - ExternalPstn - - SharedVoicemail - - Object - - Object - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $callableEntity = New-CsAutoAttendantCallableEntity -Identity "9bad1a25-3203-5207-b34d-1bd933b867a5" -Type User - - This example creates a user callable entity. - - - - -------------------------- Example 2 -------------------------- - $callableEntity = New-CsAutoAttendantCallableEntity -Identity "tel:+1234567890" -Type ExternalPSTN - - This example creates an ExternalPSTN callable entity. - - - - -------------------------- Example 3 -------------------------- - $operatorObjectId = (Get-CsOnlineUser operator@contoso.com).ObjectId -$callableEntity = New-CsAutoAttendantCallableEntity -Identity $operatorObjectId -Type User - - This example gets a user object using Get-CsOnlineUser cmdlet. We then use the Microsoft Entra ObjectId of that user object to create a user callable entity. - - - - -------------------------- Example 4 -------------------------- - $callableEntityId = Find-CsOnlineApplicationInstance -SearchQuery "Main Auto Attendant" -MaxResults 1 | Select-Object -Property Id -$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId.Id -Type ApplicationEndpoint - - This example gets an application instance by name using Find-CsOnlineApplicationInstance cmdlet. We then use the Microsoft Entra ObjectId of that application instance to create an application endpoint callable entity. - - - - -------------------------- Example 5 -------------------------- - $callableEntityGroup = Find-CsGroup -SearchQuery "Main Auto Attendant" -ExactMatchOnly $true -MailEnabledOnly $true -$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityGroup -Type SharedVoicemail -EnableTranscription - - This example gets an Office 365 group by name using Find-CsGroup cmdlet. Then the Guid of that group is used to create a shared voicemail callable entity that supports transcription. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallableentity - - - Get-CsOnlineUser - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineuser - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - - - - New-CsAutoAttendantCallFlow - New - CsAutoAttendantCallFlow - - Use the New-CsAutoAttendantCallFlow cmdlet to create a new call flow. - - - - The New-CsAutoAttendantCallFlow cmdlet creates a new call flow for use with the Auto Attendant (AA) service. The AA service uses the call flow to handle inbound calls by playing a greeting (if present), and provide callers with actions through a menu. - > [!IMPORTANT] > The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. > > - -RingResourceAccountDelegates - - - - New-CsAutoAttendantCallFlow - - ForceListenMenuEnabled - - If specified, DTMF and speech inputs will not be processed while the greeting or menu prompt is playing. It will enforce callers to listen to all menu options before making a selection. - - - SwitchParameter - - - False - - - Greetings - - If present, the prompts specified by the Greetings parameter (either TTS or Audio) are played before the call flow's menu is rendered. - You can create prompts by using the `New-CsAutoAttendantPrompt` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt)cmdlet. - > [!NOTE] > If Mainline Attendant is enabled, only TTS prompts are supported. > > If Mainline Attendant is enabled and no greeting text is provided, the following default prompt will be played: > > Hello, and thank you for calling [Auto attendant name]. How can I assist you today? Please note that this call may be recorded for compliance purposes. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Menu - - The Menu parameter identifies the menu to render when the call flow is executed. - You can create a new menu by using the `New-CsAutoAttendantMenu` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenu)cmdlet. - - System.Object - - System.Object - - - None - - - Name - - The Name parameter represents a unique friendly name for the call flow. - - System.String - - System.String - - - None - - - RingResourceAccountDelegates - - If enabled for this call flow, Auto Attendant will first ring the delegates assigned to the resource account the call is on. If none of the delegates answer, the call is returned to the Auto Attendant for standard processing. - If there are no delegates assigned to the resource account the call is on then the Auto Attendant will process the call normally. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - ForceListenMenuEnabled - - If specified, DTMF and speech inputs will not be processed while the greeting or menu prompt is playing. It will enforce callers to listen to all menu options before making a selection. - - SwitchParameter - - SwitchParameter - - - False - - - Greetings - - If present, the prompts specified by the Greetings parameter (either TTS or Audio) are played before the call flow's menu is rendered. - You can create prompts by using the `New-CsAutoAttendantPrompt` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt)cmdlet. - > [!NOTE] > If Mainline Attendant is enabled, only TTS prompts are supported. > > If Mainline Attendant is enabled and no greeting text is provided, the following default prompt will be played: > > Hello, and thank you for calling [Auto attendant name]. How can I assist you today? Please note that this call may be recorded for compliance purposes. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Menu - - The Menu parameter identifies the menu to render when the call flow is executed. - You can create a new menu by using the `New-CsAutoAttendantMenu` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenu)cmdlet. - - System.Object - - System.Object - - - None - - - Name - - The Name parameter represents a unique friendly name for the call flow. - - System.String - - System.String - - - None - - - RingResourceAccountDelegates - - If enabled for this call flow, Auto Attendant will first ring the delegates assigned to the resource account the call is on. If none of the delegates answer, the call is returned to the Auto Attendant for standard processing. - If there are no delegates assigned to the resource account the call is on then the Auto Attendant will process the call normally. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts @($menuPrompt) -EnableDialByName -$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu - - This example creates a new call flow that renders the "Default Menu" menu. - - - - -------------------------- Example 2 -------------------------- - $menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts $menuPrompt -EnableDialByName -$greeting = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!" -$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu -Greetings $greeting -ForceListenMenuEnabled - - This example creates a new call flow that plays a greeting before rendering the "Default Menu" menu with Force listen menu enabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - New-CsAutoAttendantMenu - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenu - - - Get-CsMainlineAttendantFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt - - - - - - New-CsAutoAttendantCallHandlingAssociation - New - CsAutoAttendantCallHandlingAssociation - - Use the `New-CsAutoAttendantCallHandlingAssociation` cmdlet to create a new call handling association. - - - - The `New-CsAutoAttendantCallHandlingAssociation` cmdlet creates a new call handling association to be used with the Auto Attendant (AA) service. The OAA service uses call handling associations to determine which call flow to execute when a specific schedule is in effect. - - - - New-CsAutoAttendantCallHandlingAssociation - - CallFlowId - - The CallFlowId parameter represents the call flow to be associated with the schedule. - You can create a call flow by using the `New-CsAutoAttendantCallFlow` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow)cmdlet. - - String - - String - - - None - - - Disable - - The Disable parameter, if set, establishes that the call handling association is created as disabled. This parameter can only be used when the Type parameter is set to AfterHours. - - - SwitchParameter - - - False - - - ScheduleId - - The ScheduleId parameter represents the schedule to be associated with the call flow. - You can create a schedule by using the New-CsOnlineSchedule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule) cmdlet. additionally, you can use [Get-CsOnlineSchedule](https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineschedule)cmdlet to get the schedules configured for your organization. - - System.String - - System.String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - Type - - The Type parameter represents the type of the call handling association. Currently, only the following types are supported: - - `AfterHours` - - `Holiday` - - Object - - Object - - - None - - - - - - CallFlowId - - The CallFlowId parameter represents the call flow to be associated with the schedule. - You can create a call flow by using the `New-CsAutoAttendantCallFlow` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow)cmdlet. - - String - - String - - - None - - - Disable - - The Disable parameter, if set, establishes that the call handling association is created as disabled. This parameter can only be used when the Type parameter is set to AfterHours. - - SwitchParameter - - SwitchParameter - - - False - - - ScheduleId - - The ScheduleId parameter represents the schedule to be associated with the call flow. - You can create a schedule by using the New-CsOnlineSchedule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule) cmdlet. additionally, you can use [Get-CsOnlineSchedule](https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineschedule)cmdlet to get the schedules configured for your organization. - - System.String - - System.String - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - Type - - The Type parameter represents the type of the call handling association. Currently, only the following types are supported: - - `AfterHours` - - `Holiday` - - Object - - Object - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.CallHandlingAssociation - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00 -$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr) -Complement -$scheduleId = $schedule.Id - -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts $menuPrompt -EnableDialByName -$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu -$callFlowId = $callFlow.Id - -$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId - - This example creates the following: - - a new after-hours schedule - - a new after-hours call flow - - a new after-hours call handling association - - - - -------------------------- Example 2 -------------------------- - $tr = New-CsOnlineTimeRange -Start 09:00 -End 17:00 -$schedule = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr) -TuesdayHours @($tr) -WednesdayHours @($tr) -ThursdayHours @($tr) -FridayHours @($tr) -Complement -$scheduleId = $schedule.Id - -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts $menuPrompt -EnableDialByName -$callFlow = New-CsAutoAttendantCallFlow -Name "Default Call Flow" -Menu $menu -$callFlowId = $callFlow.Id - -$disabledCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type AfterHours -ScheduleId $scheduleId -CallFlowId $callFlowId -Disable - - This example creates the following: - - a new after-hours schedule - - a new after-hours call flow - - a disabled after-hours call handling association - - - - -------------------------- Example 3 -------------------------- - $dtr = New-CsOnlineDateTimeRange -Start "24/12/2017" -$schedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr) -$scheduleId = $schedule.Id - -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "We are closed for Christmas. Please call back later." -$menuOption = New-CsAutoAttendantMenuOption -DtmfResponse Automatic -Action DisconnectCall -$menu = New-CsAutoAttendantMenu -Name "Christmas Menu" -Prompts @($menuPrompt) -MenuOptions @($menuOption) -$callFlow = New-CsAutoAttendantCallFlow -Name "Christmas" -Greetings @($greeting) -Menu $menu -$callFlowId = $callFlow.Id - -$callHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $scheduleId -CallFlowId $callFlowId - - This example creates the following: - - a new holiday schedule - - a new holiday call flow - - a new holiday call handling association - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation - - - New-CsAutoAttendantCallFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - New-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - Get-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineschedule - - - - - - New-CsAutoAttendantDialScope - New - CsAutoAttendantDialScope - - Use New-CsAutoAttendantDialScope cmdlet to create dial-scopes for use with Auto Attendant (AA) service. - - - - This cmdlet creates a new dial-scope to be used with Auto Attendant (AA) service. AAs use dial-scopes to restrict the scope of call transfers that can be made through directory lookup feature. NOTE : The returned dial-scope model composes a member for the underlying type/implementation, e.g. in case of the group-based dial scope, in order to modify its Group IDs, you can access them through `DialScope.GroupScope.GroupIds`. - - - - New-CsAutoAttendantDialScope - - GroupIds - - Refers to the IDs of the groups that are to be included in the dial-scope. - Group IDs can be obtained by using the Find-CsGroup cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - GroupScope - - Indicates that a dial-scope based on groups (distribution lists, security groups) is to be created. - - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - GroupIds - - Refers to the IDs of the groups that are to be included in the dial-scope. - Group IDs can be obtained by using the Find-CsGroup cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - GroupScope - - Indicates that a dial-scope based on groups (distribution lists, security groups) is to be created. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.DialScope - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $groupIds = @("00000000-0000-0000-0000-000000000000") -$dialScope = New-CsAutoAttendantDialScope -GroupScope -GroupIds $groupIds - - In Example 1, the New-CsAutoAttendantDialScope cmdlet is used to create a dial-scope with a group whose id is 00000000-0000-0000-0000-000000000000. - - - - -------------------------- Example 2 -------------------------- - $groupIds = Find-CsGroup -SearchQuery "Contoso Sales" | % { $_.Id } -$dialScope = New-CsAutoAttendantDialScope -GroupScope -GroupIds $groupIds - - In Example 2, we use the Find-CsGroup cmdlet to find groups with name "Contoso Sales", and then use the identities of those groups to create an auto attendant dial scope using the New-CsAutoAttendantDialScope cmdlet. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantdialscope - - - Find-CsGroup - https://learn.microsoft.com/powershell/module/microsoftteams/find-csgroup - - - - - - New-CsAutoAttendantMenu - New - CsAutoAttendantMenu - - The New-CsAutoAttendantMenu cmdlet creates a new menu. - - - - The New-CsAutoAttendantMenu cmdlet creates a new menu for the Auto Attendant (AA) service. The OAA service uses menus to provide callers with choices, and then takes action based on the selection. - - - - New-CsAutoAttendantMenu - - DirectorySearchMethod - - The DirectorySearchMethod parameter lets you define the type of Directory Search Method for the Auto Attendant menu, for more information, see Set up a Cloud auto attendant (https://learn.microsoft.com/MicrosoftTeams/create-a-phone-system-auto-attendant?WT.mc_id=TeamsAdminCenterCSH)Possible values are - - None - - ByName - - ByExtension - - Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod - - Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod - - - None - - - EnableDialByName - - The EnableDialByName parameter lets users do a directory search by recipient name and get transferred to the party. - - - SwitchParameter - - - False - - - MenuOptions - - The MenuOptions parameter is a list of menu options for this menu. These menu options specify what action to take when the user sends a particular input. - You can create menu options by using the New-CsAutoAttendantMenuOption cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Name - - The Name parameter represents a friendly name for the menu. - - System.String - - System.String - - - None - - - Prompts - - The Prompts parameter reflects the prompts to play when the menu is activated. - You can create prompts by using the `New-CsAutoAttendantPrompt` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt)cmdlet. - > [!NOTE] > If Mainline Attendant is enabled, only TTS prompts are supported. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - DirectorySearchMethod - - The DirectorySearchMethod parameter lets you define the type of Directory Search Method for the Auto Attendant menu, for more information, see Set up a Cloud auto attendant (https://learn.microsoft.com/MicrosoftTeams/create-a-phone-system-auto-attendant?WT.mc_id=TeamsAdminCenterCSH)Possible values are - - None - - ByName - - ByExtension - - Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod - - Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod - - - None - - - EnableDialByName - - The EnableDialByName parameter lets users do a directory search by recipient name and get transferred to the party. - - SwitchParameter - - SwitchParameter - - - False - - - MenuOptions - - The MenuOptions parameter is a list of menu options for this menu. These menu options specify what action to take when the user sends a particular input. - You can create menu options by using the New-CsAutoAttendantMenuOption cmdlet. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Name - - The Name parameter represents a friendly name for the menu. - - System.String - - System.String - - - None - - - Prompts - - The Prompts parameter reflects the prompts to play when the menu is activated. - You can create prompts by using the `New-CsAutoAttendantPrompt` (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt)cmdlet. - > [!NOTE] > If Mainline Attendant is enabled, only TTS prompts are supported. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.Menu - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts @($menuPrompt) -EnableDialByName -DirectorySearchMethod ByExtension - - This example creates a new menu that allows the caller to reach a target by name, and also defines the Directory Search Method to Dial By Extension. - - - - -------------------------- Example 2 -------------------------- - $menuOptionZero = New-CsAutoAttendantMenuOption -Action TransferCallToOperator -DtmfResponse Tone0 -$menuPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "To reach your party by name, enter it now, followed by the pound sign. For operator, press zero." -$menu = New-CsAutoAttendantMenu -Name "Default Menu" -Prompts @($menuPrompt) -MenuOptions @($menuOptionZero) -EnableDialByName -DirectorySearchMethod ByName - - This example creates a new menu that allows the caller to reach a target by name or the operator by pressing the 0 key, and also defines the Directory Search Method to Dial By Name. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenu - - - New-CsAutoAttendantMenuOption - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenuoption - - - New-CsAutoAttendantPrompt - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenuoption - - - - - - New-CsAutoAttendantMenuOption - New - CsAutoAttendantMenuOption - - Use the New-CsAutoAttendantMenuOption cmdlet to create a new menu option. - - - - The New-CsAutoAttendantMenuOption cmdlet creates a new menu option for the Auto Attendant (AA) service. The AA service uses the menu options to respond to a caller with the appropriate action. - > [!IMPORTANT] > The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. > > - -Description > - -Action AgentsAndQueues > - -Action MainLineAttendantFlow > - -MainlineAttendantTarget > - -AgentTargetType > - -AgentTarget > - -AgentTargetTagTemplateId - - - - New-CsAutoAttendantMenuOption - - Action - - The Action parameter represents the action to be taken when the menu option is activated. The Action must be set to one of the following values: - - AgentsAndQueues - Restricted to VoiceApps TAP customers - Announcement - plays a defined prompt then returns to the menu - - DisconnectCall - The call is disconnected. - - MainlineAttendantFlow - Restricted to VoiceApps TAP customers - TransferCallToOperator - the call is transferred to the operator. - - TransferCallToTarget - The call is transferred to the menu option's call target. - - Object - - Object - - - None - - - CallTarget - - The CallTarget parameter represents the target for call transfer after the menu option is selected. - CallTarget is required if the action of the menu option is TransferCallToTarget. - Use the New-CsAutoAttendantCallableEntity cmdlet to create new callable entities. - - Object - - Object - - - None - - - Description - - A description/set of keywords for the option. - Used by Mainline Attendant only. - Limit: 500 characters - - System.String - - System.String - - - None - - - DtmfResponse - - The DtmfResponse parameter indicates the key on the telephone keypad to be pressed to activate the menu option. The DtmfResponse must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - Automatic - The action is executed without user response. - - Object - - Object - - - None - - - MainlineAttendantTarget - - The Mainline Attendant call flow target identifier. - - System.String - - System.String - - - None - - - Prompt - - The Prompt parameter reflects the prompts to play when the menu option is activated. - You can create new prompts by using the New-CsAutoAttendantPrompt cmdlet. - This parameter is required if the Action is set to Announcement . - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - - None - - - AgentTargetType - - The AgentTargetType parameter indicates if a Copilot Studio or IVR application is invoked. The AgentTargetType must be set to one of the following values: - - Copilot - Restricted to VoiceApps TAP customers - requires that Mainline Attendant be enabled - IVR - Restricted to VoiceApps TAP customers - - Object - - Object - - - None - - - AgentTarget - - The AgentTarget parameter is the GUID of the target Copilot or a 3rd party IVR agent. - - String - - String - - - None - - - AgentTargetTagTemplateId - - The AgentTargetTagTemplateId parameter is the GUID of the Tag template to assign. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - VoiceResponses - - The VoiceResponses parameter represents the voice responses to select a menu option when Voice Responses are enabled for the auto attendant. - Voice responses are currently limited to one voice response per menu option. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - - - - Action - - The Action parameter represents the action to be taken when the menu option is activated. The Action must be set to one of the following values: - - AgentsAndQueues - Restricted to VoiceApps TAP customers - Announcement - plays a defined prompt then returns to the menu - - DisconnectCall - The call is disconnected. - - MainlineAttendantFlow - Restricted to VoiceApps TAP customers - TransferCallToOperator - the call is transferred to the operator. - - TransferCallToTarget - The call is transferred to the menu option's call target. - - Object - - Object - - - None - - - CallTarget - - The CallTarget parameter represents the target for call transfer after the menu option is selected. - CallTarget is required if the action of the menu option is TransferCallToTarget. - Use the New-CsAutoAttendantCallableEntity cmdlet to create new callable entities. - - Object - - Object - - - None - - - Description - - A description/set of keywords for the option. - Used by Mainline Attendant only. - Limit: 500 characters - - System.String - - System.String - - - None - - - DtmfResponse - - The DtmfResponse parameter indicates the key on the telephone keypad to be pressed to activate the menu option. The DtmfResponse must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - Automatic - The action is executed without user response. - - Object - - Object - - - None - - - MainlineAttendantTarget - - The Mainline Attendant call flow target identifier. - - System.String - - System.String - - - None - - - Prompt - - The Prompt parameter reflects the prompts to play when the menu option is activated. - You can create new prompts by using the New-CsAutoAttendantPrompt cmdlet. - This parameter is required if the Action is set to Announcement . - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - - None - - - AgentTargetType - - The AgentTargetType parameter indicates if a Copilot Studio or IVR application is invoked. The AgentTargetType must be set to one of the following values: - - Copilot - Restricted to VoiceApps TAP customers - requires that Mainline Attendant be enabled - IVR - Restricted to VoiceApps TAP customers - - Object - - Object - - - None - - - AgentTarget - - The AgentTarget parameter is the GUID of the target Copilot or a 3rd party IVR agent. - - String - - String - - - None - - - AgentTargetTagTemplateId - - The AgentTargetTagTemplateId parameter is the GUID of the Tag template to assign. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - VoiceResponses - - The VoiceResponses parameter represents the voice responses to select a menu option when Voice Responses are enabled for the auto attendant. - Voice responses are currently limited to one voice response per menu option. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.MenuOption - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $menuOption = New-CsAutoAttendantMenuOption -Action TransferCallToOperator -DtmfResponse Tone0 - - This example creates a menu option to call the operator when the 0 key is pressed. - - - - -------------------------- Example 2 -------------------------- - $troubleShootObjectId = (Get-CsOnlineUser troubleShoot@contoso.com).ObjectId -$troubleShootEntity = New-CsAutoAttendantCallableEntity -Identity $troubleShootObjectId -Type ApplicationEndpoint -$menuOption = New-CsAutoAttendantMenuOption -Action TransferCallToTarget -DtmfResponse Tone1 -VoiceResponses "Sales" -CallTarget $troubleShootEntity - - This example creates a menu option to transfer the call to an application endpoint when the caller speaks the word "Sales" or presses the 1 key. - - - - -------------------------- Example 3 -------------------------- - $Prompt = New-CsAutoAttendantPrompt -ActiveType TextToSpeech -TextToSpeechPrompt "Our Office is open from Monday to Friday from 9 AM to 5 PM" -$menuOption = New-CsAutoAttendantMenuOption -Action Announcement -DtmfResponse Tone2 -VoiceResponses "Hours" -Prompt $Prompt - - This example creates a menu option to play an announcement for the defined prompt. After playing the announcement, the Menu Prompt is repeated. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantmenuoption - - - New-CsAutoAttendantCallableEntity - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallableentity - - - - - - New-CsAutoAttendantPrompt - New - CsAutoAttendantPrompt - - Use the New-CsAutoAttendantPrompt cmdlet to create a new prompt. - - - - The New-CsAutoAttendantPrompt cmdlet creates a new prompt for the Auto Attendant (AA) service. A prompt is either an audio file that is played, or text that is read aloud to give callers additional information. A prompt can be disabled by setting the ActiveType to None. - - - - New-CsAutoAttendantPrompt - - ActiveType - - PARAMVALUE: None | TextToSpeech | AudioFile - The ActiveType parameter identifies the active type (modality) of the AA prompt. It can be set to None (the prompt is disabled), TextToSpeech (text-to-speech is played when the prompt is rendered) or AudioFile (audio file data is played when the prompt is rendered). - This is explicitly required if both Audio File and TTS prompts are specified. Otherwise, it is inferred. - - Object - - Object - - - None - - - AudioFilePrompt - - The AudioFilePrompt parameter represents the audio to play when the prompt is activated (rendered). - This parameter is required when audio file prompts are being created. You can create audio files by using the `Import-CsOnlineAudioFile` cmdlet. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - TextToSpeechPrompt - - The TextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt that is to be read when the prompt is activated. - This parameter is required when text to speech prompts are being created. - - System.String - - System.String - - - None - - - - New-CsAutoAttendantPrompt - - AudioFilePrompt - - The AudioFilePrompt parameter represents the audio to play when the prompt is activated (rendered). - This parameter is required when audio file prompts are being created. You can create audio files by using the `Import-CsOnlineAudioFile` cmdlet. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - New-CsAutoAttendantPrompt - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - TextToSpeechPrompt - - The TextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt that is to be read when the prompt is activated. - This parameter is required when text to speech prompts are being created. - - System.String - - System.String - - - None - - - - - - ActiveType - - PARAMVALUE: None | TextToSpeech | AudioFile - The ActiveType parameter identifies the active type (modality) of the AA prompt. It can be set to None (the prompt is disabled), TextToSpeech (text-to-speech is played when the prompt is rendered) or AudioFile (audio file data is played when the prompt is rendered). - This is explicitly required if both Audio File and TTS prompts are specified. Otherwise, it is inferred. - - Object - - Object - - - None - - - AudioFilePrompt - - The AudioFilePrompt parameter represents the audio to play when the prompt is activated (rendered). - This parameter is required when audio file prompts are being created. You can create audio files by using the `Import-CsOnlineAudioFile` cmdlet. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - TextToSpeechPrompt - - The TextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt that is to be read when the prompt is activated. - This parameter is required when text to speech prompts are being created. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.Prompt - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $ttsPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!" - - This example creates a new prompt that reads the supplied text. - - - - -------------------------- Example 2 -------------------------- - $content = [System.IO.File]::ReadAllBytes('C:\Media\hello.wav') -$audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "hello.wav" -Content $content -$audioFilePrompt = New-CsAutoAttendantPrompt -AudioFilePrompt $audioFile - - This example creates a new prompt that plays the selected audio file. - - - - -------------------------- Example 3 -------------------------- - $content = [System.IO.File]::ReadAllBytes('C:\Media\hello.wav') -$audioFile = Import-CsOnlineAudioFile -ApplicationId "OrgAutoAttendant" -FileName "hello.wav" -Content $content -$dualPrompt = New-CsAutoAttendantPrompt -ActiveType AudioFile -AudioFilePrompt $audioFile -TextToSpeechPrompt "Welcome to Contoso!" - - This example creates a new prompt that has both audio file and text-to-speech data, but will play the audio file when the prompt is activated (rendered). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantprompt - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - - - - New-CsAutoRecordingTemplate - New - CsAutoRecordingTemplate - - Use the New-CsAutoRecordingTemplate cmdlet to create an Auto Recording template that can be assigned to a call queue. - - - - >[!CAUTION] >The functionality provided by this cmdlet will only work for customers that are participating in the Voice Applications private preview for this feature. General Availability for this functionality has not been determined at this time. - Use the New-CsAutoRecordingTemplate cmdlet to create an Auto Recording template that can be assigned to a call queue. - - - - New-CsAutoRecordingTemplate - - Name - - The name of the auto recording template - - String - - String - - - Off - - - Description - - A description for the auto recording template. - - String - - String - - - None - - - TranscriptionEnabled - - Is transcription enabled. - - Boolean - - Boolean - - - False - - - RecordingEnabled - - Is recording enabled. - - Boolean - - Boolean - - - False - - - AgentViewPermission - - Are agents allowed to access the recordings or transcriptions. - PARAMVALUE: None | All - - Object - - Object - - - None - - - SharePointHostName - - >[!CAUTION] >This must already exist. The cmdlet will not create the SharePoint hostname. - The SharePoint hostname where the recordings and transcripts are stored. - - System.String - - System.String - - - None - - - SharePointSiteName - - > [!CAUTION] > The SharePoint site specified by `-SharePointSiteName` must be provisioned through the Auto Recording template creation process. Manually created SharePoint sites aren't supported and may result in access or permission errors. SharePoint sites provisioned through this process can be reused across multiple Auto Recording templates. - Specifies the name of the SharePoint site used to store automatic recording and transcription. The site will be provisioned if it doesn't already exist through the Auto Recording template creation process. - - System.String - - System.String - - - None - - - RecordingDocumentOwner - - The owner of the recording document - - System.String - - System.String - - - None - - - AutoRecordingAnnouncementAudioFileId - - The audio file Id for the custom recording. - See Import-CsOnlineAudioFile (./Import-CsOnlineAudioFile.md) - - System.String - - System.String - - - None - - - AutoRecordingAnnouncementTextToSpeechPrompt - - >[!CAUTION] >This text needs to be entered in the same language that is set for the call queue. - The text to speech prompt that will be played to callers telling them their call is being recorded. - - System.String - - System.String - - - None - - - - - - Name - - The name of the auto recording template - - String - - String - - - Off - - - Description - - A description for the auto recording template. - - String - - String - - - None - - - TranscriptionEnabled - - Is transcription enabled. - - Boolean - - Boolean - - - False - - - RecordingEnabled - - Is recording enabled. - - Boolean - - Boolean - - - False - - - AgentViewPermission - - Are agents allowed to access the recordings or transcriptions. - PARAMVALUE: None | All - - Object - - Object - - - None - - - SharePointHostName - - >[!CAUTION] >This must already exist. The cmdlet will not create the SharePoint hostname. - The SharePoint hostname where the recordings and transcripts are stored. - - System.String - - System.String - - - None - - - SharePointSiteName - - > [!CAUTION] > The SharePoint site specified by `-SharePointSiteName` must be provisioned through the Auto Recording template creation process. Manually created SharePoint sites aren't supported and may result in access or permission errors. SharePoint sites provisioned through this process can be reused across multiple Auto Recording templates. - Specifies the name of the SharePoint site used to store automatic recording and transcription. The site will be provisioned if it doesn't already exist through the Auto Recording template creation process. - - System.String - - System.String - - - None - - - RecordingDocumentOwner - - The owner of the recording document - - System.String - - System.String - - - None - - - AutoRecordingAnnouncementAudioFileId - - The audio file Id for the custom recording. - See Import-CsOnlineAudioFile (./Import-CsOnlineAudioFile.md) - - System.String - - System.String - - - None - - - AutoRecordingAnnouncementTextToSpeechPrompt - - >[!CAUTION] >This text needs to be entered in the same language that is set for the call queue. - The text to speech prompt that will be played to callers telling them their call is being recorded. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsAutoRecordingTemplate -Name "Customer Service" -Description "Transcription & Recording enabled" -TranscriptionEnabled $true -RecordingEnabled $true -AgentViewPermission XXXXX -SharePointHostName YYYYYY -SharePointSiteName ZZZZZ -RecordingDocumentOwner GUID -AutoRecordingAnnouncementTextToSpeechPrompt "This call will be recorded for quality and training purposes." - - This example creates a new Auto Recording template that enabled transcription and recording. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsAutoRecordingTemplate - - - Get-CsAutoRecordingTemplate - - - - Set-CsAutoRecordingTemplate - - - - Remove-CsAutoRecordingTemplate - - - - New-CsCallQueue - - - - Get-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - New-CsBatchPolicyAssignmentOperation - New - CsBatchPolicyAssignmentOperation - - This cmdlet is used to assign or unassign a policy to a batch of users. - - - - When a policy is assigned to a batch of users, the assignments are performed as an asynchronous operation. The cmdlet returns the operation ID which can be used to track the progress and status of the assignments. - Users can be specified by their object ID (guid) or by their SIP address (user@contoso.com). Note that a user's SIP address often has the same value as the User Principal Name (UPN), but this is not required. If a user is specified using their UPN, but it has a different value than their SIP address, then the policy assignment will fail for the user. - A batch may contain up to 5,000 users. If a batch includes duplicate users, the duplicates will be removed from the batch before processing and status will only be provided for the unique users remaining in the batch. For best results, do not submit more than a few batches at a time. Allow batches to complete processing before submitting more batches. - You must be a Teams service admin or a Teams communication admin to run the cmdlet. - Batch policy assignment is currently limited to the following policy types: CallingLineIdentity, ExternalAccessPolicy, OnlineVoiceRoutingPolicy, TeamsAppSetupPolicy, TeamsAppPermissionPolicy, TeamsCallingPolicy, TeamsCallParkPolicy, TeamsChannelsPolicy, TeamsEducationAssignmentsAppPolicy, TeamsEmergencyCallingPolicy, TeamsMeetingBroadcastPolicy, TeamsEmergencyCallRoutingPolicy, TeamsMeetingPolicy, TeamsMessagingPolicy, TeamsTemplatePermissionPolicy, TeamsUpdateManagementPolicy, TeamsUpgradePolicy, TeamsVerticalPackagePolicy, TeamsVideoInteropServicePolicy, TenantDialPlan - - - - New-CsBatchPolicyAssignmentOperation - - AdditionalParameters - - . - - Hashtable - - Hashtable - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - An array of users, specified either using object IDs (guid) or SIP addresses. There is a maximum of 5,000 users per batch. - - String - - String - - - None - - - OperationName - - An optional name for the batch assignment operation. - - String - - String - - - None - - - PolicyName - - The name of the policy to be assigned to the users. To remove the currently assigned policy, use $null or an empty string "". - - String - - String - - - None - - - PolicyType - - The type of the policy to be assigned to the users. For the list of current policy types accepted by this parameter, see the Description section at the beginning of this article. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - - - - AdditionalParameters - - . - - Hashtable - - Hashtable - - - None - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Identity - - An array of users, specified either using object IDs (guid) or SIP addresses. There is a maximum of 5,000 users per batch. - - String - - String - - - None - - - OperationName - - An optional name for the batch assignment operation. - - String - - String - - - None - - - PolicyName - - The name of the policy to be assigned to the users. To remove the currently assigned policy, use $null or an empty string "". - - String - - String - - - None - - - PolicyType - - The type of the policy to be assigned to the users. For the list of current policy types accepted by this parameter, see the Description section at the beginning of this article. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - - - - - OperationId - - - The ID of the operation that can be used with the Get-CsBatchPolicyAssignmentOperation cmdlet to get the status of the operation. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - $users_ids = @("psmith@contoso.com","tsanchez@contoso.com","bharvest@contoso.com") -New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy -PolicyName Kiosk -Identity $users_ids -OperationName "Batch assign Kiosk" - - In this example, the batch of users is specified as an array of user SIP addresses. - - - - -------------------------- EXAMPLE 2 -------------------------- - $users_ids = @("2bdb15a9-2cf1-4b27-b2d5-fcc1d13eebc9", "d928e0fc-c957-4685-991b-c9e55a3534c7", "967cc9e4-4139-4057-9b84-1af80f4856fc") -New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy -PolicyName $null -Identity $users_ids -OperationName "Batch unassign meeting policy" - - In this example, a policy is removed from a batch of users by passing $null as the policy name. - - - - -------------------------- EXAMPLE 3 -------------------------- - $users_ids = Get-Content .\users_ids.txt -New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy -PolicyName Kiosk -Identity $users_ids -OperationName "Batch assign Kiosk" - - In this example, the batch of users is read from a text file containing user object IDs (guids). - - - - -------------------------- EXAMPLE 4 -------------------------- - Connect-AzureAD -$users = Get-AzureADUser -New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy -PolicyName Kiosk -Identity $users.SipProxyAddress -OperationName "batch assign kiosk" - - In this example, the batch of users is obtained by connecting to Microsoft Entra ID and retrieving a collection of users and then referencing the SipProxyAddress property. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchpolicyassignmentoperation - - - Get-CsBatchPolicyAssignmentOperation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csbatchpolicyassignmentoperation - - - - - - New-CsBatchPolicyPackageAssignmentOperation - New - CsBatchPolicyPackageAssignmentOperation - - This cmdlet submits an operation that applies a policy package to a batch of users in a tenant. A batch may contain up to 5000 users. - - - - This cmdlet submits an operation that applies a policy package to a batch of users in a tenant. Provide one or more user identities to assign the package with all the associated policies. The available policy packages and their definitions can be found by running Get-CsPolicyPackage. The recommended policy package for each user can be found by running Get-CsUserPolicyPackageRecommendation. For more information on policy packages, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - New-CsBatchPolicyPackageAssignmentOperation - - Identity - - > Applicable: Microsoft Teams - A list of one or more users in the tenant. A user identity can either be a user's object id or email address. - - String[] - - String[] - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a specific policy package to apply. All policy package names can be found by running Get-CsPolicyPackage. To remove the currently assigned package, use $null or an empty string "". This will not remove any policy assignments, just the package assigned value. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - A list of one or more users in the tenant. A user identity can either be a user's object id or email address. - - String[] - - String[] - - - None - - - PackageName - - > Applicable: Microsoft Teams - The name of a specific policy package to apply. All policy package names can be found by running Get-CsPolicyPackage. To remove the currently assigned package, use $null or an empty string "". This will not remove any policy assignments, just the package assigned value. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsBatchPolicyPackageAssignmentOperation -Identity 1bc0b35f-095a-4a37-a24c-c4b6049816ab,johndoe@example.com,richardroe@example.com -PackageName Education_PrimaryStudent - - Applies the Education_PrimaryStudent policy package to three users in the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchpolicypackageassignmentoperation - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - Get-CsUserPolicyPackageRecommendation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackagerecommendation - - - Get-CsUserPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicypackage - - - - - - New-CsBatchTeamsDeployment - New - CsBatchTeamsDeployment - - This cmdlet is used to run a batch deployment orchestration. - - - - Deploying Teams at scale enables admins to deploy up to 500 teams and add 25 users per team using one Teams PowerShell command and two CSV files. This allows admins to meet your organization's scale needs and significantly reduce deployment time. Admins can also use this solution to add and remove members from existing teams at scale. You can use this cmdlet to: - Create teams using pre-built templates or your own custom templates. - - Add users to teams as owners or members. - - Manage teams at scale by adding or removing users from existing teams. - - Stay notified through email, including completion, status, and errors (if any). You can choose to notify up to five people about the status of each batch of teams you deploy. Team owners and members are automatically notified when they're added to a team. - - - - New-CsBatchTeamsDeployment - - TeamsFilePath - - The path to the CSV file that defines the teams you're creating. For information about the CSV file format, see Deploy Teams at scale for frontline workers (https://learn.microsoft.com/microsoft-365/frontline/deploy-teams-at-scale). - - String - - String - - - None - - - UsersFilePath - - The path to the CSV file that maps the users you're adding to each team. For information about the CSV file format, see Deploy Teams at scale for frontline workers (https://learn.microsoft.com/microsoft-365/frontline/deploy-teams-at-scale). - - String - - String - - - None - - - UsersToNotify - - The email addresses of up to five recipients to notify about this deployment. The recipients will receive email notifications about deployment status. The email contains the orchestration ID for the batch you submitted and any errors that may have occurred. - - String - - String - - - None - - - - - - TeamsFilePath - - The path to the CSV file that defines the teams you're creating. For information about the CSV file format, see Deploy Teams at scale for frontline workers (https://learn.microsoft.com/microsoft-365/frontline/deploy-teams-at-scale). - - String - - String - - - None - - - UsersFilePath - - The path to the CSV file that maps the users you're adding to each team. For information about the CSV file format, see Deploy Teams at scale for frontline workers (https://learn.microsoft.com/microsoft-365/frontline/deploy-teams-at-scale). - - String - - String - - - None - - - UsersToNotify - - The email addresses of up to five recipients to notify about this deployment. The recipients will receive email notifications about deployment status. The email contains the orchestration ID for the batch you submitted and any errors that may have occurred. - - String - - String - - - None - - - - - - - OrchestrationId - - - The ID of the operation that can be used with the Get-CsBatchTeamsDeploymentStatus cmdlet to get the status of the operation. - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - New-CsBatchTeamsDeployment -TeamsFilePath "C:\dscale\Teams.csv" -UsersFilePath "C:\dscale\Users.csv" -UsersToNotify "adminteams@contoso.com,adelev@contoso.com" - - This command runs a batch deployment with the provided parameters in the CSV files and emails the status and errors (if any) to adminteams@contoso.com and adelev@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csbatchteamsdeployment - - - Get-CsBatchTeamsDeploymentStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csbatchteamsdeploymentstatus - - - - - - New-CsCallingLineIdentity - New - CsCallingLineIdentity - - Use the New-CsCallingLineIdentity cmdlet to create a new Caller ID policy for your organization. - - - - You can either change or block the Caller ID (also called a Calling Line ID) for a user. By default, the Teams or Skype for Business Online user's phone number can be seen when that user makes a call to a PSTN phone, or when a call comes in. You can create a Caller ID policy to provide an alternate displayed number, or to block any number from being displayed. - Note: - Identity must be unique. - - If CallerIdSubstitute is given as "Resource", then ResourceAccount cannot be empty. - - - - New-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The default value is LineUri. Supported values are Anonymous, LineUri, and Resource. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The default value is LineUri. Supported values are Anonymous, LineUri, and Resource. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false - - This example creates a new Caller ID policy that sets the Caller ID to Anonymous. - - - - -------------------------- Example 2 -------------------------- - New-CsCallingLineIdentity -Identity BlockIncomingCLID -BlockIncomingPstnCallerID $true - - This example creates a new Caller ID policy that blocks the incoming Caller ID. - - - - -------------------------- Example 3 -------------------------- - $ObjId = (Get-CsOnlineApplicationInstance -Identity dkcq@contoso.com).ObjectId -New-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -EnableUserOverride $false -ResourceAccount $ObjId -CompanyName "Contoso" - - This example creates a new Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso - - - - -------------------------- Example 4 -------------------------- - New-CsCallingLineIdentity -Identity AllowAnonymousForUsers -EnableUserOverride $true - - This example creates a new Caller ID policy that allows Teams users to make anonymous calls. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - - - - New-CsCallQueue - New - CsCallQueue - - Creates new Call Queue in your Teams organization. - - - - The New-CsCallQueue cmdlet creates a new Call Queue. - > [!IMPORTANT] > The following configuration parameters are currently only available in PowerShell and do not appear in Teams admin center: > > Authorized users > - -HideAuthorizedUsers > > Call priority > - -OverflowActionCallPriority > - -TimeoutActionCallPriority > - -NoAgentActionCallPriority > > Compliance recording for Call queues > - -ComplianceRecordingForCallQueueTemplateId > - -TextAnnouncementForCR > - -CustomAudioFileAnnouncementForCR > - -TextAnnouncementForCRFailure > - -CustomAudioFileAnnouncementForCRFailure > > Redirect Prompts > - -OverflowRedirectPersonTextToSpeechPrompt > - -OverflowRedirectPersonAudioFilePrompt > - -OverflowRedirectVoicemailTextToSpeechPrompt > - -OverflowRedirectVoicemailAudioFilePrompt > - -TimeoutRedirectPersonTextToSpeechPrompt > - -TimeoutRedirectPersonAudioFilePrompt > - -TimeoutRedirectVoicemailTextToSpeechPrompt > - -TimeoutRedirectVoicemailAudioFilePrompt > - -NoAgentRedirectPersonTextToSpeechPrompt > - -NoAgentRedirectPersonAudioFilePrompt > - -NoAgentRedirectVoicemailTextToSpeechPrompt > - -NoAgentRedirectVoicemailAudioFilePrompt > > Shared call history > - -AutoRecordingTemplateId > > Authorized users can't edit call queues with these features enabled: > - The call exception routing when the destination directly references another Auto attendant or Call queue > - See Nesting Auto attendants and Call queues (/microsoftteams/plan-auto-attendant-call-queue#nested-auto-attendants-and-call-queues)> - Call priorities - - - - New-CsCallQueue - - AgentAlertTime - - The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. The AgentAlertTime can be set to any integer value between 15 and 180 seconds (3 minutes), inclusive. The default value is 30 seconds. - - Int16 - - Int16 - - - 30 - - - AllowOptOut - - The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - - Boolean - - Boolean - - - True - - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - Voice applications private preview customers only. Saving a call queue configuration through Teams admin center will *remove* this setting. The AutoRecordingTemplateId parameter indicates the Auto Recording template to apply to the call queue. - - String - - String - - - None - - - CallbackEmailNotificationTarget - - The CallbackEmailNotificationTarget parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security) that will receive notification if a callback times out of the call queue or can't be completed for some other reason. This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferAudioFilePromptResourceId - - The CallbackOfferAudioFilePromptResourceId parameter indicates the unique identifier for the Audio file prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferTextToSpeechPrompt`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferTextToSpeechPrompt - - The CallbackOfferTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferAudioFilePromptResourceId`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallbackRequestDtmf - - The DTMF touch-tone key the caller will be told to press to select callback. The CallbackRequestDtmf must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallToAgentRatioThresholdBeforeOfferingCallback - - The ratio of calls to agents that must be in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Minimum value of 1. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - ChannelId - - Id of the channel to connect a call queue to. - - String - - String - - - None - - - ChannelUserObjectId - - Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). This is the GUID of one of the owners of the team the channels belongs to. - - Guid - - Guid - - - None - - - ComplianceRecordingForCallQueueTemplateId - - The ComplianceRecordingForCallQueueTemplateId parameter indicates a list of up to 2 Compliance Recording for Call Queue templates to apply to the call queue. - - List - - List - - - None - - - ConferenceMode - - The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for this Call queue. Conference mode significantly reduces the amount of time it takes for a caller to be connected to an agent, after the agent accepts the call. The following bullet points detail the difference between both modes: - - Conference Mode Disabled: CQ call is presented to agent. Agent answers and media streams are setup. Based on geographic location of the CQ call and agent, there may be a slight delay in setting up the media streams which may result in some dead air and the first part of the conversation being cut off. - - Conference Mode Enabled: CQ call is put into conference. Agent answers and is brought into conference. Media streams are already setup when agent is brought into conference thus no dead air, and first bit of conversation will not be cut off. - - Boolean - - Boolean - - - True - - - CustomAudioFileAnnouncementForCR - - The CustomAudioFileAnnouncementForCR parameter indicates the unique identifier for the Audio file prompt which is played to callers when compliance recording for call queues is enabled. - - Guid - - Guid - - - None - - - CustomAudioFileAnnouncementForCRFailure - - The CustomAudioFileAnnouncementForCRFailure parameter indicates the unique identifier for the Audio file prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - Guid - - Guid - - - None - - - DistributionLists - - The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per Call Queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the Call Queue. - - List - - List - - - None - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - The EnableNoAgentSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableNoAgentSharedVoicemailTranscription - - The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on no agents. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - The EnableOverflowSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailTranscription - - The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - The EnableTimeoutSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailTranscription - - The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. This parameter is only applicable when TimeoutAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - HideAuthorizedUsers - - This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - IsCallbackEnabled - - The IsCallbackEnabled parameter is used to turn on/off callback. - - Boolean - - Boolean - - - None - - - LanguageId - - The LanguageId parameter indicates the language that is used to play shared voicemail prompts. This parameter becomes a required parameter if either OverflowAction or TimeoutAction is set to SharedVoicemail. - You can query the supported languages using the Get-CsAutoAttendantSupportedLanguage cmdlet. - - String - - String - - - None - - - LineUri - - This parameter is reserved for Microsoft internal use only. - - String - - String - - - None - - - MusicOnHoldAudioFileId - - The MusicOnHoldAudioFileId parameter represents music to play when callers are placed on hold. This is the unique identifier of the audio file. This parameter is required if the UseDefaultMusicOnHold parameter is not specified. - - Guid - - Guid - - - None - - - Name - - The Name parameter specifies a unique name for the Call Queue. - - String - - String - - - None - - - NoAgentAction - - The NoAgentAction parameter defines the action to take if the no agents condition is reached. The NoAgentAction property must be set to one of the following values: Queue, Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Queue. - PARAMVALUE: Queue | Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - NoAgentActionCallPriority - - If the NoAgentAction is set to Forward, and the NoAgentActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - NoAgentActionTarget - - The NoAgentActionTarget represents the target of the no agent action. If the NoAgentAction is set to Forward, this parameter must be set to a GUID or a telephone number with a mandatory 'tel:' prefix. If the NoAgentAction is set to SharedVoicemail, this parameter must be set to a Microsoft 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - NoAgentApplyTo - - The NoAgentApplyTo parameter defines if the NoAgentAction applies to calls already in queue and new calls arriving to the queue, or only new calls that arrive once the No Agents condition occurs. The default value is AllCalls. - PARAMVALUE: AllCalls | NewCalls - - Object - - Object - - - Disconnect - - - NoAgentDisconnectAudioFilePrompt - - The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to no agents. - - Guid - - Guid - - - None - - - NoAgentDisconnectTextToSpeechPrompt - - The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to no agents. - - String - - String - - - None - - - NoAgentRedirectPersonAudioFilePrompt - - The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPersonTextToSpeechPrompt - - The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - String - - String - - - None - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoiceAppAudioFilePrompt - - The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - The NoAgentRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoicemailAudioFilePrompt - - The NoAgentRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - Guid - - Guid - - - None - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - String - - String - - - None - - - NoAgentSharedVoicemailAudioFilePrompt - - The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - NoAgentSharedVoicemailTextToSpeechPrompt - - The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - NumberOfCallsInQueueBeforeOfferingCallback - - The number of calls in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - OboResourceAccountIds - - The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. The agents in the Call Queue will be able to make outbound calls using the phone number on the resource accounts. This is a list of resource account GUIDs. - - List - - List - - - None - - - OverflowAction - - The OverflowAction parameter designates the action to take if the overflow threshold is reached. The OverflowAction property must be set to one of the following values: DisconnectWithBusy, Forward, Voicemail, and SharedVoicemail. The default value is DisconnectWithBusy. - PARAMVALUE: DisconnectWithBusy | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - DisconnectWithBusy - - - OverflowActionCallPriority - - If the OverFlowAction is set to Forward, and the OverflowActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - OverflowActionTarget - - The OverflowActionTarget parameter represents the target of the overflow action. If the OverFlowAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the OverflowAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this parameter is optional. - - String - - String - - - None - - - OverflowDisconnectAudioFilePrompt - - The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to overflow. - - Guid - - Guid - - - None - - - OverflowDisconnectTextToSpeechPrompt - - The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to overflow. - - String - - String - - - None - - - OverflowRedirectPersonAudioFilePrompt - - The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPersonTextToSpeechPrompt - - The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - String - - String - - - None - - - OverflowRedirectPhoneNumberAudioFilePrompt - - The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - String - - String - - - None - - - OverflowRedirectVoiceAppAudioFilePrompt - - The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - The OverflowRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to overflow. - - String - - String - - - None - - - OverflowRedirectVoicemailAudioFilePrompt - - The OverflowRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoicemailTextToSpeechPrompt - - The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - String - - String - - - None - - - OverflowSharedVoicemailAudioFilePrompt - - The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - OverflowSharedVoicemailTextToSpeechPrompt - - The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - OverflowThreshold - - The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. The OverflowThreshold can be any integer value between 0 and 200, inclusive. A value of 0 causes calls not to reach agents and the overflow action to be taken immediately. - - Int16 - - Int16 - - - 50 - - - PresenceBasedRouting - - The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. When set to False, calls will be routed to agents who have opted in to receive calls, regardless of their presence state. When set to True, opted-in agents will receive calls only when their presence state is Available. - - Boolean - - Boolean - - - True - - - RoutingMethod - - The RoutingMethod parameter defines how agents will be called in a Call Queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel. If the routing method is set to RoundRobin, the agents will be called using the Round Robin strategy so that all agents share the call load equally. If the routing method is set to LongestIdle, the agents will be called based on their idle time, that is, the agent that has been idle for the longest period will be called. - PARAMVALUE: Attendant | Serial | RoundRobin | LongestIdle - - Object - - Object - - - Attendant - - - ServiceLevelThresholdResponseTimeInSecond - - The target number of seconds calls should be answered in. This number is used to calculate the call queue service level percentage. - A value of `$null` indicates that a service level percentage will not be calculated for this call queue. - - Int16 - - Int16 - - - None - - - SharedCallQueueHistoryTemplateId - - The SharedCallQueueHistoryTemplateId parameter indicates the Shared Call History template to apply to the call queue. - > [!NOTE] > `-ConferenceMode` must be set to $true > > Shared call history is not availble when using a Teams channel for queue membership > - `-ChannelId` and `-ChannelUserObjectId` are set. - - String - - String - - - None - - - ShiftsSchedulingGroupId - - Id of the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShiftsTeamId - - Id of the Team containing the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShouldOverwriteCallableChannelProperty - - A Teams Channel can only be linked to one Call Queue at a time. To force reassignment of the Teams Channel to a new Call Queue, set this to $true. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - TextAnnouncementForCR - - The TextAnnouncementForCR parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers when compliance recording for call queues is enabled. - - String - - String - - - None - - - TextAnnouncementForCRFailure - - The TextAnnouncementForCRFailure parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - String - - String - - - None - - - TimeoutAction - - The TimeoutAction parameter defines the action to take if the timeout threshold is reached. The TimeoutAction property must be set to one of the following values: Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Disconnect. - PARAMVALUE: Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - TimeoutActionCallPriority - - If the TimeoutAction is set to Forward, and the TimeoutActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - TimeoutActionTarget - - The TimeoutActionTarget represents the target of the timeout action. If the TimeoutAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the TimeoutAction is set to SharedVoicemail, this parameter must be set to an Office 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - TimeoutDisconnectAudioFilePrompt - - The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to timeout. - - Guid - - Guid - - - None - - - TimeoutDisconnectTextToSpeechPrompt - - The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to timeout. - - String - - String - - - None - - - TimeoutRedirectPersonAudioFilePrompt - - The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPersonTextToSpeechPrompt - - The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - String - - String - - - None - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoiceAppAudioFilePrompt - - The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - The TimeoutRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoicemailAudioFilePrompt - - The TimeoutRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - String - - String - - - None - - - TimeoutSharedVoicemailAudioFilePrompt - - The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - TimeoutSharedVoicemailTextToSpeechPrompt - - The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - TimeoutThreshold - - The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. At that point, the system will take the action specified by the TimeoutAction parameter. The TimeoutThreshold can be any integer value between 0 and 2700 seconds (inclusive), and is rounded to the nearest 15th interval. For example, if set to 47 seconds, then it is rounded down to 45. If set to 0, welcome music is played, and then the timeout action will be taken. - - Int16 - - Int16 - - - 1200 - - - UseDefaultMusicOnHold - - The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldAudioFileId. - - Boolean - - Boolean - - - None - - - Users - - The Users parameter lets you add agents to the Call Queue. This parameter expects a list of user unique identifiers (GUID). - - List - - List - - - None - - - WaitTimeBeforeOfferingCallbackInSecond - - The number of seconds a call must wait before becoming eligible for callback. This condition applies to calls at the front of the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - WelcomeMusicAudioFileId - - The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. This is the unique identifier of the audio file. - - Guid - - Guid - - - None - - - WelcomeTextToSpeechPrompt - - This parameter indicates which Text-to-Speech (TTS) prompt is played when callers are connected to the Call Queue. - - String - - String - - - None - - - - - - AgentAlertTime - - The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. The AgentAlertTime can be set to any integer value between 15 and 180 seconds (3 minutes), inclusive. The default value is 30 seconds. - - Int16 - - Int16 - - - 30 - - - AllowOptOut - - The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - - Boolean - - Boolean - - - True - - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - Voice applications private preview customers only. Saving a call queue configuration through Teams admin center will *remove* this setting. The AutoRecordingTemplateId parameter indicates the Auto Recording template to apply to the call queue. - - String - - String - - - None - - - CallbackEmailNotificationTarget - - The CallbackEmailNotificationTarget parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security) that will receive notification if a callback times out of the call queue or can't be completed for some other reason. This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferAudioFilePromptResourceId - - The CallbackOfferAudioFilePromptResourceId parameter indicates the unique identifier for the Audio file prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferTextToSpeechPrompt`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferTextToSpeechPrompt - - The CallbackOfferTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferAudioFilePromptResourceId`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallbackRequestDtmf - - The DTMF touch-tone key the caller will be told to press to select callback. The CallbackRequestDtmf must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallToAgentRatioThresholdBeforeOfferingCallback - - The ratio of calls to agents that must be in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Minimum value of 1. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - ChannelId - - Id of the channel to connect a call queue to. - - String - - String - - - None - - - ChannelUserObjectId - - Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). This is the GUID of one of the owners of the team the channels belongs to. - - Guid - - Guid - - - None - - - ComplianceRecordingForCallQueueTemplateId - - The ComplianceRecordingForCallQueueTemplateId parameter indicates a list of up to 2 Compliance Recording for Call Queue templates to apply to the call queue. - - List - - List - - - None - - - ConferenceMode - - The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for this Call queue. Conference mode significantly reduces the amount of time it takes for a caller to be connected to an agent, after the agent accepts the call. The following bullet points detail the difference between both modes: - - Conference Mode Disabled: CQ call is presented to agent. Agent answers and media streams are setup. Based on geographic location of the CQ call and agent, there may be a slight delay in setting up the media streams which may result in some dead air and the first part of the conversation being cut off. - - Conference Mode Enabled: CQ call is put into conference. Agent answers and is brought into conference. Media streams are already setup when agent is brought into conference thus no dead air, and first bit of conversation will not be cut off. - - Boolean - - Boolean - - - True - - - CustomAudioFileAnnouncementForCR - - The CustomAudioFileAnnouncementForCR parameter indicates the unique identifier for the Audio file prompt which is played to callers when compliance recording for call queues is enabled. - - Guid - - Guid - - - None - - - CustomAudioFileAnnouncementForCRFailure - - The CustomAudioFileAnnouncementForCRFailure parameter indicates the unique identifier for the Audio file prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - Guid - - Guid - - - None - - - DistributionLists - - The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per Call Queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the Call Queue. - - List - - List - - - None - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - The EnableNoAgentSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableNoAgentSharedVoicemailTranscription - - The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on no agents. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - The EnableOverflowSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailTranscription - - The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - The EnableTimeoutSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailTranscription - - The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. This parameter is only applicable when TimeoutAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - HideAuthorizedUsers - - This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - IsCallbackEnabled - - The IsCallbackEnabled parameter is used to turn on/off callback. - - Boolean - - Boolean - - - None - - - LanguageId - - The LanguageId parameter indicates the language that is used to play shared voicemail prompts. This parameter becomes a required parameter if either OverflowAction or TimeoutAction is set to SharedVoicemail. - You can query the supported languages using the Get-CsAutoAttendantSupportedLanguage cmdlet. - - String - - String - - - None - - - LineUri - - This parameter is reserved for Microsoft internal use only. - - String - - String - - - None - - - MusicOnHoldAudioFileId - - The MusicOnHoldAudioFileId parameter represents music to play when callers are placed on hold. This is the unique identifier of the audio file. This parameter is required if the UseDefaultMusicOnHold parameter is not specified. - - Guid - - Guid - - - None - - - Name - - The Name parameter specifies a unique name for the Call Queue. - - String - - String - - - None - - - NoAgentAction - - The NoAgentAction parameter defines the action to take if the no agents condition is reached. The NoAgentAction property must be set to one of the following values: Queue, Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Queue. - PARAMVALUE: Queue | Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - NoAgentActionCallPriority - - If the NoAgentAction is set to Forward, and the NoAgentActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - NoAgentActionTarget - - The NoAgentActionTarget represents the target of the no agent action. If the NoAgentAction is set to Forward, this parameter must be set to a GUID or a telephone number with a mandatory 'tel:' prefix. If the NoAgentAction is set to SharedVoicemail, this parameter must be set to a Microsoft 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - NoAgentApplyTo - - The NoAgentApplyTo parameter defines if the NoAgentAction applies to calls already in queue and new calls arriving to the queue, or only new calls that arrive once the No Agents condition occurs. The default value is AllCalls. - PARAMVALUE: AllCalls | NewCalls - - Object - - Object - - - Disconnect - - - NoAgentDisconnectAudioFilePrompt - - The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to no agents. - - Guid - - Guid - - - None - - - NoAgentDisconnectTextToSpeechPrompt - - The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to no agents. - - String - - String - - - None - - - NoAgentRedirectPersonAudioFilePrompt - - The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPersonTextToSpeechPrompt - - The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - String - - String - - - None - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoiceAppAudioFilePrompt - - The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - The NoAgentRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoicemailAudioFilePrompt - - The NoAgentRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - Guid - - Guid - - - None - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - String - - String - - - None - - - NoAgentSharedVoicemailAudioFilePrompt - - The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - NoAgentSharedVoicemailTextToSpeechPrompt - - The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - NumberOfCallsInQueueBeforeOfferingCallback - - The number of calls in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - OboResourceAccountIds - - The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. The agents in the Call Queue will be able to make outbound calls using the phone number on the resource accounts. This is a list of resource account GUIDs. - - List - - List - - - None - - - OverflowAction - - The OverflowAction parameter designates the action to take if the overflow threshold is reached. The OverflowAction property must be set to one of the following values: DisconnectWithBusy, Forward, Voicemail, and SharedVoicemail. The default value is DisconnectWithBusy. - PARAMVALUE: DisconnectWithBusy | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - DisconnectWithBusy - - - OverflowActionCallPriority - - If the OverFlowAction is set to Forward, and the OverflowActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - OverflowActionTarget - - The OverflowActionTarget parameter represents the target of the overflow action. If the OverFlowAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the OverflowAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this parameter is optional. - - String - - String - - - None - - - OverflowDisconnectAudioFilePrompt - - The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to overflow. - - Guid - - Guid - - - None - - - OverflowDisconnectTextToSpeechPrompt - - The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to overflow. - - String - - String - - - None - - - OverflowRedirectPersonAudioFilePrompt - - The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPersonTextToSpeechPrompt - - The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - String - - String - - - None - - - OverflowRedirectPhoneNumberAudioFilePrompt - - The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - String - - String - - - None - - - OverflowRedirectVoiceAppAudioFilePrompt - - The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - The OverflowRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to overflow. - - String - - String - - - None - - - OverflowRedirectVoicemailAudioFilePrompt - - The OverflowRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoicemailTextToSpeechPrompt - - The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - String - - String - - - None - - - OverflowSharedVoicemailAudioFilePrompt - - The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - OverflowSharedVoicemailTextToSpeechPrompt - - The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - OverflowThreshold - - The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. The OverflowThreshold can be any integer value between 0 and 200, inclusive. A value of 0 causes calls not to reach agents and the overflow action to be taken immediately. - - Int16 - - Int16 - - - 50 - - - PresenceBasedRouting - - The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. When set to False, calls will be routed to agents who have opted in to receive calls, regardless of their presence state. When set to True, opted-in agents will receive calls only when their presence state is Available. - - Boolean - - Boolean - - - True - - - RoutingMethod - - The RoutingMethod parameter defines how agents will be called in a Call Queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel. If the routing method is set to RoundRobin, the agents will be called using the Round Robin strategy so that all agents share the call load equally. If the routing method is set to LongestIdle, the agents will be called based on their idle time, that is, the agent that has been idle for the longest period will be called. - PARAMVALUE: Attendant | Serial | RoundRobin | LongestIdle - - Object - - Object - - - Attendant - - - ServiceLevelThresholdResponseTimeInSecond - - The target number of seconds calls should be answered in. This number is used to calculate the call queue service level percentage. - A value of `$null` indicates that a service level percentage will not be calculated for this call queue. - - Int16 - - Int16 - - - None - - - SharedCallQueueHistoryTemplateId - - The SharedCallQueueHistoryTemplateId parameter indicates the Shared Call History template to apply to the call queue. - > [!NOTE] > `-ConferenceMode` must be set to $true > > Shared call history is not availble when using a Teams channel for queue membership > - `-ChannelId` and `-ChannelUserObjectId` are set. - - String - - String - - - None - - - ShiftsSchedulingGroupId - - Id of the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShiftsTeamId - - Id of the Team containing the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShouldOverwriteCallableChannelProperty - - A Teams Channel can only be linked to one Call Queue at a time. To force reassignment of the Teams Channel to a new Call Queue, set this to $true. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - TextAnnouncementForCR - - The TextAnnouncementForCR parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers when compliance recording for call queues is enabled. - - String - - String - - - None - - - TextAnnouncementForCRFailure - - The TextAnnouncementForCRFailure parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - String - - String - - - None - - - TimeoutAction - - The TimeoutAction parameter defines the action to take if the timeout threshold is reached. The TimeoutAction property must be set to one of the following values: Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Disconnect. - PARAMVALUE: Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - TimeoutActionCallPriority - - If the TimeoutAction is set to Forward, and the TimeoutActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - TimeoutActionTarget - - The TimeoutActionTarget represents the target of the timeout action. If the TimeoutAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the TimeoutAction is set to SharedVoicemail, this parameter must be set to an Office 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - TimeoutDisconnectAudioFilePrompt - - The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to timeout. - - Guid - - Guid - - - None - - - TimeoutDisconnectTextToSpeechPrompt - - The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to timeout. - - String - - String - - - None - - - TimeoutRedirectPersonAudioFilePrompt - - The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPersonTextToSpeechPrompt - - The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - String - - String - - - None - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoiceAppAudioFilePrompt - - The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - The TimeoutRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoicemailAudioFilePrompt - - The TimeoutRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - String - - String - - - None - - - TimeoutSharedVoicemailAudioFilePrompt - - The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - TimeoutSharedVoicemailTextToSpeechPrompt - - The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - TimeoutThreshold - - The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. At that point, the system will take the action specified by the TimeoutAction parameter. The TimeoutThreshold can be any integer value between 0 and 2700 seconds (inclusive), and is rounded to the nearest 15th interval. For example, if set to 47 seconds, then it is rounded down to 45. If set to 0, welcome music is played, and then the timeout action will be taken. - - Int16 - - Int16 - - - 1200 - - - UseDefaultMusicOnHold - - The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldAudioFileId. - - Boolean - - Boolean - - - None - - - Users - - The Users parameter lets you add agents to the Call Queue. This parameter expects a list of user unique identifiers (GUID). - - List - - List - - - None - - - WaitTimeBeforeOfferingCallbackInSecond - - The number of seconds a call must wait before becoming eligible for callback. This condition applies to calls at the front of the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - WelcomeMusicAudioFileId - - The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. This is the unique identifier of the audio file. - - Guid - - Guid - - - None - - - WelcomeTextToSpeechPrompt - - This parameter indicates which Text-to-Speech (TTS) prompt is played when callers are connected to the Call Queue. - - String - - String - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsCallQueue -Name "Help Desk" -UseDefaultMusicOnHold $true - - This example creates a Call Queue for the organization named "Help Desk" using default music on hold. - - - - -------------------------- Example 2 -------------------------- - New-CsCallQueue -Name "Help desk" -RoutingMethod Attendant -DistributionLists @("8521b0e3-51bd-4a4b-a8d6-b219a77a0a6a", "868dccd8-d723-4b4f-8d74-ab59e207c357") -AllowOptOut $false -AgentAlertTime 30 -OverflowThreshold 15 -OverflowAction Forward -OverflowActionTarget 7fd04db1-1c8e-4fdf-9af5-031514ba1358 -TimeoutThreshold 30 -TimeoutAction Disconnect -MusicOnHoldAudioFileId 1e81adaf-7c3e-4db1-9d61-5d135abb1bcc -WelcomeMusicAudioFileId 0b31bbe5-e2a0-4117-9b6f-956bca6023f8 - - This example creates a Call Queue for the organization named "Help Desk" with music on hold and welcome music audio files. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallqueue - - - Create a Phone System Call Queue - https://support.office.com/article/Create-a-Phone-System-call-queue-67ccda94-1210-43fb-a25b-7b9785f8a061 - - - Get-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - New-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - - - - - - New-CsCloudCallDataConnection - New - CsCloudCallDataConnection - - This cmdlet creates an online call data connection. - - - - This cmdlet creates an online call data connection. If you get an error that the connection already exists, it means that the call data connection already exists for your tenant. In this case, run Get-CsCloudCallDataConnection. - - - - New-CsCloudCallDataConnection - - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The New-CsCloudCallDataConnection cmdlet is only supported in commercial environments from Teams PowerShell Module versions 4.6.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsCloudCallDataConnection - -Token ------ -00000000-0000-0000-0000-000000000000 - - Returns a token value, which is needed when configuring your on-premises environment with Set-CsCloudCallDataConnector. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscloudcalldataconnection - - - Configure Call Data Connector - https://learn.microsoft.com/skypeforbusiness/hybrid/configure-call-data-connector - - - Get-CsCloudCallDataConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscloudcalldataconnection - - - - - - New-CsComplianceRecordingForCallQueueTemplate - New - CsComplianceRecordingForCallQueueTemplate - - Use the New-CsComplianceRecordingForCallQueueTemplate cmdlet to create a Compliance Recording for Call Queues template. - - - - Use the New-CsComplianceRecordingForCallQueueTemplate cmdlet to create a Compliance Recording for Call Queues template. - - - - New-CsComplianceRecordingForCallQueueTemplate - - BotApplicationInstanceObjectId - - The compliance recording bot's application instance object Id. - Use Get-CsOnlineApplicationInstance (get-csonlineapplicationinstance.md)to get the `ObjectId`. - - System.String - - System.String - - - None - - - ConcurrentInvitationCount - - The number of concurrent invitations to send to the compliance recording for call queue bot. - - System.Int32 - - System.Int32 - - - 1 - - - Description - - A description for the compliance recording for call queues template. - - System.String - - System.String - - - None - - - Name - - The name of the compliance recording for call queue template. - - System.String - - System.String - - - None - - - PairedApplicationInstanceObjectId - - The PairedApplicationInstanceObjectId parameter specifies the paired compliance recording bot application object Id to invite to the call. - - System.String - - System.String - - - None - - - RequiredBeforeCall - - Indicates if the compliance recording for call queues bot must be able to join the call. Strict recording - if the bot can't join the call, the call will end. - - - SwitchParameter - - - False - - - RequiredDuringCall - - Indicates if the compliance recording for call queues bot must remain part of the call. Strict recording - if the bot leaves the call, the call will end. - - - SwitchParameter - - - False - - - - - - BotApplicationInstanceObjectId - - The compliance recording bot's application instance object Id. - Use Get-CsOnlineApplicationInstance (get-csonlineapplicationinstance.md)to get the `ObjectId`. - - System.String - - System.String - - - None - - - ConcurrentInvitationCount - - The number of concurrent invitations to send to the compliance recording for call queue bot. - - System.Int32 - - System.Int32 - - - 1 - - - Description - - A description for the compliance recording for call queues template. - - System.String - - System.String - - - None - - - Name - - The name of the compliance recording for call queue template. - - System.String - - System.String - - - None - - - PairedApplicationInstanceObjectId - - The PairedApplicationInstanceObjectId parameter specifies the paired compliance recording bot application object Id to invite to the call. - - System.String - - System.String - - - None - - - RequiredBeforeCall - - Indicates if the compliance recording for call queues bot must be able to join the call. Strict recording - if the bot can't join the call, the call will end. - - SwitchParameter - - SwitchParameter - - - False - - - RequiredDuringCall - - Indicates if the compliance recording for call queues bot must remain part of the call. Strict recording - if the bot leaves the call, the call will end. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsComplianceRecordingForCallQueueTemplate -Name "Customer Service" -Description "Required before/during call" -BotApplicationInstanceObjectId 14732826-8206-42e3-b51e-6693e2abb698 -RequiredDuringCall -RequiredBeforeCall - - This example creates a new Compliance Recording for Call Queue template. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsComplianceRecordingForCallQueueTemplate - - - Get-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - New-CsCustomPolicyPackage - New - CsCustomPolicyPackage - - This cmdlet creates a custom policy package. - - - - This cmdlet creates a custom policy package. It allows the admin to create their own policy packages for the tenant. For more information on policy packages and the policy types available, see Managing policy packages in Teams (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages). Note: This cmdlet is currently in private preview. - - - - New-CsCustomPolicyPackage - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - PolicyList - - > Applicable: Microsoft Teams - A list of one or more policies to be added in the package. To specify the policy list, follow this format: "<PolicyType>, <PolicyName>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). To get the list of available policy names on your tenant, use the skypeforbusiness module and refer to cmdlets such as [Get-CsTeamsMeetingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingpolicy) and [Get-CsTeamsMessagingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy). - - String[] - - String[] - - - None - - - Description - - > Applicable: Microsoft Teams - The description of the custom package. - - String - - String - - - None - - - - - - Description - - > Applicable: Microsoft Teams - The description of the custom package. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - PolicyList - - > Applicable: Microsoft Teams - A list of one or more policies to be added in the package. To specify the policy list, follow this format: "<PolicyType>, <PolicyName>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). To get the list of available policy names on your tenant, use the skypeforbusiness module and refer to cmdlets such as [Get-CsTeamsMeetingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingpolicy) and [Get-CsTeamsMessagingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy). - - String[] - - String[] - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsCustomPolicyPackage -Identity "MyPackage" -PolicyList "TeamsMessagingPolicy, MyMessagingPolicy" - - Creates a custom package named "MyPackage" with one policy in the package: a messaging policy of name "MyMessagingPolicy". - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsCustomPolicyPackage -Identity "MyPackage" -PolicyList "TeamsMessagingPolicy, MyMessagingPolicy", "TeamsMeetingPolicy, MyMeetingPolicy" -Description "My package" - - Creates a custom package named "MyPackage" with description "My package" and two policies in the package: a messaging policy of name "MyMessagingPolicy" and a meeting policy of name "MyMeetingPolicy". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscustompolicypackage - - - Update-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/update-cscustompolicypackage - - - Remove-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscustompolicypackage - - - - - - New-CsEdgeAllowAllKnownDomains - New - CsEdgeAllowAllKnownDomains - - Enables Skype for Business Online federation with all domains except for those domains included on the blocked domains list. - - - - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and, if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, AOL, and Yahoo. - Federation is managed, in part, by using allowed domain and blocked domain lists. The allowed domain list specifies the domains that users are allowed to communicate with; the blocked domain list specifies the domains that users are not allowed to communicate with. By default, users can communicate with any domain that does not appear on the blocked list. However, administrators can modify this default setting and limit communication to domains that are on the allowed domains list. - Skype for Business Online does not allow you to directly modify the allowed list or the blocked list; for example, you cannot use a command similar to this one, which passes a string value representing a domain name to the allowed domains list: - `Set-CsTenantFederationConfiguration -AllowedDomains "fabrikam.com"` - Instead, you must use either the New-CsEdgeAllowAllKnownDomains cmdlet or the New-CsEdgeAllowList cmdlet to create a domain object and then pass that domain object to the Set-CsTenantFederationConfiguration cmdlet. The New-CsEdgeAllowAllKnownDomains cmdlet is used if you want to allow users to communicate with all domains except for those expressly specified on the blocked domains list. The New-CsEdgeAllowList cmdlet is used if you want to limit user communication to a specified collection of domains. In that case, users will only be allowed to communicate with domains that appear on the allowed domains list. - To configure federation with all known domains, use a set of commands similar to this: - `$x = New-CsEdgeAllowAllKnownDomains` - `Set-CsTenantFederationConfiguration -AllowedDomains $x` - - - - New-CsEdgeAllowAllKnownDomains - - - - - - - Input types - - - None. The New-CsEdgeAllowAllKnownDomains cmdlet does not accept pipelined input. - - - - - - - Output types - - - The New-CsEdgeAllowAllKnownDomains cmdlet creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowAllKnownDomains object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = New-CsEdgeAllowAllKnownDomains - -Set-CsTenantFederationConfiguration -AllowedDomains $x - - The two commands shown in Example 1 configure the federation settings for the current tenant to allow all known domains. To do this, the first command in the example uses the New-CsEdgeAllowAllKnownDomains cmdlet to create an instance of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowAllKnownDomains object; this instance is stored in a variable named $x. In the second command, the Set-CsTenantFederationConfiguration cmdlet is called along with the AllowedDomains parameter; using $x as the parameter value configures the federation settings to allow all known domains. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csedgeallowallknowndomains - - - Set-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - - - - New-CsEdgeAllowList - New - CsEdgeAllowList - - Enables administrators to specify the domains that their users will be allowed to communicate with. - - - - The `New-CsEdgeAllowList` cmdlet, which can be used only with Skype for Business Online, must be used in conjunction with the `New-CsEdgeDomainPattern` cmdlet and the `Set-CsTenantFederationConfiguration` cmdlet. - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and, if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, AOL, and Yahoo - Federation is managed, in part, by using allowed domain and blocked domain lists. The allowed domain list specifies the domains that users are allowed to communicate with; the blocked domain list specifies the domains that users are not allowed to communicate with. By default, users can communicate with any domain that does not appear on the blocked list. However, administrators can modify this default setting and limit communication to domains that are on the allowed domains list. - Skype for Business Online does not allow you to directly modify the allowed list or the blocked list; for example, you cannot use a command similar to this one, which passes a string value representing a domain name to the allowed domains list: - Set-CsTenantFederationConfiguration -AllowedDomains "fabrikam.com" - Instead, you must use either the `New-CsEdgeAllowAllKnownDomains` cmdlet or the `New-CsEdgeAllowList` cmdlet to create a domain object and then pass that domain object to the `Set-CsTenantFederationConfiguration` cmdlet. The `New-CsEdgeAllowAllKnownDomains` cmdlet is used if you want to allow users to communicate with all domains except for those expressly specified on the blocked domains list. The `New-CsEdgeAllowList` cmdlet is used if you want to limit user communication to a specified collection of domains. In that case, users will only be allowed to communicate with domains that appear on the allowed domains list. - To add a single domain (fabrikam.com) to the allowed domain list, you need to use a set of command similar to these: - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - $newAllowList = New-CsEdgeAllowList -AllowedDomain $x - Set-CsTenantFederationConfiguration -AllowedDomains $newAllowList - When this command finishes executing, users will only be allowed to communicate with users from fabrikam.com domain. - - - - New-CsEdgeAllowList - - AllowedDomain - - > Applicable: Microsoft Teams - Object reference to the new domain (or set of domains) to be added to the allowed domain list. Domain object references must be created by using the `New-CsEdgeDomainPattern` cmdlet. Multiple domain objects can be added by separating the object references using commas. For example: - -AllowedDomain $x,$y - - String - - String - - - None - - - - - - AllowedDomain - - > Applicable: Microsoft Teams - Object reference to the new domain (or set of domains) to be added to the allowed domain list. Domain object references must be created by using the `New-CsEdgeDomainPattern` cmdlet. Multiple domain objects can be added by separating the object references using commas. For example: - -AllowedDomain $x,$y - - String - - String - - - None - - - - - - Input types - - - None. The `New-CsEdgeAllowList` cmdlet does not accept pipelined input. - - - - - - - Output types - - - The `New-CsEdgeAllowList` cmdlet creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.AllowList object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -$newAllowList = New-CsEdgeAllowList -AllowedDomain $x - -Set-CsTenantFederationConfiguration -AllowedDomains $newAllowList - - The commands shown in Example 1 assign the domain fabrikam.com to the allowed domains list for the tenant with the TenantId "bf19b7db-6960-41e5-a139-2aa373474354". To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a domain object for fabrikam.com; this object is stored in a variable named $x. After the domain object has been created, the `New-CsEdgeAllowList` cmdlet is used to create a new allowed list containing only the domain fabrikam.com. - With the allowed domain list created, the final command in the example can then use the `Set-CsTenantFederationConfiguration` cmdlet to configure fabrikam.com as the only domain on the allowed domain list for the current tenant. - - - - -------------------------- Example 2 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "contoso.com" - -$y = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -$newAllowList = New-CsEdgeAllowList -AllowedDomain $x,$y - -Set-CsTenantFederationConfiguration -AllowedDomains $newAllowList - - Example 2 shows how you can add multiple domains to an allowed domains list. This is done by calling the `New-CsEdgeDomainPattern` cmdlet multiple times (one for each domain to be added to the list), and storing the resulting domain objects in separate variables. Each of those variables can then be added to the allow list created by the `New-CsEdgeAllowList` cmdlet simply by using the AllowedDomain parameter and separating the variables name by using commas. - - - - -------------------------- Example 3 -------------------------- - $newAllowList = New-CsEdgeAllowList -AllowedDomain $Null - -Set-CsTenantFederationConfiguration -AllowedDomains $newAllowList - - In Example 3, all domains are removed from the allowed domains list. To do this, the first command in the example uses the `New-CsEdgeAllowList` cmdlet to create a blank list of allowed domains; this is accomplished by setting the AllowedDomain property to a null value ($Null). The resulting object reference ($newAllowList) is then used in conjunction with the `Set-CsTenantFederationConfiguration` cmdlet to remove all the domains from the allowed domain list. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csedgeallowlist - - - New-CsEdgeDomainPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csedgedomainpattern - - - Set-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - - - - New-CsEdgeDomainPattern - New - CsEdgeDomainPattern - - Used to specify a domain that will be added or removed from the set of domains enabled for federation or the set of domains disabled for federation. - - - - You must use the New-CsEdgeDomainPattern cmdlet when modifying the allowed or blocked domain lists. String values (such as "fabrikam.com") cannot be directly passed to the cmdlets used to manage either of these lists. - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and, if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, AOL, and Yahoo. - Federation is managed, in part, by using allowed domain and blocked domain lists. The allowed domain list specifies the domains that users are allowed to communicate with; the blocked domain list specifies the domains that users are not allowed to communicate with. By default, users can communicate with any domain that does not appear on the blocked list. However, administrators can modify this default setting and limit communication to domains that are on the allowed domains list. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - Skype for Business Online does not allow you to directly modify the allowed list or the blocked list; for example, you cannot use a command similar to this one, which passes a string value representing a domain name to the blocked domains list: - `Set-CsTenantFederationConfiguration -BlockedDomains "fabrikam.com"` - Instead, you must create a domain object by using the New-CsEdgeDomainPattern cmdlet, store that domain object in a variable (in this example, $x), then pass the variable name to the blocked domains list: - `$x = New-CsEdgeDomainPattern -Domain "fabrikam.com"` - `Set-CsTenantFederationConfiguration -BlockedDomains $x` - - - - New-CsEdgeDomainPattern - - Domain - - > Applicable: Microsoft Teams - Fully qualified domain name of the domain to be added to the allow list. For example: - `-Domain "fabrikam.com"` - Note that you cannot use wildcards when specifying a domain name. - - String - - String - - - None - - - - - - Domain - - > Applicable: Microsoft Teams - Fully qualified domain name of the domain to be added to the allow list. For example: - `-Domain "fabrikam.com"` - Note that you cannot use wildcards when specifying a domain name. - - String - - String - - - None - - - - - - Input types - - - None. The New-CsEdgeDomainPattern cmdlet does not accept pipelined input. - - - - - - - Output types - - - The New-CsEdgeDomainPattern cmdlet creates new instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.DomainPattern object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains $x - - Example 1 demonstrates how you can assign a single domain to the blocked domains list for a specified tenant. To do this, the first command in the example creates a domain object for the domain fabrikam.com; this is done by calling the `New-CsEdgeDomainPattern` cmdlet and by saving the resulting domain object in a variable named $x. The second command then uses the `Set-CsTenantFederationConfiguration` cmdlet and the `BlockedDomains` parameter to configure fabrikam.com as the only domain blocked by the current tenant. Please note that `AllowFederatedUsers` should be `True` for this to work. - - - - -------------------------- Example 2 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -AllowedDomains $x - - Example 2 demonstrates how you can assign a single domain to the allowed domains list for a specified tenant. To do this, the first command in the example creates a domain object for the domain fabrikam.com; this is done by calling the `New-CsEdgeDomainPattern` cmdlet and by saving the resulting domain object in a variable named $x. The second command then uses the `Set-CsTenantFederationConfiguration` cmdlet and the `AllowedDomains` parameter to configure fabrikam.com as the only domain allowed by the current tenant. Please note that `AllowFederatedUsers` should be `True` for this to work. - - - - -------------------------- Example 3 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "" - -Set-CsTenantFederationConfiguration -AllowedDomains $x - - Example 3 demonstrates how you can block a specified tenant from any external federation. To do this, the first command in the example creates an empty domain object; this is done by calling the `New-CsEdgeDomainPattern` cmdlet and by saving the resulting domain object in a variable named $x. The second command then uses the `Set-CsTenantFederationConfiguration` cmdlet and the `AllowedDomains` parameter to configure the current tenant with a Block-All setting. Please note that `AllowFederatedUsers` should be `True` in case you want to allow specific users to be able to communicate externally via `ExternalAccessPolicy` instances. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csedgedomainpattern - - - Set-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - - - - New-CsGroupPolicyAssignment - New - CsGroupPolicyAssignment - - This cmdlet is used to assign a policy to a security group or distribution list. - - - - > [!NOTE] > As of May 2023, group policy assignment functionality in Teams PowerShell Module has been extended to support all policy types used in Teams except for the following: > - Teams App Permission Policy > - Teams Network Roaming Policy > - Teams Emergency Call Routing Policy > - Teams Voice Applications Policy > - Teams Upgrade Policy > > This cmdlet will be deprecated in the future. Going forward, group policy assignment can be performed by using the corresponding Grant-Cs[PolicyType] cmdlet with the '-Group' parameter. - This cmdlet is used to assign a policy to a Microsoft 365 group, a security group, or a distribution list. When creating a group policy assignment, you must specify a rank, which indicates the precedence of that assignment relative to any other group assignments for the same policy type that may exist. The assignment will be applied to users in the group for any user that does not have a direct policy assignment, provided the user does not have any higher-ranking assignments from other groups for the same policy type. - The group policy assignment rank is set at the time a policy is assigned to a group and it is relative to other group policy assignments of the same policy type. For example, if there are two groups, each assigned a Teams Meeting policy, then one of the group assignments will be rank 1 while the other will be rank 2. It's helpful to think of rank as determining the position of each policy assignment in an ordered list, from highest rank to lowest rank. In fact, rank can be specified as any number, but these are converted into sequential values 1, 2, 3, etc. with 1 being the highest rank. When assigning a policy to a group, set the rank to be the position in the list where you want the new group policy assignment to be. If a rank is not specified, the policy assignment will be given the lowest rank, corresponding to the end of the list. Assignments applied directly to a user will be treated like rank 0, having precedence over all assignments applied via groups. - Once a group policy assignment is created, the policy assignment will be propagated to the members of the group, including users that are added to the group after the assignment was created. Propagation time of the policy assignments to members of the group varies based on the number of users in the group. Propagation time for subsequent group membership changes also varies based on the number of users being added or removed from the group. For large groups, propagation to all members may take 24 hours or more. When using group policy assignment, the recommended maximum group membership size is 50,000 users per group. - > [!NOTE] > - A given policy type can be assigned to at most 64 groups, across policy instances for that type. > - Policy assignments are only propagated to users that are direct members of the group; the assignments are not propagated to members of nested groups. > - Direct user assignments of policy take precedence over any group policy assignments for a given policy type. Group PolicyPolicy assignments only take effect to a user if that user does not have a direct policy assignment. > - Get-CsOnlineUser only shows direct assignments of policy. It does not show the effect of group policy assignments. To view a specific user's effective policy, use `Get-CsUserPolicyAssignment`. This cmdlet shows whether the effective policy is from a direct assignment or from a group, as well as the ranked order of each group policy assignment in the case where a user is a member of more than 1 group with a group policy assignment of the same policy type. For example, to view all TeamsMeetingPolicy assignments for a given user, $user, run the following powershell cmdlet: `Get-CsUserPolicyAssignment -Identity $user -PolicyType TeamsMeetingPolicy|select -ExpandProperty PolicySource`. For details, see Get-CsUserPolicyAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicyassignment). > - Group policy assignment is currently not available in the Microsoft 365 DoD deployment. - - - - New-CsGroupPolicyAssignment - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - GroupId - - The ID of a batch policy assignment operation. - - String - - String - - - None - - - PassThru - - Returns true when the command succeeds - - - SwitchParameter - - - False - - - PolicyName - - The name of the policy to be assigned. - - String - - String - - - None - - - PolicyType - - The type of policy to be assigned. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - GroupId - - The ID of a batch policy assignment operation. - - String - - String - - - None - - - PassThru - - Returns true when the command succeeds - - SwitchParameter - - SwitchParameter - - - False - - - PolicyName - - The name of the policy to be assigned. - - String - - String - - - None - - - PolicyType - - The type of policy to be assigned. - - String - - String - - - None - - - Rank - - The rank of the policy assignment, relative to other group policy assignments for the same policy type. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsGroupPolicyAssignment -GroupId d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 -PolicyType TeamsMeetingPolicy -PolicyName AllOn -Rank 1 - -Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - -------------------------- Example 2 -------------------------- - New-CsGroupPolicyAssignment -GroupId salesdepartment@contoso.com -PolicyType TeamsMeetingPolicy -PolicyName Kiosk - -Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy Kiosk 2 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - -------------------------- Example 3 -------------------------- - Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy Kiosk 2 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - -New-CsGroupPolicyAssignment -GroupId e050ce51-54bc-45b7-b3e6-c00343d31274 -PolicyType TeamsMeetingpolicy -PolicyName AllOff -Rank 2 - -Get-CsGroupPolicyAssignment - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -e050ce51-54bc-45b7-b3e6-c00343d31274 TeamsMeetingPolicy AllOff 2 11/2/2019 12:20:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy Kiosk 3 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment - - - Get-CsUserPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csuserpolicyassignment - - - Get-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csgrouppolicyassignment - - - Remove-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csgrouppolicyassignment - - - - - - New-CsHybridTelephoneNumber - New - CsHybridTelephoneNumber - - This cmdlet adds a hybrid telephone number to the tenant. - - - - This cmdlet adds a hybrid telephone number to the tenant that can be used for Audio Conferencing with Direct Routing for GCC High and DoD clouds. - > [!IMPORTANT] > This cmdlet is being deprecated. Use the New-CsOnlineDirectRoutingTelephoneNumberUploadOrder cmdlet to add a telephone number for Audio Conferencing with Direct Routing in Microsoft 365 GCC High and DoD clouds. Detailed instructions on how to use the new cmdlet can be found at New-CsOnlineDirectRoutingTelephoneNumberUploadOrder (New-CsOnlineDirectRoutingTelephoneNumberUploadOrder.md). - - - - New-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - The identity parameter. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - The telephone number to add. The number should be specified with a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - The identity parameter. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - The telephone number to add. The number should be specified with a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - The cmdlet is only available in GCC High and DoD cloud instances. - - - - - -------------------------- Example 1 -------------------------- - New-CsHybridTelephoneNumber -TelephoneNumber +14025551234 - - This example adds the hybrid phone number +1 (402) 555-1234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cshybridtelephonenumber - - - Remove-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cshybridtelephonenumber - - - Get-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/get-cshybridtelephonenumber - - - - - - New-CsInboundBlockedNumberPattern - New - CsInboundBlockedNumberPattern - - Adds a blocked number pattern to the tenant list. - - - - This cmdlet adds a blocked number pattern to the tenant list. An inbound PSTN call from a number that matches the blocked number pattern will be blocked. If a ResourceAccount is specified, the call will be redirected to that resource account instead of being blocked. - - - - New-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsInboundBlockedNumberPattern - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Name - - A displayable name describing the blocked number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be created. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - True - - - Identity - - A unique identifier specifying the blocked number pattern to be created. - - String - - String - - - None - - - Name - - A displayable name describing the blocked number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> New-CsInboundBlockedNumberPattern -Description "Avoid Unwanted Automatic Call" -Name "BlockAutomatic" -Pattern "^\+11234567890" - - This example adds a blocked number pattern to block inbound calls from +11234567890 number. - - - - -------------------------- Example 2 -------------------------- - PS> New-CsInboundBlockedNumberPattern -Description "Avoid Unwanted Automatic Call" -Name "BlockAutomatic" -Pattern "^\+11234567890" -ResourceAccount "d290f1ee-6c54-4b01-90e6-d701748f0851" - - This example adds a blocked number pattern to redirect inbound calls from +11234567890 number to the specified resource account instead of blocking it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - New-CsInboundExemptNumberPattern - New - CsInboundExemptNumberPattern - - This cmdlet lets you configure a new number pattern that is exempt from tenant call blocking. - - - - The `New-CsInboundExemptNumberPattern` cmdlet creates a new inbound exempt number pattern that allows specific phone numbers to bypass tenant call blocking. This is useful for ensuring that important numbers, such as emergency services or critical business contacts, are not inadvertently blocked by the tenant's call blocking policies. - - - - New-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - System.String - - System.String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Name - - A displayable name describing the exempt number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - System.String - - System.String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Identity - - Unique identifier for the exempt number pattern to be created. - - String - - String - - - None - - - Name - - A displayable name describing the exempt number pattern to be created. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your block and exempt phone number ranges. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS> New-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" -Description "Allow Contoso helpdesk" -Enabled $True - - Creates a new inbound exempt number pattern for the numbers 1 (312) 555-88882 and 1 (312) 555-88883 and enables it - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - New-CsMainlineAttendantAppointmentBookingFlow - New - CsMainlineAttendantAppointmentBookingFlow - - Creates new Mainline Attendant appointment booking flow - - - - The New-CsMainlineAttendantAppointmentBookingFlow cmdlet creates a new appointment booking connection that can be used with Mainline Attendant - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - New-CsMainlineAttendantAppointmentBookingFlow - - Name - - The name of the appointment booking flow - - String - - String - - - None - - - Description - - The description for the appointment booking flow - Limit: 500 characters. - - String - - String - - - None - - - CallerAuthenticationMethod - - The method by which the caller is authenticated - PARAVALUES: Sms | Email | VerificationLink | Voiceprint | UserDetails - - String - - String - - - None - - - ApiAuthenticationType - - The method of authentication used by the API - PARAVALUES: Basic | ApiKey | BearerTokenStatic | BearerTokenDynamic - - String - - String - - - None - - - ApiDefinitions - - The parameters used by the API - - String - - String - - - None - - - - - - Name - - The name of the appointment booking flow - - String - - String - - - None - - - Description - - The description for the appointment booking flow - Limit: 500 characters. - - String - - String - - - None - - - CallerAuthenticationMethod - - The method by which the caller is authenticated - PARAVALUES: Sms | Email | VerificationLink | Voiceprint | UserDetails - - String - - String - - - None - - - ApiAuthenticationType - - The method of authentication used by the API - PARAVALUES: Basic | ApiKey | BearerTokenStatic | BearerTokenDynamic - - String - - String - - - None - - - ApiDefinitions - - The parameters used by the API - - String - - String - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csmainlineattendantappointmentbookingflow - - - - - - New-CsMainlineAttendantQuestionAnswerFlow - New - CsMainlineAttendantQuestionAnswerFlow - - Creates new Mainline Attendant question and answer (FAQ) flow - - - - The New-CsMainlineAttendantQuestionAnswerFlow cmdlet creates a question and answer connection that can be used with Mainline Attendant - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - New-CsMainlineAttendantQuestionAnswerFlow - - Name - - The name of the question and answer flow - - String - - String - - - None - - - Description - - The description for the question and answer flow - - String - - String - - - None - - - ApiAuthenticationType - - The method of authentication used by the API - PARAVALUES: Basic | ApiKey | BearerTokenStatic | BearerTokenDynamic - - String - - String - - - None - - - KnowledgeBase - - The knowledge base definition - The parameters used by the API - - String - - String - - - None - - - - - - Name - - The name of the question and answer flow - - String - - String - - - None - - - Description - - The description for the question and answer flow - - String - - String - - - None - - - ApiAuthenticationType - - The method of authentication used by the API - PARAVALUES: Basic | ApiKey | BearerTokenStatic | BearerTokenDynamic - - String - - String - - - None - - - KnowledgeBase - - The knowledge base definition - The parameters used by the API - - String - - String - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csmainlineattendantquestionanswerflow - - - - - - New-CsOnlineApplicationInstance - New - CsOnlineApplicationInstance - - Creates an application instance in Microsoft Entra ID. - - - - This cmdlet is used to create an application instance in Microsoft Entra ID. This same cmdlet is also run when creating a new resource account using Teams Admin Center. - - - - New-CsOnlineApplicationInstance - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DisplayName - - The display name. - - System.String - - System.String - - - None - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - UserPrincipalName - - The user principal name. It will be used as the SIP URI too. The user principal name should have an online domain. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DisplayName - - The display name. - - System.String - - System.String - - - None - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - UserPrincipalName - - The user principal name. It will be used as the SIP URI too. The user principal name should have an online domain. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsOnlineApplicationInstance -UserPrincipalName appinstance01@contoso.com -ApplicationId ce933385-9390-45d1-9512-c8d228074e07 -DisplayName "AppInstance01" - - This example creates a new application instance for an Auto Attendant with UserPrincipalName "appinstance01@contoso.com", ApplicationId "ce933385-9390-45d1-9512-c8d228074e07", DisplayName "AppInstance01" for the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - Get-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstance - - - Set-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineapplicationinstance - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Sync-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/sync-csonlineapplicationinstance - - - - - - New-CsOnlineApplicationInstanceAssociation - New - CsOnlineApplicationInstanceAssociation - - Use the New-CsOnlineApplicationInstanceAssociation cmdlet to associate either a single or multiple application instances with an application configuration, like auto attendant or call queue. - - - - The New-CsOnlineApplicationInstanceAssociation cmdlet associates either a single or multiple application instances with an application configuration, like auto attendant or call queue. When an association is created between an application instance and an application configuration, calls reaching that application instance would be handled based on the associated application configuration. For more information on how to create Application Instances , check `New-CsOnlineApplicationInstance` cmdlet documentation. - You can get the Identity of the application instance from the ObjectId of the AD object. - - - - New-CsOnlineApplicationInstanceAssociation - - CallPriority - - The call priority assigned to calls arriving on this application instance if a priority has not already been assigned. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High 2 = High 3 = Normal / Default 4 = Low 5 = Very Low - - Int16 - - Int16 - - - 3 - - - ConfigurationId - - The ConfigurationId parameter is the identity of the configuration that would be associated with the provided application instances. - - System.string - - System.string - - - None - - - ConfigurationType - - The ConfigurationType parameter denotes the type of the configuration that would be associated with the provided application instances. - It can be one of two values: - - AutoAttendant - - CallQueue - - System.string - - System.string - - - None - - - Identities - - The Identities parameter is the identities of application instances to be associated with the provided configuration ID. - - System.String[] - - System.String[] - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - CallPriority - - The call priority assigned to calls arriving on this application instance if a priority has not already been assigned. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High 2 = High 3 = Normal / Default 4 = Low 5 = Very Low - - Int16 - - Int16 - - - 3 - - - ConfigurationId - - The ConfigurationId parameter is the identity of the configuration that would be associated with the provided application instances. - - System.string - - System.string - - - None - - - ConfigurationType - - The ConfigurationType parameter denotes the type of the configuration that would be associated with the provided application instances. - It can be one of two values: - - AutoAttendant - - CallQueue - - System.string - - System.string - - - None - - - Identities - - The Identities parameter is the identities of application instances to be associated with the provided configuration ID. - - System.String[] - - System.String[] - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationOutput - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $applicationInstanceId = (Get-CsOnlineUser "main_auto_attendant@contoso.com").ObjectId # 76afc66a-5fe9-4a3d-ab7a-37c0e37b1f19 -$autoAttendantId = (Get-CsAutoAttendant -NameFilter "Main Auto Attendant").Id # c2ee3e18-b738-5515-a97b-46be52dfc057 - -New-CsOnlineApplicationInstanceAssociation -Identities @($applicationInstanceId) -ConfigurationId $autoAttendantId -ConfigurationType AutoAttendant - -Get-CsAutoAttendant -Identity $autoAttendantId - -# Id : c2ee3e18-b738-5515-a97b-46be52dfc057 -# TenantId : 977c9d5b-2dae-5d82-aada-628bc1c14213 -# Name : Main Auto Attendant -# LanguageId : en-US -# VoiceId : Female -# DefaultCallFlow : Default Call Flow -# Operator : -# TimeZoneId : Pacific Standard Time -# VoiceResponseEnabled : False -# CallFlows : -# Schedules : -# CallHandlingAssociations : -# Status : -# DialByNameResourceId : -# DirectoryLookupScope : -# ApplicationInstances : {76afc66a-5fe9-4a3d-ab7a-37c0e37b1f19} - - This example creates an association between an application instance that we have already created with UPN "main_auto_attendant@contoso.com" whose identity is "76afc66a-5fe9-4a3d-ab7a-37c0e37b1f19", and an auto attendant configuration that we created with display name "Main Auto Attendant" whose identity is "c2ee3e18-b738-5515-a97b-46be52dfc057". Once the association is created, the newly associated application instance would be listed under the `ApplicationInstances` property of the AA. - - - - -------------------------- Example 2 -------------------------- - $applicationInstancesIdentities = (Find-CsOnlineApplicationInstance -SearchQuery "tel:+1206") | Select-Object -Property Id - -# Id -# -- -# fa2f17ec-ebd5-43f8-81ac-959c245620fa -# 56421bbe-5649-4208-a60c-24dbeded6f18 -# c7af9c3c-ae40-455d-a37c-aeec771e623d - -$autoAttendantId = (Get-CsAutoAttendant -NameFilter "Main Auto Attendant").Id # c2ee3e18-b738-5515-a97b-46be52dfc057 - -New-CsOnlineApplicationInstanceAssociation -Identities $applicationInstancesIdentities -ConfigurationId $autoAttendantId -ConfigurationType AutoAttendant - -Get-CsAutoAttendant -Identity $autoAttendantId - -# Id : c2ee3e18-b738-5515-a97b-46be52dfc057 -# TenantId : 977c9d5b-2dae-5d82-aada-628bc1c14213 -# Name : Main Auto Attendant -# LanguageId : en-US -# VoiceId : Female -# DefaultCallFlow : Default Call Flow -# Operator : -# TimeZoneId : Pacific Standard Time -# VoiceResponseEnabled : False -# CallFlows : -# Schedules : -# CallHandlingAssociations : -# Status : -# DialByNameResourceId : -# DirectoryLookupScope : -# ApplicationInstances : {fa2f17ec-ebd5-43f8-81ac-959c245620fa, 56421bbe-5649-4208-a60c-24dbeded6f18, c7af9c3c-ae40-455d-a37c-aeec771e623d} - - This example creates an association between multiple application instances that we had created before and to which we assigned phone numbers starting with "tel:+1206", and an auto attendant configuration that we created with display name "Main Auto Attendant" whose identity is "c2ee3e18-b738-5515-a97b-46be52dfc057". Once the associations are created, the newly associated application instances would listed under the `ApplicationInstances` property of the AA. - - - - -------------------------- Example 3 -------------------------- - $applicationInstancesIdentities = (Find-CsOnlineApplicationInstance -SearchQuery "Main Auto Attendant") | Select-Object -Property Id - -# Id -# -- -# fa2f17ec-ebd5-43f8-81ac-959c245620fa -# 56421bbe-5649-4208-a60c-24dbeded6f18 -# c7af9c3c-ae40-455d-a37c-aeec771e623d - -$autoAttendantId = (Get-CsAutoAttendant -NameFilter "Main Auto Attendant").Id # c2ee3e18-b738-5515-a97b-46be52dfc057 - -New-CsOnlineApplicationInstanceAssociation -Identities $applicationInstancesIdentities -ConfigurationId $autoAttendantId -ConfigurationType AutoAttendant - - This example creates an association between multiple application instances that we had created before with display name starting with "Main Auto Attendant", and an auto attendant configuration that we created with display name "Main Auto Attendant" whose identity is "c2ee3e18-b738-5515-a97b-46be52dfc057". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstanceassociation - - - Get-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociation - - - Get-CsOnlineApplicationInstanceAssociationStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociationstatus - - - Remove-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineapplicationinstanceassociation - - - - - - New-CsOnlineAudioConferencingRoutingPolicy - New - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet creates a Online Audio Conferencing Routing Policy. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - New-CsOnlineAudioConferencingRoutingPolicy - - Identity - - Identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineAudioConferencingRoutingPolicy -Identity Test - - Creates a new Online Audio Conferencing Routing Policy policy with an identity called "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineaudioconferencingroutingpolicy - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - New-CsOnlineDateTimeRange - New - CsOnlineDateTimeRange - - Use the New-CsOnlineDateTimeRange cmdlet to create a new date-time range. - - - - The New-CsOnlineDateTimeRange cmdlet creates a new date-time range to be used with the Organizational Auto Attendant (OAA) service. Date time ranges are used to form schedules. NOTE : - - The start bound of the range must be less than its end bound. - - The time part of the range must be aligned with 30/60-minutes boundaries. - - A date time range bound can only be input in the following formats: - - "d/m/yyyy H:mm" - "d/m/yyyy" (the time component of the date-time range is set to 00:00) - - - - New-CsOnlineDateTimeRange - - End - - The End parameter represents the end bound of the date-time range. - If not present, the end bound of the date time range is set to 00:00 of the day after the start date. - - System.String - - System.String - - - None - - - Start - - The Start parameter represents the start bound of the date-time range. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - End - - The End parameter represents the end bound of the date-time range. - If not present, the end bound of the date time range is set to 00:00 of the day after the start date. - - System.String - - System.String - - - None - - - Start - - The Start parameter represents the start bound of the date-time range. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.DateTimeRange - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $dtr = New-CsOnlineDateTimeRange -Start "1/1/2017" - - This example creates a date-time range for spanning from January 1, 2017 12AM to January 2, 2017 12AM. - - - - -------------------------- Example 2 -------------------------- - $dtr = New-CsOnlineDateTimeRange -Start "24/12/2017 09:00" -End "27/12/2017 00:00" - - This example creates a date-time range spanning from December 24, 2017 9AM to December 27, 2017 12AM. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedatetimerange - - - New-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - New-CsOnlineTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetimerange - - - New-CsAutoAttendantCallFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - New-CsAutoAttendantCallHandlingAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - - - - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - New - CsOnlineDirectRoutingTelephoneNumberUploadOrder - - This cmdlet creates a request to upload Direct Routing telephone numbers to Microsoft Teams telephone number management inventory. - - - - This cmdlet uploads Direct Routing telephone numbers to Microsoft Teams telephone number management inventory. Once uploaded the phone numbers will be visible in Teams PowerShell as acquired Direct Routing phone numbers. The output of the cmdlet is the "orderId" of the asynchronous Direct Routing Number creation operation. A maximum of 10,000 phone numbers can be uploaded at a time. If more than 10,000 numbers need to be uploaded, the requests should be divided into multiple increments of up to 10,000 numbers. - The cmdlet is an asynchronous operation and will return an OrderId as output. You can use the Get-CsOnlineTelephoneNumberOrder (./get-csonlinetelephonenumberorder.md)cmdlet to check the status of the OrderId, including any error or warning messages that might result from the operation: `Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId "orderId"`. - - - - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - - EndingNumber - - This is the ending number of a range of Direct Routing telephone number you wish to upload to Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - FileContent - - This is the content of a .csv file that includes the Direct Routing telephone numbers to be uploaded to the Microsoft Teams telephone number management inventory. This parameter can be used to upload up to 10,000 numbers at a time. - - Byte[] - - Byte[] - - - None - - - StartingNumber - - This is the starting number of a range of Direct Routing telephone number you wish to upload to Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - TelephoneNumber - - This is the Direct Routing telephone numbers you wish to upload to Microsoft Teams telephone number management inventory. It is comma delimited list of one or more Direct Routing telephone numbers. - - String - - String - - - None - - - - - - EndingNumber - - This is the ending number of a range of Direct Routing telephone number you wish to upload to Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - FileContent - - This is the content of a .csv file that includes the Direct Routing telephone numbers to be uploaded to the Microsoft Teams telephone number management inventory. This parameter can be used to upload up to 10,000 numbers at a time. - - Byte[] - - Byte[] - - - None - - - StartingNumber - - This is the starting number of a range of Direct Routing telephone number you wish to upload to Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - TelephoneNumber - - This is the Direct Routing telephone numbers you wish to upload to Microsoft Teams telephone number management inventory. It is comma delimited list of one or more Direct Routing telephone numbers. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.String - - - - - - - - - The cmdlet is available in Teams PowerShell module 6.7.1 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineDirectRoutingTelephoneNumberUploadOrder -TelephoneNumber "+123456789" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, a new Direct Routing telephone number "+123456789" is being uploaded to Microsoft Teams telephone number management inventory. The output of the cmdlet is the OrderId that can be used with the Get-CsOnlineTelephoneNumberOrder (./get-csonlinetelephonenumberorder.md)cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId "orderId"`. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineDirectRoutingTelephoneNumberUploadOrder -TelephoneNumber "+123456789,+134567890,+145678901" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c14 - - In this example, a list of telephone numbers is being uploaded to Microsoft Teams telephone number management inventory. The output of the cmdlet is the OrderId that can be used with the Get-CsOnlineTelephoneNumberOrder (./get-csonlinetelephonenumberorder.md)cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId "orderId"`. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsOnlineDirectRoutingTelephoneNumberUploadOrder -StartingNumber "+12000000" -EndingNumber "+12000009" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, a range of Direct Routing telephone numbers from "+12000000" to "+12000009" are being uploaded to Microsoft Teams telephone number management inventory. The output of the cmdlet is the OrderId that can be used with the Get-CsOnlineTelephoneNumberOrder (./get-csonlinetelephonenumberorder.md)cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId "orderId"`. - - - - -------------------------- Example 4 -------------------------- - PS C:\> $drlist = [System.IO.File]::ReadAllBytes("C:\Users\testuser\DrNumber.csv") -PS C:\> New-CsOnlineDirectRoutingTelephoneNumberUploadOrder -FileContent $drlist -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c19 - - In this example, the content of a file with a list of Direct Routing telephone numbers are being uploaded via file upload. The file should be in Comma Separated Values (CSV) file format and only containing the list of DR numbers. Only the content of the file can be passed to the New-CsOnlineDirectRoutingTelephoneNumberUploadOrder cmdlet. Additional fields will be supported via file upload in future releases. The output of the cmdlet is the OrderId that can be used with the Get-CsOnlineTelephoneNumberOrder (./get-csonlinetelephonenumberorder.md)cmdlet to retrieve the status of the order: `Get-CsOnlineTelephoneNumberOrder -OrderType DirectRoutingNumberCreation -OrderId "orderId"`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedirectroutingtelephonenumberuploadorder - - - Get-CsOnlineTelephoneNumberOrder - - - - New-CsOnlineTelephoneNumberReleaseOrder - - - - - - - New-CsOnlineLisCivicAddress - New - CsOnlineLisCivicAddress - - Use the New-CsOnlineLisCivicAddress cmdlet to create a civic address in the Location Information Service (LIS). - - - - Because each civic address needs at least one location to assign to users, creating a new civic address also creates a default location. This is useful in cases where a civic address has no particular sub-locations. In that scenario you can create the civic address using the New -CsOnlineLisCivicAddress cmdlet and use the default location identifier for assignment to users. The example output from the Get-CsOnlineLisCivicAddress below shows the DefaultLocationId property. - CivicAddressId : 51a8a6e3-dae4-4653-9a99-a6e71c4c24ac - HouseNumber : - HouseNumberSuffix : - PreDirectional : - StreetName : - StreetSuffix : - PostDirectional : - City : - PostalCode : - StateOrProvince : - CountryOrRegion : US - Description : - CompanyName : MSFT - DefaultLocationId : 75301b5d-3609-458e-a379-da9a1ab33228 - ValidationStatus : NotValidated - NumberOfVoiceUsers : 0 - - - - New-CsOnlineLisCivicAddress - - City - - > Applicable: Microsoft Teams - Specifies the city of the new civic address. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Specifies the city alias of the new civic address. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - Specifies the company tax identifier of the new civic address. - - String - - String - - - None - - - Confidence - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the new civic address. Needs to be a valid country code as contained in the ISO 3166-1 alpha-2 specification. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the new civic address. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the new civic address. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the new civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". - - String - - String - - - None - - - IsAzureMapValidationRequired - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Required for all countries/regions except Australia and Japan where it's optional. - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Required for all countries/regions except Australia and Japan where it's optional. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the new civic address. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the new civic address which follows the street name. For example, "425 Smith Avenue NE". - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the new civic address which precedes the street name. For example, "425 NE Smith Avenue". - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the new civic address. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the new civic address. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the street type of the new civic address. The street suffix will typically be something like street, avenue, way, or boulevard. - - String - - String - - - None - - - ValidationStatus - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Microsoft Teams - Specifies the city of the new civic address. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Specifies the city alias of the new civic address. - - String - - String - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - Specifies the company tax identifier of the new civic address. - - String - - String - - - None - - - Confidence - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the new civic address. Needs to be a valid country code as contained in the ISO 3166-1 alpha-2 specification. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the new civic address. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the new civic address. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the new civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". - - String - - String - - - None - - - IsAzureMapValidationRequired - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Required for all countries/regions except Australia and Japan where it's optional. - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Required for all countries/regions except Australia and Japan where it's optional. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the new civic address. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the new civic address which follows the street name. For example, "425 Smith Avenue NE". - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the new civic address which precedes the street name. For example, "425 NE Smith Avenue". - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the new civic address. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the new civic address. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the street type of the new civic address. The street suffix will typically be something like street, avenue, way, or boulevard. - - String - - String - - - None - - - ValidationStatus - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsOnlineLisCivicAddress -HouseNumber 1 -StreetName 'Microsoft Way' -City Redmond -StateorProvince Washington -CountryOrRegion US -PostalCode 98052 -Description "West Coast Headquarters" -CompanyName Contoso -Latitude 47.63952 -Longitude -122.12781 -Elin MICROSOFT_ELIN - - This example creates a new civic address described as "West Coast Headquarters": 1 Microsoft Way, Redmond WA, 98052 and sets the geo-coordinates. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineliscivicaddress - - - Set-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliscivicaddress - - - Remove-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliscivicaddress - - - Get-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress - - - - - - New-CsOnlineLisLocation - New - CsOnlineLisLocation - - Use the New-CsOnlineLisLocation cmdlet to create a new emergency dispatch location within an existing civic address. Typically the civic address designates the building, and locations are specific parts of that building such as a floor, office, or wing. - - - - - - - - New-CsOnlineLisLocation - - City - - > Applicable: Microsoft Teams - Specifies the city of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Specifies the city alias. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address that will contain the new location. Civic address identities can be discovered by using the Get-CsOnlineLisCivicAddress cmdlet. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - The company tax ID. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Confidence - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator-defined description of the new location. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the modifier of the street name. The street suffix will typically be something like street, avenue, way, or boulevard. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Microsoft Teams - Specifies the city of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Specifies the city alias. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address that will contain the new location. Civic address identities can be discovered by using the Get-CsOnlineLisCivicAddress cmdlet. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - The company tax ID. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Confidence - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator-defined description of the new location. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue". Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the civic address. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the modifier of the street name. The street suffix will typically be something like street, avenue, way, or boulevard. Note: This parameter is not supported and is deprecated. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsOnlineLisLocation -CivicAddressId b39ff77d-db51-4ce5-8d50-9e9c778e1617 -Location "Office 101, 1st Floor" - - This example creates a new location called "Office 101, 1st Floor" in the civic address specified by its identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinelislocation - - - Set-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelislocation - - - Get-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation - - - Remove-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelislocation - - - - - - New-CsOnlinePSTNGateway - New - CsOnlinePSTNGateway - - Creates a new Session Border Controller (SBC) Configuration that describes the settings for the peer entity. This cmdlet was introduced with Microsoft Phone System Direct Routing. - - - - Use this cmdlet to create a new Session Border Controller (SBC) configuration. Each configuration contains specific settings for an SBC. These settings configure such entities as the SIP signaling port, whether media bypass is enabled on this SBC, will the SBC send SIP Options, and specify the limit of maximum concurrent sessions. The cmdlet also lets the administrator drain the SBC by setting parameter -Enabled to $true or $false state. When the Enabled parameter is set to $false, the SBC will continue existing calls, but all new calls will be routed to another SBC in a route (if one exists). - - - - New-CsOnlinePSTNGateway - - BypassMode - - Possible values are "None", "Always" and "OnlyForLocalUsers". By setting "Always" mode you indicate that your network is fully routable. If a user usually in site "Seattle", travels to site "Tallinn" and tries to use SBC located in Seattle we will try to deliver the traffic to Seattle assuming that there is connection between Tallinn and Seattle offices. With "OnlyForLocaUsers" you indicate that there is no direct connection between sites. In example above, the traffic will not be send directly from Tallinn to Seattle. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Free-format string to describe the gateway. - - String - - String - - - None - - - Enabled - - > Applicable: Microsoft Teams - Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false). - - Boolean - - Boolean - - - $false - - - FailoverResponseCodes - - > Applicable: Microsoft Teams - If Direct Routing receives any 4xx or 6xx SIP error code in response to an outgoing Invite the call is considered completed by default. (Outgoing in this context is a call from a Teams client to the PSTN with traffic flow: Teams Client -> Direct Routing -> SBC -> Telephony network). Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Find more information in the "Reference" section of "Phone System Direct Routing" documentation. - Setting this parameter overwrites the default values, so if you want to include the default values, please add them to string. - - String - - String - - - 408, 503, 504 - - - FailoverTimeSeconds - - > Applicable: Microsoft Teams - When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10. - - Int32 - - Int32 - - - 10 - - - ForwardCallHistory - - > Applicable: Microsoft Teams - Indicates whether call history information will be forwarded to the SBC. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - ForwardPai - - > Applicable: Microsoft Teams - Indicates whether the P-Asserted-Identity (PAI) header will be forwarded along with the call. The PAI header provides a way to verify the identity of the caller. The default value is False ($False). Setting this parameter to $true will render the from header anonymous, in accordance of RFC5379 and RFC3325. - - Boolean - - Boolean - - - $false - - - Fqdn - - > Applicable: Microsoft Teams - Limited to 63 characters, the FQDN registered for the SBC. Copied automatically to Identity of the SBC field. - - String - - String - - - None - - - GatewayLbrEnabledUserOverride - - > Applicable: Microsoft Teams - Allows an LBR enabled user working from a network site outside the corporate network or a network site on the corporate network not configured using a tenant network site to make outbound PSTN calls or receive inbound PSTN calls via an LBR enabled gateway. The default value is False. - - Boolean - - Boolean - - - $false - - - GatewaySiteId - - > Applicable: Microsoft Teams - PSTN Gateway Site Id. - - String - - String - - - None - - - GatewaySiteLbrEnabled - - > Applicable: Microsoft Teams - Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is enabled ($True), the SBC will report the site name as defined by the tenant administrator. On an incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - InboundPSTNNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to PSTN number on inbound direction. - - Object - - Object - - - None - - - InboundTeamsNumberTranslationRules - - This parameter assigns an ordered list of Teams translation rules, that apply to Teams numbers on inbound direction. - - Object - - Object - - - None - - - IPAddressVersion - - Possible values are "IPv4" and '"Pv6". When "IPv6" is set, the SBC must use IPv6 for both signaling and media. Note: IPv6 is supported only for non-media bypass scenarios. - - String - - String - - - IPv4 - - - MaxConcurrentSessions - - > Applicable: Microsoft Teams - Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent sessions is 90% or higher than this value. If the parameter is not set, alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours. - - System.Int32 - - System.Int32 - - - None - - - MediaBypass - - > Applicable: Microsoft Teams - Parameter indicates if the SBC supports Media Bypass and the administrator wants to use it for this SBC. - - Boolean - - Boolean - - - $false - - - MediaRelayRoutingLocationOverride - - > Applicable: Microsoft Teams - Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter. - - String - - String - - - $false - - - OutboundPSTNNumberTranslationRules - - Assigns an ordered list of Teams translation rules, that apply to PSTN number on outbound direction. - - Object - - Object - - - None - - - OutbundTeamsNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to Teams Number on outbound direction. - - Object - - Object - - - None - - - PidfloSupported - - > Applicable: Microsoft Teams - Enables PIDF-LO support on the PSTN Gateway. If turned on the .xml body payload is sent to the SBC with the location details of the user. - - Boolean - - Boolean - - - $false - - - ProxySbc - - > Applicable: Microsoft Teams - The FQDN of the proxy SBC. Used in Local Media Optimization configurations. - - String - - String - - - None - - - SendSipOptions - - > Applicable: Microsoft Teams - Defines if an SBC will or will not send SIP Options messages. If disabled, the SBC will be excluded from the Monitoring and Alerting system. We highly recommend that you enable SIP Options. The default value is True. - - Boolean - - Boolean - - - $true - - - SipSignalingPort - - > Applicable: Microsoft Teams - Listening port used for communicating with Direct Routing services by using the Transport Layer Security (TLS) protocol. Must be value between 1 and 65535. Please note: Spelling of this parameter changed recently from SipSignallingPort to SipSignalingPort. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsOnlinePSTNGateway - - Identity - - > Applicable: Microsoft Teams - When creating a new SBC, the identity must be identical to the -FQDN parameter, described above. If the parameter is not defined the Identity will be copied from the -FQDN parameter. The Identity parameter is not mandatory. - - String - - String - - - None - - - BypassMode - - Possible values are "None", "Always" and "OnlyForLocalUsers". By setting "Always" mode you indicate that your network is fully routable. If a user usually in site "Seattle", travels to site "Tallinn" and tries to use SBC located in Seattle we will try to deliver the traffic to Seattle assuming that there is connection between Tallinn and Seattle offices. With "OnlyForLocaUsers" you indicate that there is no direct connection between sites. In example above, the traffic will not be send directly from Tallinn to Seattle. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Free-format string to describe the gateway. - - String - - String - - - None - - - Enabled - - > Applicable: Microsoft Teams - Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false). - - Boolean - - Boolean - - - $false - - - FailoverResponseCodes - - > Applicable: Microsoft Teams - If Direct Routing receives any 4xx or 6xx SIP error code in response to an outgoing Invite the call is considered completed by default. (Outgoing in this context is a call from a Teams client to the PSTN with traffic flow: Teams Client -> Direct Routing -> SBC -> Telephony network). Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Find more information in the "Reference" section of "Phone System Direct Routing" documentation. - Setting this parameter overwrites the default values, so if you want to include the default values, please add them to string. - - String - - String - - - 408, 503, 504 - - - FailoverTimeSeconds - - > Applicable: Microsoft Teams - When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10. - - Int32 - - Int32 - - - 10 - - - ForwardCallHistory - - > Applicable: Microsoft Teams - Indicates whether call history information will be forwarded to the SBC. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - ForwardPai - - > Applicable: Microsoft Teams - Indicates whether the P-Asserted-Identity (PAI) header will be forwarded along with the call. The PAI header provides a way to verify the identity of the caller. The default value is False ($False). Setting this parameter to $true will render the from header anonymous, in accordance of RFC5379 and RFC3325. - - Boolean - - Boolean - - - $false - - - GatewayLbrEnabledUserOverride - - > Applicable: Microsoft Teams - Allows an LBR enabled user working from a network site outside the corporate network or a network site on the corporate network not configured using a tenant network site to make outbound PSTN calls or receive inbound PSTN calls via an LBR enabled gateway. The default value is False. - - Boolean - - Boolean - - - $false - - - GatewaySiteId - - > Applicable: Microsoft Teams - PSTN Gateway Site Id. - - String - - String - - - None - - - GatewaySiteLbrEnabled - - > Applicable: Microsoft Teams - Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is enabled ($True), the SBC will report the site name as defined by the tenant administrator. On an incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - InboundPSTNNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to PSTN number on inbound direction. - - Object - - Object - - - None - - - InboundTeamsNumberTranslationRules - - This parameter assigns an ordered list of Teams translation rules, that apply to Teams numbers on inbound direction. - - Object - - Object - - - None - - - IPAddressVersion - - Possible values are "IPv4" and '"Pv6". When "IPv6" is set, the SBC must use IPv6 for both signaling and media. Note: IPv6 is supported only for non-media bypass scenarios. - - String - - String - - - IPv4 - - - MaxConcurrentSessions - - > Applicable: Microsoft Teams - Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent sessions is 90% or higher than this value. If the parameter is not set, alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours. - - System.Int32 - - System.Int32 - - - None - - - MediaBypass - - > Applicable: Microsoft Teams - Parameter indicates if the SBC supports Media Bypass and the administrator wants to use it for this SBC. - - Boolean - - Boolean - - - $false - - - MediaRelayRoutingLocationOverride - - > Applicable: Microsoft Teams - Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter. - - String - - String - - - $false - - - OutboundPSTNNumberTranslationRules - - Assigns an ordered list of Teams translation rules, that apply to PSTN number on outbound direction. - - Object - - Object - - - None - - - OutbundTeamsNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to Teams Number on outbound direction. - - Object - - Object - - - None - - - PidfloSupported - - > Applicable: Microsoft Teams - Enables PIDF-LO support on the PSTN Gateway. If turned on the .xml body payload is sent to the SBC with the location details of the user. - - Boolean - - Boolean - - - $false - - - ProxySbc - - > Applicable: Microsoft Teams - The FQDN of the proxy SBC. Used in Local Media Optimization configurations. - - String - - String - - - None - - - SendSipOptions - - > Applicable: Microsoft Teams - Defines if an SBC will or will not send SIP Options messages. If disabled, the SBC will be excluded from the Monitoring and Alerting system. We highly recommend that you enable SIP Options. The default value is True. - - Boolean - - Boolean - - - $true - - - SipSignalingPort - - > Applicable: Microsoft Teams - Listening port used for communicating with Direct Routing services by using the Transport Layer Security (TLS) protocol. Must be value between 1 and 65535. Please note: Spelling of this parameter changed recently from SipSignallingPort to SipSignalingPort. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BypassMode - - Possible values are "None", "Always" and "OnlyForLocalUsers". By setting "Always" mode you indicate that your network is fully routable. If a user usually in site "Seattle", travels to site "Tallinn" and tries to use SBC located in Seattle we will try to deliver the traffic to Seattle assuming that there is connection between Tallinn and Seattle offices. With "OnlyForLocaUsers" you indicate that there is no direct connection between sites. In example above, the traffic will not be send directly from Tallinn to Seattle. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Free-format string to describe the gateway. - - String - - String - - - None - - - Enabled - - > Applicable: Microsoft Teams - Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false). - - Boolean - - Boolean - - - $false - - - FailoverResponseCodes - - > Applicable: Microsoft Teams - If Direct Routing receives any 4xx or 6xx SIP error code in response to an outgoing Invite the call is considered completed by default. (Outgoing in this context is a call from a Teams client to the PSTN with traffic flow: Teams Client -> Direct Routing -> SBC -> Telephony network). Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Find more information in the "Reference" section of "Phone System Direct Routing" documentation. - Setting this parameter overwrites the default values, so if you want to include the default values, please add them to string. - - String - - String - - - 408, 503, 504 - - - FailoverTimeSeconds - - > Applicable: Microsoft Teams - When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10. - - Int32 - - Int32 - - - 10 - - - ForwardCallHistory - - > Applicable: Microsoft Teams - Indicates whether call history information will be forwarded to the SBC. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - ForwardPai - - > Applicable: Microsoft Teams - Indicates whether the P-Asserted-Identity (PAI) header will be forwarded along with the call. The PAI header provides a way to verify the identity of the caller. The default value is False ($False). Setting this parameter to $true will render the from header anonymous, in accordance of RFC5379 and RFC3325. - - Boolean - - Boolean - - - $false - - - Fqdn - - > Applicable: Microsoft Teams - Limited to 63 characters, the FQDN registered for the SBC. Copied automatically to Identity of the SBC field. - - String - - String - - - None - - - GatewayLbrEnabledUserOverride - - > Applicable: Microsoft Teams - Allows an LBR enabled user working from a network site outside the corporate network or a network site on the corporate network not configured using a tenant network site to make outbound PSTN calls or receive inbound PSTN calls via an LBR enabled gateway. The default value is False. - - Boolean - - Boolean - - - $false - - - GatewaySiteId - - > Applicable: Microsoft Teams - PSTN Gateway Site Id. - - String - - String - - - None - - - GatewaySiteLbrEnabled - - > Applicable: Microsoft Teams - Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is enabled ($True), the SBC will report the site name as defined by the tenant administrator. On an incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - Identity - - > Applicable: Microsoft Teams - When creating a new SBC, the identity must be identical to the -FQDN parameter, described above. If the parameter is not defined the Identity will be copied from the -FQDN parameter. The Identity parameter is not mandatory. - - String - - String - - - None - - - InboundPSTNNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to PSTN number on inbound direction. - - Object - - Object - - - None - - - InboundTeamsNumberTranslationRules - - This parameter assigns an ordered list of Teams translation rules, that apply to Teams numbers on inbound direction. - - Object - - Object - - - None - - - IPAddressVersion - - Possible values are "IPv4" and '"Pv6". When "IPv6" is set, the SBC must use IPv6 for both signaling and media. Note: IPv6 is supported only for non-media bypass scenarios. - - String - - String - - - IPv4 - - - MaxConcurrentSessions - - > Applicable: Microsoft Teams - Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent sessions is 90% or higher than this value. If the parameter is not set, alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours. - - System.Int32 - - System.Int32 - - - None - - - MediaBypass - - > Applicable: Microsoft Teams - Parameter indicates if the SBC supports Media Bypass and the administrator wants to use it for this SBC. - - Boolean - - Boolean - - - $false - - - MediaRelayRoutingLocationOverride - - > Applicable: Microsoft Teams - Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter. - - String - - String - - - $false - - - OutboundPSTNNumberTranslationRules - - Assigns an ordered list of Teams translation rules, that apply to PSTN number on outbound direction. - - Object - - Object - - - None - - - OutbundTeamsNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to Teams Number on outbound direction. - - Object - - Object - - - None - - - PidfloSupported - - > Applicable: Microsoft Teams - Enables PIDF-LO support on the PSTN Gateway. If turned on the .xml body payload is sent to the SBC with the location details of the user. - - Boolean - - Boolean - - - $false - - - ProxySbc - - > Applicable: Microsoft Teams - The FQDN of the proxy SBC. Used in Local Media Optimization configurations. - - String - - String - - - None - - - SendSipOptions - - > Applicable: Microsoft Teams - Defines if an SBC will or will not send SIP Options messages. If disabled, the SBC will be excluded from the Monitoring and Alerting system. We highly recommend that you enable SIP Options. The default value is True. - - Boolean - - Boolean - - - $true - - - SipSignalingPort - - > Applicable: Microsoft Teams - Listening port used for communicating with Direct Routing services by using the Transport Layer Security (TLS) protocol. Must be value between 1 and 65535. Please note: Spelling of this parameter changed recently from SipSignallingPort to SipSignalingPort. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlinePSTNGateway -FQDN sbc.contoso.com -SIPSignalingPort 5061 - - This example creates an SBC with FQDN sbc.contoso.com and signaling port 5061. All others parameters will stay default. Note the SBC will be in the disabled state. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlinePSTNGateway -FQDN sbc.contoso.com -SIPSignalingPort 5061 -ForwardPAI $true -Enabled $true - - This example creates an SBC with FQDN sbc.contoso.com and signaling port 5061. For each outbound to SBC session, the Direct Routing interface will report in P-Asserted-Identity fields the TEL URI and SIP address of the user who made a call. This is useful when a tenant administrator sets the identity of the caller as "Anonymous" or a general number of the company, but for billing purposes the real identity of the user is required. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinepstngateway - - - Set-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstngateway - - - Get-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstngateway - - - Remove-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinepstngateway - - - - - - New-CsOnlineSchedule - New - CsOnlineSchedule - - Use the New-CsOnlineSchedule cmdlet to create a new schedule. - - - - The New-CsOnlineSchedule cmdlet creates a new schedule for the Auto Attendant (AA) service. The AA service uses schedules to conditionally execute call flows when a specific schedule is in effect. NOTES : - - The type of the schedule cannot be altered after the schedule is created. - - Currently, only two types of schedules can be created: WeeklyRecurrentSchedule or FixedSchedule. - - The schedule types are mutually exclusive. So a weekly recurrent schedule cannot be a fixed schedule and vice versa. - - For a weekly recurrent schedule, at least one day should have time ranges specified. - - You can create a new time range by using New-CsOnlineTimeRange cmdlet. - - A fixed schedule can be created without any date-time ranges. In this case, it would never be in effect. - - For a fixed schedule, at most 10 date-time ranges can be specified. - - You can create a new date-time range for a fixed schedule by using the New-CsOnlineDateTimeRange cmdlet. - - The return type of this cmdlet composes a member for the underlying type/implementation. For example, in case of the weekly recurrent schedule, you can modify Monday's time ranges through the Schedule.WeeklyRecurrentSchedule.MondayHours property. Similarly, date-time ranges of a fixed schedule can be modified by using the Schedule.FixedSchedule.DateTimeRanges property. - - Schedules can then be used by New-CsAutoAttendantCallHandlingAssociation (https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation). - - - - New-CsOnlineSchedule - - Complement - - The Complement parameter indicates how the schedule is used. When Complement is enabled, the schedule is used as the inverse of the provided configuration. For example, if Complement is enabled and the schedule only contains time ranges of Monday to Friday from 9AM to 5PM, then the schedule is active at all times other than the specified time ranges. - - - SwitchParameter - - - False - - - FridayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - MondayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Name - - The Name parameter represents a unique friendly name for the schedule. - - System.String - - System.String - - - None - - - SaturdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - SundayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - ThursdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - TuesdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - WednesdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - WeeklyRecurrentSchedule - - The WeeklyRecurrentSchedule parameter indicates that a weekly recurrent schedule is to be created. This parameter is mandatory when a weekly recurrent schedule is to be created. - - - SwitchParameter - - - False - - - - New-CsOnlineSchedule - - DateTimeRanges - - List of date-time ranges for a fixed schedule. At most, 10 date-time ranges can be specified using this parameter. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - FixedSchedule - - The FixedSchedule parameter indicates that a fixed schedule is to be created. - - - SwitchParameter - - - False - - - Name - - The Name parameter represents a unique friendly name for the schedule. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Complement - - The Complement parameter indicates how the schedule is used. When Complement is enabled, the schedule is used as the inverse of the provided configuration. For example, if Complement is enabled and the schedule only contains time ranges of Monday to Friday from 9AM to 5PM, then the schedule is active at all times other than the specified time ranges. - - SwitchParameter - - SwitchParameter - - - False - - - DateTimeRanges - - List of date-time ranges for a fixed schedule. At most, 10 date-time ranges can be specified using this parameter. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - FixedSchedule - - The FixedSchedule parameter indicates that a fixed schedule is to be created. - - SwitchParameter - - SwitchParameter - - - False - - - FridayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - MondayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Name - - The Name parameter represents a unique friendly name for the schedule. - - System.String - - System.String - - - None - - - SaturdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - SundayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - ThursdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - TuesdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - WednesdayHours - - List of time ranges for that day. - - System.Collections.Generic.List - - System.Collections.Generic.List - - - None - - - WeeklyRecurrentSchedule - - The WeeklyRecurrentSchedule parameter indicates that a weekly recurrent schedule is to be created. This parameter is mandatory when a weekly recurrent schedule is to be created. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.Schedule - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $tr1 = New-CsOnlineTimeRange -Start 09:00 -End 12:00 -$tr2 = New-CsOnlineTimeRange -Start 13:00 -End 17:00 -$businessHours = New-CsOnlineSchedule -Name "Business Hours" -WeeklyRecurrentSchedule -MondayHours @($tr1, $tr2) -TuesdayHours @($tr1, $tr2) -WednesdayHours @($tr1, $tr2) -ThursdayHours @($tr1, $tr2) -FridayHours @($tr1, $tr2) - - This example creates a weekly recurrent schedule that is active on Monday-Friday from 9AM-12PM and 1PM-5PM. - - - - -------------------------- Example 2 -------------------------- - $tr1 = New-CsOnlineTimeRange -Start 09:00 -End 12:00 -$tr2 = New-CsOnlineTimeRange -Start 13:00 -End 17:00 -$afterHours = New-CsOnlineSchedule -Name " After Hours" -WeeklyRecurrentSchedule -MondayHours @($tr1, $tr2) -TuesdayHours @($tr1, $tr2) -WednesdayHours @($tr1, $tr2) -ThursdayHours @($tr1, $tr2) -FridayHours @($tr1, $tr2) -Complement - - This example creates a weekly recurrent schedule that is active at all times except Monday-Friday, 9AM-12PM and 1PM-5PM. - - - - -------------------------- Example 3 -------------------------- - $dtr = New-CsOnlineDateTimeRange -Start "24/12/2017" -End "26/12/2017" -$christmasSchedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr) - - This example creates a fixed schedule that is active from December 24, 2017 to December 26, 2017. - - - - -------------------------- Example 4 -------------------------- - $dtr1 = New-CsOnlineDateTimeRange -Start "24/12/2017" -End "26/12/2017" -$dtr2 = New-CsOnlineDateTimeRange -Start "24/12/2018" -End "26/12/2018" -$christmasSchedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr1, $dtr2) - - This example creates a fixed schedule that is active from December 24, 2017 to December 26, 2017 and then from December 24, 2018 to December 26, 2018. - - - - -------------------------- Example 5 -------------------------- - $notInEffectSchedule = New-CsOnlineSchedule -Name "NotInEffect" -FixedSchedule - - This example creates a fixed schedule that is never active. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - New-CsOnlineTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetimerange - - - New-CsOnlineDateTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedatetimerange - - - New-CsAutoAttendantCallFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - New-CsAutoAttendantCallHandlingAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - - - - New-CsOnlineTelephoneNumberOrder - New - CsOnlineTelephoneNumberOrder - - Use the `New-CsOnlineTelephoneNumberOrder` cmdlet to create a telephone number search order. The telephone numbers can then be used to set up calling features for users and services in your organization. - - - - Use the `New-CsOnlineTelephoneNumberOrder` cmdlet to create a telephone number search order. The telephone numbers can then be used to set up calling features for users and services in your organization. Use the `Get-CsOnlineTelephoneNumberType` cmdlet to find out the supported types of searches for each NumberType and construct the search request demonstrated below: - Telephone numbers can be created with 3 ways: - - Civic Address Search : A telephone number search order can be created base on a given civic address ID. The service will look up the address and fulfill the search order using available telephone numbers local to the given address. For civic address based search, the parameter `CivicAddressId` is required. - - Number Prefix Search : A telephone number search order can be created base on a given number prefix. The number prefix search allow the tenant to acquire telephone numbers with a fixed number prefix. For number prefix based search, the parameter `NumberPrefix` is required. - - Area Code Selection Search : A telephone number search order can be created base on a give area code. Certain service numbers are only offered with a dedicated set of area codes. With area code selection search, the tenant can acquire the desired telephone numbers by area code. For area code selection based search, the parameter `AreaCode` is required. - - - - New-CsOnlineTelephoneNumberOrder - - Name - - Specifies the telephone number search order name. - - String - - String - - - None - - - Description - - Specifies the telephone number search order description. - - String - - String - - - None - - - Country - - Specifies the telephone number search order country/region. Use `Get-CsOnlineTelephoneNumberCountry` to find the supported countries/regions. - - String - - String - - - None - - - NumberType - - Specifies the telephone number search order number type. Use `Get-CsOnlineTelephoneNumberType` to find the supported number types. - - String - - String - - - None - - - Quantity - - Specifies the telephone number search order quantity. The number of allowed quantity is based on the tenant licenses. - - Integer - - Integer - - - None - - - CivicAddressId - - Specifies the telephone number search order civic address. CivicAddressId is required for civic address based search and when RequiresCivicAddress is true for a given NumberType. - - String - - String - - - None - - - NumberPrefix - - Specifies the telephone number search order number prefix. NumberPrefix is required for number prefix based search. - - Integer - - Integer - - - None - - - AreaCode - - Specifies the telephone number search order number area code. AreaCode is required for area code selection based search. - - Integer - - Integer - - - None - - - - - - Name - - Specifies the telephone number search order name. - - String - - String - - - None - - - Description - - Specifies the telephone number search order description. - - String - - String - - - None - - - Country - - Specifies the telephone number search order country/region. Use `Get-CsOnlineTelephoneNumberCountry` to find the supported countries/regions. - - String - - String - - - None - - - NumberType - - Specifies the telephone number search order number type. Use `Get-CsOnlineTelephoneNumberType` to find the supported number types. - - String - - String - - - None - - - Quantity - - Specifies the telephone number search order quantity. The number of allowed quantity is based on the tenant licenses. - - Integer - - Integer - - - None - - - CivicAddressId - - Specifies the telephone number search order civic address. CivicAddressId is required for civic address based search and when RequiresCivicAddress is true for a given NumberType. - - String - - String - - - None - - - NumberPrefix - - Specifies the telephone number search order number prefix. NumberPrefix is required for number prefix based search. - - Integer - - Integer - - - None - - - AreaCode - - Specifies the telephone number search order number area code. AreaCode is required for area code selection based search. - - Integer - - Integer - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $orderId = New-CsOnlineTelephoneNumberOrder -Name "Example 1" -Description "Civic address search example" -Country "US" -NumberType "UserSubscriber" -Quantity 1 -CivicAddressId 3b175352-4131-431e-970c-273226b8fb46 -PS C:\> $order = Get-CsOnlineTelephoneNumberOrder -OrderId $orderId - -AreaCode : -CivicAddressId : 3b175352-4131-431e-970c-273226b8fb46 -CountryCode : US -CreatedAt : 8/23/2021 5:43:44 PM -Description : Civic address search example -ErrorCode : NoError -Id : 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -InventoryType : Subscriber -IsManual : False -Name : Example 1 -NumberPrefix : -NumberType : UserSubscriber -Quantity : 1 -ReservationExpiryDate : 8/23/2021 5:59:45 PM -SearchType : CivicAddress -SendToServiceDesk : False -Status : Reserved -TelephoneNumber : {Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TelephoneNumberSearchResult} - -PS C:\> $order.TelephoneNumber - -Location TelephoneNumber --------- --------------- -New York City +17182000004 - - This example demonstrates a civic address based telephone number search. Telephone number +17182000004 is found to belong to the given address and is reserved for purchase. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $orderId = New-CsOnlineTelephoneNumberOrder -Name "Example 2" -Description "Number prefix search example" -Country "US" -NumberType "UserSubscriber" -Quantity 1 -NumberPrefix 1425 -PS C:\> $order = Get-CsOnlineTelephoneNumberOrder -OrderId $orderId - -AreaCode : -CivicAddressId : -CountryCode : US -CreatedAt : 8/23/2021 5:43:44 PM -Description : Number prefix search example -ErrorCode : NoError -Id : 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -InventoryType : Subscriber -IsManual : False -Name : Example 2 -NumberPrefix : -NumberType : UserSubscriber -Quantity : 1 -ReservationExpiryDate : 8/23/2021 5:59:45 PM -SearchType : Prefix -SendToServiceDesk : False -Status : Reserved -TelephoneNumber : {Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TelephoneNumberSearchResult} - -PS C:\> $order.TelephoneNumber - -Location TelephoneNumber --------- --------------- -Bellevue +14252000004 - - This example demonstrates a number prefix based telephone number search. Telephone number +14252000004 is found to have the desired number prefix and is reserved for purchase. - - - - -------------------------- Example 3 -------------------------- - PS C:\> $orderId = New-CsOnlineTelephoneNumberOrder -Name "Example 3" -Description "Area code selection search example" -Country "US" -NumberType "ConferenceTollFree" -Quantity 1 -AreaCode 800 -PS C:\> $order = Get-CsOnlineTelephoneNumberOrder -OrderId $orderId - -AreaCode : -CivicAddressId : -CountryCode : US -CreatedAt : 8/23/2021 5:43:44 PM -Description : Area code selection search example -ErrorCode : NoError -Id : 1efd85ca-dd46-41b3-80a0-2e4c5f87c912 -InventoryType : Service -IsManual : False -Name : Example 3 -NumberPrefix : -NumberType : ConferenceTollFree -Quantity : 1 -ReservationExpiryDate : 8/23/2021 5:59:45 PM -SearchType : AreaCodeSelection -SendToServiceDesk : False -Status : Reserved -TelephoneNumber : {Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TelephoneNumberSearchResult} - -PS C:\> $order.TelephoneNumber - -Location TelephoneNumber --------- --------------- -Toll Free +18002000004 - - This example demonstrates an area code selection based telephone number search. Telephone number +18002000004 is found to have the desired area code and is reserved for purchase. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberCountry - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbercountry - - - Get-CsOnlineTelephoneNumberType - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumbertype - - - New-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetelephonenumberorder - - - Get-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinetelephonenumberorder - - - Complete-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/complete-csonlinetelephonenumberorder - - - Clear-CsOnlineTelephoneNumberOrder - https://learn.microsoft.com/powershell/module/microsoftteams/clear-csonlinetelephonenumberorder - - - - - - New-CsOnlineTelephoneNumberReleaseOrder - New - CsOnlineTelephoneNumberReleaseOrder - - This cmdlet creates a request to release telephone numbers from Microsoft Teams telephone number management inventory. - - - - This cmdlet releases existing telephone numbers from Microsoft Teams telephone number management inventory. Once released the phone numbers will not be visible in Teams PowerShell as acquired telephone numbers. A maximum of 1,000 phone numbers can be released at a time. If more than 1,000 numbers need to be released, the requests should be divided into multiple increments of up to 1,000 numbers. - The cmdlet is an asynchronous operation and will return an OrderId as output. You can use the Get-CsOnlineTelephoneNumberOrder (get-csonlinetelephonenumberorder.md)cmdlet to check the status of the OrderId, including any error or warning messages that might result from the operation: `Get-CsOnlineTelephoneNumberOrder -OrderType Release -OrderId "orderId"`. - - - - New-CsOnlineTelephoneNumberReleaseOrder - - EndingNumber - - This is the ending number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - FileContent - - This is the content of a .csv file that includes the telephone numbers to be released from the Microsoft Teams telephone number management inventory. This parameter can be used to release up to 1,000 numbers at a time. - - Byte[] - - Byte[] - - - None - - - StartingNumber - - This is the starting number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - TelephoneNumber - - This is the telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - - - - EndingNumber - - This is the ending number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - FileContent - - This is the content of a .csv file that includes the telephone numbers to be released from the Microsoft Teams telephone number management inventory. This parameter can be used to release up to 1,000 numbers at a time. - - Byte[] - - Byte[] - - - None - - - StartingNumber - - This is the starting number of a range of telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - TelephoneNumber - - This is the telephone number you wish to release from your tenant in Microsoft Teams telephone number management inventory. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.String - - - - - - - - - The cmdlet is available in Teams PowerShell module 6.7.1 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -TelephoneNumber "+123456789" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, a telephone number "+123456789" is being released from Microsoft Teams telephone number management inventory. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -TelephoneNumber "+123456789,+134567890,+145678901" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, a list of telephone numbers are being released from Microsoft Teams telephone number management. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -StartingNumber "+12000000" -EndingNumber "+12000009" -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, a range of telephone numbers from "+12000000" to "+12000009" are being released from Microsoft Teams telephone number management. - - - - -------------------------- Example 4 -------------------------- - PS C:\> $drlist = [System.IO.File]::ReadAllBytes("C:\Users\testuser\DrNumber.csv") -PS C:\> New-CsOnlineTelephoneNumberReleaseOrder -FileContent $drlist -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, the content of a file with a list of telephone numbers are being released via file upload. The file should be in Comma Separated Values (CSV) file format and should only contain the list of telephone numbers to be released. The `New-CsOnlineTelephoneNumberReleaseOrder` cmdlet is only used to pass the content. - - - - - - Online Version: - - - - Get-CsOnlineTelephoneNumberOrder - - - - New-CsOnlineDirectRoutingTelephoneNumberUploadOrder - - - - - - - New-CsOnlineTimeRange - New - CsOnlineTimeRange - - The New-CsOnlineTimeRange cmdlet creates a new time range. - - - - The New-CsOnlineTimeRange cmdlet creates a new time range to be used with the Auto Attendant (AA) service. Time ranges are used to form schedules. NOTES : - - The start bound of the range must be less than its end bound. - - Time ranges within a weekly recurrent schedule must align with 15-minute boundaries. - - - - New-CsOnlineTimeRange - - End - - The End parameter represents the end bound of the time range. - - System.TimeSpan - - System.TimeSpan - - - None - - - Start - - The Start parameter represents the start bound of the time range. - - System.TimeSpan - - System.TimeSpan - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - End - - The End parameter represents the end bound of the time range. - - System.TimeSpan - - System.TimeSpan - - - None - - - Start - - The Start parameter represents the start bound of the time range. - - System.TimeSpan - - System.TimeSpan - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.TimeRange - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $workdayTimeRange = New-CsOnlineTimeRange -Start 09:00 -End 17:00 - - This example creates a time range for a 9AM to 5PM work day. - - - - -------------------------- Example 2 -------------------------- - $allDayTimeRange = New-CsOnlineTimeRange -Start 00:00 -End 1.00:00 - - This example creates a 24-hour time range. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinetimerange - - - New-CsOnlineDateTimeRange - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinedatetimerange - - - New-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - New-CsAutoAttendantCallFlow - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallflow - - - New-CsAutoAttendantCallHandlingAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendantcallhandlingassociation - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - - - - New-CsOnlineVoiceRoute - New - CsOnlineVoiceRoute - - Creates a new online voice route. - - - - Use this cmdlet to create a new online voice route. All online voice routes are created at the Global scope. However, multiple global voice routes can be defined. This is accomplished through the Identity parameter, which requires a unique route name. - Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - Voice routes are associated with online voice policies through online PSTN usages. A voice route includes a regular expression that identifies which phone numbers will be routed through a given voice route: phone numbers matching the regular expression will be routed through this route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - New-CsOnlineVoiceRoute - - Identity - - A name that uniquely identifies the online voice route. Voice routes can be defined only at the global scope, so the identity is simply the name you want to give the route. (You can have spaces in the route name, for instance Test Route, but you must enclose the full string in double quotes in the call to the New-CsOnlineVoiceRoute cmdlet.) - If Identity is specified, the Name must be left blank. The value of the Identity will be assigned to the Name. - - String - - String - - - None - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsOnlineVoiceRoute - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - Name - - The unique name of the voice route. If this parameter is set, the value will be automatically applied to the online voice route Identity. You cannot specify both an Identity and a Name. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A description of what this online voice route is for. - - String - - String - - - None - - - Identity - - A name that uniquely identifies the online voice route. Voice routes can be defined only at the global scope, so the identity is simply the name you want to give the route. (You can have spaces in the route name, for instance Test Route, but you must enclose the full string in double quotes in the call to the New-CsOnlineVoiceRoute cmdlet.) - If Identity is specified, the Name must be left blank. The value of the Identity will be assigned to the Name. - - String - - String - - - None - - - Name - - The unique name of the voice route. If this parameter is set, the value will be automatically applied to the online voice route Identity. You cannot specify both an Identity and a Name. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. - Default: [0-9]{10} - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineVoiceRoute -Identity Route1 - - The command in this example creates a new online voice route with an Identity of Route1. All other properties will be set to the default values. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add="Long Distance"} -OnlinePstnGatewayList @{add="sbc1.litwareinc.com"} - - The command in this example creates a new online voice route with an Identity of Route1. It also adds the online PSTN usage Long Distance to the list of usages and the service ID PstnGateway sbc1.litwareinc.com to the list of online PSTN gateways. - - - - -------------------------- Example 3 -------------------------- - PS C:\> $x = (Get-CsOnlinePstnUsage).Usage - -New-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add=$x} - - This example creates a new online voice route named Route1 and populates that route's list of PSTN usages with all the existing usages for the organization. The first command in this example retrieves the list of global online PSTN usages. Notice that the call to the `Get-CsOnlinePstnUsage` cmdlet is in parentheses; this means that we first retrieve an object containing PSTN usage information. (Because there is only one, global, online PSTN usage, only one object will be retrieved.) The command then retrieves the Usage property of this object. That property, which contains a list of usages, is assigned to the variable $x. In the second line of this example, the `New-CsOnlineVoiceRoute` cmdlet is called to create a new online voice route. This voice route will have an identity of Route1. Notice the value passed to the OnlinePstnUsages parameter: @{add=$x}. This value says to add the contents of $x, which contain the phone usages list retrieved in line 1, to the list of online PSTN usages for this route. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - New-CsOnlineVoiceRoutingPolicy - New - CsOnlineVoiceRoutingPolicy - - Creates a new online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - New-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet). - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet). - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages "Long Distance" - - The command shown in Example 1 creates a new online per-user voice routing policy with the Identity RedmondOnlineVoiceRoutingPolicy. This policy is assigned a single online PSTN usage: Long Distance. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages "Long Distance", "Local", "Internal" - - Example 2 is a variation of the command shown in Example 1; in this case, however, the new policy is assigned three online PSTN usages: Long Distance; Local; Internal. Multiple usages can be assigned simply by separating each usage using a comma. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder - New - CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder - - This cmdlet allows the admin to update AcquiredCapabilities for one or multiple Direct Routing phone numbers at once. - - - - This cmdlet lets the admin add new, update existing or remove the AcquiredCapabilities for multiple Direct Routing (DR) phone numbers at once. There can be maximum of 1000 phone numbers updated in a single command. - - - - New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder - - AcquiredCapabilitiesToAdd - - The acquired capabilities to be added to the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and SharedCalling. - - System.String - - System.String - - - None - - - AcquiredCapabilitiesToRemove - - The acquired capabilities to be removed from the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and SharedCalling. - - System.String - - System.String - - - None - - - PhoneNumbers - - Indicates the phone numbers for which acquired capabilities are being updated. - - System.String - - System.String - - - None - - - - - - AcquiredCapabilitiesToAdd - - The acquired capabilities to be added to the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and SharedCalling. - - System.String - - System.String - - - None - - - AcquiredCapabilitiesToRemove - - The acquired capabilities to be removed from the phone number. You can specify one or more capabilities delimited by a comma. Supported capabilities are ConferenceAssignment, VoiceApplicationAssignment, UserAssignment, and SharedCalling. - - System.String - - System.String - - - None - - - PhoneNumbers - - Indicates the phone numbers for which acquired capabilities are being updated. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - OrderId - - - Contains the OrderId for the operation. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - OrderType - - - Type of order submitted. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder -PhoneNumbers "12056788888,12056789999" -AcquiredCapabilitiesToAdd "UserAssignment" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to add UserAssignment acquired capability for two numbers. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder -PhoneNumbers "12056788888,12056789999" -AcquiredCapabilitiesToRemove "UserAssignment" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to remove UserAssignment acquired capability from two numbers. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder -PhoneNumbers "12056788888,12056789999" -AcquiredCapabilitiesToAdd "UserAssignment", -AcquiredCapabilitiesToRemove "FirstPartyAppAssignment" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to add UserAssignment as acquired capability while removing FirstPartyAppAssignment from the acquired capabilities list for two numbers. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-csphonenumberbulkupdatedrnumberacquiredcapabilitiesorder - - - Get-CsOnlineTelephoneNumberOrder - - - - - - - New-CsPhoneNumberBulkUpdateLocationIdOrder - New - CsPhoneNumberBulkUpdateLocationIdOrder - - This cmdlet allows the admin to update LocationId for one or multiple telephone numbers at once. - - - - This cmdlet lets the admin update the LocationId for multiple phone numbers at once. There can be maximum of 1000 phone numbers updated in a single command. - - - - New-CsPhoneNumberBulkUpdateLocationIdOrder - - LocationId - - The LocationId of the location to assign to the specific user. You can get it using Get-CsOnlineLisLocation. You can set the location on both assigned and unassigned phone numbers. - Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk. If you want to remove the location, use the string value null for LocationId. - - System.String - - System.String - - - None - - - PhoneNumbers - - The phone numbers to update LocationId for. - - System.String - - System.String - - - None - - - - - - LocationId - - The LocationId of the location to assign to the specific user. You can get it using Get-CsOnlineLisLocation. You can set the location on both assigned and unassigned phone numbers. - Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk. If you want to remove the location, use the string value null for LocationId. - - System.String - - System.String - - - None - - - PhoneNumbers - - The phone numbers to update LocationId for. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - OrderId - - - Contains the OrderId for the operation. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - OrderType - - - Type of order submitted. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateLocationIdOrder -PhoneNumbers "12056788888,12056789999" -LocationId "f84h3gs5-2a32-s5fd-1233-32sf84h3gs54" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to update LocationId for two numbers. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateLocationIdOrder -PhoneNumbers "12056788888,12056789999" -LocationId "null" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to remove LocationId for two numbers. Setting the LocationId to "null" will remove current LocationId for the number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-csphonenumberbulkupdatelocationidorder - - - Get-CsOnlineTelephoneNumberOrder - - - - - - - New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder - New - CsPhoneNumberBulkUpdateNetworkSiteIdOrder - - This cmdlet allows the admin to update NetworkSiteId for one or multiple telephone numbers at once. - - - - This cmdlet lets the admin update the NetworkSiteId for multiple phone numbers at once. There can be maximum of 1000 phone numbers updated in a single command. - - - - New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder - - NetworkSiteId - - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - PhoneNumbers - - The phone numbers to update NetworkSiteId for. - - System.String - - System.String - - - None - - - - - - NetworkSiteId - - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - PhoneNumbers - - The phone numbers to update NetworkSiteId for. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - OrderId - - - Contains the OrderId for the operation. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - OrderType - - - Type of order submitted. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder -PhoneNumbers "12056788888,12056789999" -NetworkSiteId "123534" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example shows how to update NetworkSiteId for two numbers. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-csphonenumberbulkupdatenetworksiteidorder - - - Get-CsOnlineTelephoneNumberOrder - - - - - - - New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder - New - CsPhoneNumberBulkUpdateReverseNumberLookupOrder - - This cmdlet allows the admin to update reverse number lookup attribute to one or multiple telephone numbers at once. - - - - This cmdlet lets the admin update the reverse number lookup option such as skipInternalVoip from multiple phone numbers at once. There can be maximum of 1000 phone numbers updated in a single command. - - - - New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder - - PhoneNumbers - - The phone numbers to update ReverseNumberLookup option for. - - System.String - - System.String - - - None - - - ReverseNumberLookupToAdd - - Indicates the ReverseNumberLookup option will be added to the numbers. - - System.String - - System.String - - - None - - - ReverseNumberLookupToRemove - - Indicates the ReverseNumberLookup option will be removed from the numbers. - - System.String - - System.String - - - None - - - - - - PhoneNumbers - - The phone numbers to update ReverseNumberLookup option for. - - System.String - - System.String - - - None - - - ReverseNumberLookupToAdd - - Indicates the ReverseNumberLookup option will be added to the numbers. - - System.String - - System.String - - - None - - - ReverseNumberLookupToRemove - - Indicates the ReverseNumberLookup option will be removed from the numbers. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - OrderId - - - Contains the OrderId for the operation. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - OrderType - - - Type of order submitted. This will be needed to lookup order status using Get-CsOnlineTelephoneNumberOrder (./Get-CsOnlineTelephoneNumberOrder.md). - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder -PhoneNumbers "12056788888,12056789999" -ReverseNumberLookupToAdd "skipInternalVoip" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example adds skipInternalVoip option to two indicated phone numbers. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder -PhoneNumbers "12056788888,12056789999" -ReverseNumberLookupToRemove "skipInternalVoip" - -Id OrderType --- --------- -0a000a0a-aa0a-0a0a-aa0a-a0aa0aa NumberUpdate - - This example removes skipInternalVoip option from two indicated phone numbers. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-csphonenumberbulkupdatereversenumberlookuporder - - - Get-CsOnlineTelephoneNumberOrder - - - - - - - New-CsPhoneNumberBulkUpdateTagsOrder - New - CsPhoneNumberBulkUpdateTagsOrder - - This cmdlet allows the admin to add/remove one or multiple telephone number tags to a number of telephone numbers at once. - - - - Creates a bulk update order that adds or removes one or more tags from multiple telephone numbers in a single operation. This cmdlet is designed for administrators who need to efficiently manage telephone numbers at scale, reducing manual effort and ensuring consistency across large sets of telephone numbers. The cmdlet allows maximum 1000 telephone numbers to be updated at a time. Any limitation for Set-CsPhoneNumberTag (./Set-CsPhoneNumberTag.md)will also apply to this bulk update order. - - - - New-CsPhoneNumberBulkUpdateTagsOrder - - TagsToAdd - - These are the tags to be added to telephone numbers. - - System.String - - System.String - - - None - - - TagsToRemove - - These are the tags to be removed from telephone numbers. - - System.String - - System.String - - - None - - - PhoneNumbers - - These are the list of telephone numbers on which bulk update operation will be performed. - - System.String - - System.String - - - None - - - - - - TagsToAdd - - These are the tags to be added to telephone numbers. - - System.String - - System.String - - - None - - - TagsToRemove - - These are the tags to be removed from telephone numbers. - - System.String - - System.String - - - None - - - PhoneNumbers - - These are the list of telephone numbers on which bulk update operation will be performed. - - System.String - - System.String - - - None - - - - - - - The cmdlet is available in Teams PowerShell module 7.6.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateTagsOrder -PhoneNumbers "17032511428,17032511429,17032511430" -TagsToAdd "HR" - -Id OrderType --- --------- -0e923e2c-ab0e-6h8c-be5a-a6gh3rf NumberUpdate - - Above example shows how to set a "HR" and "NewYork" tags to multiple telephone numbers. There can be maximum 1000 telephone numbers in one order. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateTagsOrder -PhoneNumbers "17032511428,17032511429,17032511430" -TagsToRemove "HR" - -Id OrderType --- --------- -0e923e2c-ab0e-6h8c-be5a-wre45fd NumberUpdate - - Above example shows how to remove "HR" tag from multiple telephone numbers. There can be maximum 1000 telephone numbers in one order. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateTagsOrder -PhoneNumbers "17032511428,17032511429,17032511430" -TagsToAdd "DevOps,London,City Center" - -Id OrderType --- --------- -0e923e2c-ab0e-6h8c-be5a-90fac6c NumberUpdate - - Above example shows how to add multiple tags to multiple telephone numbers at the same time. There can be maximum 1000 telephone numbers and 10 tags in one order. Any restrictions on number of tags per number and number of characters per tag will be enforced. - - - - -------------------------- Example 4 -------------------------- - PS C:\> New-CsPhoneNumberBulkUpdateTagsOrder -PhoneNumbers "17032511428,17032511429,17032511430" -TagsToRemove "DevOps,London,City Center" - -Id OrderType --- --------- -0e923e2c-ab0e-6h8c-be5a-906be8c NumberUpdate - - Above example shows how to remove multiple tags from multiple telephone numbers at the same time. There can be maximum 1000 telephone numbers and 10 tags in one order. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-phonenumberbulkupdatetagsorder - - - Set-CsPhoneNumberTag - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsPhoneNumberTag - - - Get-CsPhoneNumberTag - https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsPhoneNumberTag - - - Remove-CsPhoneNumberTag - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsPhoneNumberTag - - - - - - New-CsPhoneNumberUsageChangeOrder - New - CsPhoneNumberUsageChangeOrder - - This cmdlet creates a request to to update TN Usage (e.g. from User Type to Service Type). - - - - This cmdlet creates a order to update the usage of the given phone numbers (e.g. from User Type to Service Type). - - - - New-CsPhoneNumberUsageChangeOrder - - TelephoneNumber - - Specifies the telephone number(s) to remove. The format can be with or without the prefixed +, but needs to include country code etc. - - System.String[] - - System.String[] - - - None - - - Usage - - Specifies the new usage type for the given telephone numbers. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - TelephoneNumber - - Specifies the telephone number(s) to remove. The format can be with or without the prefixed +, but needs to include country code etc. - - System.String[] - - System.String[] - - - None - - - Usage - - Specifies the new usage type for the given telephone numbers. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.String - - - - - - - - None - - - - - - - - - This cmdlet is available in Teams PowerShell module 7.5.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsPhoneNumberUsageChangeOrder -TelephoneNumber "+123456789" -Usage ServiceType - -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, the telephone number "+123456789" would change to Service Type usage. - - - - -------------------------- Example 2 -------------------------- - [string[]]$tns="+14255551234","+14255551233" -PS C:\> New-CsPhoneNumberUsageChangeOrder -TelephoneNumber $tns -Usage ServiceType - -cdf3073a-6fbb-4ade-a8af-e8fa1f3b9c13 - - In this example, the usage of the given list of telephone numbers is being updated to Service Type. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/new-csphonenumberusagechangeorder - - - - - - New-CsSdgBulkSignInRequest - New - CsSdgBulkSignInRequest - - Use the New-CsSdgBulkSignInRequest cmdlet to sign in a batch of up to 100 devices. - - - - Bulk Sign In for Teams SIP Gateway enables you to sign in a batch of devices in one go. This feature is intended for admins and works for shared devices. The password for the shared device account is reset at runtime to an unknown value and the cmdlet uses the new credential for fetching token from Entra ID. Admins can sign in shared account remotely and in bulk using this feature. - - - - New-CsSdgBulkSignInRequest - - DeviceDetailsFilePath - - This is the path of the device details CSV file. The CSV file contains two columns - username and hardware ID, where username is of the format FirstFloorLobbyPhone1@contoso.com and hardware ID is the device MAC address in the format 1A-2B-3C-4D-5E-6F - - String - - String - - - None - - - Region - - This is the SIP Gateway region. Possible values include NOAM, EMEA, APAC. - - String - - String - - - None - - - - - - DeviceDetailsFilePath - - This is the path of the device details CSV file. The CSV file contains two columns - username and hardware ID, where username is of the format FirstFloorLobbyPhone1@contoso.com and hardware ID is the device MAC address in the format 1A-2B-3C-4D-5E-6F - - String - - String - - - None - - - Region - - This is the SIP Gateway region. Possible values include NOAM, EMEA, APAC. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Import-Module MicrosoftTeams -$credential = Get-Credential // Enter your admin's email and password -Connect-MicrosoftTeams -Credential $credential -$newBatchResponse = New-CsSdgBulkSignInRequest -DeviceDetailsFilePath .\Example.csv -Region APAC - - This example shows how to connect to Microsoft Teams PowerShell module, and read the output of the New-SdgBulkSignInRequest cmdlet into a variable newBatchResponse. The cmdlet uses Example.csv as the device details file, and SIP Gateway region as APAC. - - - - -------------------------- Example 2 -------------------------- - $newBatchResponse = New-CsSdgBulkSignInRequest -DeviceDetailsFilePath .\Example.csv -Region APAC -$newBatchResponse.BatchId -$getBatchStatusResponse = Get-CsSdgBulkSignInRequestStatus -Batchid $newBatchResponse.BatchId -$getBatchStatusResponse | ft -$getBatchStatusResponse.BatchItem - - This example shows how to view the status of a bulk sign in batch. - - - - - - - - New-CsSharedCallHistoryTemplate - New - CsSharedCallHistoryTemplate - - Use the New-CsSharedCallHistoryTemplate cmdlet to create a Shared Call History template. The template defines which roles can access Shared Call History and which parts of the history are visible to them. - - - - Use the New-CsSharedCallHistoryTemplate cmdlet to create a Shared Call History template. The template defines which roles can access Shared Call History and which parts of the history are visible to them. - - - - New-CsSharedCallHistoryTemplate - - AnsweredAndOutboundCalls - - Who sees Call Queue answered and outbound calls in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Description - - A description for the shared call history template. - - System.String - - System.String - - - None - - - IncomingMissedCalls - - Who sees Call Queue incoming missed calls and shared voicemails in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - IncomingRedirectedCalls - - Who sees AutoAttendant Shared Voicemails events in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndGroupMembers - - Object - - Object - - - None - - - Name - - The name of the shared call history template. - - System.String - - System.String - - - None - - - - - - AnsweredAndOutboundCalls - - Who sees Call Queue answered and outbound calls in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Description - - A description for the shared call history template. - - System.String - - System.String - - - None - - - IncomingMissedCalls - - Who sees Call Queue incoming missed calls and shared voicemails in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - IncomingRedirectedCalls - - Who sees AutoAttendant Shared Voicemails events in the shared call history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndGroupMembers - - Object - - Object - - - None - - - Name - - The name of the shared call history template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsSharedCallHistoryTemplate -Name "Customer Service" -Description "Missed:All Answered:Auth" -IncomingMissedCall AuthorizedUsersAndAgents -AnsweredAndOutboundCalls AuthorizedUsersOnly - - This example creates a new Shared Call History template where incoming missed calls for Call Queue are shown to authorized users and agents and, answered and outbound calls are shown to authorized users only. Visibility to Auto Attendant Shared Voicemails is not defined, so it will be none. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsSharedCallHistoryTemplate - - - Get-CsSharedCallHistoryTemplate - - - - Set-CsSharedCallHistoryTemplate - - - - Remove-CsSharedCallHistoryTemplate - - - - New-CsCallQueue - - - - Get-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - - - - New-CsSharedCallQueueHistoryTemplate - New - CsSharedCallQueueHistoryTemplate - - This PowerShell cmdlet is being deprecated, please use the new version New-CsSharedCallHistoryTemplate (./New-CsSharedCallHistoryTemplate.md)instead - > [!IMPORTANT] >This PowerShell cmdlet is being deprecated, please use the new version New-CsSharedCallHistoryTemplate (./New-CsSharedCallHistoryTemplate.md)instead - - - - Use the New-CsSharedCallQueueHistoryTemplate cmdlet to create a Shared Call Queue History template. - - - - New-CsSharedCallQueueHistoryTemplate - - AnsweredAndOutboundCalls - - Who sees answered and outbound calls in the shared call queue history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Description - - A description for the shared call queue history template. - - System.String - - System.String - - - None - - - IncomingMissedCalls - - Who sees incoming missed calls in the shared call queue history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Name - - The name of the shared call queue history template. - - System.String - - System.String - - - None - - - - - - AnsweredAndOutboundCalls - - Who sees answered and outbound calls in the shared call queue history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Description - - A description for the shared call queue history template. - - System.String - - System.String - - - None - - - IncomingMissedCalls - - Who sees incoming missed calls in the shared call queue history. - PARAMVALUE: None | AuthorizedUsersOnly | AuthorizedUsersAndAgents - - Object - - Object - - - None - - - Name - - The name of the shared call queue history template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsSharedCallQueueHistoryTemplate -Name "Customer Service" -Description "Missed:All Answered:Auth" -IncomingMissedCall AuthorizedUsersAndAgents -AnsweredAndOutboundCalls AuthorizedUsersOnly - - This example creates a new Shared CallQueue History template where incoming missed calls are shown to authorized users and agents and, answered and outbound calls are shown to authorized users only. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/New-CsSharedCallQueueHistoryTemplate - - - Get-CsSharedCallQueueHistoryTemplate - - - - Set-CsSharedCallQueueHistoryTemplate - - - - Remove-CsSharedCallQueueHistoryTemplate - - - - New-CsCallQueue - - - - Get-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - New-CsTag - New - CsTag - - Creates new tag that can be added to a TagTemplate. - - - - The New-CsTag cmdlet creates a new tag associated with a specific Auto Attendant callable entity. This tag must be added to a TagTemplate. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - New-CsTag - - TagName - - The name of the tag - - String - - String - - - None - - - TagDetails - - The full callable entity object created with the New-CsAutoAttendantCallableEntity (new-csautoattendantcallableentity.md)cmdlet - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - TagName - - The name of the tag - - String - - String - - - None - - - TagDetails - - The full callable entity object created with the New-CsAutoAttendantCallableEntity (new-csautoattendantcallableentity.md)cmdlet - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstag - - - New-CsTagsTemplate - - - - Get-CsTagsTemplate - - - - Set-CsTagsTemplate - - - - Remove-CsTagsTemplate - - - - - - - New-CsTagsTemplate - New - CsTagsTemplate - - Creates new tag template. - - - - The New-CsTagsTemplate cmdlet creates a new tag template made of up of tags created with New-CsTag (New-CsTag.md). - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - New-CsTagsTemplate - - Name - - The name of the tag - - String - - String - - - None - - - Description - - A description for the purpose of the tag template - - String - - String - - - None - - - Tags - - The list of tags to add to the template. - - List - - List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Name - - The name of the tag - - String - - String - - - None - - - Description - - A description for the purpose of the tag template - - String - - String - - - None - - - Tags - - The list of tags to add to the template. - - List - - List - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstagstemplate - - - New-CsTag - - - - Get-CsTagsTemplate - - - - Set-CsTagsTemplate - - - - Remove-CsTagsTemplate - - - - - - - New-CsTeamsAudioConferencingPolicy - New - CsTeamsAudioConferencingPolicy - - - - - - The New-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. This cmdlet creates a new Teams audio conferencing policy. Custom policies can then be assigned to users using the Grant-CsTeamsAudioConferencingPolicy cmdlet. - - - - New-CsTeamsAudioConferencingPolicy - - Identity - - Specify the name of the policy that you are creating - - String - - String - - - None - - - AllowTollFreeDialin - - Determines whether users of the Policy can have Toll free numbers - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTollFreeDialin - - Determines whether users of the Policy can have Toll free numbers - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating - - String - - String - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $False - - The command shown in Example 1 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: AllowTollFreeDialin; in this example, meetings created by users with this policy cannot include Toll Free phone numbers. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> New-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" - - The command shown in Example 2 uses the New-CsTeamsAudioConferencingPolicy cmdlet to create a new audio-conferencing policy with the Identity "EMEA users". This policy will use all the default values for a meeting policy except one: MeetingInvitePhoneNumbers; in this example, meetings created by users with this policy will include the following toll and toll free phone numbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - New-CsTeamsCallParkPolicy - New - CsTeamsCallParkPolicy - - The New-CsTeamsCallParkPolicy cmdlet lets you create a new custom policy that can then be assigned to one or more specific users. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: The call park feature currently available in desktop. mobile and web clients. Supported with TeamsOnly mode. - - - - New-CsTeamsCallParkPolicy - - Identity - - A unique identifier for the policy - this will be used to retrieve the policy later on to assign it to specific users. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier for the policy - this will be used to retrieve the policy later on to assign it to specific users. - - XdsIdentity - - XdsIdentity - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true - - Create a new custom policy that has call park enabled. This policy can then be assigned to individual users. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -PickupRangeStart 500 -PickupRangeEnd 1500 - - Create a new custom policy that has call park enabled. This policy will generate pickup numbers starting from 500 and up until 1500. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -AllowCallPark $true -ParkTimeoutSeconds 600 - - Create a new custom call park policy which will ring back the parker after 600 seconds if the parked call is unanswered - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamscallparkpolicy - - - - - - New-CsTeamsCortanaPolicy - New - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - This cmdlet creates a new Teams Cortana policy. Custom policies can then be assigned to users using the Grant-CsTeamsCortanaPolicy cmdlet. - - - - New-CsTeamsCortanaPolicy - - Identity - - Unique identifier for Teams cortana policy you're creating. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for Teams cortana policy you're creating. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsCortanaPolicy -Identity MyCortanaPolicy -CortanaVoiceInvocationMode PushToTalkUserOverride - - In this example, a new Teams Cortana Policy is created. Cortana voice invocation mode is set to 'push to talk' i.e. Cortana in Teams can be invoked by tapping on the Cortana mic button only. Wake word ("Hey Cortana") invocation is not allowed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - New-CsTeamsEmergencyCallRoutingPolicy - New - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency number. - - - - This cmdlet creates a new Teams Emergency Call Routing policy with one or more emergency numbers. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration. - - - - New-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The Description parameter describes the Teams Emergency Call Routing policy - what it's for, what type of user it applies to and any other information that helps to identify the purpose of this policy. Maximum characters: 512. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -New-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$en1} -AllowEnhancedEmergencyServices:$true -Description "test" - - This example first creates a new Teams emergency number object and then creates a Teams Emergency Call Routing policy with this emergency number object. Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used. Note that {@add=....} will try to append a new emergency number to the values taken from the global instance. - - - - -------------------------- Example 2 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -EmergencyNumbers $en1 -AllowEnhancedEmergencyServices:$true -Description "test" - - This example overrides the global emergency numbers from the global instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - - - - New-CsTeamsEmergencyNumber - New - CsTeamsEmergencyNumber - - - - - - This cmdlet supports creating multiple Teams emergency numbers. Used with TeamsEmergencyCallRoutingPolicy and only relevant for Direct Routing. - - - - New-CsTeamsEmergencyNumber - - EmergencyDialMask - - For each Teams emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. Dial mask must be list of numbers separated by semicolon. Each number string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyDialString - - Specifies the emergency phone number - - String - - String - - - None - - - OnlinePSTNUsage - - Specify the online public switched telephone network (PSTN) usage - - String - - String - - - None - - - - - - EmergencyDialMask - - For each Teams emergency number, you can specify zero or more emergency dial masks. A dial mask is a number that you want to translate into the value of the emergency dial number value when it is dialed. Dial mask must be list of numbers separated by semicolon. Each number string must be made of the digits 0 through 9 and can be from 1 to 10 digits in length. - - String - - String - - - None - - - EmergencyDialString - - Specifies the emergency phone number - - String - - String - - - None - - - OnlinePSTNUsage - - Specify the online public switched telephone network (PSTN) usage - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsEmergencyNumber -EmergencyDialString 911 -EmergencyDialMask 933 -OnlinePSTNUsage "US911" - - Create a new Teams emergency number - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "117;897" -OnlinePSTNUsage "EU112" - - Create a new Teams emergency number with multiple emergency dial masks. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - - - - New-CsTeamsEnhancedEncryptionPolicy - New - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to create a new Teams enhanced encryption policy. - - - - Use this cmdlet to create a new Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - New-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling Set-CsTeamsEnhancedEncryptionPolicy. - - - SwitchParameter - - - False - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling Set-CsTeamsEnhancedEncryptionPolicy. - - SwitchParameter - - SwitchParameter - - - False - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy - - Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTeamsEnhancedEncryptionPolicy and applies the default values to its settings. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy -CallingEndtoEndEncryptionEnabledType DisabledUserOverride -MeetingEndToEndEncryption DisabledUserOverride - - Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTeamsEnhancedEncryptionPolicy and applies the provided values to its settings. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - New-CsTeamsEventsPolicy - New - CsTeamsEventsPolicy - - This cmdlet allows you to create a new TeamsEventsPolicy instance and set its properties. Note that this policy is currently still in preview. - - - - TeamsEventsPolicy is used to configure options for customizing Teams Events experiences. - - - - New-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting governs which types of town halls can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting governs which types of webinars can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - Enabled - - - AllowEventIntegrations - - This setting governs the access to the integrations tab in the event creation workflow. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town hall. - - String - - String - - - Enabled - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - Enabled - - - BroadcastPremiumApps - - This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Possible values are: - Enabled : An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall - Disabled : An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - This setting governs which users can access the Town hall event and access the event registration page or the event site to register for a Webinar. It also governs which user type is allowed to join the session or sessions in the event for both event types. - Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - - EveryoneInCompanyExcludingGuests : For Webinar - enables creating events to allow only in-tenant users to register and join the event. For Town hall - enables creating events to allow only in-tenant users to join the event (Note: for Town hall, in-tenant users include guests; this parameter will disable public Town halls). - - String - - String - - - Everyone - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs if the user can enable the Comment Stream chat experience for Townhalls. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - String - - String - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting governs which types of town halls can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting governs which types of webinars can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - Enabled - - - AllowEventIntegrations - - This setting governs the access to the integrations tab in the event creation workflow. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town hall. - - String - - String - - - Enabled - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - Enabled - - - BroadcastPremiumApps - - This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Possible values are: - Enabled : An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall - Disabled : An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - This setting governs which users can access the Town hall event and access the event registration page or the event site to register for a Webinar. It also governs which user type is allowed to join the session or sessions in the event for both event types. - Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - - EveryoneInCompanyExcludingGuests : For Webinar - enables creating events to allow only in-tenant users to register and join the event. For Town hall - enables creating events to allow only in-tenant users to join the event (Note: for Town hall, in-tenant users include guests; this parameter will disable public Town halls). - - String - - String - - - Everyone - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs if the user can enable the Comment Stream chat experience for Townhalls. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - String - - String - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsEventsPolicy -Identity DisablePublicWebinars -AllowWebinars Enabled -EventAccessType EveryoneInCompanyExcludingGuests - - The command shown in Example 1 creates a new per-user Teams Events policy with the Identity DisablePublicWebinars. This policy disables a user from creating public webinars. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsEventsPolicy -Identity DisableWebinars -AllowWebinars Disabled - - The command shown in Example 2 creates a new per-user Teams Events policy with the Identity DisableWebinars. This policy disables a user from creating webinars. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamseventspolicy - - - - - - New-CsTeamsIPPhonePolicy - New - CsTeamsIPPhonePolicy - - New-CsTeamsIPPhonePolicy allows you to create a policy to manage features related to Teams phone experiences. Teams phone policies determine the features that are available to users. - - - - The New-CsTeamsIPPhonePolicy cmdlet allows you to create a policy to manage features related to Teams phone experiences assigned to a user account used to sign into a Teams phone. - - - - New-CsTeamsIPPhonePolicy - - Identity - - The identity of the policy that you want to create. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines whether hot desking mode is enabled. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - String - - String - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can search the Global Address List in Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - Object - - Object - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines whether hot desking mode is enabled. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - String - - String - - - None - - - Identity - - The identity of the policy that you want to create. - - XdsIdentity - - XdsIdentity - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can search the Global Address List in Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - Object - - Object - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsIPPhonePolicy -Identity CommonAreaPhone -SignInMode CommonAreaPhoneSignin - - This example shows a new policy being created called "CommonAreaPhone" setting the SignInMode as "CommonAreaPhoneSignIn". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsipphonepolicy - - - - - - New-CsTeamsMeetingBroadcastPolicy - New - CsTeamsMeetingBroadcastPolicy - - Use this cmdlet to create a new policy. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - New-CsTeamsMeetingBroadcastPolicy - - Identity - - Specifies the name of the policy being created - - XdsIdentity - - XdsIdentity - - - None - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded, never recorded or user can choose whether to record or not. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Specifies why this policy is being created. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - - SwitchParameter - - - False - - - Tenant - - Not applicable, you can only specify policies for your own logged-in tenant. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded, never recorded or user can choose whether to record or not. Note: this setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Specifies why this policy is being created. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specifies the name of the policy being created - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - Creates an object reference without actually committing the object as a permanent change. If you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set- cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - Not applicable, you can only specify policies for your own logged-in tenant. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMeetingBroadcastPolicy -Identity Students -AllowBroadcastScheduling $false - - Creates a new MeetingBroadcastPolicy with broadcast scheduling disabled, which can then be assigned to individual users using the corresponding grant- command. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmeetingbroadcastpolicy - - - - - - New-CsTeamsMobilityPolicy - New - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The New-CsTeamsMobilityPolicy cmdlet lets an Admin create a custom teams mobility policy to assign to particular sets of users. - - - - New-CsTeamsMobilityPolicy - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - - SwitchParameter - - - False - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making and receiving calls or joining meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making and receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making and receiving calls or joining meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making and receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on a cellular data connection. Possible values are: WifiOnly, AllNetworks. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsMobilityPolicy -Identity SalesMobilityPolicy -IPAudioMobileMode "WifiOnly" - - The command shown in Example 1 uses the New-CsTeamsMobilityPolicy cmdlet to create a new Teams Mobility Policy with the Identity SalesMobilityPolicy and IPAudioMobileMode equal to WifiOnly. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsmobilitypolicy - - - - - - New-CsTeamsNetworkRoamingPolicy - New - CsTeamsNetworkRoamingPolicy - - New-CsTeamsNetworkRoamingPolicy allows IT Admins to create policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Creates new Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - New-CsTeamsNetworkRoamingPolicy - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the new policy to be created. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the new policy to be created. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be created. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsNetworkRoamingPolicy -Identity "RedmondRoaming" -AllowIPVideo $true -MediaBitRateKb 2000 -Description "Redmond campus roaming policy" - - The command shown in Example 1 creates a new teams network roaming policy with Identity "RedmondRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 2000 Kbps. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTeamsNetworkRoamingPolicy -Identity "RemoteRoaming" - - The command shown in Example 2 creates a new teams network roaming policy with Identity "RemoteRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 50000 Kbps by default. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsnetworkroamingpolicy - - - - - - New-CsTeamsRoomVideoTeleConferencingPolicy - New - CsTeamsRoomVideoTeleConferencingPolicy - - Creates a new TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - New-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsroomvideoteleconferencingpolicy - - - - - - New-CsTeamsShiftsConnection - New - CsTeamsShiftsConnection - - This cmdlet creates a new workforce management (WFM) connection. - - - - This cmdlet creates a Shifts WFM connection. It allows the admin to set up the environment for creating connection instances. - - - - New-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectorId - - The WFM connector ID. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connection name. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Name - - The connection name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectorId - - The WFM connector ID. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connection name. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificSettingsRequest - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Name - - The connection name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $result = New-CsTeamsShiftsConnection ` - -connectorId "6A51B888-FF44-4FEA-82E1-839401E00000" ` - -name "Cmdlet test connection" ` - -connectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsRequest ` - -Property @{ - adminApiUrl = "https://contoso.com/retail/data/wfmadmin/api/v1-beta2" - siteManagerUrl = "https://contoso.com/retail/data/wfmsm/api/v1-beta2" - essApiUrl = "https://contoso.com/retail/data/wfmess/api/v1-beta1" - retailWebApiUrl = "https://contoso.com/retail/data/retailwebapi/api/v1" - cookieAuthUrl = "https://contoso.com/retail/data/login" - federatedAuthUrl = "https://contoso.com/retail/data/login" - LoginUserName = "PlaceholderForUsername" - LoginPwd = "PlaceholderForPassword" - }) ` - -state "Active" -PS C:\> $result | Format-List - -{ -ConnectorId : 6A51B888-FF44-4FEA-82E1-839401E00000 -ConnectorSpecificSettingAdminApiUrl : https://www.contoso.com/retail/data/wfmadmin/api/v1-beta2 -ConnectorSpecificSettingApiUrl : -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : -ConnectorSpecificSettingCookieAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingEssApiUrl : https://www.contoso.com/retail/data/wfmess/api/v1-beta2 -ConnectorSpecificSettingFederatedAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingRetailWebApiUrl : https://www.contoso.com/retail/data/retailwebapi/api/v1 -ConnectorSpecificSettingSiteManagerUrl : https://www.contoso.com/retail/data/wfmsm/api/v1-beta2 -ConnectorSpecificSettingSsoUrl : -CreatedDateTime : 24/03/2023 04:58:23 -Etag : "5b00dd1b-0000-0400-0000-641d2df00000" -Id : 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -LastModifiedDateTime : 24/03/2023 04:58:23 -Name : Cmdlet test connection -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 -} - - Returns the object of the created connection. - In case of an error, we can capture the error response as follows: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - -------------------------- Example 2 -------------------------- - PS C:\> $result = New-CsTeamsShiftsConnection ` - -connectorId "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0" ` - -name "Cmdlet test connection" ` - -connectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest ` - -Property @{ - apiUrl = "https://www.contoso.com/api" - ssoUrl = "https://www.contoso.com/sso" - appKey = "PlaceholderForAppKey" - clientId = "Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W" - clientSecret = "PlaceholderForClientSecret" - LoginUserName = "PlaceholderForUsername" - LoginPwd = "PlaceholderForPassword" - }) ` - -state "Active" -PS C:\> $result | Format-List - -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -ConnectorSpecificSettingAdminApiUrl : -ConnectorSpecificSettingApiUrl : https://www.contoso.com/api -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W -ConnectorSpecificSettingCookieAuthUrl : -ConnectorSpecificSettingEssApiUrl : -ConnectorSpecificSettingFederatedAuthUrl : -ConnectorSpecificSettingRetailWebApiUrl : -ConnectorSpecificSettingSiteManagerUrl : -ConnectorSpecificSettingSsoUrl : https://www.contoso.com/sso -CreatedDateTime : 06/04/2023 11:05:39 -Etag : "3100fd6e-0000-0400-0000-642ea7840000" -Id : a2d1b091-5140-4dd2-987a-98a8b5338744 -LastModifiedDateTime : 06/04/2023 11:05:39 -Name : Cmdlet test connection -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - Set-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnection - - - Update-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnectionConnector - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionconnector - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - New-CsTeamsShiftsConnectionBatchTeamMap - New - CsTeamsShiftsConnectionBatchTeamMap - - This cmdlet submits an operation connecting multiple Microsoft Teams teams and Workforce management (WFM) teams. - - - - This cmdlet connects multiple Microsoft Teams teams and WFM teams to allow for synchronization of shifts related data. It initiates an asynchronous job to map the WFM teams to the Microsoft Teams teams. You can check the operation status by running Get-CsTeamsShiftsConnectionOperation (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionoperation). - - - - New-CsTeamsShiftsConnectionBatchTeamMap - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The connection instance ID used to map teams. - - String - - String - - - None - - - TeamMapping - - > Applicable: Microsoft Teams - The Teams mapping object list. - - TeamMap[] - - TeamMap[] - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The connection instance ID used to map teams. - - String - - String - - - None - - - TeamMapping - - > Applicable: Microsoft Teams - The Teams mapping object list. - - TeamMap[] - - TeamMap[] - - - None - - - - - - - Please check the example section for the format of TeamMap. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $map1 = @{ -teamId = 'eddc3b94-21d5-4ef0-a76a-2e4d6f4a50be' -wfmTeamId = 1000553 -timeZone = "America/Los_Angeles" -} - -$map2 = @{ -teamId = '1d8f6288-0459-4c53-8e98-9de7b781844a' -wfmTeamId = 1000555 -timeZone = "America/Los_Angeles" -} - -New-CsTeamsShiftsConnectionBatchTeamMap -ConnectorInstanceId WCI-2afeb8ec-a0f6-4580-8f1e-85fd4a343e01 -TeamMapping @($map1, $map2) - -CreatedDateTime LastActionDateTime OperationId Status ---------------- ------------------ ----------- ------ -12/6/2021 7:28:51 PM 12/6/2021 7:28:51 PM c79131b7-9ecb-484b-a8df-2639c7c1e5f0 NotStarted - - Sends 2 team mappings: one maps the Teams team with ID `eddc3b94-21d5-4ef0-a76a-2e4d6f4a50be` and WFM team with ID `1000553` and the other maps the Teams team with ID `1d8f6288-0459-4c53-8e98-9de7b781844a` and WFM team with ID `1000555` in the instance with ID `WCI-2afeb8ec-a0f6-4580-8f1e-85fd4a343e01`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectionbatchteammap - - - Get-CsTeamsShiftsConnectionOperation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionoperation - - - - - - New-CsTeamsShiftsConnectionInstance - New - CsTeamsShiftsConnectionInstance - - This cmdlet creates a Shifts connection instance. - - - - This cmdlet creates a Shifts connection instance. It allows the admin to set up the environment for further connection settings. - - - - New-CsTeamsShiftsConnectionInstance - - Body - - The request body - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsShiftsConnectionInstance - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - Gets or sets the WFM connection ID for the new instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - DesignatedActorId - - Gets or sets the designated actor ID that App acts as for Shifts Graph Api calls. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the swap shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Body - - The request body - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - Gets or sets the WFM connection ID for the new instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - DesignatedActorId - - Gets or sets the designated actor ID that App acts as for Shifts Graph Api calls. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the swap shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $result = New-CsTeamsShiftsConnectionInstance ` --connectionId "79964000-286a-4216-ac60-c795a426d61a" ` --name "Cmdlet test instance" ` --connectorAdminEmail @("admin@contoso.com", "superadmin@contoso.com") ` --designatedActorId "93f85765-47db-412d-8f06-9844718762a1" ` --State "Active" ` --syncFrequencyInMin "10" ` --SyncScenarioOfferShiftRequest "FromWfmToShifts" ` --SyncScenarioOpenShift "FromWfmToShifts" ` --SyncScenarioOpenShiftRequest "FromWfmToShifts" ` --SyncScenarioShift "FromWfmToShifts" ` --SyncScenarioSwapRequest "FromWfmToShifts" ` --SyncScenarioTimeCard "FromWfmToShifts" ` --SyncScenarioTimeOff "FromWfmToShifts" ` --SyncScenarioTimeOffRequest "FromWfmToShifts" ` --SyncScenarioUserShiftPreference "Disabled" -PS C:\> $result.ToJsonString() - -{ - "syncScenarios": { - "offerShiftRequest": "FromWfmToShifts", - "openShift": "FromWfmToShifts", - "openShiftRequest": "FromWfmToShifts", - "shift": "FromWfmToShifts", - "swapRequest": "FromWfmToShifts", - "timeCard": "FromWfmToShifts", - "timeOff": "FromWfmToShifts", - "timeOffRequest": "FromWfmToShifts", - "userShiftPreferences": "Disabled" - }, - "id": "WCI-eba2865f-6cac-46f9-8733-e0631a4536e1", - "tenantId": "dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a", - "connectionId": "79964000-286a-4216-ac60-c795a426d61a", - "connectorAdminEmails": [ "admin@contoso.com", "superadmin@contoso.com" ], - "connectorId": "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0", - "designatedActorId": "ec1a4edb-1a5f-4b2d-b2a4-37aab6ebd231", - "name": "Cmdlet test instance", - "syncFrequencyInMin": 10, - "workforceIntegrationId": "WFI_6b225907-b476-4d40-9773-08b86db7b11b", - "etag": "\"4f005d22-0000-0400-0000-642ff64a0000\"", - "createdDateTime": "2023-04-07T10:54:01.8170000Z", - "lastModifiedDateTime": "2023-04-07T10:54:01.8170000Z", - "state": "Active" -} - - Returns the object of created connector instance. - In case of an error, we can capture the error response as follows: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Remove-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionConnector - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionconnector - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - New-CsTeamsSurvivableBranchAppliance - New - CsTeamsSurvivableBranchAppliance - - Creates a new Survivable Branch Appliance (SBA) object in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - New-CsTeamsSurvivableBranchAppliance - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Fqdn - - The FQDN of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the SBA. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Fqdn - - The FQDN of the SBA. - - String - - String - - - None - - - Identity - - The identity of the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssurvivablebranchappliance - - - - - - New-CsTeamsSurvivableBranchAppliancePolicy - New - CsTeamsSurvivableBranchAppliancePolicy - - Creates a new Survivable Branch Appliance (SBA) policy object in the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - New-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The unique identifier. - - String - - String - - - None - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamssurvivablebranchappliancepolicy - - - - - - New-CsTeamsTranslationRule - New - CsTeamsTranslationRule - - Cmdlet to create a new telephone number manipulation rule. - - - - You can use this cmdlet to create a new number manipulation rule. The rule can be used, for example, in the settings of your SBC (Set-CSOnlinePSTNGateway) to convert a callee or caller number to a desired format before entering or leaving Microsoft Phone System - - - - New-CsTeamsTranslationRule - - Identity - - The Identifier of the rule. This parameter is required and later used to assign the rule to the Inbound or Outbound Trunk Normalization policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - - String - - String - - - None - - - Pattern - - A regular expression that caller or callee number must match in order for this rule to be applied. - - String - - String - - - None - - - Translation - - The regular expression pattern that will be applied to the number to convert it. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTeamsTranslationRule - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - - String - - String - - - None - - - Name - - The name of the rule. - - String - - String - - - None - - - Pattern - - A regular expression that caller or callee number must match in order for this rule to be applied. - - String - - String - - - None - - - Translation - - The regular expression pattern that will be applied to the number to convert it. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - - String - - String - - - None - - - Identity - - The Identifier of the rule. This parameter is required and later used to assign the rule to the Inbound or Outbound Trunk Normalization policy. - - String - - String - - - None - - - Name - - The name of the rule. - - String - - String - - - None - - - Pattern - - A regular expression that caller or callee number must match in order for this rule to be applied. - - String - - String - - - None - - - Translation - - The regular expression pattern that will be applied to the number to convert it. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsTeamsTranslationRule -Identity 'AddPlus1' -Pattern '^(\d{10})$' -Translation '+1$1' - - This example creates a rule that adds +1 to any ten digits number. For example, 2065555555 will be translated to +1206555555 - - - - -------------------------- Example 2 -------------------------- - New-CsTeamsTranslationRule -Identity 'StripPlus1' -Pattern '^\+1(\d{10})$' -Translation '$1' - - This example creates a rule that strips +1 from any E.164 eleven digits number. For example, +12065555555 will be translated to 206555555 - - - - -------------------------- Example 3 -------------------------- - New-CsTeamsTranslationRule -Identity 'AddE164SeattleAreaCode' -Pattern '^(\d{4})$' -Translation '+120655$1' - - This example creates a rule that adds +1206555 to any four digits number (converts it to E.164number). For example, 5555 will be translated to +1206555555 - - - - -------------------------- Example 4 -------------------------- - New-CsTeamsTranslationRule -Identity 'AddSeattleAreaCode' -Pattern '^(\d{4})$' -Translation '425555$1' - - This example creates a rule that adds 425555 to any four digits number (converts to non-E.164 ten digits number). For example, 5555 will be translated to 4255555555 - - - - -------------------------- Example 5 -------------------------- - New-CsTeamsTranslationRule -Identity 'StripE164SeattleAreaCode' -Pattern '^\+1206555(\d{4})$' -Translation '$1' - - This example creates a rule that strips +1206555 from any E.164 ten digits number. For example, +12065555555 will be translated to 5555 - - - - -------------------------- Example 6 -------------------------- - New-CsTeamsTranslationRule -Identity 'GenerateFullNumber' -Pattern '^\+1206555(\d{4})$' -Translation '+1206555$1;ext=$1' - - This example creates a rule that adds the last four digits of a phone number starting with +1206555 as the extension. For example, +12065551234 will be translated to +12065551234;ext=1234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstranslationrule - - - Test-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamstranslationrule - - - Get-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstranslationrule - - - Set-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstranslationrule - - - Remove-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstranslationrule - - - - - - New-CsTeamsUnassignedNumberTreatment - New - CsTeamsUnassignedNumberTreatment - - Creates a new treatment for how calls to an unassigned number range should be routed. The call can be routed to a user, an application or to an announcement service where a custom message will be played to the caller. - - - - This cmdlet creates a treatment for how calls to an unassigned number range should be routed. - - - - New-CsTeamsUnassignedNumberTreatment - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsTeamsUnassignedNumberTreatment - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentId - - The identity of the treatment. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentId - - The identity of the treatment. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - The parameters Identity and TreatmentId are mutually exclusive. - To route calls to unassigned Microsoft Calling Plan subscriber numbers, your tenant needs to have available Communications Credits. - To route calls to unassigned Microsoft Calling Plan service numbers, your tenant needs to have at least one Microsoft Teams Phone Resource Account license. - Both inbound calls to Microsoft Teams and outbound calls from Microsoft Teams will have the called number checked against the unassigned number range. - If a specified pattern/range contains phone numbers that are assigned to a user or resource account in the tenant, calls to these phone numbers will be routed to the appropriate target and not routed to the specified unassigned number treatment. There are no other checks of the numbers in the range. If the range contains a valid external phone number, outbound calls from Microsoft Teams to that phone number will be routed according to the treatment. - - - - - -------------------------- Example 1 -------------------------- - $RAObjectId = (Get-CsOnlineApplicationInstance -Identity aa@contoso.com).ObjectId -New-CsTeamsUnassignedNumberTreatment -Identity MainAA -Pattern "^\+15552223333$" -TargetType ResourceAccount -Target $RAObjectId -TreatmentPriority 1 - - This example creates a treatment that will route all calls to the number +1 (555) 222-3333 to the resource account aa@contoso.com. That resource account is associated with an Auto Attendant (not part of the example). - - - - -------------------------- Example 2 -------------------------- - $Content = Get-Content "C:\Media\MainAnnoucement.wav" -Encoding byte -ReadCount 0 -$AudioFile = Import-CsOnlineAudioFile -FileName "MainAnnouncement.wav" -Content $Content -$Fid=[System.Guid]::Parse($audioFile.Id) -New-CsTeamsUnassignedNumberTreatment -Identity TR1 -Pattern "^\+1555333\d{4}$" -TargetType Announcement -Target $Fid.Guid -TreatmentPriority 2 - - This example creates a treatment that will route all calls to unassigned numbers in the range +1 (555) 333-0000 to +1 (555) 333-9999 to the announcement service, where the audio file MainAnnouncement.wav will be played to the caller. - - - - -------------------------- Example 3 -------------------------- - $UserObjectId = (Get-CsOnlineUser -Identity user@contoso.com).Identity -New-CsTeamsUnassignedNumberTreatment -Identity TR2 -Pattern "^\+15552224444$" -TargetType User -Target $UserObjectId -TreatmentPriority 3 - - This example creates a treatment that will route all calls to the number +1 (555) 222-4444 to the user user@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - New-CsTeamsWorkLoadPolicy - New - CsTeamsWorkLoadPolicy - - This cmdlet creates a Teams Workload Policy instance for the tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - New-CsTeamsWorkLoadPolicy - - Identity - - The identity of the Teams Workload Policy. - - String - - String - - - None - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Teams Workload policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Teams Workload policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - The identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTeamsWorkLoadPolicy -Identity Test - - Creates a new Teams Workload Policy with the specified identity of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - New-CsTeamTemplate - New - CsTeamTemplate - - This cmdlet lets you provision a new team template for use in Microsoft Teams. - - - - To learn more about team templates, see Get started with Teams templates in the admin center (/microsoftteams/get-started-with-teams-templates-in-the-admin-console). - NOTE: The response is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management. - - - - New-CsTeamTemplate - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - - System.Management.Automation.SwitchParameter - - - False - - - Locale - - {{ Fill Locale Description }} - - System.String - - System.String - - - None - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsTeamTemplate - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - - System.Management.Automation.SwitchParameter - - - False - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsTeamTemplate - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Locale - - {{ Fill Locale Description }} - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - New-CsTeamTemplate - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Locale - - {{ Fill Locale Description }} - - System.String - - System.String - - - None - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse - - - - - - - - - ALIASES - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - APP <ITeamsAppTemplate[]>: Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - - `[Id <String>]`: Gets or sets the app's ID in the global apps catalog. - BODY <ITeamTemplate>: The client input for a request to create a template. Only admins from Config Api can perform this request. - - `DisplayName <String>`: Gets or sets the team's DisplayName. - - `ShortDescription <String>`: Gets or sets template short description. - - `[App <ITeamsAppTemplate[]>]`: Gets or sets the set of applications that should be installed in teams created based on the template. The app catalog is the main directory for information about each app; this set is intended only as a reference. - - `[Id <String>]`: Gets or sets the app's ID in the global apps catalog. - `[Category <String[]>]`: Gets or sets list of categories. - - `[Channel <IChannelTemplate[]>]`: Gets or sets the set of channel templates included in the team template. - - `[Description <String>]`: Gets or sets channel description as displayed to users. - `[DisplayName <String>]`: Gets or sets channel name as displayed to users. - `[Id <String>]`: Gets or sets identifier for the channel template. - `[IsFavoriteByDefault <Boolean?>]`: Gets or sets a value indicating whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - `[Tab <IChannelTabTemplate[]>]`: Gets or sets collection of tabs that should be added to the channel. - `[Configuration <ITeamsTabConfiguration>]`: Represents the configuration of a tab. - `[ContentUrl <String>]`: Gets or sets the Url used for rendering tab contents in Teams. - `[EntityId <String>]`: Gets or sets the identifier for the entity hosted by the tab provider. - `[RemoveUrl <String>]`: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - `[WebsiteUrl <String>]`: Gets or sets the Url for showing tab contents outside of Teams. - `[Id <String>]`: Gets or sets identifier for the channel tab template. - `[Key <String>]`: Gets a unique identifier. - `[MessageId <String>]`: Gets or sets id used to identify the chat message associated with the tab. - `[Name <String>]`: Gets or sets the tab name displayed to users. - `[SortOrderIndex <String>]`: Gets or sets index of the order used for sorting tabs. - `[TeamsAppId <String>]`: Gets or sets the app's id in the global apps catalog. - `[WebUrl <String>]`: Gets or sets the deep link url of the tab instance. - `[Classification <String>]`: Gets or sets the team's classification. Tenant admins configure Microsoft Entra ID with the set of possible values. - - `[Description <String>]`: Gets or sets the team's Description. - - `[DiscoverySetting <ITeamDiscoverySettings>]`: Governs discoverability of a team. - - `ShowInTeamsSearchAndSuggestion <Boolean>`: Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - `[FunSetting <ITeamFunSettings>]`: Governs use of fun media like giphy and stickers in the team. - `AllowCustomMeme <Boolean>`: Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - `AllowGiphy <Boolean>`: Gets or sets a value indicating whether users can post giphy content in team conversations. - `AllowStickersAndMeme <Boolean>`: Gets or sets a value indicating whether users can post stickers and memes in team conversations. - `GiphyContentRating <String>`: Gets or sets the rating filter on giphy content. - `[GuestSetting <ITeamGuestSettings>]`: Guest role settings for the team. - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether guests can create or edit channels in the team. - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether guests can delete team channels. - `[Icon <String>]`: Gets or sets template icon. - - `[IsMembershipLimitedToOwner <Boolean?>]`: Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - `[MemberSetting <ITeamMemberSettings>]`: Member role settings for the team. - - `AllowAddRemoveApp <Boolean>`: Gets or sets a value indicating whether members can add or remove apps in the team. - `AllowCreatePrivateChannel <Boolean>`: Gets or Sets a value indicating whether members can create Private channels. - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether members can create or edit channels in the team. - `AllowCreateUpdateRemoveConnector <Boolean>`: Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - `AllowCreateUpdateRemoveTab <Boolean>`: Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether members can delete team channels. - `UploadCustomApp <Boolean>`: Gets or sets a value indicating is allowed to upload custom apps. - `[MessagingSetting <ITeamMessagingSettings>]`: Governs use of messaging features within the team These are settings the team owner should be able to modify from UI after team creation. - `AllowChannelMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - `AllowOwnerDeleteMessage <Boolean>`: Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - `AllowTeamMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - `AllowUserDeleteMessage <Boolean>`: Gets or sets a value indicating whether team members can delete their own messages in team conversations. - `AllowUserEditMessage <Boolean>`: Gets or sets a value indicating whether team members can edit their own messages in team conversations. - `[OwnerUserObjectId <String>]`: Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team. Only to be used when an application or administrative user is making the request on behalf of the specified user. - - `[PublishedBy <String>]`: Gets or sets published name. - - `[Specialization <String>]`: The specialization or use case describing the team. Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - `[TemplateId <String>]`: Gets or sets the id of the base template for the team. Either a Microsoft base template or a custom template. - - `[Uri <String>]`: Gets or sets uri to be used for GetTemplate api call. - - `[Visibility <String>]`: Used to control the scope of users who can view a group/team and its members, and ability to join. - - CHANNEL <IChannelTemplate[]>: Gets or sets the set of channel templates included in the team template. - - `[Description <String>]`: Gets or sets channel description as displayed to users. - - `[DisplayName <String>]`: Gets or sets channel name as displayed to users. - - `[Id <String>]`: Gets or sets identifier for the channel template. - - `[IsFavoriteByDefault <Boolean?>]`: Gets or sets a value indicating whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - - `[Tab <IChannelTabTemplate[]>]`: Gets or sets collection of tabs that should be added to the channel. - - `[Configuration <ITeamsTabConfiguration>]`: Represents the configuration of a tab. - `[ContentUrl <String>]`: Gets or sets the Url used for rendering tab contents in Teams. - `[EntityId <String>]`: Gets or sets the identifier for the entity hosted by the tab provider. - `[RemoveUrl <String>]`: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - `[WebsiteUrl <String>]`: Gets or sets the Url for showing tab contents outside of Teams. - `[Id <String>]`: Gets or sets identifier for the channel tab template. - `[Key <String>]`: Gets a unique identifier. - `[MessageId <String>]`: Gets or sets id used to identify the chat message associated with the tab. - `[Name <String>]`: Gets or sets the tab name displayed to users. - `[SortOrderIndex <String>]`: Gets or sets index of the order used for sorting tabs. - `[TeamsAppId <String>]`: Gets or sets the app's id in the global apps catalog. - `[WebUrl <String>]`: Gets or sets the deep link url of the tab instance. - DISCOVERYSETTING <ITeamDiscoverySettings>: Governs discoverability of a team. - - `ShowInTeamsSearchAndSuggestion <Boolean>`: Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - FUNSETTING <ITeamFunSettings>: Governs use of fun media like giphy and stickers in the team. - - `AllowCustomMeme <Boolean>`: Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - - `AllowGiphy <Boolean>`: Gets or sets a value indicating whether users can post giphy content in team conversations. - - `AllowStickersAndMeme <Boolean>`: Gets or sets a value indicating whether users can post stickers and memes in team conversations. - - `GiphyContentRating <String>`: Gets or sets the rating filter on giphy content. - - GUESTSETTING <ITeamGuestSettings>: Guest role settings for the team. - - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether guests can create or edit channels in the team. - - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether guests can delete team channels. - - INPUTOBJECT <IConfigApiBasedCmdletsIdentity>: Identity Parameter - - `[Bssid <String>]`: - - `[ChassisId <String>]`: - - `[CivicAddressId <String>]`: Civic address id. - - `[Country <String>]`: - - `[GroupId <String>]`: The ID of a group whose policy assignments will be returned. - - `[Id <String>]`: - - `[Identity <String>]`: - - `[Locale <String>]`: - - `[LocationId <String>]`: Location id. - - `[OdataId <String>]`: A composite URI of a template. - - `[OperationId <String>]`: The ID of a batch policy assignment operation. - - `[OrderId <String>]`: - - `[PackageName <String>]`: The name of a specific policy package - - `[PolicyType <String>]`: The policy type for which group policy assignments will be returned. - - `[Port <String>]`: - - `[PortInOrderId <String>]`: - - `[PublicTemplateLocale <String>]`: Language and country code for localization of publicly available templates. - - `[SubnetId <String>]`: - - `[TenantId <String>]`: - - `[UserId <String>]`: UserId. Supports Guid. Eventually UPN and SIP. - - MEMBERSETTING <ITeamMemberSettings>: Member role settings for the team. - - `AllowAddRemoveApp <Boolean>`: Gets or sets a value indicating whether members can add or remove apps in the team. - - `AllowCreatePrivateChannel <Boolean>`: Gets or Sets a value indicating whether members can create Private channels. - - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether members can create or edit channels in the team. - - `AllowCreateUpdateRemoveConnector <Boolean>`: Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - - `AllowCreateUpdateRemoveTab <Boolean>`: Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether members can delete team channels. - - `UploadCustomApp <Boolean>`: Gets or sets a value indicating is allowed to upload custom apps. - - MESSAGINGSETTING <ITeamMessagingSettings>: Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - - `AllowChannelMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - - `AllowOwnerDeleteMessage <Boolean>`: Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - - `AllowTeamMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - - `AllowUserDeleteMessage <Boolean>`: Gets or sets a value indicating whether team members can delete their own messages in team conversations. - - `AllowUserEditMessage <Boolean>`: Gets or sets a value indicating whether team members can edit their own messages in team conversations. - - ## RELATED LINKS - - [Get-CsTeamTemplateList](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Get-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [New-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Update-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Remove-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> (Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/com.microsoft.teams.template.AdoptOffice365/Public/en-US') > input.json -# open json in your favorite editor, make changes - -PS C:\> New-CsTeamTemplate -Locale en-US -Body (Get-Content '.input.json' | Out-String) - - Step 1: Create new template from copy of existing template. Gets the template JSON file of Template with specified OData ID, creates a JSON file user can make edits in. Step 2: Create a new template from the JSON file named "input". - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> $template = Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/com.microsoft.teams.template.AdoptOffice365/Public/en-US' -PS C:\> $template | Format-List # show the output object as it would be accessed - -PS C:\> $template.Category = $null # unset category to copy from public template -PS C:\> $template.DisplayName = 'New Template from object' -PS C:\> $template.Channel[1].DisplayName += ' modified' -## add a new channel to the channel list -PS C:\> $template.Channel += ` -@{ ` - displayName="test"; ` - id="b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475"; ` - isFavoriteByDefault=$false; ` -} - -PS C:\> New-CsTeamTemplate -Locale en-US -Body $template - - Create a template using a complex object syntax. - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> $template = New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplate -Property @{` -DisplayName='New Template';` -ShortDescription='Short Definition';` -Description='New Description';` -App=@{id='feda49f8-b9f2-4985-90f0-dd88a8f80ee1'}, @{id='1d71218a-92ad-4254-be15-c5ab7a3e4423'};` -Channel=@{` - displayName = "General";` - id= "General";` - isFavoriteByDefault= $true` - },` - @{` - displayName= "test";` - id= "b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475";` - isFavoriteByDefault= $false` - }` -} - -PS C:\> New-CsTeamTemplate -Locale en-US -Body $template - - Create template from scratch - > [!Note] > It can take up to 24 hours for Teams users to see a custom template change in the gallery. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamtemplate - - - - - - New-CsTenantDialPlan - New - CsTenantDialPlan - - Use the `New-CsTenantDialPlan` cmdlet to create a new tenant dial plan. - - - - You can use this cmdlet to create a new tenant dial plan. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - You can add new normalization rules to a tenant dial plan by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - - - New-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan. Identity is an alphanumeric string that cannot exceed 49 characters. Valid characters are alphabetic or numeric characters, hyphen (-) and dot (.). The value should not begin with a (.) - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to and any other information that helps to identify the purpose of the tenant dial plan. Maximum characters: 1040. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule) cmdlet, which creates the rule and then assign it to the specified tenant dial plan using [Set-CsTenantDialPlan](https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan)cmdlet. - Each time a new tenant dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user tenant dial plan. By default, the Identity of the new voice normalization rule is the tenant dial plan Identity followed by a slash and then followed by the name Prefix All. (For example, TAG:Redmond/Prefix All.) The number of normalization rules cannot exceed 50 per TenantDialPlan. - You can create a new normalization rule by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()). - This parameter must contain a value. However, if you don't provide a value, a default value matching the Identity of the tenant dial plan will be supplied. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to and any other information that helps to identify the purpose of the tenant dial plan. Maximum characters: 1040. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan. Identity is an alphanumeric string that cannot exceed 49 characters. Valid characters are alphabetic or numeric characters, hyphen (-) and dot (.). The value should not begin with a (.) - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule) cmdlet, which creates the rule and then assign it to the specified tenant dial plan using [Set-CsTenantDialPlan](https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan)cmdlet. - Each time a new tenant dial plan is created, a new voice normalization rule with default settings is also created for that site, service, or per-user tenant dial plan. By default, the Identity of the new voice normalization rule is the tenant dial plan Identity followed by a slash and then followed by the name Prefix All. (For example, TAG:Redmond/Prefix All.) The number of normalization rules cannot exceed 50 per TenantDialPlan. - You can create a new normalization rule by calling the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()). - This parameter must contain a value. However, if you don't provide a value, a default value matching the Identity of the tenant dial plan will be supplied. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - New-CsTenantDialPlan -Identity vt1tenantDialPlan9 - - This example creates a tenant dial plan that has an Identity of vt1tenantDialPlan9. - - - - -------------------------- Example 2 -------------------------- - $nr2 = New-CsVoiceNormalizationRule -Identity Global/NR2 -Description "TestNR1" -Pattern '^(d{11})$' -Translation '+1' -InMemory -New-CsTenantDialPlan -Identity vt1tenantDialPlan91 -NormalizationRules @{Add=$nr2} - - This example creates a new normalization rule and then applies that rule to a new tenant dial plan. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - New-CsTenantNetworkRegion - New - CsTenantNetworkRegion - - Creates a new network region. - - - - A network region interconnects various parts of a network across multiple geographic areas. The RegionID parameter is a logical name that represents the geography of the region and has no dependencies or restrictions. The organization's network region is used for Location-Based Routing. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. A network region contains a collection of network sites. For example, if your organization has many sites located in Redmond, then you may choose to designate "Redmond" as a network region. - - - - New-CsTenantNetworkRegion - - Identity - - Unique identifier for the network region to be created. - - String - - String - - - None - - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkRegion - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. This must be a string that is unique. You cannot specify an NetworkRegionID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BypassID - - This parameter is not used. - - String - - String - - - None - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of creating it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be created. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. This must be a string that is unique. You cannot specify an NetworkRegionID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkRegion -NetworkRegionID "RegionA" - - The command shown in Example 1 creates the network region 'RegionA' with no description. Identity and CentralSite will both be set identically to NetworkRegionID. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - New-CsTenantNetworkSite - New - CsTenantNetworkSite - - As an admin, you can use the Teams PowerShell command, New-CsTenantNetworkSite to define network sites. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. The organization's network site is used for Location-Based Routing. - - - - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities. - - - - New-CsTenantNetworkSite - - Identity - - Unique identifier for the network site to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkSite - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - NetworkSiteID - - The name of the network site. This must be a string that is unique. You cannot specify an NetworkSiteID and an Identity at the same time. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be created. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for Microsoft internal use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region to which the current network site is associated to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - NetworkSiteID - - The name of the network site. This must be a string that is unique. You cannot specify an NetworkSiteID and an Identity at the same time. - - String - - String - - - None - - - SiteAddress - - This parameter is not used. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "MicrosoftSite1" -NetworkRegionID "RegionRedmond" - - The command shown in Example 1 created the network site 'MicrosoftSite1' with no description. Identity will be set identical with NetworkSiteID. - The network region 'RegionRedmond' is created beforehand and 'MicrosoftSite1' will be associated with 'RegionRedmond'. - NetworkSites can exist without all parameters excepts NetworkSiteID. NetworkRegionID can be left blank. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site2" -Description "site 2" -NetworkRegionID "RedmondRegion" -LocationPolicy "TestLocationPolicy" -EnableLocationBasedRouting $true - - The command shown in Example 2 creates the network site 'site2' with the description 'site 2'. This site is enabled for LBR, and associates with network region 'RedmondRegion' and with location policy 'TestLocationPolicy'. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTenantNetworkSite -NetworkSiteID "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy" - - The command shown in Example 3 creates the network site 'site3' with the description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Remove-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - Set-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - - - - New-CsTenantNetworkSubnet - New - CsTenantNetworkSubnet - - Creates a new network subnet. - - - - Each internal subnet may only be associated with one site. Tenant network subnet is used for Location Based Routing. IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - When the client is sending the network subnet, please make sure we have already safelisted the IP address by running this command-let, otherwise the request will be rejected. If you are only adding the IPv4 address by running this command-let, but your client are only sending and IPv6 address, it will be rejected. - - - - New-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantNetworkSubnet - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - SubnetID - - The name of the network subnet. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an NetworkSubnetID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify the purpose of creating it. - - String - - String - - - None - - - Identity - - Unique identifier for the network subnet to be created. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - SubnetID - - The name of the network subnet. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an NetworkSubnetID and an Identity at the same time. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantNetworkSubnet -SubnetID "192.168.0.1" -MaskBits "24" -NetworkSiteID "site1" - - The command shown in Example 1 created the network subnet '192.168.0.1' with no description. The subnet is IPv4 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 24. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantNetworkSubnet -SubnetID "2001:4898:e8:25:844e:926f:85ad:dd8e" -MaskBits "120" -NetworkSiteID "site1" - - The command shown in Example 2 created the network subnet '2001:4898:e8:25:844e:926f:85ad:dd8e' with no description. The subnet is IPv6 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 120. - IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - New-CsTenantTrustedIPAddress - New - CsTenantTrustedIPAddress - - Creates a new IP address. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Both IPv4 and IPv6 trusted IP addresses are supported. You can define an unlimited number of external subnets for a tenant. - - - - New-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the IP address to be created. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsTenantTrustedIPAddress - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - InMemory - - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - IPAddress - - The name of the IP address. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an IP address and an Identity at the same time. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the trusted IP address to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the IP address to be created. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - IPAddress - - The name of the IP address. This must be a unique and valid IPv4 or IPv6 address. You cannot specify an IP address and an Identity at the same time. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. If not provided, the value is set to 32. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. If not provided, the value is set to 128. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "192.168.0.1" - - The command shown in Example 1 created the IP address '192.168.0.1' with no description. The IP address is in IPv4 format, and the maskbits is set to 32 by default. - - - - -------------------------- Example 2 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "192.168.2.0" -MaskBits "24" - - The command shown in Example 2 created the IP address '192.168.2.0' with no description. The IP address is in IPv4 format, and the maskbits is set to 24. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTenantTrustedIPAddress -IPAddress "2001:4898:e8:25:844e:926f:85ad:dd8e" -Description "IPv6 IP address" - - The command shown in Example 3 created the IP address '2001:4898:e8:25:844e:926f:85ad:dd8e' with description. The IP address is in IPv6 format, and the maskbits is set to 128 by default. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenanttrustedipaddress - - - - - - New-CsUserCallingDelegate - New - CsUserCallingDelegate - - This cmdlet will add a new delegate for calling in Microsoft Teams. - - - - This cmdlet adds a new delegate with given permissions for the specified user. - - - - New-CsUserCallingDelegate - - Delegate - - The Identity of the delegate to add. Can be specified using the ObjectId or the SIP address. - A user can have up to 25 delegates. - - System.String - - System.String - - - None - - - Identity - - The Identity of the user to add a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - MakeCalls - - Specifies whether delegate is allowed to make calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - ManageSettings - - Specifies whether delegate is allowed to change the delegate and calling settings for the specified user. - - System.Boolean - - System.Boolean - - - False - - - ReceiveCalls - - Specifies whether delegate is allowed to receive calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - PickUpHeldCalls - - Specifies whether delegate is allowed to pick up calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - JoinActiveCalls - - Specifies whether delegate is allowed to join active calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - - - - Delegate - - The Identity of the delegate to add. Can be specified using the ObjectId or the SIP address. - A user can have up to 25 delegates. - - System.String - - System.String - - - None - - - Identity - - The Identity of the user to add a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - MakeCalls - - Specifies whether delegate is allowed to make calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - ManageSettings - - Specifies whether delegate is allowed to change the delegate and calling settings for the specified user. - - System.Boolean - - System.Boolean - - - False - - - ReceiveCalls - - Specifies whether delegate is allowed to receive calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - PickUpHeldCalls - - Specifies whether delegate is allowed to pick up calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - JoinActiveCalls - - Specifies whether delegate is allowed to join active calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. - The specified user need to have the Microsoft Phone System license assigned. - You can see the delegate of a user by using the Get-CsUserCallingSettings cmdlet. - - - - - -------------------------- Example 1 -------------------------- - New-CsUserCallingDelegate -Identity user1@contoso.com -Delegate user2@contoso.com -MakeCalls $true -ReceiveCalls $true -ManageSettings $true -PickUpHeldCalls $true -JoinActiveCalls $true - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csusercallingdelegate - - - Get-CsUserCallingSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csusercallingsettings - - - Set-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingdelegate - - - Remove-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csusercallingdelegate - - - - - - New-CsVideoInteropServiceProvider - New - CsVideoInteropServiceProvider - - Use the New-CsVideoInteropServiceProvider to specify information about a supported CVI partner your organization would like to use. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - Important note: New-CsVideoInteropServiceProvider does not do a check on the -Identity to be one of the Identity (without tag:) from the Get-CsTeamsVideoInteropServicePolicy, however if this is not set to match, the VTC coordinates will not added to the meetings correctly. Make sure that your "Identity" matches a valid policy identity. - - - - New-CsVideoInteropServiceProvider - - Identity - - This is mandatory parameter and can have only one of the 6 values PolycomServiceProviderEnabled PexipServiceProviderEnabled BlueJeansServiceProviderEnabled - PolycomServiceProviderDisabled PexipServiceProviderDisabled BlueJeansServiceProviderDisabled - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Create a provider object in memory without committing it to the service. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - New-CsVideoInteropServiceProvider - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InMemory - - Create a provider object in memory without committing it to the service. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Name - - This is mandatory parameter and can have only one of the 4 values - Polycom BlueJeans Pexip Cisco - - String - - String - - - DefaultProvider - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - This is mandatory parameter and can have only one of the 6 values PolycomServiceProviderEnabled PexipServiceProviderEnabled BlueJeansServiceProviderEnabled - PolycomServiceProviderDisabled PexipServiceProviderDisabled BlueJeansServiceProviderDisabled - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - InMemory - - Create a provider object in memory without committing it to the service. - - SwitchParameter - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Name - - This is mandatory parameter and can have only one of the 4 values - Polycom BlueJeans Pexip Cisco - - String - - String - - - DefaultProvider - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> New-CsVideoInteropServiceProvider - - {{ Add example description here }} - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csvideointeropserviceprovider - - - - - - New-CsVoiceNormalizationRule - New - CsVoiceNormalizationRule - - Creates a new voice normalization rule. - - - - This cmdlet was introduced in Lync Server 2010. - Voice normalization rules are used to convert a telephone dialing requirement (for example, dialing 9 to access an outside line) to the E.164 phone number format used by Skype for Business Server or Microsoft Teams. - These rules are a required part of phone authorization and call routing. They define the requirements for converting (or translating) numbers from an internal format to a standard (E.164) format. An understanding of regular expressions is helpful in order to define number patterns that will be translated. - For Lync or Skype for Business Server, rules that are created by using this cmdlet are part of the dial plan and in addition to being accessible through the `Get-CsVoiceNormalizationRule` cmdlet can also be accessed through the NormalizationRules property returned by a call to the `Get-CsDialPlan` cmdlet. You cannot create a normalization rule unless a dial plan with an Identity matching the scope specified in the normalization rule Identity already exists. For example, you can't create a normalization rule with the Identity site:Redmond/RedmondNormalizationRule unless a dial plan for site:Redmond already exists. - For Microsoft Teams, rules that are created by using this cmdlet can only be created with the InMemory switch and should be added to a tenant dial plan using the `New-CsTenantDialPlan` or `Set-CsTenantDialPlan` cmdlets. - - - - New-CsVoiceNormalizationRule - - Identity - - A unique identifier for the rule. The Identity specified must include the scope followed by a slash and then the name; for example: site:Redmond/Rule1, where site:Redmond is the scope and Rule1 is the name. The name portion will automatically be stored in the Name property. You cannot specify values for Identity and Name in the same command. - For Lync and Skype for Business Server, voice normalization rules can be created at the following scopes: global, site, service (Registrar and PSTNGateway only) and per user. A dial plan with an Identity matching the scope of the normalization rule must already exist before a new rule can be created. (To retrieve a list of dial plans, call the `Get-CsDialPlan` cmdlet.) - For Microsoft Teams, voice normalization rules can be created at the following scopes: global and tag. - The Identity parameter is required unless the Parent parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - New-CsVoiceNormalizationRule - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Name - - The name of the rule. This parameter is required if a value has been specified for the Parent parameter. If no value has been specified for the Parent parameter, Name defaults to the name specified in the Identity parameter. For example, if a rule is created with the Identity site:Redmond/RedmondRule, the Name will default to RedmondRule. The Name parameter and the Identity parameter cannot be used in the same command. - - String - - String - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - Maximum string length: 512 characters. - - String - - String - - - None - - - Force - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier for the rule. The Identity specified must include the scope followed by a slash and then the name; for example: site:Redmond/Rule1, where site:Redmond is the scope and Rule1 is the name. The name portion will automatically be stored in the Name property. You cannot specify values for Identity and Name in the same command. - For Lync and Skype for Business Server, voice normalization rules can be created at the following scopes: global, site, service (Registrar and PSTNGateway only) and per user. A dial plan with an Identity matching the scope of the normalization rule must already exist before a new rule can be created. (To retrieve a list of dial plans, call the `Get-CsDialPlan` cmdlet.) - For Microsoft Teams, voice normalization rules can be created at the following scopes: global and tag. - The Identity parameter is required unless the Parent parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. - - XdsIdentity - - XdsIdentity - - - None - - - InMemory - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Creates an object reference without actually committing the object as a permanent change. - For Lync or Skype for Business Server, if you assign the output of this cmdlet called with this parameter to a variable, you can make changes to the properties of the object reference and then commit those changes by calling this cmdlet's matching Set-<cmdlet>. - - SwitchParameter - - SwitchParameter - - - False - - - IsInternalExtension - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - If True, the result of applying this rule will be a number internal to the organization. If False, applying the rule results in an external number. This value is ignored if the value of the OptimizeDeviceDialing property of the associated dial plan/tenant dial plan is set to False. - Default: False - - Boolean - - Boolean - - - None - - - Name - - The name of the rule. This parameter is required if a value has been specified for the Parent parameter. If no value has been specified for the Parent parameter, Name defaults to the name specified in the Identity parameter. For example, if a rule is created with the Identity site:Redmond/RedmondRule, the Name will default to RedmondRule. The Name parameter and the Identity parameter cannot be used in the same command. - - String - - String - - - None - - - Parent - - The scope at which the new normalization rule will be created. This value must be global; site:<sitename>, where <sitename> is the name of the Skype for Business Server site; PSTN gateway or Registrar service, such as PSTNGateway:redmond.litwareinc.com; or a string designating a per user rule. A dial plan with the specified scope must already exist or the command will fail. - The Parent parameter is required unless the Identity parameter is specified. You cannot include the Identity parameter and the Parent parameter in the same command. If you include the Parent parameter, the Name parameter is also required. - - String - - String - - - None - - - Pattern - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - A regular expression that the dialed number must match in order for this rule to be applied. - Default: ^(\d{11})$ (The default represents any set of numbers up to 11 digits.) - - String - - String - - - None - - - Priority - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The order in which rules are applied. A phone number might match more than one rule. This parameter sets the order in which the rules are tested against the number. - - Int32 - - Int32 - - - None - - - Tenant - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - For internal Microsoft usage. - - Guid - - Guid - - - None - - - Translation - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The regular expression pattern that will be applied to the number to convert it to E.164 format. - Default: +$1 (The default prefixes the number with a plus sign [+].) - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - None. - - - - - - - Output types - - - This cmdlet creates an object of type Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - New-CsVoiceNormalizationRule -Identity "site:Redmond/Prefix Redmond" - - This example creates a new voice normalization rule for site Redmond named Prefix Redmond. Because no other parameters are specified, the rule is created with the default values. Notice that the value passed to the Identity parameter is in double quotes; this is because the name of the rule (Prefix Redmond) contains a space. If the rule name does not contain a space you don't need to enclose the Identity in double quotes. - Keep in mind that a dial plan for the Redmond site must exist for this command to succeed. You can create a new dial plan by calling the `New-CsDialPlan` cmdlet. - - - - -------------------------- Example 2 -------------------------- - New-CsVoiceNormalizationRule -Parent SeattleUser -Name SeattleFourDigit -Description "Dialing with internal four-digit extension" -Pattern '^(\d{4})$' -Translation '+1206555$1' - - This example creates a new voice normalization rule named SeattleFourDigit that applies to the per-user dial plan with the Identity SeattleUser. (Note: Rather than specifying a Parent and a Name, we could have instead created this same rule by specifying -Identity SeattleUser/SeattleFourDigit.) We've included a Description explaining that this rule is for translating numbers dialed internally with only a 4-digit extension. In addition, Pattern and Translation values have been specified. These values translate a four-digit number (specified by the regular expression in the Pattern) to the same four-digit number, but prefixed by the Translation value (+1206555). For example, if the extension 1234 was entered, this rule would translate that extension to the number +12065551234. - Note the single quotes around the Pattern and Translation values. Single quotes are required for these values; double quotes (or no quotes) will not work in this instance. - As in Example 1, a dial plan with the given scope must exist. In this case, that means a dial plan with the Identity SeattleUser must already exist. - - - - -------------------------- Example 3 -------------------------- - $nr1=New-CsVoiceNormalizationRule -Identity dp1/nr1 -Description "Dialing with internal four-digit extension" -Pattern '^(\d{4})$' -Translation '+1206555$1' -InMemory -New-CsTenantDialPlan -Identity DP1 -NormalizationRules @{Add=$nr1} - - This example creates a new in-memory voice normalization rule and then adds it to a new tenant dial plan DP1 to be used for Microsoft Teams users. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule - - - Test-CsVoiceNormalizationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csvoicenormalizationrule - - - Get-CsDialPlan - https://learn.microsoft.com/powershell/module/skypeforbusiness/get-csdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - - - - Register-CsOnlineDialInConferencingServiceNumber - Register - CsOnlineDialInConferencingServiceNumber - - The Register-CsOnlineDialInConferencingServiceNumber command allows you to assign any additional service number that you may have acquired to your conference bridge. - - - - The Register-CsOnlineDialInConferencingServiceNumber command allows you to assign any additional service number that you may have acquired to your conference bridge. - When you buy Audio Conferencing licenses, Microsoft is hosting your audio conferencing bridge for your organization. The audio conferencing bridge gives out dial-in phone numbers from different locations so that meeting organizers and participants can use them to join Microsoft Teams meetings using a phone. In addition to the phone numbers already assigned to your conferencing bridge, you can get additional service numbers (toll and toll-free numbers used for audio conferencing) from other locations, and then assign them to the conferencing bridge so you can expand coverage for your users. - - - - Register-CsOnlineDialInConferencingServiceNumber - - Identity - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - PARAMVALUE: ConferencingServiceNumber - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - BridgeId - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - PARAMVALUE: Fqdn - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - - - - BridgeId - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - PARAMVALUE: Fqdn - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - PARAMVALUE: ConferencingServiceNumber - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - Tenant - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Register-CsOnlineDialinConferencingServiceNumber -Identity +1425555XXX -BridgeId fb91u3e9-5c2a-42c3-8yy5-ec02beexxx09 - - This command registers the telephone number +1425555XXX to your conference bridge. To find the bridge ID associated with your conference bridge you can use the command Get-CsOnlineDialInConferencingBridge. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/register-csonlinedialinconferencingservicenumber - - - - - - Remove-CsAgent - Remove - CsAgent - - Deletes an AI Agent. - - - - Use the Remove-CsAgent cmdlet to delete an AI Agent. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time. - - - - Remove-CsAgent - - Id - - The Id parameter is the unique identifier assigned to the AI Agent. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the AI Agent. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsAgent -Id 7d9997d0-1013-4d9c-83eb-caa6ec05f1b3 - - This example deletes the AI Agent with the identity 7d9997d0-1013-4d9c-83eb-caa6ec05f1b3. If no AI Agent exists with the identity 7d9997d0-1013-4d9c-83eb-caa6ec05f1b3, then this command generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsAgent - - - New-CsAgent - - - - Set-CsAgent - - - - Get-CsAgent - - - - New-CsOnlineApplicationInstanceAssociation - - - - - - - Remove-CsApplicationAccessPolicy - Remove - CsApplicationAccessPolicy - - Deletes an existing application access policy. - - - - This cmdlet deletes an existing application access policy. - - - - Remove-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - - - - - - - - - - ------------- Remove an application access policy ------------- - PS C:\> Remove-CsApplicationAccessPolicy -Identity "ASimplePolicy" - - The command shown above deletes the application access policy ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Set-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Remove-CsAutoAttendant - Remove - CsAutoAttendant - - Use the Remove-CsAutoAttendant cmdlet to delete an Auto Attendant (AA). - - - - The Remove-CsAutoAttendant cmdlet deletes an AA that is specified by the Identity parameter. - > [!NOTE] > Remove any associated resource accounts with Remove-CsOnlineApplicationInstanceAssociation (remove-csonlineapplicationinstanceassociation.md) before attempting to delete the Auto Attendant (AA). - - - - Remove-CsAutoAttendant - - Identity - - The identity for the AA to be removed. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the AA to be removed. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - String - - - The Remove-CsAutoAttendant cmdlet accepts a string as the Identity parameter. - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsAutoAttendant -Identity "fa9081d6-b4f3-5c96-baec-0b00077709e5" - - This example deletes the AA that has an identity of fa9081d6-b4f3-5c96-baec-0b00077709e5. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - - - - Remove-CsAutoRecordingTemplate - Remove - CsAutoRecordingTemplate - - Deletes an Auto recording template. - - - - > [!CAUTION] > The functionality provided by this cmdlet will only work for customers that are participating in the Voice Applications private preview for this feature. General Availability for this functionality has not been determined at this time. - Use the Remove-CsAutoRecordingTemplate cmdlet to delete an Auto Recording template. If the template is currently assigned to a call queue, an error will be returned. - - - - Remove-CsAutoRecordingTemplate - - Id - - The Id parameter is the unique identifier assigned to the Auto Recording template. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the Auto Recording template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsAutoRecordingTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example deletes the Auto Recording template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Auto Recording template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsAutoRecordingTemplate - - - New-CsAutoRecordingTemplate - - - - Set-CsAutoRecordingTemplate - - - - Get-CsAutoRecordingTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Remove-CsCallingLineIdentity - Remove - CsCallingLineIdentity - - Use the `Remove-CsCallingLineIdentity` cmdlet to remove a Caller ID policy from your organization. - - - - This cmdlet will remove a Caller ID policy from your organization or resets the Global policy instance to the default values. - - - - Remove-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsCallingLineIdentity -Identity Anonymous - - This example removes a Caller ID policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Set-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - - - - Remove-CsCallQueue - Remove - CsCallQueue - - The Remove-CsCallQueue cmdlet deletes an existing Call Queue. - - - - The Remove-CsCallQueue cmdlet deletes an existing Call Queue specified by the Identity parameter. The removal will fail if there are any ApplicationInstances still associated with the Call Queue. - - - - Remove-CsCallQueue - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Identity - - - Represents the unique identifier of a Call Queue. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsCallQueue -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example removes the Call Queue with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Call Queue exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallqueue - - - - - - Remove-CsComplianceRecordingForCallQueueTemplate - Remove - CsComplianceRecordingForCallQueueTemplate - - Use the Remove-CsComplianceRecordingForCallQueueTemplate cmdlet to delete a Compliance Recording for Call Queues template. - - - - Use the Remove-CsComplianceRecordingForCallQueueTemplate cmdlet to delete a Compliance Recording for Call Queues template. If the template is currently assigned to a call queue, an error will be returned. - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - Id - - The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example deletes the Compliance Recording for Call Queue template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Compliance Recording for Call Queue template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsComplianceRecordingForCallQueueTemplate - - - New-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Remove-CsCustomPolicyPackage - Remove - CsCustomPolicyPackage - - This cmdlet deletes a custom policy package. - - - - This cmdlet deletes a custom policy package. All available package names can be found by running Get-CsPolicyPackage. - - - - Remove-CsCustomPolicyPackage - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - - - - - Default packages created by Microsoft cannot be deleted. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsCustomPolicyPackage -Identity "MyPackage" - - Deletes a custom package named "MyPackage". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscustompolicypackage - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - New-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscustompolicypackage - - - Update-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/update-cscustompolicypackage - - - - - - Remove-CsGroupPolicyAssignment - Remove - CsGroupPolicyAssignment - - This cmdlet is used to remove a group policy assignment. - - - - This cmdlet removes the policy of a specific type from a group. A group can only be assigned one policy of a given type, so the name of the policy to be removed does not need to be specified. - When a policy assignment is removed from a group, any other group policy assignments of the same type that have lower rank will be updated. For example, if the policy assignment with rank 2 is removed, then the rank 3 and 4 policy assignments will be updated to rank 2 and 3 respectively. - - - - Remove-CsGroupPolicyAssignment - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - GroupId - - The ID of the group from which the assignment will be removed. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - PassThru - - Returns true when the command succeeds - - - SwitchParameter - - - False - - - PolicyType - - The policy type of the assignment to be removed from the group. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - GroupId - - The ID of the group from which the assignment will be removed. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - PassThru - - Returns true when the command succeeds - - SwitchParameter - - SwitchParameter - - - False - - - PolicyType - - The policy type of the assignment to be removed from the group. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -e050ce51-54bc-45b7-b3e6-c00343d31274 TeamsMeetingPolicy AllOff 2 11/2/2019 12:20:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy Kiosk 3 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - -Remove-CsGroupPolicyAssignment -GroupId e050ce51-54bc-45b7-b3e6-c00343d31274 -PolicyType TeamsMeetingPolicy - -Get-CsGroupPolicyAssignment -PolicyType TeamsMeetingPolicy - -GroupId PolicyType PolicyName Rank CreatedTime CreatedBy -------- ---------- ---------- ---- ----------- --------- -d8ebfa45-0f28-4d2d-9bcc-b158a49e2d17 TeamsMeetingPolicy AllOn 1 10/29/2019 3:57:27 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 -566b8d39-5c5c-4aaa-bc07-4f36278a1b38 TeamsMeetingPolicy Kiosk 2 11/2/2019 12:14:41 AM aeb7c0e7-2f6d-43ef-bf33-bfbcb93fdc64 - - In this example, the policy assignment with rank 2 is removed. As a result, the policy assignment with rank 3 is updated to rank 2. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csgrouppolicyassignment - - - New-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csgrouppolicyassignment - - - Get-CsGroupPolicyAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csgrouppolicyassignment - - - - - - Remove-CsHybridTelephoneNumber - Remove - CsHybridTelephoneNumber - - This cmdlet removes a hybrid telephone number. - - - - This cmdlet removes a hybrid telephone number used for Audio Conferencing with Direct Routing for GCC High and DoD clouds. - > [!IMPORTANT] > This cmdlet is being deprecated. Use the new New-CsOnlineTelephoneNumberReleaseOrder cmdlet to remove a telephone number for Audio Conferencing with Direct Routing in Microsoft 365 GCC High and DoD clouds. Detailed instructions on how to use the new cmdlet can be found at New-CsOnlineTelephoneNumberReleaseOrder (new-csonlinetelephonenumberreleaseorder.md). - - - - Remove-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - {{ Fill InputObject Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - Remove-CsHybridTelephoneNumber - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - PassThru - - {{ Fill PassThru Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - The telephone number to remove. The number should be specified without a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - InputObject - - {{ Fill InputObject Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - {{ Fill PassThru Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - TelephoneNumber - - > Applicable: Microsoft Teams - The telephone number to remove. The number should be specified without a prefixed "+". The phone number can't have "tel:" prefixed. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - The cmdlet is only available in GCC High and DoD cloud instances. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsHybridTelephoneNumber -TelephoneNumber 14025551234 - - This example removes the hybrid phone number +1 (402) 555-1234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cshybridtelephonenumber - - - New-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-cshybridtelephonenumber - - - Get-CsHybridTelephoneNumber - https://learn.microsoft.com/powershell/module/microsoftteams/get-cshybridtelephonenumber - - - - - - Remove-CsInboundBlockedNumberPattern - Remove - CsInboundBlockedNumberPattern - - Removes a blocked number pattern from the tenant list. - - - - This cmdlet removes a blocked number pattern from the tenant list. - - - - Remove-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - A unique identifier specifying the blocked number pattern to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Remove-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" - - This example removes a blocked number pattern identified as "BlockAutomatic". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Set-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - - - - Remove-CsInboundExemptNumberPattern - Remove - CsInboundExemptNumberPattern - - Removes a number pattern exempt from call blocking. - - - - This cmdlet removes a specific exempt number pattern from the tenant list for call blocking. - - - - Remove-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the exempt number pattern to be listed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your call block and exempt phone number ranges. - - - - - -------------------------- Example 1 -------------------------- - PS>Remove-CsInboundExemptNumberPattern -Identity "Exempt1" - - This removes the exempt number patterns with Identity Exempt1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Set-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Remove-CsMainlineAttendantAppointmentBookingFlow - Remove - CsMainlineAttendantAppointmentBookingFlow - - The Remove-CsMainlineAttendantAppointmentBookingFlow cmdlet deletes an existing Mainline attendant appointment booking flow. - - - - The Remove-CsMainlineAttendantAppointmentBookingFlow cmdlet deletes an existing Mainline attendant appointment booking flow. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Remove-CsMainlineAttendantAppointmentBookingFlow - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - - - - Identity - - - Represents the unique identifier of a Mainline attendant appointment booking flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsMainlineAttendantAppointmentBookingFlow -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example removes the Mainline attendant appointment booking flow with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no appointment booking flow exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csmainlineattendantappointmentbookingflow - - - - - - Remove-CsMainlineAttendantQuestionAnswerFlow - Remove - CsMainlineAttendantQuestionAnswerFlow - - The Remove-CsMainlineAttendantQuestionAnswerFlow cmdlet deletes an existing Mainline attendant question and answer flow. - - - - The Remove-CsMainlineAttendantQuestionAnswerFlow cmdlet deletes an existing Mainline attendant question and answer flow. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Remove-CsMainlineAttendantQuestionAnswerFlow - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - - - - Identity - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - Tenant - - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - - - - Identity - - - Represents the unique identifier of a Mainline attendant question and answer flow. - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsMainlineAttendantQuestionAnswerFlow -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example removes the Mainline attendant question and answer flow with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no question and answer flow exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csmainlineattendantquestionanswerflow - - - - - - Remove-CsOnlineApplicationInstanceAssociation - Remove - CsOnlineApplicationInstanceAssociation - - Use the Remove-CsOnlineApplicationInstanceAssociation cmdlet to remove the association between an application instance and the associated application configuration. - - - - Use the Remove-CsOnlineApplicationInstanceAssociation cmdlet to remove the association between an application instance and the associated application configuration. - This is useful when you want to associate this application instance with another application configuration for handling incoming calls. - - - - Remove-CsOnlineApplicationInstanceAssociation - - Identities - - The identities for the application instances whose configuration associations are to be removed. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identities - - The identities for the application instances whose configuration associations are to be removed. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String[] - - - The Remove-CsOnlineApplicationInstanceAssociation cmdlet accepts a string array as the Identities parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.AssociationOperationOutput - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineApplicationInstanceAssociation -Identities "f7a821dc-2d69-5ae8-8525-bcb4a4556093" - - This example removes the configuration association for the application instance that has the identity of "f7a821dc-2d69-5ae8-8525-bcb4a4556093". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineapplicationinstanceassociation - - - Get-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociation - - - Get-CsOnlineApplicationInstanceAssociationStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstanceassociationstatus - - - New-CsOnlineApplicationInstanceAssociation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstanceassociation - - - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - Remove - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet deletes an instance of the Online Audio Conferencing Routing Policy. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineAudioConferencingRoutingPolicy -Identity "Test" - - Deletes an Online Audio Conferencing Routing policy instance with the identity "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Remove-CsOnlineAudioFile - Remove - CsOnlineAudioFile - - Marks an audio file of application type TenantGlobal for deletion and later removal (within 24 hours). - - - - This cmdlet marks an audio file of application type TenantGlobal for deletion and later removal. - - - - Remove-CsOnlineAudioFile - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to mark for deletion. - - System.String - - System.String - - - None - - - - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Id of the specific audio file that you would like to mark for deletion. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - Please note that using this cmdlet on other application types like OrgAutoAttendant and HuntGroup does not mark the audio file for deletion. These kinds of audio files will automatically be deleted, when - the corresponding Auto Attendant or Call Queue is deleted. - The cmdlet is available in Teams PS module 2.4.0-preview or later. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineAudioFile -Identity dcfcc31daa9246f29d94d0a715ef877e - - This cmdlet marks the audio file with Id dcfcc31daa9246f29d94d0a715ef877e for deletion and later removal. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineaudiofile - - - Export-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/export-csonlineaudiofile - - - Get-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineaudiofile - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - - - - Remove-CsOnlineDialInConferencingTenantSettings - Remove - CsOnlineDialInConferencingTenantSettings - - Use the `Remove-CsOnlineDialInConferencingTenantSettings` cmdlet to revert the tenant level dial-in conferencing settings to their original defaults. - - - - There is always a single instance of the dial-in conferencing settings per tenant. You can modify the settings using `Set-CsOnlineDialInConferencingTenantSettings` and revert those settings to their defaults by using `Remove-CsOnlineDialInConferencingTenantSettings`. - - - - Remove-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineDialInConferencingTenantSettings - - This example reverts the tenant level dial-in conferencing settings to their original defaults. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinedialinconferencingtenantsettings - - - - - - Remove-CsOnlineLisCivicAddress - Remove - CsOnlineLisCivicAddress - - Use the Remove-CsOnlineLisCivicAddress cmdlet to delete an existing civic address from the Location Information Server (LIS). - You can't remove a civic address if any of its associated locations are assigned to users or phone numbers. - - - - Removes the specified emergency address or addresses. - - - - Remove-CsOnlineLisCivicAddress - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address to be deleted. You can find civic address identifiers by using the Get-CsOnlineLisCivicAddress cmdlet. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address to be deleted. You can find civic address identifiers by using the Get-CsOnlineLisCivicAddress cmdlet. - - Guid - - Guid - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - This cmdlet accepts pipelined input from the Get-CsOnlineLisCivicAddress cmdlet. - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisCivicAddress -CivicAddressId ee38d9a5-33dc-4a32-9fb8-f234cedb91ac - - This example removes the emergency civic address with the specified identification. - - - - -------------------------- Example 2 -------------------------- - Get-CsOnlineLisCivicAddress -City Redmond | Remove-CsOnlineLisCivicAddress - - This example removes all the emergency civic addresses in the city of Redmond. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliscivicaddress - - - Set-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliscivicaddress - - - New-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineliscivicaddress - - - Get-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress - - - - - - Remove-CsOnlineLisLocation - Remove - CsOnlineLisLocation - - Use the Remove-CsOnlineLisLocation cmdlet to remove an existing emergency location from the Location Information Service (LIS). - You can only remove locations that have no assigned users or phone numbers. You can't remove the default location, you will have to delete the associated civic address which will delete the default location. - - - - If the location specified for removal is assigned to users, the cmdlet will fail until the users assignments are removed. - - - - Remove-CsOnlineLisLocation - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be deleted. Location identities can be discovered by using the Get-CsOnlineLisLocation cmdlet. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be deleted. Location identities can be discovered by using the Get-CsOnlineLisLocation cmdlet. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - This cmdlet supports pipelined input from the Get-CsOnlineLisLocation cmdlet. - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisLocation -LocationId 788dd820-c136-4255-9f61-24b880ad0763 - - This example removes the location specified by its identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelislocation - - - Set-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelislocation - - - Get-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation - - - New-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinelislocation - - - - - - Remove-CsOnlineLisPort - Remove - CsOnlineLisPort - - Removes an association between a Location port and a location. This association is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet removes an association between a physical location and a port through which calls will be routed by removing the port from the location configuration database. - Removing a port location will not remove the actual location of the port; it removes only the port. - - - - Remove-CsOnlineLisPort - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - This parameter identifies the ID of the port. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - This parameter identifies the ID of the port. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisPort -PortID 12174 -ChassisID 0B-23-CD-16-AA-CC - - Example 1 removes the location information for port 12174 with ChassisID 0B-23-CD-16-AA-CC. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisport - - - Set-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisport - - - Get-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisport - - - - - - Remove-CsOnlineLisSubnet - Remove - CsOnlineLisSubnet - - Removes a Location Information Server (LIS) subnet. - - - - Enhanced 9-1-1 (E9-1-1) allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet removes a subnet from the location configuration database. Removing the subnet will not remove the location associated with that subnet. Use the `Remove-CsOnlineLisLocation` cmdlet to remove a location. - - - - Remove-CsOnlineLisSubnet - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisSubnet -Subnet 10.10.10.10 - - Example 1 removes the Location Information Service subnet "10.10.10.10". - - - - -------------------------- Example 2 -------------------------- - Remove-CsOnlineLisSubnet -Subnet 2001:4898:e8:6c:90d2:28d4:76a4:ec5e - - Example 1 removes the Location Information Service subnet "2001:4898:e8:6c:90d2:28d4:76a4:ec5e". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelissubnet - - - - - - Remove-CsOnlineLisSwitch - Remove - CsOnlineLisSwitch - - Removes a Location Information Server (LIS) network switch. - - - - Enhanced 9-1-1 (E9-1-1) allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet removes a switch from the location configuration database. Removing a switch will not remove the actual location; it removes only the switch. To remove the location, call the `Remove-CsLisOnlineLocation` cmdlet. - - - - Remove-CsOnlineLisSwitch - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ChassisID - - > Applicable: Microsoft Teams - The Media Access Control (MAC) address of the port's switch. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisSwitch -ChassisID 0B-23-CD-16-AA-CC - - Example 1 removes the switch with Chassis ID "0B-23-CD-16-AA-CC". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisswitch - - - Set-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisswitch - - - Get-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisswitch - - - - - - Remove-CsOnlineLisWirelessAccessPoint - Remove - CsOnlineLisWirelessAccessPoint - - Removes a Location Information Server (LIS) wireless access point (WAP). - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet removes a WAP from the location configuration database. Removing the WAP will not remove the location associated with that WAP. Use the `Remove-CsLisOnlineLocation` cmdlet to remove a location. - The BSSID (Basic Service Set Identifiers) is used to describe sections of a wireless local area network. It is the MAC of the 802.11 side of the access point. The BSSID parameter in this command also supports the wildcard format to cover all BSSIDs in a range which are sharing the same description and Location ID. The wildcard '*' can be on either the last one or two character(s). - If a BSSID with wildcard format is already exists, the request for removing a single BSSID which is within this wildcard range and with the same location ID will not be accepted. - - - - Remove-CsOnlineLisWirelessAccessPoint - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-03-23 - - Example 1 removes the Location Information Server (LIS) wireless access point with BSS ID "F0-6E-0B-C2-03-23". - - - - -------------------------- Example 2 -------------------------- - Remove-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-04-* - - Example 2 removes the Location Information Server (LIS) wireless access point with BSS ID "F0-6E-0B-C2-04-*". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliswirelessaccesspoint - - - Set-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliswirelessaccesspoint - - - Get-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliswirelessaccesspoint - - - - - - Remove-CsOnlinePSTNGateway - Remove - CsOnlinePSTNGateway - - Removes the configuration of the previously defined Session Border Controller(s) (SBC(s)) that describes the settings for the peer entity. This cmdlet was introduced with Microsoft Phone System Direct Routing. - - - - Use this cmdlet to remove the configuration of the previously created Session Border Controller(s) (SBC(s)) configuration. Note the SBC must be removed from all voice routes before executing this cmdlet. - - - - Remove-CsOnlinePSTNGateway - - Identity - - > Applicable: Microsoft Teams - The parameter is mandatory for the cmdlet. The Identity is the same as the SBC FQDN. - - String - - String - - - None - - - - - - Identity - - > Applicable: Microsoft Teams - The parameter is mandatory for the cmdlet. The Identity is the same as the SBC FQDN. - - String - - String - - - None - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlinePSTNGateway -Identity sbc.contoso.com - - This example removes SBC with Identity (and FQDN) sbc.contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinepstngateway - - - Set-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstngateway - - - New-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinepstngateway - - - Get-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstngateway - - - - - - Remove-CsOnlineSchedule - Remove - CsOnlineSchedule - - Use the Remove-CsOnlineSchedule cmdlet to remove a schedule. - - - - The Remove-CsOnlineSchedule cmdlet deletes a schedule that is specified by using the Id parameter. - - - - Remove-CsOnlineSchedule - - Id - - > Applicable: Microsoft Teams - The Id for the schedule to be removed. - - System.String - - System.String - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - System.Guid - - System.Guid - - - None - - - - - - Id - - > Applicable: Microsoft Teams - The Id for the schedule to be removed. - - System.String - - System.String - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Remove-CsOnlineSchedule cmdlet accepts a string as the Id parameter. - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsOnlineSchedule -Id "fa9081d6-b4f3-5c96-baec-0b00077709e5" - - This example deletes the schedule that has an Id of fa9081d6-b4f3-5c96-baec-0b00077709e5. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineschedule - - - New-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - Set-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineschedule - - - - - - Remove-CsOnlineVoiceRoute - Remove - CsOnlineVoiceRoute - - Removes an online voice route. Online voice routes contain instructions that tell Skype for Business Online how to route calls from Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - - - - Use this cmdlet to remove an existing online voice route. Online voice routes are associated with online voice policies through online PSTN usages, so removing an online voice route does not change any values relating to an online voice policy, it simply changes the routing for the numbers that had matched the pattern for the deleted online voice route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Remove-CsOnlineVoiceRoute - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineVoiceRoute -Identity Route1 - - Removes the settings for the online voice route with the identity Route1. - - - - -------------------------- Example 2 -------------------------- - PS C:\ Get-CsOnlineVoiceRoute | Remove-CsOnlineVoiceRoute - - This command removes all online voice routes from the organization. First all online voice routes are retrieved by the `Get-CsOnlineVoiceRoute` cmdlet. These online voice routes are then piped to the `Remove-CsOnlineVoiceRoute` cmdlet, which removes each one. - - - - -------------------------- Example 3 -------------------------- - PS C:\ Get-CsOnlineVoiceRoute -Filter *Redmond* | Remove-CsOnlineVoiceRoute - - This command removes all online voice routes with an identity that includes the string "Redmond". First the `Get-CsOnlineVoiceRoute` cmdlet is called with the Filter parameter. The value of the Filter parameter is the string Redmond surrounded by wildcard characters (*), which specifies that the string can be anywhere within the Identity. After all of the online voice routes with identities that include the string Redmond are retrieved, these online voice routes are piped to the `Remove-CsOnlineVoiceRoute` cmdlet, which removes each one. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Set-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - - - - Remove-CsOnlineVoiceRoutingPolicy - Remove - CsOnlineVoiceRoutingPolicy - - Deletes an existing online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Remove-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the policy when it was created. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" - - The command shown in Example 1 deletes the online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy -Filter "tag:*" | Remove-CsOnlineVoiceRoutingPolicy - - In Example 2, all the online voice routing policies configured at the per-user scope are removed. To do this, the command first calls the `Get-CsOnlineVoiceRoutingPolicy` cmdlet along with the Filter parameter; the filter value "tag:*" limits the returned data to online voice routing policies configured at the per-user scope. Those per-user policies are then piped to and removed by, the `Remove-CsOnlineVoiceRoutingPolicy` cmdlet. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Get-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Long Distance"} | Remove-CsOnlineVoiceRoutingPolicy - - In Example 3, all the online voice routing polices that include the online PSTN usage "Long Distance" are removed. To carry out this task, the `Get-CsOnlineVoiceRoutingPolicy` cmdlet is first called without any parameters in order to return a collection of all the available online voice routing policies. That collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the usage "Long Distance". Policies that meet that criterion are then piped to the `Remove-CsOnlineVoiceRoutingPolicy`, which removes each online voice routing policy that includes the online PSTN usage "Long Distance". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Set-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - - - - Remove-CsPhoneNumberAssignment - Remove - CsPhoneNumberAssignment - - This cmdlet will remove/unassign a phone number from a user or a resource account (online application instance). - - - - This cmdlet removes/unassigns a phone number from a user or resource account. The phone number continues to be available in the tenant. - Unassigning a phone number from a user or resource account will automatically set EnterpriseVoiceEnabled to False. - If the cmdlet executes successfully, no result object will be returned. If the cmdlet fails for any reason, a result object will be returned that contains a Code string parameter and a Message string parameter with additional details of the failure. Email notification to end user is a best effort operation. No error message will be displayed if the email fails to send. Note : In Teams PowerShell Module 4.2.1-preview and later we are changing how the cmdlet reports errors. Instead of using a result object, we will be generating an exception in case of an error and we will be appending the exception to the $Error automatic variable. The cmdlet will also now support the -ErrorAction parameter to control the execution after an error has occurred. - - - - Remove-CsPhoneNumberAssignment - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - PhoneNumber - - The phone number to unassign from the user or resource account. Supports E.164 format and non-E.164 format. Needs to be without the prefixed "tel:". - - System.String - - System.String - - - None - - - PhoneNumberType - - The type of phone number to unassign from the user or resource account. The supported values are DirectRouting, CallingPlan and OperatorConnect. - - System.String - - System.String - - - None - - - Notify - - Sends a best-effort email notification when a phone number is removed. Failures to send email are not reported. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for the telephone number. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Sets a duration based assignment block on the telephone number. The value must be a valid integer between 1 and 365. - - System.Int32 - - System.Int32 - - - None - - - - Remove-CsPhoneNumberAssignment - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - RemoveAll - - Unassigns the phone number from the user or resource account. - - - System.Management.Automation.SwitchParameter - - - False - - - Notify - - Sends a best-effort email notification when a phone number is removed. Failures to send email are not reported. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for the telephone number. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Sets a duration based assignment block on the telephone number. The value must be a valid integer between 1 and 365. - - System.Int32 - - System.Int32 - - - None - - - - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - PhoneNumber - - The phone number to unassign from the user or resource account. Supports E.164 format and non-E.164 format. Needs to be without the prefixed "tel:". - - System.String - - System.String - - - None - - - PhoneNumberType - - The type of phone number to unassign from the user or resource account. The supported values are DirectRouting, CallingPlan and OperatorConnect. - - System.String - - System.String - - - None - - - RemoveAll - - Unassigns the phone number from the user or resource account. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Notify - - Sends a best-effort email notification when a phone number is removed. Failures to send email are not reported. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for the telephone number. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Sets a duration based assignment block on the telephone number. The value must be a valid integer between 1 and 365. - - System.Int32 - - System.Int32 - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 3.0.0 or later. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber +12065551234 -PhoneNumberType CallingPlan - - This example removes/unassigns the Microsoft Calling Plan telephone number +1 (206) 555-1234 from the user user1@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user2@contoso.com -RemoveAll - - This example removes/unassigns all the telephone number from user2@contoso.com. - - - - -------------------------- Example 3 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber +12065551234 -PhoneNumberType CallingPlan -Notify - - This example removes/unassigns the Microsoft Calling Plan phone number +1 (206) 555-1234 from the user user1@contoso.com and also sends an email notification to the user about the removal of telephone number. - - - - -------------------------- Example 4 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user2@contoso.com -RemoveAll -Notify - - This example removes/unassigns all the telephone number from user2@contoso.com and also sends an email notification to the user about the change. - - - - -------------------------- Example 5 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber +12065551234 -AssignmentBlockedForever - - This example removes a telephone number assignment from user1@contoso.com and also sets an assignment block on the unassigned number for an indefinite duration. - - - - -------------------------- Example 6 -------------------------- - Remove-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber +12065551234 -AssignmentBlockedDays 30 - - This example removes a telephone number assignment from user1@contoso.com and also sets an assignment block on the unassigned number for 30 days. Which means the telephone number will not be available for new assignment for 30 days or until the block is removed manually. The telephone number will automatically become available for assignment for 30 days period is over. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment - - - Set-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment - - - Get-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment - - - - - - Remove-CsPhoneNumberAssignmentBlock - Remove - CsPhoneNumberAssignmentBlock - - This cmdlet allows the admin to remove an assignment block on a telephone number. - - - - This cmdlet allows telephone number administrators to remove an existing assignment block on a telephone number. - - - - Remove-CsPhoneNumberAssignmentBlock - - TelephoneNumber - - Indicates the phone number for the assignment block be removed from. - - System.String - - System.String - - - None - - - - - - TelephoneNumber - - Indicates the phone number for the assignment block be removed from. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - This cmdlet is available in Teams PowerShell module 7.5.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsPhoneNumberAssignmentBlock -TelephoneNumber +123456789 - - The above example shows how to remove the assignment block on a +123456789 number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/remove-csphonenumberassignmentblock - - - - - - Remove-CsPhoneNumberSmsActivation - Remove - CsPhoneNumberSmsActivation - - This cmdlet allows the admin to deactivate SMS capabilities for a telephone number. - - - - This cmdlet deactivates SMS capabilities for a telephone number. The output of the cmdlet is the OrderId of the asynchronous SMS Deactivation operation. - To activate SMS capabilities for a number, use the Set-CsPhoneNumberSmsActivation (Set-CsPhoneNumberSmsActivation.md) cmdlet. - - - - Remove-CsPhoneNumberSmsActivation - - TelephoneNumber - - Indicates the phone number to deactivate SMS from. - - System.String - - System.String - - - None - - - - - - TelephoneNumber - - Indicates the phone number to deactivate SMS from. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsPhoneNumberSmsActivation -TelephoneNumber +123456789 - - The above example shows how to deactivate SMS for a +123456789 number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumbersmsactivation - - - Set-CsPhoneNumberSmsActivation - https://learn.microsoft.com/powershell/module/microsoftteams - - - - - - Remove-CsPhoneNumberTag - Remove - CsPhoneNumberTag - - This cmdlet allows admin to remove a tag from phone number. - - - - This cmdlet allows telephone number administrators to remove existing tags from any telephone numbers. This method does not delete the tag from the system if the tag is assigned to other telephone numbers. - - - - Remove-CsPhoneNumberTag - - PhoneNumber - - Indicates the phone number for the the tag to be removed from - - String - - String - - - None - - - Tag - - Indicates the tag to be removed. - - String - - String - - - None - - - - - - PhoneNumber - - Indicates the phone number for the the tag to be removed from - - String - - String - - - None - - - Tag - - Indicates the tag to be removed. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Boolean - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsPhoneNumberTag -PhoneNumber +123456789 -Tag "HR" - - This example shows how to remove the tag "HR" from telephone number +123456789. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumbertag - - - - - - Remove-CsPhoneNumberTenantConfiguration - Remove - CsPhoneNumberTenantConfiguration - - This cmdlet allows the admins to remove a tenant default configuration that applies to all telephone numbers within the tenant. - - - - This cmdlet allows the teams phone administrators to remove a tenant default configuration that applies to all the telephone numbers within the tenant. - - - - Remove-CsPhoneNumberTenantConfiguration - - AssignmentEmailEnabled - - Indicates the assignment email notification configuration will be removed. - - - System.Management.Automation.SwitchParameter - - - False - - - UnassignmentEmailEnabled - - Indicates the unassignment email notification configuration will be removed. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedForever - - Indicates the assignment blocked forever configuration will be removed. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Indicates the assignment blocked days configuration will be removed. - - - System.Management.Automation.SwitchParameter - - - False - - - AllowOnPremToOnlineMigration - - Indicates the configuration will be removed for allowing OnPremises direct routing numbers to be automatically migrated to online direct routing numbers if an online operation is performed. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - AssignmentEmailEnabled - - Indicates the assignment email notification configuration will be removed. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - UnassignmentEmailEnabled - - Indicates the unassignment email notification configuration will be removed. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedForever - - Indicates the assignment blocked forever configuration will be removed. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Indicates the assignment blocked days configuration will be removed. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AllowOnPremToOnlineMigration - - Indicates the configuration will be removed for allowing OnPremises direct routing numbers to be automatically migrated to online direct routing numbers if an online operation is performed. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsPhoneNumberTenantConfiguration -AssignmentEmailEnabled -UnassignmentEmailEnabled - - The above example shows how to remove email notification configuration setting for all the telephone number assignment and unassignment operations within the tenant. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Remove-CsPhoneNumberTenantConfiguration -AssignmentBlockedForever - - The above example shows how to remove the indefinite assignment block configuration for all the telephone numbers within the tenant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumbertenantconfiguration - - - Set-CsPhoneNumberTenantConfiguration - - - - Get-CsPhoneNumberTenantConfiguration - - - - - - - Remove-CsSharedCallHistoryTemplate - Remove - CsSharedCallHistoryTemplate - - Deletes a Shared Call History template. - - - - Use the Remove-CsSharedCallHistoryTemplate cmdlet to delete a Shared Call History template. - - - - Remove-CsSharedCallHistoryTemplate - - Id - - The Id parameter is the unique identifier assigned to the Shared Call History template. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the Shared Call History template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsSharedCallHistoryTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example deletes the Shared Call History template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Shared Call History template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsSharedCallHistoryTemplate - - - New-CsSharedCallHistoryTemplate - - - - Set-CsSharedCallHistoryTemplate - - - - Get-CsSharedCallHistoryTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - - - - Remove-CsSharedCallQueueHistoryTemplate - Remove - CsSharedCallQueueHistoryTemplate - - This PowerShell cmdlet is being deprecated, please use the new version Remove-CsSharedCallHistoryTemplate (./Remove-CsSharedCallHistoryTemplate.md)instead. - > [!IMPORTANT] >This PowerShell cmdlet is being deprecated, please use the new version Remove-CsSharedCallHistoryTemplate (./Remove-CsSharedCallHistoryTemplate.md)instead. - - - - Use the Remove-CsSharedCallQueueHistoryTemplate cmdlet to delete a Shared Call Queue History template. If the template is currently assigned to a call queue, an error will be returned. - - - - Remove-CsSharedCallQueueHistoryTemplate - - Id - - The Id parameter is the unique identifier assigned to the Shared Call Queue History template. - - System.String - - System.String - - - None - - - - - - Id - - The Id parameter is the unique identifier assigned to the Shared Call Queue History template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsSharedCallQueueHistoryTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 - - This example deletes the Shared Call Queue History template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Shared Call Queue History template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Remove-CsSharedCallQueueHistoryTemplate - - - New-CsSharedCallQueueHistoryTemplate - - - - Set-CsSharedCallQueueHistoryTemplate - - - - Get-CsSharedCallQueueHistoryTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Remove-CsTagsTemplate - Remove - CsTagsTemplate - - Deletes a Tag templates from the tenant. - - - - The Remove-CsTagsTemplate cmdlet deletes a Tag template from the tenant. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Remove-CsTagsTemplate - - Id - - The unique identifier for the Tag template. This can be retrieved using the Get-CsTagsTemplate (Get-CsTagsTemplate.md)cmdlet. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Id - - The unique identifier for the Tag template. This can be retrieved using the Get-CsTagsTemplate (Get-CsTagsTemplate.md)cmdlet. - - String - - String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstagstemplate - - - New-CsTagsTemplate - - - - Get-CsTagsTemplate - - - - Set-CsTagsTemplate - - - - New-CsTag - - - - - - - Remove-CsTeamsAudioConferencingPolicy - Remove - CsTeamsAudioConferencingPolicy - - Deletes a custom Teams audio conferencing policy. Audio conferencing policies are used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - Deletes a previously created TeamsAudioConferencingPolicy. Any users with no explicitly assigned policies will then fall back to the default (Global) policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: `-Identity "<policy name>"`. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the TeamsAudioConferencingPolicy to be removed. To remove global policy, use this syntax: -Identity global. (Note that the global policy cannot be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: `-Identity "<policy name>"`. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - String - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Remove-CsTeamsAudioCOnferencingPolicy -Identity "Emea Users" - - In the example shown above, the command will delete the "Emea Users" audio conferencing policy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - Set-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Remove-CsTeamsCallParkPolicy - Remove - CsTeamsCallParkPolicy - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different Teams phone. The Remove-CsTeamsCallParkPolicy cmdlet lets delete a custom policy that has been configured in your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. The Remove-CsTeamsCallParkPolicy cmdlet lets delete a custom policy that has been configured in your organization. - If you run Remove-CsTeamsCallParkPolicy on the Global policy, it will be reset to the defaults provided for new organizations. - - - - Remove-CsTeamsCallParkPolicy - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: `-Identity global`. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: `-Identity "SalesDepartmentPolicy"`. You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - > Applicable: Microsoft Teams - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCallParkPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamscallparkpolicy - - - - - - Remove-CsTeamsCortanaPolicy - Remove - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - Deletes a previously created TeamsCortanaPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsCortanaPolicy - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsCortanaPolicy -Identity MyCortanaPolicy - - In the example shown above, the command will delete the MyCortanaPolicy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Remove-CsTeamsEmergencyCallRoutingPolicy - Remove - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet removes an existing Teams Emergency Call Routing policy instance. - - - - This cmdlet removes an existing Teams Emergency Call Routing policy instance. - - - - Remove-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Call Routing policy to remove. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier of the Teams Emergency Call Routing policy to remove. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsEmergencyCallRoutingPolicy -Identity Test - - This example removes Teams Emergency Call Routing policy with identity Test. - - - - -------------------------- Example 2 -------------------------- - Remove-CsTeamsEmergencyCallRoutingPolicy -Identity Global - - This example resets the Teams Emergency Call Routing Global policy instance to its default values. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Set-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - - - - Remove-CsTeamsEnhancedEncryptionPolicy - Remove - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to remove an existing Teams enhanced encryption policy. - - - - Use this cmdlet to remove an existing Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Remove-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Remove-CsTeamsEnhancedEncryptionPolicy -Identity 'ContosoPartnerTeamsEnhancedEncryptionPolicy' - - The command shown in Example 1 deletes the Teams enhanced encryption policy ContosoPartnerTeamsEnhancedEncryptionPolicy. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Get-CsTeamsEnhancedEncryptionPolicy -Filter 'Tag:*' | Remove-CsTeamsEnhancedEncryptionPolicy - - In Example 2, all the Teams enhanced encryption policies configured at the per-user scope are removed. The Filter value "Tag:*" limits the returned data to Teams enhanced encryption policies configured at the per-user scope. Those per-user policies are then removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Set-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Remove-CsTeamsEventsPolicy - Remove - CsTeamsEventsPolicy - - The CsTeamsEventsPolicy cmdlets removes a previously created TeamsEventsPolicy. Note that this policy is currently still in preview. - - - - Deletes a previously created TeamsEventsPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. You cannot delete the global policy from the organization. - - - - Remove-CsTeamsEventsPolicy - - Identity - - Unique identifier for the teams events policy to be removed. To remove the global policy, use this syntax: -Identity Global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy DisablePublicWebinars, use this syntax: -Identity DisablePublicWebinars. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams events policy to be removed. To remove the global policy, use this syntax: -Identity Global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy DisablePublicWebinars, use this syntax: -Identity DisablePublicWebinars. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsEventsPolicy -Identity DisablePublicWebinars - - In this example, the command will delete the DisablePublicWebinars policy from the organization's list of policies. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamseventspolicy - - - - - - Remove-CsTeamsIPPhonePolicy - Remove - CsTeamsIPPhonePolicy - - Use the Remove-CsTeamsIPPhonePolicy cmdlet to remove a custom policy that's been created for controlling Teams phone experiences. - - - - Use the Remove-CsTeamsIPPhonePolicy cmdlet to remove a custom policy that's been created for controlling Teams IP Phones experiences. - Note: Ensure the policy is not assigned to any users or the policy deletion will fail. - - - - Remove-CsTeamsIPPhonePolicy - - Identity - - Specify the name of the TeamsIPPhonePolicy that you would like to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the TeamsIPPhonePolicy that you would like to remove. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsIPPhonePolicy -Identity CommonAreaPhone - - This example shows the deletion of the policy CommonAreaPhone. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsipphonepolicy - - - - - - Remove-CsTeamsMeetingBroadcastPolicy - Remove - CsTeamsMeetingBroadcastPolicy - - Deletes an existing Teams meeting broadcast policy in your tenant. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - Remove-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be removed. Policies can be configured at the global or per-user scopes. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) - To remove a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors when running this command. - - - SwitchParameter - - - False - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors when running this command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be removed. Policies can be configured at the global or per-user scopes. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) - To remove a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Wildcards are not allowed when specifying an Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmeetingbroadcastpolicy - - - - - - Remove-CsTeamsMobilityPolicy - Remove - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Remove-CsTeamsMobilityPolicy cmdlet lets an Admin delete a custom teams mobility policy that has been created. - - - - Remove-CsTeamsMobilityPolicy - - Identity - - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: -Identity "SalesDepartmentPolicy". You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the client policy to be removed. To "remove" the global policy, use the following syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the properties in that policy will be reset to their default values.) To remove a per-user policy, use syntax similar to this: -Identity "SalesDepartmentPolicy". You cannot use wildcards when specifying a policy Identity. - - XdsIdentity - - XdsIdentity - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMobilityPolicy -Identity SalesPolicy - - Deletes a custom policy that has already been created in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsmobilitypolicy - - - - - - Remove-CsTeamsNetworkRoamingPolicy - Remove - CsTeamsNetworkRoamingPolicy - - Remove-CsTeamsNetworkRoamingPolicy allows IT Admins to delete policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Deletes the Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - - - - Remove-CsTeamsNetworkRoamingPolicy - - Identity - - Unique identifier of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - Identity - - Unique identifier of the policy to be removed. - - XdsIdentity - - XdsIdentity - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsNetworkRoamingPolicy -Identity OfficePolicy - - In Example 1, Remove-CsTeamsNetworkRoamingPolicy is used to delete the network roaming policy that has an Identity OfficePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsnetworkroamingpolicy - - - - - - Remove-CsTeamsRoomVideoTeleConferencingPolicy - Remove - CsTeamsRoomVideoTeleConferencingPolicy - - Deletes an existing TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Remove-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsroomvideoteleconferencingpolicy - - - - - - Remove-CsTeamsShiftsConnection - Remove - CsTeamsShiftsConnection - - This cmdlet deletes a Shifts connection. - - - - This cmdlet deletes a connection. All available connections can be found by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - - - Remove-CsTeamsShiftsConnection - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection that you want to delete. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - - - - ConnectionId - - > Applicable: Microsoft Teams - The ID of the connection that you want to delete. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsShiftsConnection -ConnectionId 43cd0e23-b62d-44e8-9321-61cb5fcfae85 - - Deletes the connection with ID `43cd0e23-b62d-44e8-9321-61cb5fcfae85`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - New-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - Set-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnection - - - - - - Remove-CsTeamsShiftsConnectionInstance - Remove - CsTeamsShiftsConnectionInstance - - This cmdlet deletes a Shifts connection instance. - - - - This cmdlet deletes a connection instance. All available instances can be found by running Get-CsTeamsShiftsConnectionInstance (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance). - - - - Remove-CsTeamsShiftsConnectionInstance - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsShiftsConnectionInstance -ConnectorInstanceId WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b - - Deletes the connection instance with ID `WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Remove-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - - - - Remove-CsTeamsShiftsConnectionTeamMap - Remove - CsTeamsShiftsConnectionTeamMap - - This cmdlet removes the mapping between the Microsoft Teams team and workforce management (WFM) team. - - - - This cmdlet removes the mapping between the Microsoft Teams team and WFM team. All team mappings can be found by running Get-CsTeamsShiftsConnectionTeamMap (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionteammap). - - - - Remove-CsTeamsShiftsConnectionTeamMap - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - - - - ConnectorInstanceId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - InputObject - - The identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Enables you to pass a user object through the pipeline that represents the user being assigned the policy. - - SwitchParameter - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The ID of the connection instance that you want to delete. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsShiftsConnectionTeamMap -ConnectorInstanceId "WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b" -TeamId "30b625bd-f0f7-4d5c-8793-9ccef5a63119" - - Unmaps the Teams team with ID "30b625bd-f0f7-4d5c-8793-9ccef5a63119" in the instance with ID "WCI-4c231dd2-4451-45bd-8eea-bd68b40bab8b". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectionteammap - - - Get-CsTeamsShiftsConnectionTeamMap - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectionteammap - - - New-CsTeamsShiftsConnectionBatchTeamMap - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectionbatchteammap - - - - - - Remove-CsTeamsShiftsScheduleRecord - Remove - CsTeamsShiftsScheduleRecord - - This cmdlet enqueues the clear schedule message. - - - - This cmdlet sends a request of removing Shifts schedule with specified time range. - - - - Remove-CsTeamsShiftsScheduleRecord - - Body - - The request body. - - IClearScheduleRequest - - IClearScheduleRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - ClearSchedulingGroup - - > Applicable: Microsoft Teams - A value indicating whether to clear schedule group. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DateRangeEndDate - - > Applicable: Microsoft Teams - The end date of removing schedule record. - - String - - String - - - None - - - DateRangeStartDate - - > Applicable: Microsoft Teams - The start date of removing schedule record. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - PassThru - - Used to return an object that represents the item being modified. - - - SwitchParameter - - - False - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Remove-CsTeamsShiftsScheduleRecord - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - ClearSchedulingGroup - - > Applicable: Microsoft Teams - A value indicating whether to clear schedule group. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DateRangeEndDate - - > Applicable: Microsoft Teams - The end date of removing schedule record. - - String - - String - - - None - - - DateRangeStartDate - - > Applicable: Microsoft Teams - The start date of removing schedule record. - - String - - String - - - None - - - DesignatedActorId - - > Applicable: Microsoft Teams - The user ID of designated actor. - - String - - String - - - None - - - EntityType - - > Applicable: Microsoft Teams - The entity types. - - String[] - - String[] - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - PassThru - - Used to return an object that represents the item being modified. - - - SwitchParameter - - - False - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The Teams team ID where you want to remove schedule record. - - String - - String - - - None - - - TimeZone - - The Timezone parameter ensures that the shifts are displayed in the correct time zone based on your team's location. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Body - - The request body. - - IClearScheduleRequest - - IClearScheduleRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - ClearSchedulingGroup - - > Applicable: Microsoft Teams - A value indicating whether to clear schedule group. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DateRangeEndDate - - > Applicable: Microsoft Teams - The end date of removing schedule record. - - String - - String - - - None - - - DateRangeStartDate - - > Applicable: Microsoft Teams - The start date of removing schedule record. - - String - - String - - - None - - - DesignatedActorId - - > Applicable: Microsoft Teams - The user ID of designated actor. - - String - - String - - - None - - - EntityType - - > Applicable: Microsoft Teams - The entity types. - - String[] - - String[] - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - PassThru - - Used to return an object that represents the item being modified. - - SwitchParameter - - SwitchParameter - - - False - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - TeamId - - > Applicable: Microsoft Teams - The Teams team ID where you want to remove schedule record. - - String - - String - - - None - - - TimeZone - - The Timezone parameter ensures that the shifts are displayed in the correct time zone based on your team's location. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The parameters of start time, end time and designated actor ID are optional only when removing the schedule record of a linked team. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsShiftsScheduleRecord -TeamId "eddc3b94-21d5-4ef0-a76a-2e4d632e50be" -DateRangeStartDate "2021-09-30T00:00:00" -DateRangeEndDate "2021-10-01T00:00:00" -ClearSchedulingGroup:$false -EntityType "swapRequest", "openShiftRequest" -DesignatedActorId "683af6f2-4f72-4770-b8e1-4ec31836156ad" - - Removes the Shifts schedule record of swapRequest and openShiftRequest scenarios in the team with ID `eddc3b94-21d5-4ef0-a76a-2e4d632e50be` from 09/30/2021 to 10/01/2021. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsschedulerecord - - - - - - Remove-CsTeamsSurvivableBranchAppliance - Remove - CsTeamsSurvivableBranchAppliance - - Removes a Survivable Branch Appliance (SBA) from the tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Remove-CsTeamsSurvivableBranchAppliance - - Identity - - The Identity parameter is the unique identifier for the SBA. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is the unique identifier for the SBA. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssurvivablebranchappliance - - - - - - Remove-CsTeamsSurvivableBranchAppliancePolicy - Remove - CsTeamsSurvivableBranchAppliancePolicy - - Removes a Survivable Branch Appliance (SBA) policy from the tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Remove-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - Policy instance name. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Policy instance name. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamssurvivablebranchappliancepolicy - - - - - - Remove-CsTeamsTargetingPolicy - Remove - CsTeamsTargetingPolicy - - The CsTeamsTargetingPolicy cmdlets removes a previously created CsTeamsTargetingPolicy. - - - - Deletes a previously created TeamsTargetingPolicy. Any users with no explicitly assigned policies will then fall back to the default policy in the organization. - - - - Remove-CsTeamsTargetingPolicy - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentTagPolicy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the teams meeting policy to be removed. To remove the global policy, use this syntax: -Identity global. (Note that the global policy cannot actually be removed. Instead, all the policy properties will be reset to their default values.) To remove a custom policy, use this syntax: -Identity StudentTagPolicy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsMeetingPolicy -Identity StudentTagPolicy - - In the example shown above, the command will delete the student tag policy from the organization's list of policies and remove all assignments of this policy from users who have had the policy assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - Get-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Set-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - - - - Remove-CsTeamsTranslationRule - Remove - CsTeamsTranslationRule - - Cmdlet to remove an existing number manipulation rule (or list of rules). - - - - You can use this cmdlet to remove an existing number manipulation rule (or list of rules). The rule can be used, for example, in the settings of your SBC (Set-CsOnlinePSTNGateway) to convert a callee or caller number to a desired format before entering or leaving Microsoft Phone System. - - - - Remove-CsTeamsTranslationRule - - Identity - - Identifier of the rule. This parameter is required. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identifier of the rule. This parameter is required. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsTranslationRule -Identity AddPlus1 - - This example removes the "AddPlus1" translation rule. As the rule can be used in some places, integrity check is preformed to ensure that the rule is not in use. If the rule is in use an error thrown with specifying which SBC use this rule. - - - - -------------------------- Example 2 -------------------------- - Get-CsTeamsTranslationRule -Filter 'tst*' | Remove-CsTeamsTranslationRule - - This example removes all translation rules with Identifier starting with tst. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstranslationrule - - - New-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstranslationrule - - - Get-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstranslationrule - - - Set-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstranslationrule - - - Test-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamstranslationrule - - - - - - Remove-CsTeamsUnassignedNumberTreatment - Remove - CsTeamsUnassignedNumberTreatment - - Removes a treatment for how calls to an unassigned number range should be routed. - - - - This cmdlet removes a treatment for how calls to an unassigned number range should be routed. - - - - Remove-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment to remove. - - System.String - - System.String - - - None - - - - - - Identity - - The Id of the specific treatment to remove. - - System.String - - System.String - - - None - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTeamsUnassignedNumberTreatment -Identity MainAA - - This example removes the treatment MainAA. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - Remove-CsTeamsWorkLoadPolicy - Remove - CsTeamsWorkLoadPolicy - - This cmdlet deletes a Teams Workload Policy instance. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Remove-CsTeamsWorkLoadPolicy - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Microsoft Internal Use Only - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity of the Teams Workload Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Microsoft Internal Use Only - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTeamsWorkLoadPolicy -Identity "Test" - - Deletes a Teams Workload policy instance with the identity of "Test". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Set-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Remove-CsTeamTemplate - Remove - CsTeamTemplate - - This cmdlet deletes a specified Team Template from Microsoft Teams. - - - - This cmdlet deletes a specified Team Template from Microsoft Teams. The template can be identified by its OData ID or by using the Identity parameter. - - - - Remove-CsTeamTemplate - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - Remove-CsTeamTemplate - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - OdataId - - A composite URI of a template. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - OdataId - - A composite URI of a template. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject - - - - - - - - - ALIASES - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - INPUTOBJECT <IConfigApiBasedCmdletsIdentity>: Identity Parameter - - `[Bssid <String>]`: - - `[ChassisId <String>]`: - - `[CivicAddressId <String>]`: Civic address id. - - `[Country <String>]`: - - `[GroupId <String>]`: The ID of a group whose policy assignments will be returned. - - `[Id <String>]`: - - `[Identity <String>]`: - - `[Locale <String>]`: - - `[LocationId <String>]`: Location id. - - `[OdataId <String>]`: A composite URI of a template. - - `[OperationId <String>]`: The ID of a batch policy assignment operation. - - `[OrderId <String>]`: - - `[PackageName <String>]`: The name of a specific policy package - - `[PolicyType <String>]`: The policy type for which group policy assignments will be returned. - - `[Port <String>]`: - - `[PortInOrderId <String>]`: - - `[PublicTemplateLocale <String>]`: Language and country code for localization of publicly available templates. - - `[SubnetId <String>]`: - - `[TenantId <String>]`: - - `[UserId <String>]`: UserId. Supports Guid. Eventually UPN and SIP. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Remove-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/b24f8ba6-0949-452e-ad4b-a353f38ed8af/Tenant/en-US' - - Removes template with OData Id '/api/teamtemplates/v1.0/b24f8ba6-0949-452e-ad4b-a353f38ed8af/Tenant/en-US'. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where Name -like 'test' | ForEach-Object {Remove-CsTeamTemplate -OdataId $_.OdataId} - - Removes template that meets the following specifications: 1) Locale set to en-US. 2) Name contains 'test'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamtemplate - - - Get-CsTeamTemplateList - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist - - - Get-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplate - - - New-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamtemplate - - - Update-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamtemplate - - - Remove-CsTeamTemplate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamtemplate - - - - - - Remove-CsTenantDialPlan - Remove - CsTenantDialPlan - - Use the `Remove-CsTenantDialPlan` cmdlet to remove a tenant dial plan. - - - - The `Remove-CsTenantDialPlan` cmdlet removes an existing tenant dial plan (also known as a location profile). Tenant dial plans provide required information to allow Enterprise Voice users to make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. A tenant dial plan determines such things as which normalization rules are applied. - Removing a tenant dial plan also removes any associated normalization rules. If no tenant dial plan is assigned to an organization, the Global dial plan is used. - - - - Remove-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the tenant dial plan to remove. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm parameter prompts you for confirmation before the command is executed. - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm parameter prompts you for confirmation before the command is executed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is the unique identifier of the tenant dial plan to remove. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsTenantDialPlan -Identity Vt1TenantDialPlan2 - - This example removes the Vt1TenantDialPlan2. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Set-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - - - - Remove-CsTenantNetworkRegion - Remove - CsTenantNetworkRegion - - Use the `Remove-CsTenantNetworkRegion` cmdlet to remove a tenant network region. - - - - The `Remove-CsTenantNetworkRegion` cmdlet removes an existing tenant network region. - A network region contains a collection of network sites. - - - - Remove-CsTenantNetworkRegion - - Identity - - Unique identifier for the network region to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network region to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkRegion -Identity "RedmondRegion" - - The command shown in Example 1 removes 'RedmondRegion'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - Set-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - - - - Remove-CsTenantNetworkSite - Remove - CsTenantNetworkSite - - Use the `Remove-CsTenantNetworkSite` cmdlet to remove a tenant network site. - - - - The `Remove-CsTenantNetworkSite` cmdlet removes an existing tenant network site. - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. - - - - Remove-CsTenantNetworkSite - - Identity - - Unique identifier for the network site to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network site to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkSite -Identity "site1" - - The command shown in Example 1 removes 'site1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - New-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - Set-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - - - - Remove-CsTenantNetworkSubnet - Remove - CsTenantNetworkSubnet - - Use the `Remove-CsTenantNetworkSubnet` cmdlet to remove a tenant network subnet. - - - - The `Remove-CsTenantNetworkSubnet` cmdlet removes an existing tenant network subnet. - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. - - - - Remove-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be removed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the network subnet to be removed. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantNetworkSubnet -Identity "192.168.0.1" - - The command shown in Example 1 removes '192.168.0.1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - Set-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - - - - Remove-CsTenantTrustedIPAddress - Remove - CsTenantTrustedIPAddress - - Use the `Remove-CsTenantTrustedIPAddress` cmdlet to remove a tenant trusted IP address. - - - - The `Remove-CsTenantTrustedIPAddress` cmdlet removes an existing tenant trusted IP address. - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - - - - Remove-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the trusted IP address to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP address are being removed. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the trusted IP address to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose trusted IP address are being removed. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Remove-CsTenantTrustedIPAddress -Identity "192.168.0.1" - - The command shown in Example 1 removes '192.168.0.1'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenanttrustedipaddress - - - - - - Remove-CsUserCallingDelegate - Remove - CsUserCallingDelegate - - This cmdlet will remove a delegate for calling in Microsoft Teams. - - - - This cmdlet will remove a delegate for the specified user. - - - - Remove-CsUserCallingDelegate - - Delegate - - The Identity of the delegate to remove. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to remove a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - - - - Delegate - - The Identity of the delegate to remove. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to remove a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. - The specified user need to have the Microsoft Phone System license assigned. - You can see the delegate of a user by using the Get-CsUserCallingSettings cmdlet. - - - - - -------------------------- Example 1 -------------------------- - Remove-CsUserCallingDelegate -Identity user1@contoso.com -Delegate user2@contoso.com - - This example shows removing the delegate user2@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csusercallingdelegate - - - Get-CsUserCallingSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csusercallingsettings - - - New-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csusercallingdelegate - - - Set-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingdelegate - - - - - - Remove-CsUserLicenseGracePeriod - Remove - CsUserLicenseGracePeriod - - The `CsUserLicenseGracePeriod` cmdlet expedites the delicensing operation for the assigned plan(s) of a user/resource account by removing the grace period, permanently deleting the assigned plan(s). Note that this cmdlet is to be used only by tenants with license resiliency enabled. (License resiliency is currently under private preview and not available for everyone.) - - - - The command removes the grace period of the assigned plan(s) against the specified user(s)/resource account(s), permanently deleting the plan(s). Permanently deletes all/specified plans belonging to the user, which has a grace period assosciated with it. Assigned plans with no subsequent grace period will see no change. - If you want to verify the grace period of any assigned plan against a user, you can return that information by using this command: - `Get-CsOnlineUser -Identity bf19b7db-6960-41e5-a139-2aa373474354` - - - - Remove-CsUserLicenseGracePeriod - - Identity - - Specifies the Identity (GUID) of the user account whose assigned plan grace period needs to be removed, permanently deleting the subsequent plan. - - String - - String - - - None - - - Action - - Used to specify which action should be taken. - - String - - String - - - None - - - Body - - Specifies the body of the request. - - IUserDelicensingAccelerationPatch - - IUserDelicensingAccelerationPatch - - - None - - - Capability - - Denotes the plan(s) assigned to the specified user, which are to be permanently deleted if they are currently serving their grace period. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Returns the results of the command. By default, this cmdlet does not generate any output. - - - SwitchParameter - - - False - - - - - - Action - - Used to specify which action should be taken. - - String - - String - - - None - - - Body - - Specifies the body of the request. - - IUserDelicensingAccelerationPatch - - IUserDelicensingAccelerationPatch - - - None - - - Capability - - Denotes the plan(s) assigned to the specified user, which are to be permanently deleted if they are currently serving their grace period. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specifies the Identity (GUID) of the user account whose assigned plan grace period needs to be removed, permanently deleting the subsequent plan. - - String - - String - - - None - - - InputObject - - The Identity parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - PassThru - - Returns the results of the command. By default, this cmdlet does not generate any output. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Remove-CsUserLicenseGracePeriod -Identity bf19b7db-6960-41e5-a139-2aa373474354 - - In Example 1, the command removes the grace period of all assigned plan(s) against the specified user ID, marking the subsequent assigned plan(s) as deleted. Assigned plans with no subsequent grace period will see no change. - - - - -------------------------- Example 2 -------------------------- - Remove-CsUserLicenseGracePeriod -Identity bf19b7db-6960-41e5-a139-2aa373474354 -Capability 'MCOEV,MCOMEETADD' - - In Example 2, the capability specified refers to plans assigned to the user(s) under AssignedPlans. The command removes the grace period of the specified assigned plans, marking the subsequent plan(s) as deleted. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/skype/remove-csuserlicensegraceperiod - - - Get-CsOnlineUser - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineuser - - - - - - Remove-CsVideoInteropServiceProvider - Remove - CsVideoInteropServiceProvider - - Use the Remove-CsVideoInteropServiceProvider to remove all provider information about a provider that your organization no longer uses. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - The only input is Identity - the provider you wish to remove. - - - - Remove-CsVideoInteropServiceProvider - - Identity - - Specify the VideoInteropServiceProvider to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - - - - Identity - - Specify the VideoInteropServiceProvider to be removed. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - - - - Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csvideointeropserviceprovider - - - - - - Set-CsAgent - Set - CsAgent - - Use the Set-CsAgent cmdlet to change an AI Agent. - - - - Use the Set-CsAgent cmdlet to modify an existing AI Agent. The cmdlet follows a retrieve-modify-set pattern: retrieve the agent with `Get-CsAgent`, change properties on the returned object, and then pass the modified object back through the `-Instance` parameter. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the AI Agent private preview for this feature. General Availability for this functionality has not been determined at this time. - - - - Set-CsAgent - - Instance - - The instance of the AI Agent to change. - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - - None - - - - - - Instance - - The instance of the AI Agent to change. - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AIAgentConfiguration - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $AIAgent = Get-CsAgent -Id 7d9997d0-1013-4d9c-83eb-caa6ec05f1b3 -$AIAgent.Name = "NewName" -Set-CsAgent -Instance $AIAgent - - This example sets a new name value of an AI Agent with the Id `7d9997d0-1013-4d9c-83eb-caa6ec05f1b3`. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsAgent - - - New-CsAgent - - - - Get-CsAgent - - - - Remove-CsAgent - - - - New-CsOnlineApplicationInstanceAssociation - - - - - - - Set-CsApplicationAccessPolicy - Set - CsApplicationAccessPolicy - - Modifies an existing application access policy. - - - - This cmdlet modifies an existing application access policy. - - - - Set-CsApplicationAccessPolicy - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free format text. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. - - XdsIdentity - - XdsIdentity - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - ----------------- Add new app ID to the policy ----------------- - PS C:\> Set-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds @{Add="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above adds a new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the per-user application access policy ASimplePolicy. - - - - ---------------- Remove app IDs from the policy ---------------- - PS C:\> Set-CsApplicationAccessPolicy -Identity "ASimplePolicy" -AppIds @{Remove="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above removes the app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" from the per-user application access policy ASimplePolicy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csapplicationaccesspolicy - - - New-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Grant-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Get-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - Remove-CsApplicationAccessPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csapplicationaccesspolicy - - - - - - Set-CsApplicationMeetingConfiguration - Set - CsApplicationMeetingConfiguration - - Modifies an existing application meeting configuration for the tenant. - - - - This cmdlet modifies an existing application meeting configuration for the tenant. - - - - Set-CsApplicationMeetingConfiguration - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Set-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - AllowRemoveParticipantAppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - Force - - > Applicable: Teams - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - WhatIf - - > Applicable: Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowRemoveParticipantAppIds - - A list of application (client) IDs. For details of application (client) ID, refer to: Get tenant and app ID values for signing in (https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in). - - PSListModifier - - PSListModifier - - - None - - - Confirm - - > Applicable: Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Teams - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the Set-CsApplicationMeetingConfiguration cmdlet. However, you can use the following syntax to retrieve the global settings: -Identity global. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - WhatIf - - > Applicable: Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - None. The `Set-CsApplicationMeetingConfiguration` cmdlet does not accept pipelined input. - - - - - - - Output types - - - The `Set-CsApplicationMeetingConfiguration` cmdlet does not return any objects or values. - - - - - - - - - - - Add new app ID to the configuration to allow remove participant for the tenant - PS C:\> Set-CsApplicationMeetingConfiguration -AllowRemoveParticipantAppIds @{Add="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above adds a new app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" to the application meeting configuration settings for the tenant to allow it to remove participant. - - - - Remove app IDs from the configuration to allow remove participant for the tenant - PS C:\> Set-CsApplicationMeetingConfiguration -AllowRemoveParticipantAppIds @{Remove="5817674c-81d9-4adb-bfb2-8f6a442e4622"} - - The command shown above removes the app ID "5817674c-81d9-4adb-bfb2-8f6a442e4622" from the application meeting configuration settings for the tenant to disallow it to remove participant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-CsApplicationMeetingConfiguration - - - Get-CsApplicationMeetingConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-csapplicationmeetingconfiguration - - - - - - Set-CsAutoAttendant - Set - CsAutoAttendant - - Use the Set-CsAutoAttendant cmdlet to modify the properties of an existing Auto Attendant (AA). - - - - The Set-CsAutoAttendant cmdlet lets you modify the properties of an auto attendant. For example, you can change the operator, the greeting, or the menu prompts. - - - - Set-CsAutoAttendant - - Instance - - The Instance parameter is the object reference to the AA to be modified. - You can retrieve an object reference to an existing AA by using the Get-CsAutoAttendant cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Instance - - The Instance parameter is the object reference to the AA to be modified. - You can retrieve an object reference to an existing AA by using the Get-CsAutoAttendant cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant - - - The Set-CsAutoAttendant cmdlet accepts a `Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant` object as the Instance parameter. - - - - - - - Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant - - - The modified instance of the `Microsoft.Rtc.Management.Hosted.OAA.Models.AutoAttendant` object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $autoAttendant = Get-CsAutoAttendant -Identity "fa9081d6-b4f3-5c96-baec-0b00077709e5" - -$christmasGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Our offices are closed for Christmas from December 24 to December 26. Please call back later." -$christmasMenuOption = New-CsAutoAttendantMenuOption -Action DisconnectCall -DtmfResponse Automatic -$christmasMenu = New-CsAutoAttendantMenu -Name "Christmas Menu" -MenuOptions @($christmasMenuOption) -$christmasCallFlow = New-CsAutoAttendantCallFlow -Name "Christmas" -Greetings @($christmasGreetingPrompt) -Menu $christmasMenu - -$dtr = New-CsOnlineDateTimeRange -Start "24/12/2017" -End "26/12/2017" -$christmasSchedule = New-CsOnlineSchedule -Name "Christmas" -FixedSchedule -DateTimeRanges @($dtr) - -$christmasCallHandlingAssociation = New-CsAutoAttendantCallHandlingAssociation -Type Holiday -ScheduleId $christmasSchedule.Id -CallFlowId $christmasCallFlow.Id - -$autoAttendant.CallFlows += @($christmasCallFlow) -$autoAttendant.CallHandlingAssociations += @($christmasCallHandlingAssociation) - -Set-CsAutoAttendant -Instance $autoAttendant - - This example adds a Christmas holiday to an AA that has an Identity of fa9081d6-b4f3-5c96-baec-0b00077709e5. - - - - -------------------------- Example 2 -------------------------- - $autoAttendant = Get-CsAutoAttendant -Identity "fa9081d6-b4f3-5c96-baec-0b00077709e5" - -$autoAttendant.CallFlows - -# Id : e68dfc2f-587b-42ee-98c7-b9c9ebd46fd1 -# Name : After hours -# Greetings : -# Menu : After Hours Menu - -# Id : 8ab460f0-770c-4d30-a2ff-a6469718844f -# Name : Christmas CallFlow -# Greetings : -# Menu : Christmas Menu - -$autoAttendant.CallFlows[1].Greetings - -# ActiveType : TextToSpeech -# TextToSpeechPrompt : We are closed for Christmas. Please call back later. -# AudioFilePrompt : - -$christmasGreetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Our offices are closed for Christmas from December 24 to December 26. Please call back later." -$autoAttendant.CallFlows[1].Greetings = @($christmasGreetingPrompt) - -Set-CsAutoAttendant -Instance $autoAttendant - - This example modifies the Christmas holiday greeting for the AA that has an Identity of fa9081d6-b4f3-5c96-baec-0b00077709e5. - - - - -------------------------- Example 3 -------------------------- - $autoAttendant = Get-CsAutoAttendant -Identity "fa9081d6-b4f3-5c96-baec-0b00077709e5" -$autoAttendant.CallHandlingAssociations - -# Type : Holiday -# ScheduleId : 578745b2-1f94-4a38-844c-6bf6996463ee -# CallFlowId : a661e694-e2df-4aaa-a183-67bf819c3cac -# Enabled : True - -# Type : AfterHours -# ScheduleId : c2f160ca-119d-55d8-818c-def2bcb85515 -# CallFlowId : e7dd255b-ee20-57f0-8a2b-fc403321e284 -# Enabled : True - -$autoAttendant.CallHandlingAssociations = $autoAttendant.CallHandlingAssociations | where-object {$_.ScheduleId -ne "578745b2-1f94-4a38-844c-6bf6996463ee"} - -$autoAttendant.CallFlows - -# Id : e68dfc2f-587b-42ee-98c7-b9c9ebd46fd1 -# Name : After hours -# Greetings : -# Menu : After Hours Menu - -# Id : 8ab460f0-770c-4d30-a2ff-a6469718844f -# Name : Christmas CallFlow -# Greetings : -# Menu : Christmas Menu - -$autoAttendant.CallFlows = $autoAttendant.CallFlows | where-object {$_.Id -ne "8ab460f0-770c-4d30-a2ff-a6469718844f"} - -Set-CsAutoAttendant -Instance $autoAttendant - - This example modifies an existing AA, removing the Christmas holiday call handling. We removed the call handling association for Christmas holiday, along with the related call flow. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Get-CsAutoAttendantStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - Update-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/update-csautoattendant - - - - - - Set-CsAutoRecordingTemplate - Set - CsAutoRecordingTemplate - - Use the Set-CsAutoRecordingTemplate cmdlet to change an Auto Recording template - - - - > [!CAUTION] > The functionality provided by this cmdlet will only work for customers that are participating in the Voice Applications private preview for this feature. General Availability for this functionality has not been determined at this time. - Use the Set-CsAutoRecordingTemplate cmdlet to change an Auto Recording template. - - - - Set-CsAutoRecordingTemplate - - Instance - - The instance of the auto recording template to change. - - System.String - - System.String - - - None - - - - - - Instance - - The instance of the auto recording template to change. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $AutoRecording = Get-CsAutoRecordingTemplate -Id 66f0dc32-d344-4bb1-b524-027d4635515c -$AutoRecording.EnableTranscript = $true -Set-CsAutoRecordingTemplate -Instance $AutoRecording - - This example sets the EnableTranscript value in the Auto Recording Template with the Id `66f0dc32-d344-4bb1-b524-027d4635515c` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsAutoRecordingTemplate - - - New-CsAutoRecordingTemplate - - - - Get-CsAutoRecordingTemplate - - - - Remove-CsAutoRecordingTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Set-CsCallingLineIdentity - Set - CsCallingLineIdentity - - Use the `Set-CsCallingLineIdentity` cmdlet to modify a Caller ID policy in your organization. - - - - You can either change or block the Caller ID (also called a Calling Line ID) for a user. By default, the Microsoft Teams or Skype for Business Online user's phone number can be seen when that user makes a call to a PSTN phone, or when a call comes in. You can modify a Caller ID policy to provide an alternate displayed number, or to block any number from being displayed. - Note: - Identity must be unique. - - If CallerIdSubstitute is given as "Resource", then ResourceAccount cannot be empty. - - - - Set-CsCallingLineIdentity - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a Teams user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The possible values are Anonymous, LineUri and Resource. - - CallingIDSubstituteType - - CallingIDSubstituteType - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - BlockIncomingPstnCallerID - - > Applicable: Microsoft Teams - The BlockIncomingPstnCallerID switch determines whether to block the incoming Caller ID. The default value is false. - The BlockIncomingPstnCallerID switch is specific to incoming calls from a PSTN caller to a user. If this is set to True and if this policy is assigned to a Teams user, then Caller ID for incoming calls is suppressed/anonymous. - - Boolean - - Boolean - - - None - - - CallingIDSubstitute - - > Applicable: Microsoft Teams - The CallingIDSubstitute parameter lets you specify an alternate Caller ID. The possible values are Anonymous, LineUri and Resource. - - CallingIDSubstituteType - - CallingIDSubstituteType - - - None - - - CompanyName - - > Applicable: Microsoft Teams - This parameter sets the Calling party name (typically referred to as CNAM) on the outgoing PSTN call. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter briefly describes the Caller ID policy. - - String - - String - - - None - - - EnableUserOverride - - > Applicable: Microsoft Teams - The EnableUserOverride parameter gives Microsoft Teams users the option under Settings and Calls to hide their phone number when making outgoing calls. The CallerID will be Anonymous. - If CallingIDSubstitute is set to Anonymous, the EnableUserOverride parameter has no effect, and the caller ID is always set to Anonymous. - EnableUserOverride has precedence over other settings in the policy unless substitution is set to Anonymous. For example, assume the policy instance has substitution using a resource account and EnableUserOverride is set and enabled by the user. In this case, the outbound caller ID will be blocked and Anonymous will be used. - - Boolean - - Boolean - - - False - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter identifies the Caller ID policy. - - String - - String - - - None - - - ResourceAccount - - > Applicable: Microsoft Teams - This parameter specifies the ObjectId of a resource account/online application instance used for Teams Auto Attendant or Call Queue. The outgoing PSTN call will use the phone number defined on the resource account as caller id. For more information about resource accounts please see https://learn.microsoft.com/microsoftteams/manage-resource-accounts. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsCallingLineIdentity -Identity "MyBlockingPolicy" -BlockIncomingPstnCallerID $true - - This example blocks the incoming caller ID. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false -BlockIncomingPstnCallerID $true - - This example modifies the new Anonymous Caller ID policy to block the incoming Caller ID. - - - - -------------------------- Example 3 -------------------------- - $ObjId = (Get-CsOnlineApplicationInstance -Identity dkcq@contoso.com).ObjectId -Set-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -ResourceAccount $ObjId -CompanyName "Contoso" - - This example modifies the Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso - - - - -------------------------- Example 4 -------------------------- - Set-CsCallingLineIdentity -Identity AllowAnonymousForUsers -EnableUserOverride $true - - This example modifies the Caller ID policy and allows Teams users to make anonymous calls. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallinglineidentity - - - Get-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/get-cscallinglineidentity - - - Grant-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cscallinglineidentity - - - New-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscallinglineidentity - - - Remove-CsCallingLineIdentity - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscallinglineidentity - - - - - - Set-CsCallQueue - Set - CsCallQueue - - Updates a Call Queue in your Skype for Business Online or Teams organization. - - - - Set-CsCallQueue cmdlet provides a way for you to modify the properties of an existing Call Queue; for example, you can change the name for the Call Queue, the distribution lists associated with the Call Queue, or the welcome audio file. - > [!IMPORTANT] > The following configuration parameters are currently only available in PowerShell and do not appear in Teams admin center: > > Authorized users > - -HideAuthorizedUsers > > Call priority > - -OverflowActionCallPriority > - -TimeoutActionCallPriority > - -NoAgentActionCallPriority > > Compliance recording for Call queues > - -ComplianceRecordingForCallQueueTemplateId > - -TextAnnouncementForCR > - -CustomAudioFileAnnouncementForCR > - -TextAnnouncementForCRFailure > - -CustomAudioFileAnnouncementForCRFailure > > Redirect Prompts > - -OverflowRedirectPersonTextToSpeechPrompt > - -OverflowRedirectPersonAudioFilePrompt > - -OverflowRedirectVoicemailTextToSpeechPrompt > - -OverflowRedirectVoicemailAudioFilePrompt > - -TimeoutRedirectPersonTextToSpeechPrompt > - -TimeoutRedirectPersonAudioFilePrompt > - -TimeoutRedirectVoicemailTextToSpeechPrompt > - -TimeoutRedirectVoicemailAudioFilePrompt > - -NoAgentRedirectPersonTextToSpeechPrompt > - -NoAgentRedirectPersonAudioFilePrompt > - -NoAgentRedirectVoicemailTextToSpeechPrompt > - -NoAgentRedirectVoicemailAudioFilePrompt > > Shared call queue history > - -SharedCallQueueHistoryTemplateId > -> The following configuration parameters will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. > > Shared call queue history > - -SharedCallQueueHistoryTemplateId > - -AutoRecordingTemplateId > > Authorized users can't edit call queues with these features enabled: > - The call exception routing when the destination directly references another Auto attendant or Call queue > - See Nesting Auto attendants and Call queues (/microsoftteams/plan-auto-attendant-call-queue#nested-auto-attendants-and-call-queues)> - Call priorities - - - - Set-CsCallQueue - - AgentAlertTime - - The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. The AgentAlertTime can be set to any integer value between 15 and 180 seconds (3 minutes), inclusive. - - Int16 - - Int16 - - - 30 - - - AllowOptOut - - The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - - Boolean - - Boolean - - - True - - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - Voice applications private preview customers only. Saving a call queue configuration through Teams admin center will *remove* this setting. The AutoRecordingTemplateId parameter indicates the Auto Recording template to apply to the call queue. - - String - - String - - - None - - - CallbackEmailNotificationTarget - - The CallbackEmailNotificationTarget parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security) that will receive notification if a callback times out of the call queue or can't be completed for some other reason. This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferAudioFilePromptResourceId - - The CallbackOfferAudioFilePromptResourceId parameter indicates the unique identifier for the Audio file prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferTextToSpeechPrompt`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferTextToSpeechPrompt - - The CallbackOfferTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferAudioFilePromptResourceId`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallbackRequestDtmf - - The DTMF touch-tone key the caller will be told to press to select callback. The CallbackRequestDtmf must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallToAgentRatioThresholdBeforeOfferingCallback - - The ratio of calls to agents that must be in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Minimum value of one (1). Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - ChannelId - - Id of the channel to connect a call queue to. - - String - - String - - - None - - - ChannelUserObjectId - - The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). This is the GUID of one of the owners of the team that the channel belongs to. - - Guid - - Guid - - - None - - - ComplianceRecordingForCallQueueTemplateId - - The ComplianceRecordingForCallQueueTemplateId parameter indicates a list of up to 2 Compliance Recording for Call Queue templates to apply to the call queue. - - List - - List - - - None - - - ConferenceMode - - The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for this Call queue. Conference mode significantly reduces the amount of time it takes for a caller to be connected to an agent, after the agent accepts the call. The following bullet points detail the difference between both modes: - - Conference Mode Disabled: CQ call is presented to agent. Agent answers and media streams are setup. Based on geographic location of the CQ call and agent, there may be a slight delay in setting up the media streams which may result in some dead air and the first part of the conversation being cut off. - - Conference Mode Enabled: CQ call is put into conference. Agent answers and is brought into conference. Media streams are already setup when agent is brought into conference thus no dead air, and first bit of conversation will not be cut off. - - Boolean - - Boolean - - - False - - - CustomAudioFileAnnouncementForCR - - The CustomAudioFileAnnouncementForCR parameter indicates the unique identifier for the Audio file prompt which is played to callers when compliance recording for call queues is enabled. - - Guid - - Guid - - - None - - - CustomAudioFileAnnouncementForCRFailure - - The CustomAudioFileAnnouncementForCRFailure parameter indicates the unique identifier for the Audio file prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - Guid - - Guid - - - None - - - DistributionLists - - The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per Call Queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the Call Queue. - - List - - List - - - None - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - The EnableNoAgentSharedVoicemailSystemPromptSuppression parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableNoAgentSharedVoicemailTranscription - - The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on no agents. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - The EnableOverflowSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailTranscription - - The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - The EnableTimeoutSharedVoicemailSystemPromptSuppression parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailTranscription - - The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. This parameter is only applicable when TimeoutAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - HideAuthorizedUsers - - This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - Identity - - PARAMVALUE: Guid - - Object - - Object - - - None - - - IsCallbackEnabled - - The IsCallbackEnabled parameter is used to turn on/off callback. - - Boolean - - Boolean - - - None - - - LanguageId - - The LanguageId parameter indicates the language that is used to play shared voicemail prompts. This parameter becomes a required parameter If either OverflowAction or TimeoutAction is set to SharedVoicemail. - You can query the supported languages using the Get-CsAutoAttendantSupportedLanguage cmdlet. - - String - - String - - - None - - - LineUri - - This parameter is reserved for Microsoft internal use only. - - String - - String - - - None - - - MusicOnHoldAudioFileId - - The MusicOnHoldFileContent parameter represents music to play when callers are placed on hold. This is the unique identifier of the audio file. This parameter is required if the UseDefaultMusicOnHold parameter is not specified. - - Guid - - Guid - - - None - - - Name - - The Name parameter specifies a unique name for the Call Queue. - - String - - String - - - None - - - NoAgentAction - - The NoAgentAction parameter defines the action to take if the no agents condition is reached. The NoAgentAction property must be set to one of the following values: Queue, Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Queue. - PARAMVALUE: Queue | Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - NoAgentActionCallPriority - - If the NoAgentAction is set to Forward, and the NoAgentActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - NoAgentActionTarget - - The NoAgentActionTarget represents the target of the no agent action. If the NoAgentAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the NoAgentAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this field is optional. - - String - - String - - - None - - - NoAgentApplyTo - - The NoAgentApplyTo parameter defines if the NoAgentAction applies to calls already in queue and new calls arriving to the queue, or only new calls that arrive once the No Agents condition occurs. The default value is AllCalls. - PARAMVALUE: AllCalls | NewCalls - - Object - - Object - - - Disconnect - - - NoAgentDisconnectAudioFilePrompt - - The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to no agents. - - Guid - - Guid - - - None - - - NoAgentDisconnectTextToSpeechPrompt - - The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to no agents. - - String - - String - - - None - - - NoAgentRedirectPersonAudioFilePrompt - - The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPersonTextToSpeechPrompt - - The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - String - - String - - - None - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoiceAppAudioFilePrompt - - The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - The NoAgentRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoicemailAudioFilePrompt - - The NoAgentRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - Guid - - Guid - - - None - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - String - - String - - - None - - - NoAgentSharedVoicemailAudioFilePrompt - - The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - NoAgentSharedVoicemailTextToSpeechPrompt - - The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - NumberOfCallsInQueueBeforeOfferingCallback - - The number of calls in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - OboResourceAccountIds - - The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. The agents in the Call Queue will be able to make outbound calls using the phone number on the resource accounts. This is a list of resource account GUIDs. - - List - - List - - - None - - - OverflowAction - - The OverflowAction parameter designates the action to take if the overflow threshold is reached. The OverflowAction property must be set to one of the following values: DisconnectWithBusy, Forward, Voicemail, and SharedVoicemail. The default value is DisconnectWithBusy. - PARAMVALUE: DisconnectWithBusy | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - DisconnectWithBusy - - - OverflowActionCallPriority - - If the OverflowAction is set to Forward, and the OverflowActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - OverflowActionTarget - - The OverflowActionTarget parameter represents the target of the overflow action. If the OverFlowAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the OverflowAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this parameter is optional. - - String - - String - - - None - - - OverflowDisconnectAudioFilePrompt - - The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to overflow. - - Guid - - Guid - - - None - - - OverflowDisconnectTextToSpeechPrompt - - The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to overflow. - - String - - String - - - None - - - OverflowRedirectPersonAudioFilePrompt - - The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPersonTextToSpeechPrompt - - The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - String - - String - - - None - - - OverflowRedirectPhoneNumberAudioFilePrompt - - The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - String - - String - - - None - - - OverflowRedirectVoiceAppAudioFilePrompt - - The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - The OverflowRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to overflow. - - String - - String - - - None - - - OverflowRedirectVoicemailAudioFilePrompt - - The OverflowRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoicemailTextToSpeechPrompt - - The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - String - - String - - - None - - - OverflowSharedVoicemailAudioFilePrompt - - The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - OverflowSharedVoicemailTextToSpeechPrompt - - The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - OverflowThreshold - - The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. The OverflowThreshold can be any integer value between 0 and 200, inclusive. A value of 0 causes calls not to reach agents and the overflow action to be taken immediately. - - Int16 - - Int16 - - - 50 - - - PresenceBasedRouting - - The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. When set to False, calls will be routed to agents who have opted in to receive calls, regardless of their presence state. When set to True, opted-in agents will receive calls only when their presence state is Available. - - Boolean - - Boolean - - - False - - - RoutingMethod - - The RoutingMethod defines how agents will be called in a Call Queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel. If routing method is set to RoundRobin, the agents will be called using Round Robin strategy so that all agents share the call-load equally. If routing method is set to LongestIdle, the agents will be called based on their idle time, i.e., the agent that has been idle for the longest period will be called. - PARAMVALUE: Attendant | Serial | RoundRobin | LongestIdle - - Object - - Object - - - Attendant - - - ServiceLevelThresholdResponseTimeInSecond - - The target number of seconds calls should be answered in. This number is used to calculate the call queue service level percentage. - A value of `$null` indicates that a service level percentage will not be calculated for this call queue. - - Int16 - - Int16 - - - None - - - SharedCallQueueHistoryTemplateId - - The SharedCallQueueHistoryTemplateId parameter indicates the Shared Call Queue History template to apply to the call queue. - > [!NOTE] > `-ConferenceMode` must be set to $true > > Shared call queue history is not availble when using a Teams channel for queue membership > - `-ChannelId` and `-ChannelUserObjectId` are set. - - String - - String - - - None - - - ShiftsSchedulingGroupId - - Id of the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShiftsTeamId - - Id of the Team containing the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShouldOverwriteCallableChannelProperty - - A Teams Channel can only be linked to one Call Queue at a time. To force reassignment of the Teams Channel to a new Call Queue, set this to $true. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - TextAnnouncementForCR - - The TextAnnouncementForCR parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers when compliance recording for call queues is enabled. - - String - - String - - - None - - - TextAnnouncementForCRFailure - - The TextAnnouncementForCRFailure parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - String - - String - - - None - - - TimeoutAction - - The TimeoutAction parameter defines the action to take if the timeout threshold is reached. The TimeoutAction property must be set to one of the following values: Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Disconnect. - PARAMVALUE: Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - TimeoutActionCallPriority - - If the TimeoutAction is set to Forward, and the TimeoutActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - TimeoutActionTarget - - The TimeoutActionTarget represents the target of the timeout action. If the TimeoutAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the TimeoutAction is set to SharedVoicemail, this parameter must be set to an Office 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - TimeoutDisconnectAudioFilePrompt - - The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to timeout. - - Guid - - Guid - - - None - - - TimeoutDisconnectTextToSpeechPrompt - - The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to timeout. - - String - - String - - - None - - - TimeoutRedirectPersonAudioFilePrompt - - The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPersonTextToSpeechPrompt - - The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - String - - String - - - None - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoiceAppAudioFilePrompt - - The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - The TimeoutRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoicemailAudioFilePrompt - - The TimeoutRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - String - - String - - - None - - - TimeoutSharedVoicemailAudioFilePrompt - - The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - TimeoutSharedVoicemailTextToSpeechPrompt - - The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - TimeoutThreshold - - The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. At that point, the system will take the action specified by the TimeoutAction parameter. The TimeoutThreshold can be any integer value between 0 and 2700 seconds (inclusive), and is rounded to the nearest 15th interval. For example, if set to 47 seconds, then it is rounded down to 45. If set to 0, welcome music is played, and then the timeout action will be taken. - - Int16 - - Int16 - - - 1200 - - - UseDefaultMusicOnHold - - The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldAudioFileId. - - Boolean - - Boolean - - - None - - - Users - - The User parameter lets you add agents to the Call Queue. This parameter expects a list of user unique identifiers (GUID). - - List - - List - - - None - - - WaitTimeBeforeOfferingCallbackInSecond - - The number of seconds a call must wait before becoming eligible for callback. This condition applies to calls at the front of the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - WelcomeMusicAudioFileId - - The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. This is the unique identifier of the audio file. - - Guid - - Guid - - - None - - - WelcomeTextToSpeechPrompt - - This parameter indicates which Text-to-Speech (TTS) prompt is played when callers are connected to the Call Queue. - - String - - String - - - None - - - - - - AgentAlertTime - - The AgentAlertTime parameter represents the time (in seconds) that a call can remain unanswered before it is automatically routed to the next agent. The AgentAlertTime can be set to any integer value between 15 and 180 seconds (3 minutes), inclusive. - - Int16 - - Int16 - - - 30 - - - AllowOptOut - - The AllowOptOut parameter indicates whether or not agents can opt in or opt out from taking calls from a Call Queue. - - Boolean - - Boolean - - - True - - - AuthorizedUsers - - This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - AutoRecordingTemplateId - - Voice applications private preview customers only. Saving a call queue configuration through Teams admin center will *remove* this setting. The AutoRecordingTemplateId parameter indicates the Auto Recording template to apply to the call queue. - - String - - String - - - None - - - CallbackEmailNotificationTarget - - The CallbackEmailNotificationTarget parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security) that will receive notification if a callback times out of the call queue or can't be completed for some other reason. This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferAudioFilePromptResourceId - - The CallbackOfferAudioFilePromptResourceId parameter indicates the unique identifier for the Audio file prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferTextToSpeechPrompt`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - Guid - - Guid - - - None - - - CallbackOfferTextToSpeechPrompt - - The CallbackOfferTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to calls that are eligible for callback. This message should tell callers which DTMF touch-tone key (CallbackRequestDtmf) to press to select callback. This parameter, or `-CallbackOfferAudioFilePromptResourceId`, becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallbackRequestDtmf - - The DTMF touch-tone key the caller will be told to press to select callback. The CallbackRequestDtmf must be set to one of the following values: - - Tone0 to Tone9 - Corresponds to DTMF tones from 0 to 9. - - ToneStar - Corresponds to DTMF tone *. - - TonePound - Corresponds to DTMF tone #. - - This parameter becomes a required parameter when IsCallbackEnabled is set to `True`. - - String - - String - - - None - - - CallToAgentRatioThresholdBeforeOfferingCallback - - The ratio of calls to agents that must be in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Minimum value of one (1). Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - ChannelId - - Id of the channel to connect a call queue to. - - String - - String - - - None - - - ChannelUserObjectId - - The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). This is the GUID of one of the owners of the team that the channel belongs to. - - Guid - - Guid - - - None - - - ComplianceRecordingForCallQueueTemplateId - - The ComplianceRecordingForCallQueueTemplateId parameter indicates a list of up to 2 Compliance Recording for Call Queue templates to apply to the call queue. - - List - - List - - - None - - - ConferenceMode - - The ConferenceMode parameter indicates whether or not Conference mode will be applied on calls for this Call queue. Conference mode significantly reduces the amount of time it takes for a caller to be connected to an agent, after the agent accepts the call. The following bullet points detail the difference between both modes: - - Conference Mode Disabled: CQ call is presented to agent. Agent answers and media streams are setup. Based on geographic location of the CQ call and agent, there may be a slight delay in setting up the media streams which may result in some dead air and the first part of the conversation being cut off. - - Conference Mode Enabled: CQ call is put into conference. Agent answers and is brought into conference. Media streams are already setup when agent is brought into conference thus no dead air, and first bit of conversation will not be cut off. - - Boolean - - Boolean - - - False - - - CustomAudioFileAnnouncementForCR - - The CustomAudioFileAnnouncementForCR parameter indicates the unique identifier for the Audio file prompt which is played to callers when compliance recording for call queues is enabled. - - Guid - - Guid - - - None - - - CustomAudioFileAnnouncementForCRFailure - - The CustomAudioFileAnnouncementForCRFailure parameter indicates the unique identifier for the Audio file prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - Guid - - Guid - - - None - - - DistributionLists - - The DistributionLists parameter lets you add all the members of the distribution lists to the Call Queue. This is a list of distribution list GUIDs. A service wide configurable maximum number of DLs per Call Queue are allowed. Only the first N (service wide configurable) agents from all distribution lists combined are considered for accepting the call. Nested DLs are supported. O365 Groups can also be used to add members to the Call Queue. - - List - - List - - - None - - - EnableNoAgentSharedVoicemailSystemPromptSuppression - - The EnableNoAgentSharedVoicemailSystemPromptSuppression parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableNoAgentSharedVoicemailTranscription - - The EnableNoAgentSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on no agents. This parameter is only applicable when NoAgentAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailSystemPromptSuppression - - The EnableOverflowSharedVoicemailSystemPromptSuppress parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableOverflowSharedVoicemailTranscription - - The EnableOverflowSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on overflow. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailSystemPromptSuppression - - The EnableTimeoutSharedVoicemailSystemPromptSuppression parameter is used to turn off the default voicemail system prompts. This parameter is only applicable when OverflowAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - EnableTimeoutSharedVoicemailTranscription - - The EnableTimeoutSharedVoicemailTranscription parameter is used to turn on transcription for voicemails left by a caller on timeout. This parameter is only applicable when TimeoutAction is set to SharedVoicemail. - - Boolean - - Boolean - - - False - - - HideAuthorizedUsers - - This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). - - List - - List - - - None - - - Identity - - PARAMVALUE: Guid - - Object - - Object - - - None - - - IsCallbackEnabled - - The IsCallbackEnabled parameter is used to turn on/off callback. - - Boolean - - Boolean - - - None - - - LanguageId - - The LanguageId parameter indicates the language that is used to play shared voicemail prompts. This parameter becomes a required parameter If either OverflowAction or TimeoutAction is set to SharedVoicemail. - You can query the supported languages using the Get-CsAutoAttendantSupportedLanguage cmdlet. - - String - - String - - - None - - - LineUri - - This parameter is reserved for Microsoft internal use only. - - String - - String - - - None - - - MusicOnHoldAudioFileId - - The MusicOnHoldFileContent parameter represents music to play when callers are placed on hold. This is the unique identifier of the audio file. This parameter is required if the UseDefaultMusicOnHold parameter is not specified. - - Guid - - Guid - - - None - - - Name - - The Name parameter specifies a unique name for the Call Queue. - - String - - String - - - None - - - NoAgentAction - - The NoAgentAction parameter defines the action to take if the no agents condition is reached. The NoAgentAction property must be set to one of the following values: Queue, Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Queue. - PARAMVALUE: Queue | Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - NoAgentActionCallPriority - - If the NoAgentAction is set to Forward, and the NoAgentActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - NoAgentActionTarget - - The NoAgentActionTarget represents the target of the no agent action. If the NoAgentAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the NoAgentAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this field is optional. - - String - - String - - - None - - - NoAgentApplyTo - - The NoAgentApplyTo parameter defines if the NoAgentAction applies to calls already in queue and new calls arriving to the queue, or only new calls that arrive once the No Agents condition occurs. The default value is AllCalls. - PARAMVALUE: AllCalls | NewCalls - - Object - - Object - - - Disconnect - - - NoAgentDisconnectAudioFilePrompt - - The NoAgentDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to no agents. - - Guid - - Guid - - - None - - - NoAgentDisconnectTextToSpeechPrompt - - The NoAgentDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to no agents. - - String - - String - - - None - - - NoAgentRedirectPersonAudioFilePrompt - - The NoAgentRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPersonTextToSpeechPrompt - - The NoAgentRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to no agents. - - String - - String - - - None - - - NoAgentRedirectPhoneNumberAudioFilePrompt - - The NoAgentRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectPhoneNumberTextToSpeechPrompt - - The NoAgentRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoiceAppAudioFilePrompt - - The NoAgentRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to no agents. - - Guid - - Guid - - - None - - - NoAgentRedirectVoiceAppTextToSpeechPrompt - - The NoAgentRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to no agents. - - String - - String - - - None - - - NoAgentRedirectVoicemailAudioFilePrompt - - The NoAgentRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - Guid - - Guid - - - None - - - NoAgentRedirectVoicemailTextToSpeechPrompt - - The NoAgentRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to no agent. - - String - - String - - - None - - - NoAgentSharedVoicemailAudioFilePrompt - - The NoAgentSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - NoAgentSharedVoicemailTextToSpeechPrompt - - The NoAgentSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on no agents. This parameter becomes a required parameter when NoAgentAction is SharedVoicemail and NoAgentSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - NumberOfCallsInQueueBeforeOfferingCallback - - The number of calls in queue before a call becomes eligible for callback. This condition applies to calls arriving at the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - OboResourceAccountIds - - The OboResourceAccountIds parameter lets you add resource account with phone number to the Call Queue. The agents in the Call Queue will be able to make outbound calls using the phone number on the resource accounts. This is a list of resource account GUIDs. - - List - - List - - - None - - - OverflowAction - - The OverflowAction parameter designates the action to take if the overflow threshold is reached. The OverflowAction property must be set to one of the following values: DisconnectWithBusy, Forward, Voicemail, and SharedVoicemail. The default value is DisconnectWithBusy. - PARAMVALUE: DisconnectWithBusy | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - DisconnectWithBusy - - - OverflowActionCallPriority - - If the OverflowAction is set to Forward, and the OverflowActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - OverflowActionTarget - - The OverflowActionTarget parameter represents the target of the overflow action. If the OverFlowAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the OverflowAction is set to SharedVoicemail, this parameter must be set to a group ID (Microsoft 365, Distribution list, or Mail-enabled security). Otherwise, this parameter is optional. - - String - - String - - - None - - - OverflowDisconnectAudioFilePrompt - - The OverflowDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to overflow. - - Guid - - Guid - - - None - - - OverflowDisconnectTextToSpeechPrompt - - The OverflowDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to overflow. - - String - - String - - - None - - - OverflowRedirectPersonAudioFilePrompt - - The OverflowRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPersonTextToSpeechPrompt - - The OverflowRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to overflow. - - String - - String - - - None - - - OverflowRedirectPhoneNumberAudioFilePrompt - - The OverflowRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectPhoneNumberTextToSpeechPrompt - - The OverflowRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to overflow. - - String - - String - - - None - - - OverflowRedirectVoiceAppAudioFilePrompt - - The OverflowRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoiceAppTextToSpeechPrompt - - The OverflowRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to overflow. - - String - - String - - - None - - - OverflowRedirectVoicemailAudioFilePrompt - - The OverflowRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - Guid - - Guid - - - None - - - OverflowRedirectVoicemailTextToSpeechPrompt - - The OverflowRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to overflow. - - String - - String - - - None - - - OverflowSharedVoicemailAudioFilePrompt - - The OverflowSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - OverflowSharedVoicemailTextToSpeechPrompt - - The OverflowSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on overflow. This parameter becomes a required parameter when OverflowAction is SharedVoicemail and OverflowSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - OverflowThreshold - - The OverflowThreshold parameter defines the number of calls that can be in the queue at any one time before the overflow action is triggered. The OverflowThreshold can be any integer value between 0 and 200, inclusive. A value of 0 causes calls not to reach agents and the overflow action to be taken immediately. - - Int16 - - Int16 - - - 50 - - - PresenceBasedRouting - - The PresenceBasedRouting parameter indicates whether or not presence based routing will be applied while call being routed to Call Queue agents. When set to False, calls will be routed to agents who have opted in to receive calls, regardless of their presence state. When set to True, opted-in agents will receive calls only when their presence state is Available. - - Boolean - - Boolean - - - False - - - RoutingMethod - - The RoutingMethod defines how agents will be called in a Call Queue. If the routing method is set to Serial, then agents will be called one at a time. If the routing method is set to Attendant, then agents will be called in parallel. If routing method is set to RoundRobin, the agents will be called using Round Robin strategy so that all agents share the call-load equally. If routing method is set to LongestIdle, the agents will be called based on their idle time, i.e., the agent that has been idle for the longest period will be called. - PARAMVALUE: Attendant | Serial | RoundRobin | LongestIdle - - Object - - Object - - - Attendant - - - ServiceLevelThresholdResponseTimeInSecond - - The target number of seconds calls should be answered in. This number is used to calculate the call queue service level percentage. - A value of `$null` indicates that a service level percentage will not be calculated for this call queue. - - Int16 - - Int16 - - - None - - - SharedCallQueueHistoryTemplateId - - The SharedCallQueueHistoryTemplateId parameter indicates the Shared Call Queue History template to apply to the call queue. - > [!NOTE] > `-ConferenceMode` must be set to $true > > Shared call queue history is not availble when using a Teams channel for queue membership > - `-ChannelId` and `-ChannelUserObjectId` are set. - - String - - String - - - None - - - ShiftsSchedulingGroupId - - Id of the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShiftsTeamId - - Id of the Team containing the Scheduling Group to connect a call queue to. - - String - - String - - - None - - - ShouldOverwriteCallableChannelProperty - - A Teams Channel can only be linked to one Call Queue at a time. To force reassignment of the Teams Channel to a new Call Queue, set this to $true. - - Boolean - - Boolean - - - False - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - TextAnnouncementForCR - - The TextAnnouncementForCR parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers when compliance recording for call queues is enabled. - - String - - String - - - None - - - TextAnnouncementForCRFailure - - The TextAnnouncementForCRFailure parameter indicates the custom Text-to-Speech (TTS) prompt which is played to callers if the compliance recording for call queue bot is unable to join or drops from the call. - - String - - String - - - None - - - TimeoutAction - - The TimeoutAction parameter defines the action to take if the timeout threshold is reached. The TimeoutAction property must be set to one of the following values: Disconnect, Forward, Voicemail, and SharedVoicemail. The default value is Disconnect. - PARAMVALUE: Disconnect | Forward | Voicemail | SharedVoicemail - - Object - - Object - - - Disconnect - - - TimeoutActionCallPriority - - If the TimeoutAction is set to Forward, and the TimeoutActionTarget is set to an Auto attendant or Call queue resource account Guid, this parameter must be set to indicate the priority that will be assigned to the call. Otherwise, this parameter is not applicable. - PARAMVALUE: 1 | 2 | 3 | 4 | 5 - 1 = Very High - - 2 = High - - 3 = Normal / Default - - 4 = Low - - 5 = Very Low - - Int16 - - Int16 - - - None - - - TimeoutActionTarget - - The TimeoutActionTarget represents the target of the timeout action. If the TimeoutAction is set to Forward, this parameter must be set to a Guid or a telephone number with a mandatory 'tel:' prefix. If the TimeoutAction is set to SharedVoicemail, this parameter must be set to an Office 365 Group ID. Otherwise, this field is optional. - - String - - String - - - None - - - TimeoutDisconnectAudioFilePrompt - - The TimeoutDisconnectAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being disconnected due to timeout. - - Guid - - Guid - - - None - - - TimeoutDisconnectTextToSpeechPrompt - - The TimeoutDisconnectTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being disconnected due to timeout. - - String - - String - - - None - - - TimeoutRedirectPersonAudioFilePrompt - - The TimeoutRedirectPersonAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPersonTextToSpeechPrompt - - The TimeoutRedirectPersonTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person in the organization due to timeout. - - String - - String - - - None - - - TimeoutRedirectPhoneNumberAudioFilePrompt - - The TimeoutRedirectPhoneNumberAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectPhoneNumberTextToSpeechPrompt - - The TimeoutRedirectPhoneNumberTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to an external PSTN phone number due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoiceAppAudioFilePrompt - - The TimeoutRedirectVoiceAppAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a voice application due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoiceAppTextToSpeechPrompt - - The TimeoutRedirectVoiceAppsTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a voice application due to timeout. - - String - - String - - - None - - - TimeoutRedirectVoicemailAudioFilePrompt - - The TimeoutRedirectVoiceMailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - Guid - - Guid - - - None - - - TimeoutRedirectVoicemailTextToSpeechPrompt - - The TimeoutRedirectVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is played to the caller when being redirected to a person's voicemail due to timeout. - - String - - String - - - None - - - TimeoutSharedVoicemailAudioFilePrompt - - The TimeoutSharedVoicemailAudioFilePrompt parameter indicates the unique identifier for the Audio file prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailTextToSpeechPrompt is null. - - Guid - - Guid - - - None - - - TimeoutSharedVoicemailTextToSpeechPrompt - - The TimeoutSharedVoicemailTextToSpeechPrompt parameter indicates the Text-to-Speech (TTS) prompt which is to be played as a greeting to the caller when transferred to shared voicemail on timeout. This parameter becomes a required parameter when TimeoutAction is SharedVoicemail and TimeoutSharedVoicemailAudioFilePrompt is null. - - String - - String - - - None - - - TimeoutThreshold - - The TimeoutThreshold parameter defines the time (in seconds) that a call can be in the queue before that call times out. At that point, the system will take the action specified by the TimeoutAction parameter. The TimeoutThreshold can be any integer value between 0 and 2700 seconds (inclusive), and is rounded to the nearest 15th interval. For example, if set to 47 seconds, then it is rounded down to 45. If set to 0, welcome music is played, and then the timeout action will be taken. - - Int16 - - Int16 - - - 1200 - - - UseDefaultMusicOnHold - - The UseDefaultMusicOnHold parameter indicates that this Call Queue uses the default music on hold. This parameter cannot be specified together with MusicOnHoldAudioFileId. - - Boolean - - Boolean - - - None - - - Users - - The User parameter lets you add agents to the Call Queue. This parameter expects a list of user unique identifiers (GUID). - - List - - List - - - None - - - WaitTimeBeforeOfferingCallbackInSecond - - The number of seconds a call must wait before becoming eligible for callback. This condition applies to calls at the front of the call queue. Set to null ($null) to disable this condition. - At least one of `-WaitTimeBeforeOfferingCallbackInSecond`, `-NumberOfCallsInQueueBeforeOfferingCallback`, or `-CallToAgentRatioThresholdBeforeOfferingCallback` must be set to a value other than null when `-IsCallbackEnabled` is `True`. - - Int16 - - Int16 - - - None - - - WelcomeMusicAudioFileId - - The WelcomeMusicAudioFileId parameter represents the audio file to play when callers are connected with the Call Queue. This is the unique identifier of the audio file. - - Guid - - Guid - - - None - - - WelcomeTextToSpeechPrompt - - This parameter indicates which Text-to-Speech (TTS) prompt is played when callers are connected to the Call Queue. - - String - - String - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsCallQueue -Identity e7e00636-47da-449c-a36b-1b3d6ee04440 -UseDefaultMusicOnHold $true - - This example updates the Call Queue with identity e7e00636-47da-449c-a36b-1b3d6ee04440 by making it use the default music on hold. - - - - -------------------------- Example 2 -------------------------- - Set-CsCallQueue -Identity e7e00636-47da-449c-a36b-1b3d6ee04440 -DistributionLists @("8521b0e3-51bd-4a4b-a8d6-b219a77a0a6a", "868dccd8-d723-4b4f-8d74-ab59e207c357") -MusicOnHoldAudioFileId $audioFile.Id - - This example updates the Call Queue with new distribution lists and references a new music on hold audio file using the audio file ID from the stored variable $audioFile created with the Import-CsOnlineAudioFile cmdlet (https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cscallqueue - - - Create a Phone System Call Queue - https://support.office.com/article/Create-a-Phone-System-call-queue-67ccda94-1210-43fb-a25b-7b9785f8a061 - - - New-CsCallQueue - - - - Get-CsCallQueue - - - - Remove-CsCallQueue - - - - New-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsComplianceRecordingForCallQueueTemplate - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - - - - - - Set-CsComplianceRecordingForCallQueueTemplate - Set - CsComplianceRecordingForCallQueueTemplate - - Use the Set-CsComplianceRecordingForCallQueueTemplate cmdlet to make changes to an existing Compliance Recording for Call Queues template. - - - - Use the Set-CsComplianceRecordingForCallQueueTemplate cmdlet to make changes to an existing Compliance Recording for Call Queues template. - - - - Set-CsComplianceRecordingForCallQueueTemplate - - Instance - - The Instance parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - Instance - - The Instance parameter is the unique identifier assigned to the Compliance Recording for Call Queue template. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $template = CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 -$template.BotId = 14732826-8206-42e3-b51e-6693e2abb698 -Set-CsComplianceRecordingForCallQueueTemplate $template - - The Set-CsComplianceRecordingForCallQueueTemplate cmdlet lets you modify the properties of a Compliance Recording for Call Queue Template. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsComplianceRecordingForCallQueueTemplate - - - New-CsComplianceRecordingForCallQueueTemplate - - - - Set-CsComplianceRecordingForCallQueueTemplate - - - - Remove-CsComplianceRecordingForCallQueueTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQuuee - - - - - - - Set-CsInboundBlockedNumberPattern - Set - CsInboundBlockedNumberPattern - - Modifies one or more parameters of a blocked number pattern in the tenant list. - - - - This cmdlet modifies one or more parameters of a blocked number pattern in the tenant list. - - - - Set-CsInboundBlockedNumberPattern - - Identity - - A unique identifier specifying the blocked number pattern to be modified. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be modified. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description for the blocked number pattern to be modified. - - String - - String - - - None - - - Enabled - - If this parameter is set to True, the inbound calls matching the pattern will be blocked. - - Boolean - - Boolean - - - None - - - Identity - - A unique identifier specifying the blocked number pattern to be modified. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be blocked. - - String - - String - - - None - - - ResourceAccount - - The GUID of a resource account to redirect calls to when the pattern matches. If specified, matched calls will be redirected to this resource account instead of being blocked. - > [!NOTE] > Currently, redirection to a Resource Account is supported for calls from Operator Connect and Direct Routing. Calling Plan calls will be blocked. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS> Set-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" -Pattern "^\+11234567890" - - This example modifies a blocked number pattern to block inbound calls from +11234567890 number. - - - - -------------------------- Example 2 -------------------------- - PS> Set-CsInboundBlockedNumberPattern -Identity "BlockAutomatic" -ResourceAccount "d290f1ee-6c54-4b01-90e6-d701748f0851" - - This example modifies a blocked number pattern to redirect inbound calls from its pattern number to the specified resource account instead of blocking it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundblockednumberpattern - - - New-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundblockednumberpattern - - - Get-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundblockednumberpattern - - - Remove-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundblockednumberpattern - - - - - - Set-CsInboundExemptNumberPattern - Set - CsInboundExemptNumberPattern - - Modifies one or more parameters of an exempt number pattern in the tenant list. - - - - This cmdlet modifies one or more parameters of an exempt number pattern in the tenant list. - - - - Set-CsInboundExemptNumberPattern - - Identity - - Unique identifier for the exempt number pattern to be changed. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - String - - String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Sets the description of the number pattern. - - String - - String - - - None - - - Enabled - - This parameter determines whether the number pattern is enabled for exemption or not. - - Boolean - - Boolean - - - True - - - Identity - - Unique identifier for the exempt number pattern to be changed. - - String - - String - - - None - - - Pattern - - A regular expression that the calling number must match in order to be exempt from blocking. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - You can use Test-CsInboundBlockedNumberPattern to test your block and exempt phone number ranges. - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" - - Sets the inbound exempt number pattern for AllowContoso1 - - - - -------------------------- EXAMPLE 2 -------------------------- - PS> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Enabled $False - - Disables the exempt number pattern from usage in call blocking - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csinboundexemptnumberpattern - - - Get-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/get-csinboundexemptnumberpattern - - - New-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/new-csinboundexemptnumberpattern - - - Remove-CsInboundExemptNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csinboundexemptnumberpattern - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - - - - Set-CsMainlineAttendantAppointmentBookingFlow - Set - CsMainlineAttendantAppointmentBookingFlow - - Changes an existing Mainline Attendant appointment booking flow - - - - The Set-CsMainlineAttendantAppointmentBookingFlow cmdlet changes an existing appointment booking flow that is used with Mainline Attendant - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Set-CsMainlineAttendantAppointmentBookingFlow - - Instance - - The Instance parameter is the object reference to the Mainline Attendant Booking flow. - You can retrieve an object reference to an existing Mainline Attendant Booking flow by using the Get-CsMainlineAttendantAppointmentBookingFlow (Get-CsMainlineAttendantAppointmentBookingFlow.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - - - - Instance - - The Instance parameter is the object reference to the Mainline Attendant Booking flow. - You can retrieve an object reference to an existing Mainline Attendant Booking flow by using the Get-CsMainlineAttendantAppointmentBookingFlow (Get-CsMainlineAttendantAppointmentBookingFlow.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csmainlineattendantappointmentbookingflow - - - - - - Set-CsMainlineAttendantQuestionAnswerFlow - Set - CsMainlineAttendantQuestionAnswerFlow - - Changes an existing Mainline Attendant question and answer (FAQ) flow - - - - The Set-CsMainlineAttendantQuestionAnswerFlow cmdlet changes an existing question and answer connection that can be used with Mainline Attendant - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Set-CsMainlineAttendantQuestionAnswerFlow - - Instance - - The Instance parameter is the object reference to the Mainline Attendant Question and Answer flow to be modified. - You can retrieve an object reference to an existing Mainline Attendant Question and Answer Flow by using the Get-CsMainlineAttendantQuestionAnswerFlow (Get-CsMainlineAttendantQuestionAnswerFlow.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - - - - Instance - - The Instance parameter is the object reference to the Mainline Attendant Question and Answer flow to be modified. - You can retrieve an object reference to an existing Mainline Attendant Question and Answer Flow by using the Get-CsMainlineAttendantQuestionAnswerFlow (Get-CsMainlineAttendantQuestionAnswerFlow.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csmainlineattendantquestionanswerflow - - - - - - Set-CsOnlineApplicationInstance - Set - CsOnlineApplicationInstance - - Updates an application instance in Microsoft Entra ID. - - - - This cmdlet is used to update an application instance in Microsoft Entra ID. Note : The use of this cmdlet for assigning phone numbers in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment) and [Remove-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment)cmdlets instead. - - - - Set-CsOnlineApplicationInstance - - AcsResourceId - - The ACS Resource ID. The unique identifier assigned to an instance of Azure Communication Services within the Azure cloud infrastructure. - - System.Guid - - System.Guid - - - None - - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DisplayName - - The display name. - - System.String - - System.String - - - None - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Identity - - The URI or ID of the application instance to update. - - System.String - - System.String - - - None - - - OnpremPhoneNumber - - Note : Using this parameter has been deprecated in commercial and GCC cloud instances. Use the new Set-CsPhoneNumberAssignment cmdlet instead. - Assigns a hybrid (on-premise) telephone number to the application instance. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AcsResourceId - - The ACS Resource ID. The unique identifier assigned to an instance of Azure Communication Services within the Azure cloud infrastructure. - - System.Guid - - System.Guid - - - None - - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DisplayName - - The display name. - - System.String - - System.String - - - None - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The URI or ID of the application instance to update. - - System.String - - System.String - - - None - - - OnpremPhoneNumber - - Note : Using this parameter has been deprecated in commercial and GCC cloud instances. Use the new Set-CsPhoneNumberAssignment cmdlet instead. - Assigns a hybrid (on-premise) telephone number to the application instance. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineApplicationInstance -Identity appinstance01@contoso.com -ApplicationId ce933385-9390-45d1-9512-c8d228074e07 -DisplayName "AppInstance01" - - This example shows updated ApplicationId and DisplayName information for an existing Auto Attendant application instance with Identity "appinstance01@contoso.com". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineapplicationinstance - - - Get-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstance - - - New-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Sync-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/sync-csonlineapplicationinstance - - - - - - Set-CsOnlineAudioConferencingRoutingPolicy - Set - CsOnlineAudioConferencingRoutingPolicy - - This cmdlet sets the Online Audio Conferencing Routing Policy for users in the tenant. - - - - Teams meeting dial-out calls are initiated from within a meeting in your organization to PSTN numbers, including call-me-at calls and calls to bring new participants to a meeting. - To enable Teams meeting dial-out routing through Direct Routing to on-network users, you need to create and assign an Audio Conferencing routing policy called "OnlineAudioConferencingRoutingPolicy." - The OnlineAudioConferencingRoutingPolicy policy is equivalent to the CsOnlineVoiceRoutingPolicy for 1:1 PSTN calls via Direct Routing. - Audio Conferencing voice routing policies determine the available routes for calls from meeting dial-out based on the destination number. Audio Conferencing voice routing policies link to PSTN usages, determining routes for meeting dial-out calls by associated organizers. - - - - Set-CsOnlineAudioConferencingRoutingPolicy - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio conferencing routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the Online Audio Conferencing Routing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - The identity of the Online Audio Conferencing Routing Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online audio conferencing routing policy. The online PSTN usages must be existing usages (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - - Object - - Object - - - None - - - RouteType - - For internal use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineAudioConferencingRoutingPolicy -Identity "Policy 1" -OnlinePstnUsages "US and Canada" - - Sets the Online Audio Conferencing Routing Policy "Policy 1" value of "OnlinePstnUsages" to "US and Canada". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineaudioconferencingroutingpolicy - - - New-CsOnlineAudioConferencingRoutingPolicy - - - - Remove-CsOnlineAudioConferencingRoutingPolicy - - - - Grant-CsOnlineAudioConferencingRoutingPolicy - - - - Get-CsOnlineAudioConferencingRoutingPolicy - - - - - - - Set-CsOnlineDialInConferencingBridge - Set - CsOnlineDialInConferencingBridge - - Use the `Set-CsOnlineDialInConferencingBridge` cmdlet to modify the settings of a Microsoft audio conferencing bridge. - - - - The `Set-CsOnlineDialInConferencingBridge` cmdlet can be used to set the default dial-in service phone number for a given audio conferencing bridge. - - - - Set-CsOnlineDialInConferencingBridge - - Identity - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge to be modified. - - Guid - - Guid - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to a Microsoft audio conferencing bridge object to the cmdlet rather than set individual parameter values. - - ConferencingBridge - - ConferencingBridge - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DefaultServiceNumber - - > Applicable: Microsoft Teams - Specifies the default phone number to be used on the Microsoft audio conferencing bridge. The default number is used in meeting invitations. - The DefaultServiceNumber must be assigned to the audio conferencing bridge. Also, when the default service number is changed, the service number of existing users will not be changed. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): -DomainController atl-cs-001.Contoso.com. - Computer name: -DomainController atl-cs-001 - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Name - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge to be modified. - - String - - String - - - None - - - SetDefault - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultServiceNumber - - > Applicable: Microsoft Teams - Specifies the default phone number to be used on the Microsoft audio conferencing bridge. The default number is used in meeting invitations. - The DefaultServiceNumber must be assigned to the audio conferencing bridge. Also, when the default service number is changed, the service number of existing users will not be changed. - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): -DomainController atl-cs-001.Contoso.com. - Computer name: -DomainController atl-cs-001 - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge to be modified. - - Guid - - Guid - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to a Microsoft audio conferencing bridge object to the cmdlet rather than set individual parameter values. - - ConferencingBridge - - ConferencingBridge - - - None - - - Name - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge to be modified. - - String - - String - - - None - - - SetDefault - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineDialInConferencingBridge -Name "Conference Bridge" -DefaultServiceNumber 14255551234 - - This example sets the default dial-in phone number to 14255551234 for the audio conferencing bridge named "Conference Bridge". - - - - -------------------------- Example 2 -------------------------- - $bridge = Get-CsOnlineDialInConferencingBridge -Name "Conference Bridge" - -$Bridge.Name = "O365 Bridge" - -Set-CsOnlineDialInConferencingBridge -Instance $bridge - - This example changes the name of a conference bridge by creating a conference bridge instance, changing the instance's name and then setting the conference bridge to the instance. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencingbridge - - - - - - Set-CsOnlineDialInConferencingServiceNumber - Set - CsOnlineDialInConferencingServiceNumber - - Use the `Set-CsOnlineDialInConferencingServiceNumber` cmdlet to modify the properties of a dial-in or audio conferencing service number that is used by callers when they dial in to a meeting. - - - - The `Set-CsOnlineDialInConferencingServiceNumber` cmdlet enables you to set the primary and secondary languages or restore the default languages for a given service number. The primary language will be used for the prompts that callers will listen to when they are entering a meeting. The secondary languages (up to 4) will be available as options in the case the caller wants the prompts read in a different language. The following languages are supported for PSTN conferencing: - Arabic - Chinese (Simplified) - Chinese (Traditional) - Danish - Dutch - English (Australia) - English (United Kingdom) - English (United States) - Finnish - French (Canada) - French (France) - German - Hebrew - Italian - Japanese - Korean - Norwegian (Bokmal) - Portuguese - Russian - Spanish (Mexico) - Spanish (Spain) - Swedish - Turkish - Ukrainian - - - - Set-CsOnlineDialInConferencingServiceNumber - - Identity - - > Applicable: Microsoft Teams - Specifies the default dial-in service number string. The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to the Office 365 audio service number object to the cmdlet rather than set individual parameter values. - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): -DomainController atl-cs-001.Contoso.com. - Computer name: -DomainController atl-cs-001 - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - PrimaryLanguage - - > Applicable: Microsoft Teams - Specifies the primary language that is used when users call into a meeting. The culture ID is used. For example, en-US for US English, ja-JP for Japanese, or es-ES for Spanish. - Use the `Get-CsOnlineDialInConferencingLanguagesSupported` cmdlet to get a list of the available languages. - - String - - String - - - None - - - RestoreDefaultLanguages - - > Applicable: Microsoft Teams - Including this switch restores all of the default languages for the audio conferencing service number. - - - SwitchParameter - - - False - - - SecondaryLanguages - - > Applicable: Microsoft Teams - Specifies the secondary languages that can be used when users call into a meeting. The culture ID is used. For example, en-US for US English, ja-JP for Japanese, or es-ES for Spanish. The order you provide will be the order that will be presented to users that are calling into the meeting. There is a maximum of 4 languages that can be used as secondary languages. - Use the `Get-CsOnlineDialInConferencingLanguagesSupported` cmdlet to get a list of the available languages. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): -DomainController atl-cs-001.Contoso.com. - Computer name: -DomainController atl-cs-001 - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the default dial-in service number string. The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to the Office 365 audio service number object to the cmdlet rather than set individual parameter values. - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - PrimaryLanguage - - > Applicable: Microsoft Teams - Specifies the primary language that is used when users call into a meeting. The culture ID is used. For example, en-US for US English, ja-JP for Japanese, or es-ES for Spanish. - Use the `Get-CsOnlineDialInConferencingLanguagesSupported` cmdlet to get a list of the available languages. - - String - - String - - - None - - - RestoreDefaultLanguages - - > Applicable: Microsoft Teams - Including this switch restores all of the default languages for the audio conferencing service number. - - SwitchParameter - - SwitchParameter - - - False - - - SecondaryLanguages - - > Applicable: Microsoft Teams - Specifies the secondary languages that can be used when users call into a meeting. The culture ID is used. For example, en-US for US English, ja-JP for Japanese, or es-ES for Spanish. The order you provide will be the order that will be presented to users that are calling into the meeting. There is a maximum of 4 languages that can be used as secondary languages. - Use the `Get-CsOnlineDialInConferencingLanguagesSupported` cmdlet to get a list of the available languages. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineDialInConferencingServiceNumber -Identity +14255551234 -PrimaryLanguage de-de -SecondaryLanguages en-us, ja-jp, en-gb - - This example sets the primary language to German (Germany) and the secondary languages to US English, Japanese, and UK English for the dial-in service number +14255551234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencingservicenumber - - - - - - Set-CsOnlineDialInConferencingTenantSettings - Set - CsOnlineDialInConferencingTenantSettings - - Use the `Set-CsOnlineDialInConferencingTenantSettings` to modify the tenant level settings of dial-in conferencing. Dial-in conferencing tenant settings control the conference experience of users and manage some conferencing administrative functions. - - - - Dial-in conferencing tenant settings control what functions are available during a conference call. For example, whether or not entries and exits from the call are announced. The settings also manage some of the administrative functions, such as when users get notification of administrative actions, like a PIN change. By contrast, the higher level dial-in conferencing configuration only maintains a flag for whether dial-in conferencing is enabled for your organization. For more information, see `Get-CsOnlineDialinConferencingTenantConfiguration`. - There is always a single instance of the dial-in conferencing settings per tenant. You can modify the settings using `Set-CsOnlineDialInConferencingTenantSettings` and revert those settings to their defaults by using `Remove-CsOnlineDialInConferencingTenantSettings`. - The following parameters are not applicable to Teams: EnableDialOutJoinConfirmation, IncludeTollFreeNumberInMeetingInvites, MigrateServiceNumbersOnCrossForestMove, and UseUniqueConferenceIds - - - - Set-CsOnlineDialInConferencingTenantSettings - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - AllowedDialOutExternalDomains - - Used to specify which external domains are allowed for dial-out conferencing. - - Object - - Object - - - None - - - AllowFederatedUsersToDialOutToSelf - - Meeting participants can call themselves when they join a meeting. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowFederatedUsersToDialOutToThirdParty - - Specifies at this scope if dial out to third party participants is allowed. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowPSTNOnlyMeetingsByDefault - - > Applicable: Microsoft Teams - 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. - When AllowPSTNOnlyMeetingsByDefault is changed, the value of the "AllowPSTNOnlyMeetings" setting of currently enabled users doesn't change. The new default value will only be applied to users that are subsequently enabled for dial-in conferencing, or whose provider is changed to Microsoft. - The "AllowPSTNOnlyMeetings" setting of a user defines if unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide the organizer PIN when joining the meeting. - For more information on the "AllowPSTNOnlyMeetings" user setting, see `Set-CsOnlineDialInConferencingUser`. - - Boolean - - Boolean - - - None - - - AutomaticallyMigrateUserMeetings - - > Applicable: Microsoft Teams - Specifies if meetings of users in the tenant should automatically be rescheduled via the Meeting Migration Service when there's a change in the users' Cloud PSTN Confernecing coordinates, e.g. when a user is provisioned, de-provisoned, assigned a new default service number etc. If this is false, users will need to manually migrate their conferences using the Meeting Migration tool. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallyReplaceAcpProvider - - > Applicable: Microsoft Teams - Specifies if a user already enabled for a 3rd party Audio Conferencing Provider (ACP) should automatically be converted to Microsoft's Online DialIn Conferencing service when a license for Microsoft's service is assigned to the user. If this is false, tenant admins will need to manually provision the user with the Enable-CsOnlineDialInConferencingUser cmdlet with the -ReplaceProvider switch present. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallySendEmailsToUsers - - > Applicable: Microsoft Teams - 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. - User is enabled or disabled for dial-in conferencing. - The dial-in conferencing provider is changed either to Microsoft, or from Microsoft to another provider, or none. - The dial-in conferencing PIN is reset by the tenant administrator. - Changes to either the user's conference ID, or the user's default dial-in conference number. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - EnableDialOutJoinConfirmation - - Specifies if the callees need to confirm to join the conference call. If true, the callees will hear prompts to ask for confirmation to join the conference call, otherwise callees will join the conference call directly. - - Boolean - - Boolean - - - None - - - EnableEntryExitNotifications - - > Applicable: Microsoft Teams - 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. - This setting can be overridden on a meeting by meeting basis when a user joins a meeting via a Skype for Business client and modifies the Announce when people enter or leave setting on the Skype Meeting Options menu of a meeting. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Microsoft Teams - 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. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Microsoft Teams - Specifies if the Entry and Exit Announcement Uses names or tones only. PARAMVALUE: UseNames | ToneOnly - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IncludeTollFreeNumberInMeetingInvites - - > Applicable: Microsoft Teams - This parameter is obsolete and not functional. - - Boolean - - Boolean - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaskPstnNumbersType - - 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 (masked to external users) - - MaskedForAllUsers (masked for everyone) - - NoMasking (visible to everyone) - - String - - String - - - MaskedForExternalUsers - - - MigrateServiceNumbersOnCrossForestMove - - > Applicable: Microsoft Teams - 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. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PinLength - - > Applicable: Microsoft Teams - 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. - A user's PIN will only authenticate them as leaders for a meeting they scheduled. The PIN of a user that did not schedule the meeting will not enable that user to lead the meeting. - - UInt32 - - UInt32 - - - None - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - Specifies the email address to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. The email address needs to be in the form <UserAlias>@<Domain>. For example, "KenMyer@Contoso.com" or "Admin@Contoso.com". - The SendEmailFromAddress value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - Specifies the display name to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. - The SendEmailFromDisplayName value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromOverride - - > Applicable: Microsoft Teams - Specifies if the contact information on dial-in conferencing notifications will be the default generated by Office 365, or administrator defined values. Setting SendEmailFromOverride to $true enables the system to use the SendEmailFromAddress and SendEmailFromDisplayName parameter inputs as the "From" contact information. Setting this parameter to $false will cause email notifications to be sent with the system generated default. The default is $false. - SendEmailFromOverride can't be $true if SendEmailFromAddress and SendEmailFromDisplayName aren't specified. - If you want to change the email address information, you need to make sure that your inbound email policies allow for emails that come from the address specified by the SendEmailFromAddress parameter. - Note: The parameter has been deprecated and may be removed in future versions. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - UseUniqueConferenceIds - - > Applicable: Microsoft Teams - Specifies if Private Meetings are enabled for the users in this tenant. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - AllowedDialOutExternalDomains - - Used to specify which external domains are allowed for dial-out conferencing. - - Object - - Object - - - None - - - AllowFederatedUsersToDialOutToSelf - - Meeting participants can call themselves when they join a meeting. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowFederatedUsersToDialOutToThirdParty - - Specifies at this scope if dial out to third party participants is allowed. Possible settings are [No|Yes|RequireSameEnterpriseUser]. This parameter is Microsoft internal use only. - - String - - String - - - None - - - AllowPSTNOnlyMeetingsByDefault - - > Applicable: Microsoft Teams - 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. - When AllowPSTNOnlyMeetingsByDefault is changed, the value of the "AllowPSTNOnlyMeetings" setting of currently enabled users doesn't change. The new default value will only be applied to users that are subsequently enabled for dial-in conferencing, or whose provider is changed to Microsoft. - The "AllowPSTNOnlyMeetings" setting of a user defines if unauthenticated callers can start a meeting if they are the first person to join. An unauthenticated caller is defined as a participant who joins a meeting over the phone and doesn't provide the organizer PIN when joining the meeting. - For more information on the "AllowPSTNOnlyMeetings" user setting, see `Set-CsOnlineDialInConferencingUser`. - - Boolean - - Boolean - - - None - - - AutomaticallyMigrateUserMeetings - - > Applicable: Microsoft Teams - Specifies if meetings of users in the tenant should automatically be rescheduled via the Meeting Migration Service when there's a change in the users' Cloud PSTN Confernecing coordinates, e.g. when a user is provisioned, de-provisoned, assigned a new default service number etc. If this is false, users will need to manually migrate their conferences using the Meeting Migration tool. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallyReplaceAcpProvider - - > Applicable: Microsoft Teams - Specifies if a user already enabled for a 3rd party Audio Conferencing Provider (ACP) should automatically be converted to Microsoft's Online DialIn Conferencing service when a license for Microsoft's service is assigned to the user. If this is false, tenant admins will need to manually provision the user with the Enable-CsOnlineDialInConferencingUser cmdlet with the -ReplaceProvider switch present. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - AutomaticallySendEmailsToUsers - - > Applicable: Microsoft Teams - 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. - User is enabled or disabled for dial-in conferencing. - The dial-in conferencing provider is changed either to Microsoft, or from Microsoft to another provider, or none. - The dial-in conferencing PIN is reset by the tenant administrator. - Changes to either the user's conference ID, or the user's default dial-in conference number. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - EnableDialOutJoinConfirmation - - Specifies if the callees need to confirm to join the conference call. If true, the callees will hear prompts to ask for confirmation to join the conference call, otherwise callees will join the conference call directly. - - Boolean - - Boolean - - - None - - - EnableEntryExitNotifications - - > Applicable: Microsoft Teams - 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. - This setting can be overridden on a meeting by meeting basis when a user joins a meeting via a Skype for Business client and modifies the Announce when people enter or leave setting on the Skype Meeting Options menu of a meeting. - - Boolean - - Boolean - - - None - - - EnableNameRecording - - > Applicable: Microsoft Teams - 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. - - Boolean - - Boolean - - - None - - - EntryExitAnnouncementsType - - > Applicable: Microsoft Teams - Specifies if the Entry and Exit Announcement Uses names or tones only. PARAMVALUE: UseNames | ToneOnly - - EntryExitAnnouncementsType - - EntryExitAnnouncementsType - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - XdsIdentity - - XdsIdentity - - - None - - - IncludeTollFreeNumberInMeetingInvites - - > Applicable: Microsoft Teams - This parameter is obsolete and not functional. - - Boolean - - Boolean - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MaskPstnNumbersType - - 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 (masked to external users) - - MaskedForAllUsers (masked for everyone) - - NoMasking (visible to everyone) - - String - - String - - - MaskedForExternalUsers - - - MigrateServiceNumbersOnCrossForestMove - - > Applicable: Microsoft Teams - 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. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For Microsoft internal use only. - - String - - String - - - None - - - PinLength - - > Applicable: Microsoft Teams - 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. - A user's PIN will only authenticate them as leaders for a meeting they scheduled. The PIN of a user that did not schedule the meeting will not enable that user to lead the meeting. - - UInt32 - - UInt32 - - - None - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - Specifies the email address to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. The email address needs to be in the form <UserAlias>@<Domain>. For example, "KenMyer@Contoso.com" or "Admin@Contoso.com". - The SendEmailFromAddress value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - Specifies the display name to use in the "From" contact information on emails that are sent to users to notify them of their dial-in conferencing settings, or when their settings change. - The SendEmailFromDisplayName value is used only if the SendEmailFromDisplayName setting is specified, and the SendEmailFromOverride setting is $true. - Note: The parameter has been deprecated and may be removed in future versions. - - String - - String - - - None - - - SendEmailFromOverride - - > Applicable: Microsoft Teams - Specifies if the contact information on dial-in conferencing notifications will be the default generated by Office 365, or administrator defined values. Setting SendEmailFromOverride to $true enables the system to use the SendEmailFromAddress and SendEmailFromDisplayName parameter inputs as the "From" contact information. Setting this parameter to $false will cause email notifications to be sent with the system generated default. The default is $false. - SendEmailFromOverride can't be $true if SendEmailFromAddress and SendEmailFromDisplayName aren't specified. - If you want to change the email address information, you need to make sure that your inbound email policies allow for emails that come from the address specified by the SendEmailFromAddress parameter. - Note: The parameter has been deprecated and may be removed in future versions. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - UseUniqueConferenceIds - - > Applicable: Microsoft Teams - Specifies if Private Meetings are enabled for the users in this tenant. PARAMVALUE: $true | $false - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineDialInConferencingTenantSettings -EnableEntryExitNotifications $True -EnableNameRecording $True -PinLength 7 - - This example sets the tenant's conferencing settings to enable entry and exit notifications supported by name recording. The PIN length is set to 7. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineDialInConferencingTenantSettings -SendEmailFromOverride $true -SendEmailFromAddress admin@contoso.com -SendEmailFromDisplayName "Conferencing Administrator" - - This example defines the contact information to be used in dial-in conferencing email notifications and enables the default address to be overridden. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencingtenantsettings - - - Get-CsOnlineDialInConferencingTenantSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinedialinconferencingtenantsettings - - - Remove-CsOnlineDialInConferencingTenantSettings - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinedialinconferencingtenantsettings - - - - - - Set-CsOnlineDialInConferencingUser - Set - CsOnlineDialInConferencingUser - - Use the `Set-CsOnlineDialInConferencingUser` cmdlet to modify the properties of a user that has been enabled for Microsoft's audio conferencing service. - - - - The `Set-CsOnlineDialInConferencingUser` cmdlet is used to modify properties for a Microsoft audio conferencing user. This cmdlet will not work for users with third-party conferencing providers. The cmdlet will verify that the correct license is assigned to the user. - > [!NOTE] > The AllowPSTNOnlyMeetings, ResetConferenceId, and ConferenceId parameters will be deprecated on Jan 31, 2022. To allow Teams meeting participants joining via the PSTN to bypass the lobby, use the AllowPSTNUsersToBypassLobby of the Set-CsTeamsMeetingPolicy cmdlet (https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingpolicy). The capabilities associated with the ResetConferenceId and ConferenceId parameters are no longer supported. - - - - Set-CsOnlineDialInConferencingUser - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - AllowPSTNOnlyMeetings - - > Applicable: Microsoft Teams - If true, non-authenticated users can start meetings. If false, non-authenticated callers wait in the lobby until an authenticated user joins, thereby starting the meeting. An authenticated user is a user who joins the meeting using a Skype for Business client, or the organizer that joined the meeting via dial-in conferencing and was authenticated by a PIN number. The default is false. - - Boolean - - Boolean - - - None - - - AllowTollFreeDialIn - - > Applicable: Microsoft Teams - If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. This setting can ONLY be managed using the TeamsAudioConferencingPolicy. By default, AllowTollFreeDialin is always set to True. - - Boolean - - Boolean - - - None - - - AsJob - - The parameter is used to run commands as background jobs. - - - SwitchParameter - - - False - - - BridgeId - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com` - Computer name: `-DomainController atl-cs-001` - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - ResetLeaderPin - - > Applicable: Microsoft Teams - Specifies whether to reset the meeting organizer or leaders PIN for meetings. - - - SwitchParameter - - - False - - - SendEmail - - > Applicable: Microsoft Teams - Send an email to the user containing their Audio Conference information. - - - SwitchParameter - - - False - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - You can specify the From Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmailFromDisplayName and -SendEmail. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - You can specify the Display Name to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmailFromAddress and -SendEmail. - - String - - String - - - None - - - SendEmailToAddress - - > Applicable: Microsoft Teams - You can specify the To Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmail. - - String - - String - - - None - - - ServiceNumber - - > Applicable: Microsoft Teams - Specifies the default service number for the user. The default number is used in meeting invitations. The cmdlet will verify that the service number is assigned to the user's current conference bridge, or the one the user is being assigned to. - The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"`. You can find your tenant ID by running this command: `Get-CsTenant | Select-Object DisplayName, TenantID` - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - Specifies the domain name for the tenant or organization. - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TollFreeServiceNumber - - > Applicable: Microsoft Teams - Specifies a toll-free phone number to be used by the user. This number is then used in meeting invitations. The toll-free number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter is not implemented for this cmdlet. - - - SwitchParameter - - - False - - - - - - AllowPSTNOnlyMeetings - - > Applicable: Microsoft Teams - If true, non-authenticated users can start meetings. If false, non-authenticated callers wait in the lobby until an authenticated user joins, thereby starting the meeting. An authenticated user is a user who joins the meeting using a Skype for Business client, or the organizer that joined the meeting via dial-in conferencing and was authenticated by a PIN number. The default is false. - - Boolean - - Boolean - - - None - - - AllowTollFreeDialIn - - > Applicable: Microsoft Teams - If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. This setting can ONLY be managed using the TeamsAudioConferencingPolicy. By default, AllowTollFreeDialin is always set to True. - - Boolean - - Boolean - - - None - - - AsJob - - The parameter is used to run commands as background jobs. - - SwitchParameter - - SwitchParameter - - - False - - - BridgeId - - > Applicable: Microsoft Teams - Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - Specifies the name of the audio conferencing bridge. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include: - Fully qualified domain name (FQDN): `-DomainController atl-cs-001.Contoso.com` - Computer name: `-DomainController atl-cs-001` - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - ResetLeaderPin - - > Applicable: Microsoft Teams - Specifies whether to reset the meeting organizer or leaders PIN for meetings. - - SwitchParameter - - SwitchParameter - - - False - - - SendEmail - - > Applicable: Microsoft Teams - Send an email to the user containing their Audio Conference information. - - SwitchParameter - - SwitchParameter - - - False - - - SendEmailFromAddress - - > Applicable: Microsoft Teams - You can specify the From Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmailFromDisplayName and -SendEmail. - - String - - String - - - None - - - SendEmailFromDisplayName - - > Applicable: Microsoft Teams - You can specify the Display Name to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmailFromAddress and -SendEmail. - - String - - String - - - None - - - SendEmailToAddress - - > Applicable: Microsoft Teams - You can specify the To Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmail. - - String - - String - - - None - - - ServiceNumber - - > Applicable: Microsoft Teams - Specifies the default service number for the user. The default number is used in meeting invitations. The cmdlet will verify that the service number is assigned to the user's current conference bridge, or the one the user is being assigned to. - The service number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account. For example: `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"`. You can find your tenant ID by running this command: `Get-CsTenant | Select-Object DisplayName, TenantID` - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - Specifies the domain name for the tenant or organization. - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TollFreeServiceNumber - - > Applicable: Microsoft Teams - Specifies a toll-free phone number to be used by the user. This number is then used in meeting invitations. The toll-free number can be specified in the following formats: E.164 number, +<E.164 number> and tel:<E.164 number>. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter is not implemented for this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -ResetLeaderPin -ServiceNumber 14255037265 - - This example shows how to reset the meeting leader's PIN and set the audio conferencing provider default meeting phone number. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -BridgeName "Conference Bridge" - - This example sets a user's conference bridge assignment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinedialinconferencinguser - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - New-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - - - - Set-CsOnlineEnhancedEmergencyServiceDisclaimer - Set - CsOnlineEnhancedEmergencyServiceDisclaimer - - You can use Get-CsOnlineEnhancedEmergencyServiceDisclaimer to see the status of the emergency service disclaimer. - - - - When using Microsoft Teams PSTN Calling Services you need to record your organization's acceptance of the enhanced emergency service terms and conditions. This is done per country/region and it needs to be done before you can provide PSTN calling services to Microsoft Teams users in the country/region. - You can record your organization's acceptance using the Set-CsOnlineEnhancedEmergencyServiceDisclaimer cmdlet at any time. If you haven't accepted it for a given country/region you will be prompted to do so by warning information in the Teams PS Module, when you try to assign a phone number to a Microsoft Teams user, or in the Teams admin center, when you create an emergency address in a country/region. - Any tenant administrator can accept the terms and conditions and it only needs to be done once per country/region. - As the output the cmdlet will show the emergency service disclaimer and that it has been accepted. - You must run this cmdlet prior to assigning Microsoft Calling Plan phone numbers and locations to voice enabled users or accept the similar disclaimer in the Teams admin center. - Microsoft Calling Plan phone numbers are available in several countries/regions, see Country and region availability for Audio Conferencing and Calling Plans (https://learn.microsoft.com/MicrosoftTeams/country-and-region-availability-for-audio-conferencing-and-calling-plans/country-and-region-availability-for-audio-conferencing-and-calling-plans) - - - - Set-CsOnlineEnhancedEmergencyServiceDisclaimer - - Confirm - - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CountryOrRegion - - Specifies the region or country whose terms and conditions you wish to accept. You need to use the ISO 31661-1 alpha-2 2 letter code for the country. For example for the United States it must be specified as "US" and for Denmark it must be specified as "DK". - - String - - String - - - None - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - ForceAccept - - This parameter is reserved for internal Microsoft use. - - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Version - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - CountryOrRegion - - Specifies the region or country whose terms and conditions you wish to accept. You need to use the ISO 31661-1 alpha-2 2 letter code for the country. For example for the United States it must be specified as "US" and for Denmark it must be specified as "DK". - - String - - String - - - None - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - ForceAccept - - This parameter is reserved for internal Microsoft use. - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Version - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineEnhancedEmergencyServiceDisclaimer -CountryOrRegion US - - This example accepts the U.S. version of the enhanced emergency service terms and conditions. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineenhancedemergencyservicedisclaimer - - - Get-CsOnlineEnhancedEmergencyServiceDisclaimer - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineenhancedemergencyservicedisclaimer - - - - - - Set-CsOnlineLisCivicAddress - Set - CsOnlineLisCivicAddress - - Use the cmdlet to modify an existing civic address which has not been validated. - - - - Use the `Set-CsOnlineLisCivicAddress` cmdlet to modify limited fields of an existing civic address. - Editing address using this cmdlet is restricted to the following countries/regions: Australia, Brazil, Canada, Croatia, Czech Republic, Estonia, Hong Kong SAR, Hungary, Israel, Japan, Latvia, Lithuania, Mexico, New Zealand, Poland, Puerto Rico, Romania, Singapore, South Korea, Slovenia, South Africa, United States. - If the user runs this cmdlet on one of the unsupported countries/regions, it may interfere with number assignment and potentially is against regulatory requirements, so public use of the API is limited to the above countries/regions. - > [!NOTE] > This cmdlet is only available for public use with limited countries/regions and certain fields. The remaining countries/regions and fields are for Microsoft internal use only. - - - - Set-CsOnlineLisCivicAddress - - City - - > Applicable: Microsoft Teams - Specifies a new city for the civic address. Publicly editable. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Short form of the city name. This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address to be modified. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies a new company name for the civic address. Publicly editable. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - Used to store TaxId for regulatory reasons. This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confidence - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies a new country or region for the civic address. For public use, restricted to the following countries/regions: AU, BR, CA, HR, CZ, EE, HK, HU, IL, JP, LV, LT, MX, NZ, PL, PR, RO, SG, KR, SI, ZA, US - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies a new description for the civic address. Publicly editable. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the new numeric portion of the civic address. Publicly editable. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the new numeric suffix of the new civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - IsAzureMapValidationRequired - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator in the decimal degrees format. Publicly editable. - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, in the decimal degrees format. Publicly editable. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the new postal code of the civic address. Publicly editable. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the new directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the new directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue ". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the new state or province of the civic address. Publicly editable. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the new street name of the civic address. Publicly editable. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the new modifier of the street name of the new civic address. The street suffix will typically be something like street, avenue, way, or boulevard. - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Microsoft internal use only - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Microsoft Teams - Specifies a new city for the civic address. Publicly editable. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams - Short form of the city name. This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address to be modified. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies a new company name for the civic address. Publicly editable. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - Used to store TaxId for regulatory reasons. This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confidence - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies a new country or region for the civic address. For public use, restricted to the following countries/regions: AU, BR, CA, HR, CZ, EE, HK, HU, IL, JP, LV, LT, MX, NZ, PL, PR, RO, SG, KR, SI, ZA, US - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies a new description for the civic address. Publicly editable. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the new numeric portion of the civic address. Publicly editable. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the new numeric suffix of the new civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - IsAzureMapValidationRequired - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator in the decimal degrees format. Publicly editable. - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, in the decimal degrees format. Publicly editable. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the new postal code of the civic address. Publicly editable. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the new directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the new directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue ". - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the new state or province of the civic address. Publicly editable. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the new street name of the civic address. Publicly editable. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teams - Specifies the new modifier of the street name of the new civic address. The street suffix will typically be something like street, avenue, way, or boulevard. - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - ValidationStatus - - > Applicable: Microsoft Teams - Microsoft internal use only - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisCivicAddress -CivicAddressId a363a9b8-1acd-41de-916a-296c7998a024 -Description "City Center" -CompanyName Contoso - - This example modifies the description and company name of the civic address with the identity a363a9b8-1acd-41de-916a-296c7998a024. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineLisCivicAddress -CivicAddressId a363a9b8-1acd-41de-916a-296c7998a024 -Latitude 47.63952 -Longitude -122.12781 -ELIN MICROSOFT_ELIN - - This example modifies the latitude, longitude and ELIN name of the civic address with the identity a363a9b8-1acd-41de-916a-296c7998a024. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliscivicaddress - - - Get-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliscivicaddress - - - New-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineliscivicaddress - - - Remove-CsOnlineLisCivicAddress - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliscivicaddress - - - - - - Set-CsOnlineLisLocation - Set - CsOnlineLisLocation - - Use the `Set-CsOnlineLisLocation` cmdlet to modify an existing emergency dispatch location. There can be multiple locations in a civic address. Typically the civic address designates the building, and locations are specific parts of that building such as a floor, office, or wing. - - - - - - - - Set-CsOnlineLisLocation - - City - - > Applicable: Microsoft Teams - Specifies the city of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address that contains the location to be modified. Civic address identities can be discovered by using the `Get-CsOnlineLisCivicAddress` cmdlet. Note: This parameter is not supported and will be deprecated. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - The company tax ID. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Confidence - - > Applicable: Microsoft Teams Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. Note: You can set or change the ELIN, but you can't clear its value. If you need to clear the value, you should recreate the location. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - IsAzureMapValidationRequired - - > Applicable: Microsoft Teans - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue ". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teans - Specifies a modifier of the street name of the civic address. The street suffix will typically be something like street, avenue, way, or boulevard. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - Set-CsOnlineLisLocation - - CityAlias - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - - String - - String - - - None - - - Confidence - - > Applicable: Microsoft Teams Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. Note: You can set or change the ELIN, but you can't clear its value. If you need to clear the value, you should recreate the location. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the new location. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. Location identities can be discovered by using the `Get-CsOnlineLisLocation` cmdlet. - - Guid - - Guid - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - City - - > Applicable: Microsoft Teams - Specifies the city of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - CityAlias - - > Applicable: Microsoft Teams Note: This parameter has been deprecated from the Teams PowerShell Module version 3.0.0 or later. - - String - - String - - - None - - - CivicAddressId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the civic address that contains the location to be modified. Civic address identities can be discovered by using the `Get-CsOnlineLisCivicAddress` cmdlet. Note: This parameter is not supported and will be deprecated. - - Guid - - Guid - - - None - - - CompanyName - - > Applicable: Microsoft Teams - Specifies the name of your organization. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - CompanyTaxId - - > Applicable: Microsoft Teams - The company tax ID. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Confidence - - > Applicable: Microsoft Teams Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - CountryOrRegion - - > Applicable: Microsoft Teams - Specifies the country or region of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Description - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Elin - - > Applicable: Microsoft Teams - Specifies the Emergency Location Identification Number. This is used in Direct Routing EGW scenarios. Note: You can set or change the ELIN, but you can't clear its value. If you need to clear the value, you should recreate the location. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - HouseNumber - - > Applicable: Microsoft Teams - Specifies the numeric portion of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - HouseNumberSuffix - - > Applicable: Microsoft Teams - Specifies the numeric suffix of the civic address. For example, if the property was multiplexed, the HouseNumberSuffix parameter would be the multiplex specifier: "425A Smith Avenue", or "425B Smith Avenue". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - IsAzureMapValidationRequired - - > Applicable: Microsoft Teans - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Latitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place north or south of the earth's equator using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - Location - - > Applicable: Microsoft Teams - Specifies an administrator defined description of the new location. For example, "2nd Floor Cafe", "Main Lobby", or "Office 250". - - String - - String - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. Location identities can be discovered by using the `Get-CsOnlineLisLocation` cmdlet. - - Guid - - Guid - - - None - - - Longitude - - > Applicable: Microsoft Teams - Specifies the angular distance of a place east or west of the meridian at Greenwich, England, using the decimal degrees format. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PostalCode - - > Applicable: Microsoft Teams - Specifies the postal code of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PostDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which follows the street name. For example, "425 Smith Avenue NE". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - PreDirectional - - > Applicable: Microsoft Teams - Specifies the directional attribute of the civic address which precedes the street name. For example, "425 NE Smith Avenue ". Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StateOrProvince - - > Applicable: Microsoft Teams - Specifies the state or province of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StreetName - - > Applicable: Microsoft Teams - Specifies the street name of the civic address. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - StreetSuffix - - > Applicable: Microsoft Teans - Specifies a modifier of the street name of the civic address. The street suffix will typically be something like street, avenue, way, or boulevard. Note: This parameter is not supported and will be deprecated. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisLocation -LocationId 5aa884e8-d548-4b8e-a289-52bfd5265a6e -Location "B5 2nd Floor" - - This example changes the location description of the location specified by its location identity. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelislocation - - - New-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinelislocation - - - Get-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelislocation - - - Remove-CsOnlineLisLocation - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelislocation - - - - - - Set-CsOnlineLisPort - Set - CsOnlineLisPort - - Creates a Location Information Server (LIS) port, creates an association between a port and a location, or modifies an existing port and its associated location. The association between a port and location is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet allows the administrator to map physical locations to the port through which the client is connected. - - - - Set-CsOnlineLisPort - - ChassisID - - > Applicable: Microsoft Teams - If ChassisID sub type is a MAC Address then this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise, (different sub type, such as Interface Name), then this value must be in a string format as set on the switch - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the port. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - If the PortID subtype is a MAC Address, this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise (different subtype, such as Interface Name), this value must be in a string format as set on the switch. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ChassisID - - > Applicable: Microsoft Teams - If ChassisID sub type is a MAC Address then this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise, (different sub type, such as Interface Name), then this value must be in a string format as set on the switch - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the port. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - PortID - - > Applicable: Microsoft Teams - If the PortID subtype is a MAC Address, this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise (different subtype, such as Interface Name), this value must be in a string format as set on the switch. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisPort -PortID 12174 -ChassisID 0B-23-CD-16-AA-CC -Description "LisPort 12174" -LocationId efd7273e-3092-4a56-8541-f5c896bb6fee - - Example 1 creates the association between port "12174" and LocationId "efd7273e-3092-4a56-8541-f5c896bb6fee". - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineLisPort -PortID 0A-25-55-AB-CD-FF -ChassisID 0B-23-CD-16-AA-CC -Description "LisPort 0A-25-55-AB-CD-FF" -LocationId efd7273e-3092-4a56-8541-f5c896bb6fee - - Example 2 creates the association between port "0A-25-55-AB-CD-FF" and LocationId "efd7273e-3092-4a56-8541-f5c896bb6fee". - - - - -------------------------- Example 3 -------------------------- - Set-CsOnlineLisPort -PortID 12174 -ChassisID 55123 -Description "LisPort 12174" -LocationId efd7273e-3092-4a56-8541-f5c896bb6fee - - Example 3 creates the association between port "12174" and LocationId "efd7273e-3092-4a56-8541-f5c896bb6fee". (Note: in this example, ChassisID sub-type is InterfaceName) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisport - - - Get-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisport - - - Remove-CsOnlineLisPort - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisport - - - - - - Set-CsOnlineLisSubnet - Set - CsOnlineLisSubnet - - Creates a Location Information Server (LIS) subnet, creates an association between a subnet and a location, or modifies an existing subnet and its associated location. The association between a subnet and location is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet allows the administrator to map physical locations to the subnet through which the client is connected. - The location ID which is associating with the subnet is not required to be the existing location. - LIS subnets must be defined by the Network ID matching the subnet IP range assigned to clients. For example, the network ID for a client IP/mask of 10.10.10.150/25 is 10.10.10.128. For more information, see Understand TCP/IP addressing and subnetting basics (https://learn.microsoft.com/troubleshoot/windows-client/networking/tcpip-addressing-and-subnetting). - - - - Set-CsOnlineLisSubnet - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the Location Information Service subnet. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the Location Information Service subnet. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - Specifies the unique identifier of the location to be modified. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Subnet - - > Applicable: Microsoft Teams - The IP address of the subnet. This value can be either IPv4 or IPv6 format. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TenantId - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisSubnet -Subnet 10.10.10.128 -LocationId f037a9ad-4334-455a-a1c5-3838ec0f5d02 -Description "Subnet 10.10.10.128" - - Example 1 creates the Location Information Service subnet "10.10.10.128" associated to Location ID "f037a9ad-4334-455a-a1c5-3838ec0f5d02". - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineLisSubnet -Subnet 2001:4898:e8:6c:90d2:28d4:76a4:ec5e -LocationId f037a9ad-4334-455a-a1c5-3838ec0f5d02 -Description "Subnet 2001:4898:e8:6c:90d2:28d4:76a4:ec5e" - - Example 2 creates the Location Information Service subnet in IPv6 format "2001:4898:e8:6c:90d2:28d4:76a4:ec5e" associated to Location ID "f037a9ad-4334-455a-a1c5-3838ec0f5d02". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelissubnet - - - - - - Set-CsOnlineLisSwitch - Set - CsOnlineLisSwitch - - Creates a Location Information Server (LIS) switch, creates an association between a switch and a location, or modifies an existing switch and its associated location. The association between a switch and location is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet allows the administrator to map physical locations to the network switch through which the client is connected. - - - - Set-CsOnlineLisSwitch - - ChassisID - - > Applicable: Microsoft Teams - If ChassisID sub type is a MAC Address then this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise, (different sub type, such as Interface Name), then this value must be in a string format as set on the switch - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the switch. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - The name for this location. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - ChassisID - - > Applicable: Microsoft Teams - If ChassisID sub type is a MAC Address then this value must be in a string format in the following representation nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. Otherwise, (different sub type, such as Interface Name), then this value must be in a string format as set on the switch - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the switch. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - The name for this location. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Guid - - - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisSwitch -ChassisID B8-BE-BF-4A-A3-00 -Description "DKSwitch1" -LocationId 9905bca0-6fb0-11ec-84a4-25019013784a - - Example 1 creates a switch with Chassis ID "B8-BE-BF-4A-A3-00", and associates it with location ID 9905bca0-6fb0-11ec-84a4-25019013784a. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinelisswitch - - - Get-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinelisswitch - - - Remove-CsOnlineLisSwitch - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinelisswitch - - - - - - Set-CsOnlineLisWirelessAccessPoint - Set - CsOnlineLisWirelessAccessPoint - - Creates a Location Information Server (LIS) wireless access point (WAP), creates an association between a WAP and a location, or modifies an existing WAP and its associated location. The association between a WAP and location is used in an Enhanced 9-1-1 (E9-1-1) Enterprise Voice implementation to notify an emergency services operator of the caller's location. - - - - Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller's location. This cmdlet allows the administrator to map physical locations to the WAP through which calls will be routed. - The BSSID (Basic Service Set Identifiers) is used to describe sections of a wireless local area network. It is the MAC of the 802.11 side of the access point. The BSSID parameter in this command also supports the wildcard format to cover all BSSIDs in a range which share the same description and Location ID. The wildcard '*' can be on either the last one or two character(s). - If a BSSID with wildcard format is already existing, the request for adding one more new BSSID which is within this wildcard range and with the same location ID will not be accepted. - - - - Set-CsOnlineLisWirelessAccessPoint - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. If an entry with the specified BSSID value does not exist, a new WAP will be created. If an entry with the specified BSSID already exists, that entry will be replaced. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the WAP. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - The name for this location. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BSSID - - > Applicable: Microsoft Teams - The Basic Service Set Identifier (BSSID) of the wireless access point. This value must be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. If an entry with the specified BSSID value does not exist, a new WAP will be created. If an entry with the specified BSSID already exists, that entry will be replaced. It can be presented in wildcard format. The wildcard '*' can be on either the last one or two character(s). - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Specifies the administrator defined description of the WAP. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - IsDebug - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - LocationId - - > Applicable: Microsoft Teams - The name for this location. - - Guid - - Guid - - - None - - - NCSApiUrl - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - TargetStore - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - System.Guid - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-03-23 -Description "USWAP1" -LocationId d7714269-ee52-4635-97b0-d7c228801d24 - - Example 1 creates the wireless access point with BSSID "F0-6E-0B-C2-03-23", associated with location ID d7714269-ee52-4635-97b0-d7c228801d24. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineLisWirelessAccessPoint -BSSID F0-6E-0B-C2-04-* -LocationId b2804a1a-e4cf-47df-8964-3eaf6fe1ae3a -Description 'SEWAPs' - - Example 2 creates the wireless access point with Chassis ID "F0-6E-0B-C2-04- ", associated with location ID b2804a1a-e4cf-47df-8964-3eaf6fe1ae3a. BSSID "F0-6E-0B-C2-04- " is in wildcard format which is equivalent to adding all BSSIDs with the same LocationID in the range "F0-6E-0B-C2-04-[0-9A-F][0-9A-F]". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineliswirelessaccesspoint - - - Get-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineliswirelessaccesspoint - - - Remove-CsOnlineLisWirelessAccessPoint - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineliswirelessaccesspoint - - - - - - Set-CsOnlinePSTNGateway - Set - CsOnlinePSTNGateway - - Modifies the previously defined Session Border Controller (SBC) Configuration that describes the settings for the peer entity. This cmdlet was introduced with Microsoft Phone System Direct Routing. - - - - Use this cmdlet to modify the configuration of the previously created Session Border Controller (SBC) configuration. Each configuration contains specific settings for an SBC. These settings configure such entities as SIP signaling port, whether media bypass is enabled on this SBC, will the SBC send SIP options, specify the limit of maximum concurrent sessions, The cmdlet also let drain the SBC by setting parameter -Enabled to true or false state. When the Enabled parameter set to $false, the SBC will continue existing calls, but all new calls routed to another SBC in a route (if exists). - - - - Set-CsOnlinePSTNGateway - - Identity - - > Applicable: Microsoft Teams - The parameter is mandatory when modifying an existing SBC. - - String - - String - - - None - - - BypassMode - - Possible values are "None", "Always" and "OnlyForLocalUsers". By setting "Always" mode you indicate that your network is fully routable. If a user usually in site "Seattle", travels to site "Tallinn" and tries to use SBC located in Seattle we will try to deliver the traffic to Seattle assuming that there is connection between Tallinn and Seattle offices. With "OnlyForLocaUsers" you indicate that there is no direct connection between sites. In example above, the traffic will not be send directly from Tallinn to Seattle. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Free-format string to describe the gateway. - - String - - String - - - None - - - Enabled - - > Applicable: Microsoft Teams - Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false). - - Boolean - - Boolean - - - $false - - - FailoverResponseCodes - - > Applicable: Microsoft Teams - If Direct Routing receives any 4xx or 6xx SIP error code in response on outgoing Invite (outgoing means call from a Teams client to PSTN with traffic flow :Teams Client -> Direct Routing -> SBC -> Telephony network) the call is considered completed by default. Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Please find more in "Reference" section of "Phone System Direct Routing" documentation - Setting this parameter overwrites the default values, so if you want to include the default values, please add them to string. - - String - - String - - - 408, 503, 504 - - - FailoverTimeSeconds - - > Applicable: Microsoft Teams - When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10. - - Int32 - - Int32 - - - 10 - - - ForwardCallHistory - - > Applicable: Microsoft Teams - Indicates whether call history information will be forwarded through the trunk. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - ForwardPai - - > Applicable: Microsoft Teams - Indicates whether the P-Asserted-Identity (PAI) header will be forwarded along with the call. The PAI header provides a way to verify the identity of the caller. The default value is False ($False). Setting this parameter to $true will render the from header anonymous, in accordance of RFC5379 and RFC3325. - - Boolean - - Boolean - - - $false - - - GatewayLbrEnabledUserOverride - - > Applicable: Microsoft Teams - Allows an LBR enabled user working from a network site outside the corporate network or a network site on the corporate network not configured using a tenant network site to make outbound PSTN calls or receive inbound PSTN calls via an LBR enabled gateway. The default value is False. - - Boolean - - Boolean - - - $false - - - GatewaySiteId - - > Applicable: Microsoft Teams - PSTN Gateway Site Id. - - String - - String - - - None - - - GatewaySiteLbrEnabled - - > Applicable: Microsoft Teams - Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is turned on, the SBC will report the site name as defined by tenant administrator. On incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - InboundPSTNNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to PSTN number on inbound direction. - - Object - - Object - - - None - - - InboundTeamsNumberTranslationRules - - This parameter assigns an ordered list of Teams translation rules, that apply to Teams numbers on inbound direction. - - Object - - Object - - - None - - - IPAddressVersion - - Possible values are "IPv4" and '"Pv6". When "IPv6" is set, the SBC must use IPv6 for both signaling and media. Note: IPv6 is supported only for non-media bypass scenarios. - - String - - String - - - None - - - MaxConcurrentSessions - - > Applicable: Microsoft Teams - Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent session is 90% or higher than this value. If this parameter is not set, the alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours. - - System.Int32 - - System.Int32 - - - None - - - MediaBypass - - > Applicable: Microsoft Teams - Parameter indicated of the SBC supports Media Bypass and the administrator wants to use it for this SBC. - - Boolean - - Boolean - - - $false - - - MediaRelayRoutingLocationOverride - - > Applicable: Microsoft Teams - Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter. - - String - - String - - - $false - - - OutboundPSTNNumberTranslationRules - - Assigns an ordered list of Teams translation rules, that apply to PSTN number on outbound direction. - - Object - - Object - - - None - - - OutboundTeamsNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to Teams Number on outbound direction. - - Object - - Object - - - None - - - PidfloSupported - - > Applicable: Microsoft Teams - Enables PIDF-LO support on the PSTN Gateway. If turned on the .xml body payload is sent to the SBC with the location details of the user. - - Boolean - - Boolean - - - $false - - - ProxySbc - - > Applicable: Microsoft Teams - The FQDN of the proxy SBC. Used in Local Media Optimization configurations. - - String - - String - - - None - - - SendSipOptions - - > Applicable: Microsoft Teams - Defines if an SBC will or will not send the SIP options. If disabled, the SBC will be excluded from Monitoring and Alerting system. We highly recommend that you enable SIP options. Default value is True. - - Boolean - - Boolean - - - $true - - - SipSignalingPort - - > Applicable: Microsoft Teams - Listening port used for communicating with Direct Routing services by using the Transport Layer Security (TLS) protocol. The value must be between 1 and 65535. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BypassMode - - Possible values are "None", "Always" and "OnlyForLocalUsers". By setting "Always" mode you indicate that your network is fully routable. If a user usually in site "Seattle", travels to site "Tallinn" and tries to use SBC located in Seattle we will try to deliver the traffic to Seattle assuming that there is connection between Tallinn and Seattle offices. With "OnlyForLocaUsers" you indicate that there is no direct connection between sites. In example above, the traffic will not be send directly from Tallinn to Seattle. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - Free-format string to describe the gateway. - - String - - String - - - None - - - Enabled - - > Applicable: Microsoft Teams - Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false). - - Boolean - - Boolean - - - $false - - - FailoverResponseCodes - - > Applicable: Microsoft Teams - If Direct Routing receives any 4xx or 6xx SIP error code in response on outgoing Invite (outgoing means call from a Teams client to PSTN with traffic flow :Teams Client -> Direct Routing -> SBC -> Telephony network) the call is considered completed by default. Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Please find more in "Reference" section of "Phone System Direct Routing" documentation - Setting this parameter overwrites the default values, so if you want to include the default values, please add them to string. - - String - - String - - - 408, 503, 504 - - - FailoverTimeSeconds - - > Applicable: Microsoft Teams - When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10. - - Int32 - - Int32 - - - 10 - - - ForwardCallHistory - - > Applicable: Microsoft Teams - Indicates whether call history information will be forwarded through the trunk. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - ForwardPai - - > Applicable: Microsoft Teams - Indicates whether the P-Asserted-Identity (PAI) header will be forwarded along with the call. The PAI header provides a way to verify the identity of the caller. The default value is False ($False). Setting this parameter to $true will render the from header anonymous, in accordance of RFC5379 and RFC3325. - - Boolean - - Boolean - - - $false - - - GatewayLbrEnabledUserOverride - - > Applicable: Microsoft Teams - Allows an LBR enabled user working from a network site outside the corporate network or a network site on the corporate network not configured using a tenant network site to make outbound PSTN calls or receive inbound PSTN calls via an LBR enabled gateway. The default value is False. - - Boolean - - Boolean - - - $false - - - GatewaySiteId - - > Applicable: Microsoft Teams - PSTN Gateway Site Id. - - String - - String - - - None - - - GatewaySiteLbrEnabled - - > Applicable: Microsoft Teams - Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is turned on, the SBC will report the site name as defined by tenant administrator. On incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False). - - Boolean - - Boolean - - - $false - - - Identity - - > Applicable: Microsoft Teams - The parameter is mandatory when modifying an existing SBC. - - String - - String - - - None - - - InboundPSTNNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to PSTN number on inbound direction. - - Object - - Object - - - None - - - InboundTeamsNumberTranslationRules - - This parameter assigns an ordered list of Teams translation rules, that apply to Teams numbers on inbound direction. - - Object - - Object - - - None - - - IPAddressVersion - - Possible values are "IPv4" and '"Pv6". When "IPv6" is set, the SBC must use IPv6 for both signaling and media. Note: IPv6 is supported only for non-media bypass scenarios. - - String - - String - - - None - - - MaxConcurrentSessions - - > Applicable: Microsoft Teams - Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent session is 90% or higher than this value. If this parameter is not set, the alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours. - - System.Int32 - - System.Int32 - - - None - - - MediaBypass - - > Applicable: Microsoft Teams - Parameter indicated of the SBC supports Media Bypass and the administrator wants to use it for this SBC. - - Boolean - - Boolean - - - $false - - - MediaRelayRoutingLocationOverride - - > Applicable: Microsoft Teams - Allows selecting path for media manually. Direct Routing assigns a datacenter for media path based on the public IP of the SBC. We always select closest to the SBC datacenter. However, in some cases a public IP from for example a US range can be assigned to an SBC located in Europe. In this case we will be using not optimal media path. We only recommend setting this parameter if the call logs clearly indicate that automatic assignment of the datacenter for media path does not assign the closest to the SBC datacenter. - - String - - String - - - $false - - - OutboundPSTNNumberTranslationRules - - Assigns an ordered list of Teams translation rules, that apply to PSTN number on outbound direction. - - Object - - Object - - - None - - - OutboundTeamsNumberTranslationRules - - Creates an ordered list of Teams translation rules, that apply to Teams Number on outbound direction. - - Object - - Object - - - None - - - PidfloSupported - - > Applicable: Microsoft Teams - Enables PIDF-LO support on the PSTN Gateway. If turned on the .xml body payload is sent to the SBC with the location details of the user. - - Boolean - - Boolean - - - $false - - - ProxySbc - - > Applicable: Microsoft Teams - The FQDN of the proxy SBC. Used in Local Media Optimization configurations. - - String - - String - - - None - - - SendSipOptions - - > Applicable: Microsoft Teams - Defines if an SBC will or will not send the SIP options. If disabled, the SBC will be excluded from Monitoring and Alerting system. We highly recommend that you enable SIP options. Default value is True. - - Boolean - - Boolean - - - $true - - - SipSignalingPort - - > Applicable: Microsoft Teams - Listening port used for communicating with Direct Routing services by using the Transport Layer Security (TLS) protocol. The value must be between 1 and 65535. - - Int32 - - Int32 - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlinePSTNGateway -Identity sbc.contoso.com -Enabled $true - - This example enables previously created SBC with Identity (and FQDN) sbc.contoso.com. All others parameters will stay default. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlinePSTNGateway -Identity sbc.contoso.com -SIPSignalingPort 5064 -ForwardPAI $true -Enabled $true - - This example modifies the configuration of an SBC with identity (and FQDN) sbc.contoso.com. It changes the SIPSignalingPort to 5064 and enabled P-Asserted-Identity field on outbound connections (outbound from Direct Routing to SBC). For each outbound to SBC session, the Direct Routing interface will report in P-Asserted-Identity fields the TEL URI and SIP address of the user who made a call. This is useful when a tenant administrator set identity of the caller as "Anonymous" or a general number of the company, but for the billing purposes the real identity of the user should be reported. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstngateway - - - New-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinepstngateway - - - Get-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstngateway - - - Remove-CsOnlinePSTNGateway - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinepstngateway - - - - - - Set-CsOnlinePstnUsage - Set - CsOnlinePstnUsage - - Modifies a set of strings that identify the allowed online public switched telephone network (PSTN) usages. This cmdlet can be used to add usages to the list of online PSTN usages or remove usages from the list. - - - - Online PSTN usages are string values that are used for call authorization. An online PSTN usage links an online voice policy to a route. The `Set-CsOnlinePstnUsage` cmdlet is used to add or remove phone usages to or from the usage list. This list is global so it can be used by policies and routes throughout the tenant. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Set-CsOnlinePstnUsage - - Identity - - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Usage - - Contains a list of allowable usage strings. These entries can be any string value. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The scope at which these settings are applied. The Identity for this cmdlet is always Global. - - String - - String - - - None - - - Usage - - Contains a list of allowable usage strings. These entries can be any string value. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Identity global -Usage @{add="International"} - - This command adds the string "International" to the current list of available PSTN usages. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Identity global -Usage @{remove="Local"} - - This command removes the string "Local" from the list of available PSTN usages. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Usage @{remove="Local"} - - The command in this example performs the exact same action as the command in Example 2: it removes the "Local" PSTN usage. This example shows the command without the Identity parameter specified. The only Identity available to the Set-CsOnlinePstnUsage cmdlet is the Global identity; omitting the Identity parameter defaults to Global. - - - - -------------------------- Example 4 -------------------------- - PS C:\> Set-CsOnlinePstnUsage -Usage @{replace="International","Restricted"} - - This command replaces everything in the usage list with the values International and Restricted. All previously existing usages are removed. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinepstnusage - - - Get-CsOnlinePstnUsage - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinepstnusage - - - - - - Set-CsOnlineSchedule - Set - CsOnlineSchedule - - Use the Set-CsOnlineSchedule cmdlet to update a schedule. - - - - The Set-CsOnlineSchedule cmdlet lets you modify the properties of a schedule. - - - - Set-CsOnlineSchedule - - Instance - - > Applicable: Microsoft Teams - The Instance parameter is the object reference to the schedule to be modified. - - Object - - Object - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - System.Guid - - System.Guid - - - None - - - - - - Instance - - > Applicable: Microsoft Teams - The Instance parameter is the object reference to the schedule to be modified. - - Object - - Object - - - None - - - Tenant - - > Applicable: Microsoft Teams - {{ Fill Tenant Description }} - - System.Guid - - System.Guid - - - None - - - - - - Microsoft.Rtc.Management.Hosted.Online.Models.Schedule - - - The modified instance of the `Microsoft.Rtc.Management.Hosted.Online.Models.Schedule` object. - - - - - - - System.Void - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $schedule = Get-CsOnlineSchedule -Id "fa9081d6-b4f3-5c96-baec-0b00077709e5" -$schedule.Name = "Christmas Holiday" -Set-CsOnlineSchedule -Instance $schedule - - This example modifies the name of the schedule that has a Id of fa9081d6-b4f3-5c96-baec-0b00077709e5. - - - - -------------------------- Example 2 -------------------------- - $schedule = Get-CsOnlineSchedule -Id "fa9081d6-b4f3-5c96-baec-0b00077709e5" - -$schedule - - Id : 5d3e0315-533b-473d-8524-36c954d1fc93 - Name : Thanksgiving - Type : Fixed - WeeklyRecurrentSchedule : - FixedSchedule : 22/11/2018 00:00 - 23/11/2018 00:00, 28/11/2019 00:00 - 29/11/2019 00:00, 26/11/2020 00:00 - 27/11/2020 00:00 - -# Add a new Date Time Range -$schedule.FixedSchedule.DateTimeRanges += New-CsOnlineDateTimeRange -Start "25/11/2021" -End "26/11/2021" - -Set-CsOnlineSchedule -Instance $schedule - - This example updates an existing holiday schedule, adding a new date/time range to it. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineschedule - - - New-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineschedule - - - Remove-CsOnlineSchedule - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlineschedule - - - - - - Set-CsOnlineVoiceApplicationInstance - Set - CsOnlineVoiceApplicationInstance - - The cmdlet modifies an application instance in Microsoft Entra ID. - - - - This cmdlet is used to modify an application instance in Microsoft Entra ID. Note : This cmdlet has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and Remove-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment)cmdlets instead. - - - - Set-CsOnlineVoiceApplicationInstance - - Identity - - The user principal name (UPN) of the resource account in Microsoft Entra ID. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - TelephoneNumber - - The phone number to be assigned to the resource account. - - Object - - Object - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The user principal name (UPN) of the resource account in Microsoft Entra ID. - - Object - - Object - - - None - - - TelephoneNumber - - The phone number to be assigned to the resource account. - - Object - - Object - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineVoiceApplicationInstance -Identity testra1@contoso.com -TelephoneNumber +14255550100 - - This example sets a phone number to the resource account testra1@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceapplicationinstance - - - New-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - - - - Set-CsOnlineVoicemailUserSettings - Set - CsOnlineVoicemailUserSettings - - Use the Set-CsOnlineVoicemailUserSettings cmdlet to modify the online voicemail user settings of a specific user. New online voicemail user settings of the user would be returned after executing. - - - - The Set-CsOnlineVoicemailUserSettings cmdlet lets tenant admin modify the online voicemail user settings of a specific user in the organization. New online voicemail user settings of the user would be returned after executing. For example, tenant admin could enable/disable voicemail, change voicemail prompt language, modify out-of-office voicemail greeting settings, or setup simple call answer rules. Only those properties that tenant admin have actually provided with be modified. If an online voicemail user setting was not set by tenant admin, it would remain the old value after this cmdlet has been executed. - - - - Set-CsOnlineVoicemailUserSettings - - CallAnswerRule - - The CallAnswerRule parameter represents the value of the call answer rule, which can be any of the following: - - DeclineCall - - PromptOnly - - PromptOnlyWithTransfer - - RegularVoicemail - - VoicemailWithTransferOption - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - DefaultGreetingPromptOverwrite - - The DefaultGreetingPromptOverwrite parameter represents the contents that overwrite the default normal greeting prompt. If the user's normal custom greeting is not set and DefaultGreetingPromptOverwrite is not empty, the voicemail service will play this overwrite greeting instead of the default normal greeting in the voicemail deposit scenario. - - System.String - - System.String - - - None - - - DefaultOofGreetingPromptOverwrite - - The DefaultOofGreetingPromptOverwrite parameter represents the contents that overwrite the default out-of-office greeting prompt. If the user's out-of-office custom greeting is not set and DefaultOofGreetingPromptOverwrite is not empty, the voicemail service will play this overwrite greeting instead of the default out-of-office greeting in the voicemail deposit scenario. - - System.String - - System.String - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP URI or an Object ID. - - System.String - - System.String - - - None - - - OofGreetingEnabled - - The OofGreetingEnabled parameter represents whether to play out-of-office greeting in voicemail deposit scenario. - - System.Boolean - - System.Boolean - - - None - - - OofGreetingFollowAutomaticRepliesEnabled - - The OofGreetingFollowAutomaticRepliesEnabled parameter represents whether to play out-of-office greeting in voicemail deposit scenario when user set automatic replies in Outlook. - - System.Boolean - - System.Boolean - - - None - - - PromptLanguage - - The PromptLanguage parameter represents the language that is used to play voicemail prompts. - The following languages are supported: - - "ar-EG" (Arabic - Egypt) - - "ar-SA" (Arabic - Saudi Arabia) - - "bg-BG" (Bulgarian - Bulgaria) - - "ca-ES" (Catalan - Catalan) - - "cy-GB" (Welsh - United Kingdom) - - "cs-CZ" (Czech - Czech Republic) - - "da-DK" (Danish - Denmark) - - "de-AT" (German - Austria) - - "de-CH" (German - Switzerland) - - "de-DE" (German - Germany) - - "el-GR" (Greek - Greece) - - "en-AU" (English - Australia) - - "en-CA" (English - Canada) - - "en-GB" (English - United Kingdom) - - "en-IE" (English - Ireland) - - "en-IN" (English - India) - - "en-PH" (English - Philippines) - - "en-US" (English - United States) - - "en-ZA" (English - South Africa) - - "es-ES" (Spanish - Spain) - - "es-MX" (Spanish - Mexico) - - "et-EE" (Estonian - Estonia) - - "fi-FI" (Finnish - Finland) - - "fr-BE" (French - Belgium) - - "fr-CA" (French - Canada) - - "fr-CH" (French - Switzerland) - - "fr-FR" (French - France) - - "he-IL" (Hebrew - Israel) - - "hi-IN" (Hindi - India) - - "hr-HR" (Croatian - Croatia) - - "hu-HU" (Hungarian - Hungary) - - "id-ID" (Indonesian - Indonesia) - - "it-IT" (Italian - Italy) - - "ja-JP" (Japanese - Japan) - - "ko-KR" (Korean - Korea) - - "lt-LT" (Lithuanian - Lithuania) - - "lv-LV" (Latvian - Latvia) - - "nl-BE" (Dutch - Belgium) - - "nl-NL" (Dutch - Netherlands) - - "nb-NO" (Norwegian, Bokmål - Norway) - - "pl-PL" (Polish - Poland) - - "pt-BR" (Portuguese - Brazil) - - "pt-PT" (Portuguese - Portugal) - - "ro-RO" (Romanian - Romania) - - "ru-RU" (Russian - Russia) - - "sk-SK" (Slovak - Slovakia) - - "sl-SI" (Slovenian - Slovenia) - - "sv-SE" (Swedish - Sweden) - - "th-TH" (Thai - Thailand) - - "tr-TR" (Turkish - Türkiye) - - "vi-VN" (Vietnamese - Viet Nam) - - "zh-CN" (Chinese - Simplified, PRC) - - "zh-TW" (Chinese - Traditional, Taiwan) - - "zh-HK" (Chinese - Traditional, Hong Kong S.A.R.) - - System.String - - System.String - - - None - - - ShareData - - Specifies whether voicemail and transcription data is shared with the service for training and improving accuracy. - - System.Boolean - - System.Boolean - - - None - - - TransferTarget - - The TransferTarget parameter represents the target to transfer the call when call answer rule set to PromptOnlyWithTransfer or VoicemailWithTransferOption. Value of this parameter should be a SIP URI of another user in your organization. For user with Enterprise Voice enabled, a valid telephone number could also be accepted as TransferTarget. - - System.String - - System.String - - - None - - - VoicemailEnabled - - The VoicemailEnabled parameter represents whether to enable voicemail service. If set to $false, the user has no voicemail service. - - System.Boolean - - System.Boolean - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - CallAnswerRule - - The CallAnswerRule parameter represents the value of the call answer rule, which can be any of the following: - - DeclineCall - - PromptOnly - - PromptOnlyWithTransfer - - RegularVoicemail - - VoicemailWithTransferOption - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - DefaultGreetingPromptOverwrite - - The DefaultGreetingPromptOverwrite parameter represents the contents that overwrite the default normal greeting prompt. If the user's normal custom greeting is not set and DefaultGreetingPromptOverwrite is not empty, the voicemail service will play this overwrite greeting instead of the default normal greeting in the voicemail deposit scenario. - - System.String - - System.String - - - None - - - DefaultOofGreetingPromptOverwrite - - The DefaultOofGreetingPromptOverwrite parameter represents the contents that overwrite the default out-of-office greeting prompt. If the user's out-of-office custom greeting is not set and DefaultOofGreetingPromptOverwrite is not empty, the voicemail service will play this overwrite greeting instead of the default out-of-office greeting in the voicemail deposit scenario. - - System.String - - System.String - - - None - - - Force - - Specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter represents the ID of the specific user in your organization; this can be either a SIP URI or an Object ID. - - System.String - - System.String - - - None - - - OofGreetingEnabled - - The OofGreetingEnabled parameter represents whether to play out-of-office greeting in voicemail deposit scenario. - - System.Boolean - - System.Boolean - - - None - - - OofGreetingFollowAutomaticRepliesEnabled - - The OofGreetingFollowAutomaticRepliesEnabled parameter represents whether to play out-of-office greeting in voicemail deposit scenario when user set automatic replies in Outlook. - - System.Boolean - - System.Boolean - - - None - - - PromptLanguage - - The PromptLanguage parameter represents the language that is used to play voicemail prompts. - The following languages are supported: - - "ar-EG" (Arabic - Egypt) - - "ar-SA" (Arabic - Saudi Arabia) - - "bg-BG" (Bulgarian - Bulgaria) - - "ca-ES" (Catalan - Catalan) - - "cy-GB" (Welsh - United Kingdom) - - "cs-CZ" (Czech - Czech Republic) - - "da-DK" (Danish - Denmark) - - "de-AT" (German - Austria) - - "de-CH" (German - Switzerland) - - "de-DE" (German - Germany) - - "el-GR" (Greek - Greece) - - "en-AU" (English - Australia) - - "en-CA" (English - Canada) - - "en-GB" (English - United Kingdom) - - "en-IE" (English - Ireland) - - "en-IN" (English - India) - - "en-PH" (English - Philippines) - - "en-US" (English - United States) - - "en-ZA" (English - South Africa) - - "es-ES" (Spanish - Spain) - - "es-MX" (Spanish - Mexico) - - "et-EE" (Estonian - Estonia) - - "fi-FI" (Finnish - Finland) - - "fr-BE" (French - Belgium) - - "fr-CA" (French - Canada) - - "fr-CH" (French - Switzerland) - - "fr-FR" (French - France) - - "he-IL" (Hebrew - Israel) - - "hi-IN" (Hindi - India) - - "hr-HR" (Croatian - Croatia) - - "hu-HU" (Hungarian - Hungary) - - "id-ID" (Indonesian - Indonesia) - - "it-IT" (Italian - Italy) - - "ja-JP" (Japanese - Japan) - - "ko-KR" (Korean - Korea) - - "lt-LT" (Lithuanian - Lithuania) - - "lv-LV" (Latvian - Latvia) - - "nl-BE" (Dutch - Belgium) - - "nl-NL" (Dutch - Netherlands) - - "nb-NO" (Norwegian, Bokmål - Norway) - - "pl-PL" (Polish - Poland) - - "pt-BR" (Portuguese - Brazil) - - "pt-PT" (Portuguese - Portugal) - - "ro-RO" (Romanian - Romania) - - "ru-RU" (Russian - Russia) - - "sk-SK" (Slovak - Slovakia) - - "sl-SI" (Slovenian - Slovenia) - - "sv-SE" (Swedish - Sweden) - - "th-TH" (Thai - Thailand) - - "tr-TR" (Turkish - Türkiye) - - "vi-VN" (Vietnamese - Viet Nam) - - "zh-CN" (Chinese - Simplified, PRC) - - "zh-TW" (Chinese - Traditional, Taiwan) - - "zh-HK" (Chinese - Traditional, Hong Kong S.A.R.) - - System.String - - System.String - - - None - - - ShareData - - Specifies whether voicemail and transcription data is shared with the service for training and improving accuracy. - - System.Boolean - - System.Boolean - - - None - - - TransferTarget - - The TransferTarget parameter represents the target to transfer the call when call answer rule set to PromptOnlyWithTransfer or VoicemailWithTransferOption. Value of this parameter should be a SIP URI of another user in your organization. For user with Enterprise Voice enabled, a valid telephone number could also be accepted as TransferTarget. - - System.String - - System.String - - - None - - - VoicemailEnabled - - The VoicemailEnabled parameter represents whether to enable voicemail service. If set to $false, the user has no voicemail service. - - System.Boolean - - System.Boolean - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.Hosted.Voicemail.Models.VoicemailUserSettings - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineVoicemailUserSettings -Identity sip:user1@contoso.com -VoicemailEnabled $true - - This example changes VoicemailEnabled setting to true for the user with SIP URI sip:user1@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineVoicemailUserSettings -Identity user2@contoso.com -PromptLanguage "en-US" -OofGreetingFollowCalendarEnabled $false - - This example changes PromptLanguage setting to "en-US" and OofGreetingFollowCalendarEnabled setting to false for user2@contoso.com. - - - - -------------------------- Example 3 -------------------------- - Set-CsOnlineVoicemailUserSettings -Identity user3@contoso.com -CallAnswerRule PromptOnlyWithTransfer -TransferTarget sip:user4@contoso.com - - This example changes CallAnswerRule setting to PromptOnlyWithTransfer and set TransferTarget to "sip:user4@contoso.com" for user3@contoso.com. - - - - -------------------------- Example 4 -------------------------- - Set-CsOnlineVoicemailUserSettings -Identity user5@contoso.com -CallAnswerRule VoicemailWithTransferOption -TransferTarget "+14255551234" - - This example changes CallAnswerRule setting to VoicemailWithTransferOption and set TransferTarget to "+14255551234" for user5@contoso.com.. - - - - -------------------------- Example 5 -------------------------- - Set-CsOnlineVoicemailUserSettings -Identity user6@contoso.com -DefaultGreetingPromptOverwrite "Hi, I am currently not available." - - This example changes DefaultGreetingPromptOverwrite setting to "Hi, I am currently not available." for user6@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoicemailusersettings - - - Get-CsOnlineVoicemailUserSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoicemailusersettings - - - - - - Set-CsOnlineVoiceRoute - Set - CsOnlineVoiceRoute - - Modifies an online voice route. Online voice routes contain instructions that tell Microsoft Teams how to route calls from Microsoft or Office 365 users to phone numbers on the public switched telephone network (PSTN) or a private branch exchange (PBX). - - - - Use this cmdlet to modify an existing online voice route. Online voice routes are associated with online voice policies through online public switched telephone network (PSTN) usages. A online voice route includes a regular expression that identifies which phone numbers will be routed through a given voice route: phone numbers matching the regular expression will be routed through this route. - This cmdlet is used when configuring Microsoft Phone System Direct Routing. - - - - Set-CsOnlineVoiceRoute - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A description of what this phone route is for. - - String - - String - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. For example, the default number pattern, [0-9]{10}, specifies a 10-digit number containing any digits 0 through 9. - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BridgeSourcePhoneNumber - - BridgeSourcePhoneNumber is an E.164 formatted Operator Connect Conferencing phone number assigned to your Audio Conferencing Bridge. Using BridgeSourcePhoneNumber in an online voice route is mutually exclusive with using OnlinePstnGatewayList in the same online voice route. - When using BridgeSourcePhoneNumber in an online voice route, the OnlinePstnUsages used in the online voice route should only be used in a corresponding OnlineAudioConferencingRoutingPolicy. The same OnlinePstnUsages should not be used in online voice routes that are not using BridgeSourcePhoneNumber. - For more information about Operator Connect Conferencing, please see Configure Operator Connect Conferencing (https://learn.microsoft.com/microsoftteams/operator-connect-conferencing-configure). - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A description of what this phone route is for. - - String - - String - - - None - - - Identity - - The unique identity of the online voice route. (If the route name contains a space, such as Test Route, you must enclose the full string in parentheses.) - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - NumberPattern - - A regular expression that specifies the phone numbers to which this route applies. Numbers matching this pattern will be routed according to the rest of the routing settings. For example, the default number pattern, [0-9]{10}, specifies a 10-digit number containing any digits 0 through 9. - - String - - String - - - None - - - OnlinePstnGatewayList - - This parameter contains a list of online gateways associated with this online voice route. Each member of this list must be the service Identity of the online PSTN gateway. The service Identity is the fully qualified domain name (FQDN) of the pool or the IP address of the server. For example, redmondpool.litwareinc.com. - By default this list is empty. However, if you leave this parameter blank when creating a new voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local, Long Distance, etc.) that can be applied to this online voice route. The PSTN usage must be an existing usage (PSTN usages can be retrieved by calling the Get-CsOnlinePstnUsage cmdlet). - By default this list is empty. However, if you leave this parameter blank when creating a new online voice route, you'll receive a warning message. - - PSListModifier - - PSListModifier - - - None - - - Priority - - A number could resolve to multiple online voice routes. The priority determines the order in which the routes will be applied if more than one route is possible. The lowest priority will be applied first and then in ascendant order. - - Int32 - - Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -Description "Test Route" - - This command sets the Description of the Route1 online voice route to "Test Route." - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{add="Long Distance"} - - The command in this example modifies the online voice route with the identity Route1 to add the online PSTN usage Long Distance to the list of usages for this voice route. Long Distance must be in the list of global online PSTN usages (which can be retrieved with a call to the `Get-CsOnlinePstnUsage` cmdlet). - - - - -------------------------- Example 3 -------------------------- - PS C:\> $x = (Get-CsOnlinePstnUsage).Usage - -PS C:\> Set-CsOnlineVoiceRoute -Identity Route1 -OnlinePstnUsages @{replace=$x} - - This example modifies the online voice route named Route1 to populate that route's list of online PSTN usages with all the existing usages for the organization. The first command in this example retrieves the list of global online PSTN usages. Notice that the call to the `Get-CsOnlinePstnUsage` cmdlet is in parentheses; this means that we first retrieve an object containing PSTN usage information. (Because there is only one--global--PSTN usage, only one object will be retrieved.) The command then retrieves the Usage property of this object. That property, which contains a list of online PSTN usages, is assigned to the variable $x. In the second line of this example, the Set-CsOnlineVoiceRoute cmdlet is called to modify the online voice route with the identity Route1. Notice the value passed to the OnlinePstnUsages parameter: @{replace=$x}. This value says to replace everything in the OnlinePstnUsages list for this route with the contents of $x, which contain the online PSTN usages list retrieved in line 1. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroute - - - Get-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroute - - - New-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroute - - - Remove-CsOnlineVoiceRoute - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroute - - - - - - Set-CsOnlineVoiceRoutingPolicy - Set - CsOnlineVoiceRoutingPolicy - - Modifies an existing online voice routing policy. Online voice routing policies manage online PSTN usages for Phone System users. - For more details, please refer to the article Voice routing policy considerations. (/microsoftteams/direct-routing-voice-routing) - - - - Online voice routing policies are used in Microsoft Phone System Direct Routing scenarios. Assigning your Teams users an online voice routing policy enables those users to receive and to place phone calls to the public switched telephone network by using your on-premises SIP trunks. - Note that simply assigning a user an online voice routing policy will not enable them to make PSTN calls via Teams. Among other things, you will also need to enable those users for Phone System and will need to assign them an appropriate online voice policy. - - - - Set-CsOnlineVoiceRoutingPolicy - - Identity - - Unique identifier assigned to the policy when it was created. Online voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - If you do not specify an Identity, then the `Set-CsOnlineVoiceRoutingPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet.) - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany an online voice routing policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the policy when it was created. Online voice routing policies can be assigned at the global scope or the per-user scope. To refer to the global instance, use this syntax: - -Identity global - To refer to a per-user policy, use syntax similar to this: - -Identity "RedmondOnlineVoiceRoutingPolicy" - If you do not specify an Identity, then the `Set-CsOnlineVoiceRoutingPolicy` cmdlet will modify the global policy. - - String - - String - - - None - - - OnlinePstnUsages - - A list of online PSTN usages (such as Local or Long Distance) that can be applied to this online voice routing policy. The online PSTN usage must be an existing usage. (PSTN usages can be retrieved by calling the `Get-CsOnlinePstnUsage` cmdlet.) - - Object - - Object - - - None - - - RouteType - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages @{Add="Long Distance"} - - The command shown in Example 1 adds the online PSTN usage "Long Distance" to the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy -Identity "RedmondOnlineVoiceRoutingPolicy" -OnlinePstnUsages @{Remove="Local"} - - In Example 2, the online PSTN usage "Local" is removed from the per-user online voice routing policy RedmondOnlineVoiceRoutingPolicy. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsOnlineVoiceRoutingPolicy | Where-Object {$_.OnlinePstnUsages -contains "Local"} | Set-CsOnlineVoiceRoutingPolicy -OnlinePstnUsages @{Remove="Local"} - - Example 3 removes the online PSTN usage "Local" from all the online voice routing policies that include that usage. In order to do this, the command first calls the `Get-CsOnlineVoiceRoutingPolicy` cmdlet without any parameters in order to return a collection of all the available online voice routing policies. That collection is then piped to the Where-Object cmdlet, which picks out only those policies where the OnlinePstnUsages property includes (-contains) the "Local" usage. Those policies are then piped to the `Set-CsOnlineVoiceRoutingPolicy` cmdlet, which deletes the Local usage from each policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceroutingpolicy - - - New-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlinevoiceroutingpolicy - - - Get-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlinevoiceroutingpolicy - - - Grant-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csonlinevoiceroutingpolicy - - - Remove-CsOnlineVoiceRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csonlinevoiceroutingpolicy - - - - - - Set-CsOnlineVoiceUser - Set - CsOnlineVoiceUser - - Use the `Set-CsOnlineVoiceUser` cmdlet to set the PSTN specific parameters (like telephone numbers and emergency response locations.) - - - - Note : This cmdlet has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)and Remove-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment)cmdlets instead. - - - - Set-CsOnlineVoiceUser - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - You can use the `Get-CsOnlineUser` cmdlet to identify the users you want to modify. - - Object - - Object - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - LocationID - - > Applicable: Microsoft Teams - Specifies the unique identifier of the emergency location to assign to the user. Location identities can be discovered by using the `Get-CsOnlineLisLocation` cmdlet. - This parameter is required for users based in the US. - - Guid - - Guid - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Specifies the telephone number to be assigned to the user. The value must be in E.164 format: +14255043920. Setting the value to $Null clears the user's telephone number. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter is not implemented for this cmdlet. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the identity of the target user. Acceptable values include: - Example: jphillips@contoso.com - Example: sip:jphillips@contoso.com - Example: 98403f08-577c-46dd-851a-f0460a13b03d - You can use the `Get-CsOnlineUser` cmdlet to identify the users you want to modify. - - Object - - Object - - - None - - - LocationID - - > Applicable: Microsoft Teams - Specifies the unique identifier of the emergency location to assign to the user. Location identities can be discovered by using the `Get-CsOnlineLisLocation` cmdlet. - This parameter is required for users based in the US. - - Guid - - Guid - - - None - - - TelephoneNumber - - > Applicable: Microsoft Teams - Specifies the telephone number to be assigned to the user. The value must be in E.164 format: +14255043920. Setting the value to $Null clears the user's telephone number. - - String - - String - - - None - - - Tenant - - > Applicable: Microsoft Teams - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter is not implemented for this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsOnlineVoiceUser -Identity 3c37e1c7-78f9-4703-82ee-a6b68516794e -TelephoneNumber +14255037311 -LocationID c7c5a17f-00d7-47c0-9ddb-3383229d606b - - This example sets the telephone number and location for a user identified by the user ObjectID. - - - - -------------------------- Example 2 -------------------------- - Set-CsOnlineVoiceUser -Identity user@domain.com -TelephoneNumber $null - - This example removes the telephone number for a user identified by the user's SIP address. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlinevoiceuser - - - - - - Set-CsPersonalAttendantSettings - Set - CsPersonalAttendantSettings - - Limited Preview: Functionality described in this document is currently in limited preview and only authorized organizations have access. - This cmdlet will set personal attendant settings for the specified user. - - - - This cmdlet sets personal attendant settings for the specified user. - When specifying settings you need to specify all settings, for instance, you can't just turn call screening on. Instead, you need to start by getting the current settings, making the necessary changes, and then setting/writing all settings. - - - - Set-CsPersonalAttendantSettings - - Identity - - The Identity of the user to set personal attendant settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsPersonalAttendantEnabled - - This parameter controls whether personal attendant is enabled or not. If personal attendant is enabled, then at least one of: AllowInboundInternalCalls, AllowInboundFederatedCalls, AllowInboundPSTNCalls must be enabled. - - System.Boolean - - System.Boolean - - - False - - - DefaultLanguage - - Language to be used by personal attendant in communication. The preliminary list of supported languages is: en-US, fr-FR, ar-SA, zh-CN, zh-TW, cs-CZ, da-DK, nl-NL, en-AU, en-GB, fi-FI, fr-CA, de-DE, el-GR, hi-IN, id-ID, it-IT, ja-JP, ko-KR, nb-NO, pl-PL, pt-BR, ru-RU, es-ES, es-US, sv-SE, th-TH, tr-TR - - System.String - - System.String - - - en-US - - - DefaultVoice - - Voice to be used by personal attendant in communication. Supported values are Female and Male. - > [!NOTE] > This parameter is currently in development and changing it does not change the behavior of Personal Attendant. - - System.String - - System.String - - - Female - - - CalleeName - - Name that personal attendant uses when referring to its owner. - - System.String - - System.String - - - None - - - DefaultTone - - Tone to be used by personal attendant in communication. Supported values are Formal and Casual. - > [!NOTE] > This parameter is currently in development and enabling/disabling it does not change the behavior of Personal Attendant. - - System.String - - System.String - - - Formal - - - IsBookingCalendarEnabled - - This parameter controls whether personal attendant can access personal bookings calendar to fetch the user's availability and schedule callbacks on behalf of the user. If access to personal calendar is enabled by admin, user must specify the bookings link in Teams Personal Attendant settings. - - System.Boolean - - System.Boolean - - - False - - - IsNonContactCallbackEnabled - - This parameter controls whether personal attendant calendar operations for callers not in the user contact list are enabled or not. - > [!NOTE] > This parameter is currently in development and enabling/disabling it does not change the behavior of Personal Attendant. - - System.Boolean - - System.Boolean - - - False - - - IsCallScreeningEnabled - - This parameter controls whether personal attendant evaluates calls context and passes the info to the user. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundInternalCalls - - This parameter controls whether personal attendant for incoming domain calls is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundFederatedCalls - - This parameter controls whether personal attendant for incoming calls from other domains is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundPSTNCalls - - This parameter controls whether personal attendant for incoming PSTN calls is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - IsAutomaticTranscriptionEnabled - - This parameter controls whether automatic storing of transcriptions (of personal attendant calls) is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - IsAutomaticRecordingEnabled - - This parameter controls whether automatic storing of recordings (of personal attendant calls) is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - - - - Identity - - The Identity of the user to set personal attendant settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsPersonalAttendantEnabled - - This parameter controls whether personal attendant is enabled or not. If personal attendant is enabled, then at least one of: AllowInboundInternalCalls, AllowInboundFederatedCalls, AllowInboundPSTNCalls must be enabled. - - System.Boolean - - System.Boolean - - - False - - - DefaultLanguage - - Language to be used by personal attendant in communication. The preliminary list of supported languages is: en-US, fr-FR, ar-SA, zh-CN, zh-TW, cs-CZ, da-DK, nl-NL, en-AU, en-GB, fi-FI, fr-CA, de-DE, el-GR, hi-IN, id-ID, it-IT, ja-JP, ko-KR, nb-NO, pl-PL, pt-BR, ru-RU, es-ES, es-US, sv-SE, th-TH, tr-TR - - System.String - - System.String - - - en-US - - - DefaultVoice - - Voice to be used by personal attendant in communication. Supported values are Female and Male. - > [!NOTE] > This parameter is currently in development and changing it does not change the behavior of Personal Attendant. - - System.String - - System.String - - - Female - - - CalleeName - - Name that personal attendant uses when referring to its owner. - - System.String - - System.String - - - None - - - DefaultTone - - Tone to be used by personal attendant in communication. Supported values are Formal and Casual. - > [!NOTE] > This parameter is currently in development and enabling/disabling it does not change the behavior of Personal Attendant. - - System.String - - System.String - - - Formal - - - IsBookingCalendarEnabled - - This parameter controls whether personal attendant can access personal bookings calendar to fetch the user's availability and schedule callbacks on behalf of the user. If access to personal calendar is enabled by admin, user must specify the bookings link in Teams Personal Attendant settings. - - System.Boolean - - System.Boolean - - - False - - - IsNonContactCallbackEnabled - - This parameter controls whether personal attendant calendar operations for callers not in the user contact list are enabled or not. - > [!NOTE] > This parameter is currently in development and enabling/disabling it does not change the behavior of Personal Attendant. - - System.Boolean - - System.Boolean - - - False - - - IsCallScreeningEnabled - - This parameter controls whether personal attendant evaluates calls context and passes the info to the user. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundInternalCalls - - This parameter controls whether personal attendant for incoming domain calls is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundFederatedCalls - - This parameter controls whether personal attendant for incoming calls from other domains is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - AllowInboundPSTNCalls - - This parameter controls whether personal attendant for incoming PSTN calls is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - IsAutomaticTranscriptionEnabled - - This parameter controls whether automatic storing of transcriptions (of personal attendant calls) is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - IsAutomaticRecordingEnabled - - This parameter controls whether automatic storing of recordings (of personal attendant calls) is enabled or not. - - System.Boolean - - System.Boolean - - - True - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 7.3.0 or later. - The specified user need to have the Microsoft Phone System license assigned. - The cmdlet is validating different settings and is always writing all the parameters. You might see validation errors from the cmdlet due to this behavior. As an example, if you already have call forwarding set up and you want to set up personal attendant, you will get a validation error. - - - - - -------------------------- Example 1 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $false -IsCallScreeningEnabled $false --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $false -AllowInboundPSTNCalls $false -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows setting up personal attendant for user1@contoso.com. Personal attendant communicates in English. Personal attendant will refer to its owner as User1. Personal attendant is only enabled for inbound Teams calls from the user's domain. Additional capabilities are turned off. - - - - -------------------------- Example 2 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $true -IsCallScreeningEnabled $false --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $false -AllowInboundPSTNCalls $false -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows setting up personal attendant for user1@contoso.com. In addition to previously mentioned capabilities, personal attendant is able to access personal bookings calendar, fetch the user's availability and schedule callbacks on behalf of the user. Calendar operations are enabled for all incoming callers. user1 must specify the bookings link in Teams Personal Attendant settings. - - - - -------------------------- Example 3 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $true -IsCallScreeningEnabled $false --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $true -AllowInboundPSTNCalls $true -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows setting up personal attendant for user1@contoso.com. In addition to previously mentioned capabilities, personal attendant is enabled for all incoming calls: the user's domain, other domains and PSTN. - - - - -------------------------- Example 4 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $true -IsCallScreeningEnabled $true --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $true -AllowInboundPSTNCalls $true -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows setting up personal attendant for user1@contoso.com. In addition to previously mentioned capabilities, personal attendant is enabled to evaluate the call's context and pass the info to the user. - - - - -------------------------- Example 5 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $true -IsCallScreeningEnabled $true --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $true -AllowInboundPSTNCalls $true -IsAutomaticTranscriptionEnabled $true -IsAutomaticRecordingEnabled $true - - This example shows setting up personal attendant for user1@contoso.com. In addition to previously mentioned capabilities, personal attendant is automatically storing call transcription and recording. - - - - -------------------------- Example 6 -------------------------- - Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $false - - This example shows turning off personal attendant for user1@contoso.com. - - - - -------------------------- Example 7 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsForwardingEnabled $false -Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $false -IsCallScreeningEnabled $false --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $false -AllowInboundPSTNCalls $false -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows how to set up personal attendant for a user, who has call forwarding enabled. - - - - -------------------------- Example 8 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsUnansweredEnabled $true -UnansweredTargetType Voicemail -UnansweredDelay 00:00:20 -Set-CsPersonalAttendantSettings -Identity user1@contoso.com -IsPersonalAttendantEnabled $true -DefaultLanguage en-US -CalleeName User1 -IsBookingCalendarEnabled $false -IsCallScreeningEnabled $false --AllowInboundInternalCalls $true -AllowInboundFederatedCalls $false -AllowInboundPSTNCalls $false -IsAutomaticTranscriptionEnabled $false -IsAutomaticRecordingEnabled $false - - This example shows how to set up personal attendant for a user, who would like to use unanswered call functionality simultaniously with personal attendant. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cspersonalattendantsettings - - - Get-CsPersonalAttendantSettings - - - - - - - Set-CsPhoneNumberAssignment - Set - CsPhoneNumberAssignment - - This cmdlet will assign a phone number to a user or a resource account (online application instance). - - - - This cmdlet assigns a telephone number to a user or resource account. When you assign a phone number the EnterpriseVoiceEnabled flag is automatically set to True. - You can also assign a location to a phone number. - To remove a phone number from a user or resource account, use the Remove-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment)cmdlet. - - - - Set-CsPhoneNumberAssignment - - AssignmentCategory - - > Applicable: Microsoft Teams - This parameter indicates the phone number assignment category if it isn't the primary phone number. For example, a Private line can be assigned to a user using '-AssignmentCategory Private' or an Alternate line can be assigned to a user using '-AssignmentCategory Alternate' - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - NetworkSiteId - - > Applicable: Microsoft Teams - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - NetworkSiteId - - This parameter is reserved for internal Microsoft use. - - System.String - - System.String - - - None - - - Notify - - Sends an email to Teams phone user about new telephone number assignment. - - - System.Management.Automation.SwitchParameter - - - False - - - PhoneNumber - - The phone number to assign to the user or resource account. Supports E.164 format like +12065551234 and non-E.164 format like 12065551234. The phone number can't have "tel:" prefixed. - We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234 assigned to a user or resource account. - Setting a phone number will automatically set EnterpriseVoiceEnabled to True. - - System.String - - System.String - - - None - - - PhoneNumberType - - The type of phone number to assign to the user or resource account. The supported values are DirectRouting, CallingPlan, and OperatorConnect. When you acquire a phone number you will typically know which type it is. - - System.String - - System.String - - - None - - - - Set-CsPhoneNumberAssignment - - EnterpriseVoiceEnabled - - > Applicable: Microsoft Teams - Flag indicating if the user or resource account should be EnterpriseVoiceEnabled. - This parameter is mutual exclusive with PhoneNumber. - - System.Boolean - - System.Boolean - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - - Set-CsPhoneNumberAssignment - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - LocationId - - The LocationId of the location to assign to the specific user. You can get it using Get-CsOnlineLisLocation. You can set the location on both assigned and unassigned phone numbers. - Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk. If you want to remove the location, use the string value null for LocationId. - - System.String - - System.String - - - None - - - PhoneNumber - - The phone number to assign to the user or resource account. Supports E.164 format like +12065551234 and non-E.164 format like 12065551234. The phone number can't have "tel:" prefixed. - We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234 assigned to a user or resource account. - Setting a phone number will automatically set EnterpriseVoiceEnabled to True. - - System.String - - System.String - - - None - - - - Set-CsPhoneNumberAssignment - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - NetworkSiteId - - This parameter is reserved for internal Microsoft use. - - System.String - - System.String - - - None - - - PhoneNumber - - The phone number to assign to the user or resource account. Supports E.164 format like +12065551234 and non-E.164 format like 12065551234. The phone number can't have "tel:" prefixed. - We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234 assigned to a user or resource account. - Setting a phone number will automatically set EnterpriseVoiceEnabled to True. - - System.String - - System.String - - - None - - - - Set-CsPhoneNumberAssignment - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - PhoneNumber - - The phone number to assign to the user or resource account. Supports E.164 format like +12065551234 and non-E.164 format like 12065551234. The phone number can't have "tel:" prefixed. - We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234 assigned to a user or resource account. - Setting a phone number will automatically set EnterpriseVoiceEnabled to True. - - System.String - - System.String - - - None - - - ReverseNumberLookup - - This parameter is used to control the behavior of reverse number lookup (RNL) for a phone number.When RNL is set to 'SkipInternalVoip', an internal call to this phone number will not attempt to pass through internal VoIP via reverse number lookup in Microsoft Teams. Instead the call will be established through external PSTN connectivity directly. - - System.String - - System.String - - - None - - - - - - AssignmentCategory - - > Applicable: Microsoft Teams - This parameter indicates the phone number assignment category if it isn't the primary phone number. For example, a Private line can be assigned to a user using '-AssignmentCategory Private' or an Alternate line can be assigned to a user using '-AssignmentCategory Alternate' - - System.String - - System.String - - - None - - - EnterpriseVoiceEnabled - - > Applicable: Microsoft Teams - Flag indicating if the user or resource account should be EnterpriseVoiceEnabled. - This parameter is mutual exclusive with PhoneNumber. - - System.Boolean - - System.Boolean - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the specific user or resource account. Can be specified using the value in the ObjectId, the SipProxyAddress, or the UserPrincipalName attribute of the user or resource account. - - System.String - - System.String - - - None - - - LocationId - - The LocationId of the location to assign to the specific user. You can get it using Get-CsOnlineLisLocation. You can set the location on both assigned and unassigned phone numbers. - Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk. If you want to remove the location, use the string value null for LocationId. - - System.String - - System.String - - - None - - - NetworkSiteId - - > Applicable: Microsoft Teams - ID of a network site. A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. - - System.String - - System.String - - - None - - - NetworkSiteId - - This parameter is reserved for internal Microsoft use. - - System.String - - System.String - - - None - - - Notify - - Sends an email to Teams phone user about new telephone number assignment. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - PhoneNumber - - The phone number to assign to the user or resource account. Supports E.164 format like +12065551234 and non-E.164 format like 12065551234. The phone number can't have "tel:" prefixed. - We support Direct Routing numbers with extensions using the formats +1206555000;ext=1234 or 1206555000;ext=1234 assigned to a user or resource account. - Setting a phone number will automatically set EnterpriseVoiceEnabled to True. - - System.String - - System.String - - - None - - - PhoneNumberType - - The type of phone number to assign to the user or resource account. The supported values are DirectRouting, CallingPlan, and OperatorConnect. When you acquire a phone number you will typically know which type it is. - - System.String - - System.String - - - None - - - ReverseNumberLookup - - This parameter is used to control the behavior of reverse number lookup (RNL) for a phone number.When RNL is set to 'SkipInternalVoip', an internal call to this phone number will not attempt to pass through internal VoIP via reverse number lookup in Microsoft Teams. Instead the call will be established through external PSTN connectivity directly. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 3.0.0 or later. The parameter set LocationUpdate was introduced in Teams PowerShell module 5.3.1-preview. The parameter NetworkSiteId was introduced in Teams PowerShell module 5.5.0. The parameter set NetworkSiteUpdate was introduced in Teams PowerShell module 5.5.1-preview. Alternate number assignment was introduced in Teams PowerShell module 7.6.0. - The cmdlet is only available in commercial, GCC, GCCH and DoD cloud instances. - If a user or resource account has a phone number set in Active Directory on-premises and synched into Microsoft 365, you can't use Set-CsPhoneNumberAssignment to set the phone number. You will have to clear the phone number from the on-premises Active Directory and let that change sync into Microsoft 365 first. - The previous command for assigning phone numbers to users Set-CsUser had the parameter HostedVoiceMail. Setting HostedVoiceMail for Microsoft Teams users is no longer necessary and that is why the parameter is not available on Set-CsPhoneNumberAssignment. - - - - - -------------------------- Example 1 -------------------------- - Set-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber +12065551234 -PhoneNumberType CallingPlan - - This example assigns the Microsoft Calling Plan phone number +1 (206) 555-1234 to the user user1@contoso.com. - - - - -------------------------- Example 2 -------------------------- - $loc=Get-CsOnlineLisLocation -City Vancouver -Set-CsPhoneNumberAssignment -Identity user2@contoso.com -PhoneNumber +12065551224 -PhoneNumberType CallingPlan -LocationId $loc.LocationId - - This example finds the emergency location defined for the corporate location Vancouver and assigns the Microsoft Calling Plan phone number +1 (206) 555-1224 and location to the user user2@contoso.com. - - - - -------------------------- Example 3 -------------------------- - Set-CsPhoneNumberAssignment -Identity user3@contoso.com -EnterpriseVoiceEnabled $true - - This example sets the EnterpriseVoiceEnabled flag on the user user3@contoso.com. - - - - -------------------------- Example 4 -------------------------- - Set-CsPhoneNumberAssignment -Identity user3@contoso.com -LocationId 'null' -PhoneNumber +12065551226 -PhoneNumberType OperatorConnect - - This example removes the emergency location from the phone number for user user3@contoso.com. - - - - -------------------------- Example 5 -------------------------- - Set-CsPhoneNumberAssignment -Identity cq1@contoso.com -PhoneNumber +14255551225 -PhoneNumberType DirectRouting - - This example assigns the Direct Routing phone number +1 (425) 555-1225 to the resource account cq1@contoso.com. - - - - -------------------------- Example 6 -------------------------- - Set-CsPhoneNumberAssignment -Identity user4@contoso.com -PhoneNumber "+14255551000;ext=1234" -PhoneNumberType DirectRouting - - This example assigns the Direct Routing phone number +1 (425) 555-1000;ext=1234 to the user user4@contoso.com. - - - - -------------------------- Example 7 -------------------------- - Try { Set-CsPhoneNumberAssignment -Identity user5@contoso.com -PhoneNumber "+14255551000;ext=1234" -PhoneNumberType DirectRouting -ErrorAction Stop } Catch { Write-Host An error occurred } - - This example shows how to use Try/Catch and ErrorAction to perform error checking on the assignment cmdlet failing. - - - - -------------------------- Example 8 -------------------------- - $TempUser = "tempuser@contoso.com" -$OldLoc=Get-CsOnlineLisLocation -City Vancouver -$NewLoc=Get-CsOnlineLisLocation -City Seattle -$Numbers=Get-CsPhoneNumberAssignment -LocationId $OldLoc.LocationId -PstnAssignmentStatus Unassigned -NumberType CallingPlan -CapabilitiesContain UserAssignment -foreach ($No in $Numbers) { - Set-CsPhoneNumberAssignment -Identity $TempUser -PhoneNumberType CallingPlan -PhoneNumber $No.TelephoneNumber -LocationId $NewLoc.LocationId - Remove-CsPhoneNumberAssignment -Identity $TempUser -PhoneNumberType CallingPlan -PhoneNumber $No.TelephoneNumber -} - - This example shows how to change the location for unassigned Calling Plan subscriber phone numbers by looping through all the phone numbers, assigning each phone number temporarily with the new location to a user, and then unassigning the phone number again from the user. - - - - -------------------------- Example 9 -------------------------- - $loc=Get-CsOnlineLisLocation -City Toronto -Set-CsPhoneNumberAssignment -PhoneNumber +12065551224 -LocationId $loc.LocationId - - This example shows how to set the location on a phone number. - - - - -------------------------- Example 10 -------------------------- - $OldLocationId = "7fda0c0b-6a3d-48b8-854b-3fbe9dcf6513" -$NewLocationId = "951fac72-955e-4734-ab74-cc4c0f761c0b" -# Get all phone numbers in old location -$pns = Get-CsPhoneNumberAssignment -LocationId $OldLocationId -Write-Host $pns.count numbers found in old location $OldLocationId -# Move all those phone numbers to the new location -foreach ($pn in $pns) { - Try { - Set-CsPhoneNumberAssignment -PhoneNumber $pn.TelephoneNumber -LocationId $NewLocationId -ErrorAction Stop - Write-Host $pn.TelephoneNumber was updated to have location $NewLocationId - } - Catch { - Write-Host Could not update $pn.TelephoneNumber with location $NewLocationId - } -} -Write-Host (Get-CsPhoneNumberAssignment -LocationId $OldLocationId).Count numbers found in old location $OldLocationId -Write-Host (Get-CsPhoneNumberAssignment -LocationId $NewLocationId).Count numbers found in new location $NewLocationId - - This example shows how to update the LocationID from an old location to a new location for a set of phone numbers. - - - - -------------------------- Example 11 -------------------------- - Set-CsPhoneNumberAssignment -Identity user3@contoso.com -PhoneNumber +12065551226 -ReverseNumberLookup 'SkipInternalVoip' - - This example shows how to turn off reverse number lookup (RNL) on a phone number. When RNL is set to 'SkipInternalVoip', an internal call to this phone number will not attempt to pass through internal VoIP via reverse number lookup in Microsoft Teams. Instead the call will be established through external PSTN connectivity directly. This example is only applicable for Direct Routing phone numbers. - - - - -------------------------- Example 12 -------------------------- - Set-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber '+14255551234' -PhoneNumberType CallingPlan -AssignmentCategory Private - - This example shows how to assign a private phone number (incoming calls only) to a user. - - - - -------------------------- Example 13 -------------------------- - Set-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber '+14255551234' -PhoneNumberType CallingPlan -LocationId "7fda0c0b-6a3d-48b8-854b-3fbe9dcf6513" -Notify - - This example shows how to send an email to Teams phone users informing them about the new telephone number assignment. Note: For assignment of India telephone numbers provided by Airtel, Teams Phone users will automatically receive an email outlining the usage guidelines and restrictions. This notification is mandatory and cannot be opted out of. - - - - -------------------------- Example 14 -------------------------- - Set-CsPhoneNumberAssignment -Identity user1@contoso.com -PhoneNumber '+1555555555' -PhoneNumberType CallingPlan -LocationId "7fda0c0b-6a3d-48b8-854b-3fbe9dcf6513" -AssignmentCategory Alternate - - This example shows how to assign an alternate calling plan number to a user. The alternate number can be from any country/region where the tenant can acquire a telephone number from. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment - - - Remove-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment - - - Get-CsPhoneNumberAssignment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment - - - - - - Set-CsPhoneNumberAssignmentBlock - Set - CsPhoneNumberAssignmentBlock - - This cmdlet allows the admin to create and assign a temporary block on telephone number assignment to selected telephone number. - - - - This cmdlet allows the teams phone administrators to create and assign a temporary block on telephone number assignment to selected telephone number. There are two ways to create the assignment block: 1. Assignment is blocked until cleared. This can be set by -AssignmentBlockedForever parameter. Once set, the telephone number will remain unassignable until the block is cleared by an admin. 2. Assignment is blocked for a set number of days. This can be achieved by setting -AssignmentBlockedDays parameter (this value must be a valid integer between 1 and 365 days). Once set, the telephone number will remain unassignable until the time runs out or the block is cleared by an admin. - The admin cannot set both -AssignmentBlockedForever and -AssignmentBlockedDays for the same number. If there is an existing assignment block on the number, the admin must remove the existing block using Remove-CsPhoneNumberAssignmentBlock (./remove-csphonenumberassignmentblock.md)before proceeding with setting the new assignment block. - - - - Set-CsPhoneNumberAssignmentBlock - - TelephoneNumber - - Indicates the phone number for the assignment block to be assigned. - - System.String - - System.String - - - None - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for the telephone number. - - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Sets a duration based assignment block on the telephone number. - - System.Int32 - - System.Int32 - - - None - - - - - - TelephoneNumber - - Indicates the phone number for the assignment block to be assigned. - - System.String - - System.String - - - None - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for the telephone number. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - AssignmentBlockedDays - - Sets a duration based assignment block on the telephone number. - - System.Int32 - - System.Int32 - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - This cmdlet is available in Teams PowerShell module 7.5.0 or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsPhoneNumberAssignmentBlock -TelephoneNumber +123456789 -AssignmentBlockedForever - - The above example shows how to set an indefinite assignment block to a +123456789 number. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsPhoneNumberAssignmentBlock -TelephoneNumber +123456789 -AssignmentBlockedDays 30 - - The above example shows how to set an assignment block to a +123456789 number for 30 days. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/teams/set-csphonenumberassignmentblock - - - - - - Set-CsPhoneNumberPolicyAssignment - Set - CsPhoneNumberPolicyAssignment - - This cmdlet assigns a policy to a specific telephone number in Microsoft Teams. - - - - The cmdlet assigns a policy to a telephone number in Microsoft Teams. This is useful in multi-line scenarios or when managing voice configurations for users who require specific dial plans or calling policies for different telephone numbers. - Please note that policies must be pre-created and available in the tenant before assignment. The list of policies that can be assigned to telephone numbers are: - CallingLineIdentity - - OnlineDialOutPolicy - - OnlineVoiceRoutingPolicy - - TeamsEmergencyCallingPolicy - - TeamsEmergencyCallRoutingPolicy - - TeamsSharedCallingRoutingPolicy - - TenantDialPlan - - Assignments are effective immediately, but may take a few minutes to propagate and show up in results in Get-CsPhoneNumberPolicyAssignment (./get-csphonenumberpolicyassignment.md)cmdlet. - - - - Set-CsPhoneNumberPolicyAssignment - - TelephoneNumber - - Specifies the telephone number to which the policy will be assigned. - - System.String - - System.String - - - None - - - PolicyType - - Indicates the type of policy being assigned. - - System.String - - System.String - - - None - - - PolicyName - - The name of the policy to assign. This must match an existing policy configured in the tenant. - If the telephone number already has a different policy of the same PolicyType assigned, then this will replace the existing policy assignment. - If PolicyName is not provided, then it would remove any existing policy of the same PolicyType previously assigned to the specified phone number. - - System.String - - System.String - - - None - - - - - - TelephoneNumber - - Specifies the telephone number to which the policy will be assigned. - - System.String - - System.String - - - None - - - PolicyType - - Indicates the type of policy being assigned. - - System.String - - System.String - - - None - - - PolicyName - - The name of the policy to assign. This must match an existing policy configured in the tenant. - If the telephone number already has a different policy of the same PolicyType assigned, then this will replace the existing policy assignment. - If PolicyName is not provided, then it would remove any existing policy of the same PolicyType previously assigned to the specified phone number. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - None - - - This cmdlet does not return output on success. Errors are thrown if the assignment fails due to invalid parameters, missing policies, or internal service issues. - If you want to verify the outcome of the assignment, call `Get-CsPhoneNumberPolicyAssignment -TelephoneNumber <YourPhoneNumber>`. - - - - - - The cmdlet is available in Teams PowerShell module 7.3.1 or later. The cmdlet is only available in commercial cloud instances. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsPhoneNumberPolicyAssignment -TelephoneNumber 17789493766 -PolicyType TenantDialPlan -PolicyName "US Admins Dial Plan" - - This example assigns a policy to the specified telephone number. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsPhoneNumberPolicyAssignment -TelephoneNumber +14255551234 -PolicyType OnlineVoiceRoutingPolicy -PolicyName "Redmond Office" - - This example assigns an existing OnlineVoiceRoutingPolicy to the specified telephone number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberpolicyassignment - - - Get-CsPhoneNumberPolicyAssignment - - - - - - - Set-CsPhoneNumberSmsActivation - Set - CsPhoneNumberSmsActivation - - This cmdlet allows the admin to activate SMS capabilities for a telephone number. - - - - This cmdlet enables SMS capabilities for a telephone number. The output of the cmdlet is the OrderId of the asynchronous SMS Activation operation. - To deactivate SMS capabilities for a number, use the Remove-CsPhoneNumberSmsActivation (Remove-CsPhoneNumberSmsActivation.md) cmdlet. - - - - Set-CsPhoneNumberSmsActivation - - TelephoneNumber - - Indicates the phone number for SMS to be enabled on. - - System.String - - System.String - - - None - - - - - - TelephoneNumber - - Indicates the phone number for SMS to be enabled on. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsPhoneNumberSmsActivation -TelephoneNumber +123456789 - - The above example shows how to enable SMS for a +123456789 number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumbersmsactivation - - - Remove-CsPhoneNumberSmsActivation - https://learn.microsoft.com/powershell/module/microsoftteams/ - - - - - - Set-CsPhoneNumberTag - Set - CsPhoneNumberTag - - This cmdlet allows the admin to create and assign a tag to a phone number. - - - - This cmdlet allows telephone number administrators to create and assign tags to phone numbers. Tags can be up to 50 characters long, including spaces, and can contain multiple words. They are not case-sensitive. Each phone number can have up to 50 tags assigned. To improve readability, it is recommended to avoid assigning too many tags to a single phone number. If the desired tag already exist, the telephone number will get assigned the existing tag. If the tag is not already available, a new tag will be created. Get-CsPhoneNumberTag (https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumbertag) can be used to check a list of already existing tags. The tags can be used as a filter for [Get-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumberassignment)to filter on certain list. - - - - Set-CsPhoneNumberTag - - PhoneNumber - - Indicates the phone number for the the tag to be assigned - - String - - String - - - None - - - Tag - - Indicates the tag to be assigned or created. - - String - - String - - - None - - - - - - PhoneNumber - - Indicates the phone number for the the tag to be assigned - - String - - String - - - None - - - Tag - - Indicates the tag to be assigned or created. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Boolean - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsPhoneNumberTag -PhoneNumber +123456789 -Tag "HR" - - Above example shows how to set a "HR" tag to +123456789 number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumbertag - - - - - - Set-CsPhoneNumberTenantConfiguration - Set - CsPhoneNumberTenantConfiguration - - This cmdlet allows the admins to set a tenant default configuration that applies to all telephone numbers within the tenant. - - - - This cmdlet sets the tenant-level default configuration for Teams Phone. The default settings automatically apply to all telephone numbers within the tenant, ensuring consistent behavior across the organization. If a specific number operation indicates its own configuration, that configuration takes precedence over the tenant default. - - - - Set-CsPhoneNumberTenantConfiguration - - AssignmentEmailEnabled - - Enables email notifications for all telephone number assignment operations. - - System.Boolean - - System.Boolean - - - None - - - UnassignmentEmailEnabled - - Enables email notifications for all telephone number unassignment operations. - - System.Boolean - - System.Boolean - - - None - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for all the telephone numbers upon unassignment. - - System.Boolean - - System.Boolean - - - None - - - AssignmentBlockedDays - - Sets a duration based assignment block on all the telephone numbers upon unassignment. - - System.Int32 - - System.Int32 - - - None - - - AllowOnPremToOnlineMigration - - Allows Direct Routing numbers to be migrated from OnPremises to Online automatically. - - System.Boolean - - System.Boolean - - - None - - - - - - AssignmentEmailEnabled - - Enables email notifications for all telephone number assignment operations. - - System.Boolean - - System.Boolean - - - None - - - UnassignmentEmailEnabled - - Enables email notifications for all telephone number unassignment operations. - - System.Boolean - - System.Boolean - - - None - - - AssignmentBlockedForever - - Sets an indefinite block on assignment for all the telephone numbers upon unassignment. - - System.Boolean - - System.Boolean - - - None - - - AssignmentBlockedDays - - Sets a duration based assignment block on all the telephone numbers upon unassignment. - - System.Int32 - - System.Int32 - - - None - - - AllowOnPremToOnlineMigration - - Allows Direct Routing numbers to be migrated from OnPremises to Online automatically. - - System.Boolean - - System.Boolean - - - None - - - - - - None - - - - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsPhoneNumberTenantConfiguration -AssignmentEmailEnabled $true -UnassignmentEmailEnabled $true - - The above example shows how to enable email notifications for all the telephone number assignment and unassignment operations within the tenant. Once set, any telephone number assignment or unassignment operation will send an automatic email to the end users notifying the change. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsPhoneNumberTenantConfiguration -AssignmentBlockedForever $true - - The above example shows how to set an indefinite assignment block to all the telephone numbers within the tenant. Once set, any telephone number unassignment operation will make the telephone number unavailable for assignment until the block is manually removed (https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignmentblock?view=teams-ps)by an admin. Note: AssignmentBlockedForever and AssignmentBlockedDays configurations are mutually exclusive. If one is set, the other one will not be available to be set at tenant configuration level. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsPhoneNumberTenantConfiguration -AllowOnPremToOnlineMigration $false - - The above example shows how to disallow OnPremises to Online Direct Routing (DR) number automatic migration. Once set, any online operation on a DR OnPremises number will not automatically convert it to Online DR number. If this configuration is set to False, only way to migrate an OnPremises DR number to Online DR number would be manually removing the number from OnPremises and manually adding the number to Online after DirSync. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumbertenantconfiguration - - - Remove-CsPhoneNumberTenantConfiguration - - - - Get-CsPhoneNumberTenantConfiguration - - - - - - - Set-CsSharedCallHistoryTemplate - Set - CsSharedCallHistoryTemplate - - Use the Set-CsSharedCallHistoryTemplate cmdlet to change a Shared Call History template. The template defines which roles can access Shared Call History and which parts of the history are visible to them. - - - - Use the Set-SharedCallHistoryTemplate cmdlet to change a Shared Call History template. The template defines which roles can access Shared Call History and which parts of the history are visible to them. - - - - Set-CsSharedCallHistoryTemplate - - Instance - - The instance of the shared call history template to change. - - System.String - - System.String - - - None - - - - - - Instance - - The instance of the shared call history template to change. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $SharedCallHistory = Get-CsSharedCallHistoryTemplate -Id 66f0dc32-d344-4bb1-b524-027d4635515c -$SharedCallHistory.AnsweredAndOutboundCalls = "AuthorizedUsersAndAgents" -Set-CsSharedCallHistoryTemplate -Instance $SharedCallHistory - - This example sets the AnsweredOutboundCalls value in the Shared Call History Template with the Id `66f0dc32-d344-4bb1-b524-027d4635515c` - - - - -------------------------- Example 2 -------------------------- - $SharedCallHistory = Get-CsSharedCallHistoryTemplate -Id 66f0dc32-d344-4bb1-b524-027d4635515c -$SharedCallHistory.IncomingRedirectedCalls = "AuthorizedUsersAndGroupMembers" -Set-CsSharedCallHistoryTemplate -Instance $SharedCallHistory - - This example sets the IncomingRedirectedCalls value in the Shared Call History Template with the Id `66f0dc32-d344-4bb1-b524-027d4635515c` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsSharedCallHistoryTemplate - - - New-CsSharedCallHistoryTemplate - - - - Get-CsSharedCallHistoryTemplate - - - - Remove-CsSharedCallHistoryTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - New-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/new-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - - - - Set-CsSharedCallQueueHistoryTemplate - Set - CsSharedCallQueueHistoryTemplate - - This PowerShell cmdlet is being deprecated, please use the new version Set-CsSharedCallHistoryTemplate (./Set-CsSharedCallHistoryTemplate.md)instead - > [!IMPORTANT] >This PowerShell cmdlet is being deprecated, please use the new version Set-CsSharedCallHistoryTemplate (./Set-CsSharedCallHistoryTemplate.md)instead - - - - Use the Set-SharedCallQueueHistoryTemplate cmdlet to change a Shared Call Queue History template. - - - - Set-CsSharedCallQueueHistoryTemplate - - Instance - - The instance of the shared call queue history template to change. - - System.String - - System.String - - - None - - - - - - Instance - - The instance of the shared call queue history template to change. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - Microsoft.Rtc.Management.OAA.Models.AutoAttendant - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $SharedCQHistory = Get-CsSharedCallQueueHistoryTemplate -Id 66f0dc32-d344-4bb1-b524-027d4635515c -$SharedCQHisotry.AnsweredAndOutboundCalls = "AuthorizedUsersAndAgents" -Set-CsSharedCallQueueHistoryTemplate -Instance $SharedCQHistory - - This example sets the AnsweredOutboundCalls value in the Shared Call History Template with the Id `66f0dc32-d344-4bb1-b524-027d4635515c` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/Set-CsSharedCallQueueHistoryTemplate - - - New-CsSharedCallQueueHistoryTemplate - - - - Get-CsSharedCallQueueHistoryTemplate - - - - Remove-CsSharedCallQueueHistoryTemplate - - - - Get-CsCallQueue - - - - New-CsCallQueue - - - - Set-CsCallQueue - - - - Remove-CsCallQueue - - - - - - - Set-CsTagsTemplate - Set - CsTagsTemplate - - Changes an existing Tag template. - - - - The Set-CsTagTemplate cmdlet changes and existing Tag template. Delete this line please. - > [!CAUTION] > This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time. - - - - Set-CsTagsTemplate - - Instance - - The Instance parameter is the object reference to the Tag template to be modified. - You can retrieve an object reference to an existing Tag template by using the Get-CsTagsTemplate (Get-CsTagsTemplate.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - Instance - - The Instance parameter is the object reference to the Tag template to be modified. - You can retrieve an object reference to an existing Tag template by using the Get-CsTagsTemplate (Get-CsTagsTemplate.md)cmdlet and assigning the returned value to a variable. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - Guid - - Guid - - - None - - - - - - - Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstagstemplate - - - New-CsTagsTemplate - - - - Get-CsTagsTemplate - - - - Remove-CsTagsTemplate - - - - New-CsTag - - - - - - - Set-CsTeamsAudioConferencingPolicy - Set - CsTeamsAudioConferencingPolicy - - Audio conferencing policies can be used to manage audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. - - - - The Set-CsTeamsAudioConferencingPolicy cmdlet enables administrators to control audio conferencing toll- and toll-free numbers to be displayed in meeting invites created by users within your organization. The Set-CsTeamsAudioConferencingPolicy can be used to update an audio-conferencing policy that has been configured for use in your organization. - - - - Set-CsTeamsAudioConferencingPolicy - - Identity - - Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity "Emea Users". If this parameter is not included, the Set-CsTeamsAudioConferencingPolicy cmdlet will modify the Global policy. - - String - - String - - - None - - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsAudioConferencingPolicy - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTollFreeDialin - - Determines if users of this Policy can have Toll free numbers. If toll-free numbers are available in your Microsoft Audio Conferencing bridge, this parameter controls if they can be used to join the meetings of a given user. - - Boolean - - Boolean - - - True - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be Set. To set the global policy, use this syntax: -Identity global. To set a per-user policy use syntax similar to this: -Identity "Emea Users". If this parameter is not included, the Set-CsTeamsAudioConferencingPolicy cmdlet will modify the Global policy. - - String - - String - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - MeetingInvitePhoneNumbers - - Determines the list of audio-conferencing Toll- and Toll-free telephone numbers that will be included in meetings invites created by users of this policy. If no phone numbers are specified, then the phone number that is displayed in meeting invites created by users would be based on the location of the users. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - PSObject - - - - - - - - - - Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $False - - In this example, AllowTollFreeDialin is set to false. All other policy properties will be left as previously assigned. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Set-CsTeamsAudioConferencingPolicy -Identity "EMEA Users" -AllowTollFreeDialin $True -MeetingInvitePhoneNumbers "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" - - In this example, two different property values are configured: AllowTollFreeDialIn is set to True and -MeetingInvitePhoneNumbers is set to include the following Toll and Toll free numbers - "+49695095XXXXX","+353156YYYYY","+1800856ZZZZZ" other policy properties will be left as previously assigned. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsaudioconferencingpolicy - - - Get-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsaudioconferencingpolicy - - - New-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsaudioconferencingpolicy - - - Grant-CsTeamsAudioConferencingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsaudioconferencingpolicy - - - - - - Set-CsTeamsCallParkPolicy - Set - CsTeamsCallParkPolicy - - The Set-CsTeamsCallParkPolicy cmdlet lets you update a policy that has already been created for your organization. - - - - The TeamsCallParkPolicy controls whether or not users are able to leverage the call park feature in Microsoft Teams. Call park allows enterprise voice customers to place a call on hold and then perform a number of actions on that call: transfer to another department, retrieve via the same phone, or retrieve via a different phone. - NOTE: The call park feature is currently available in desktop, mobile, and web clients. Supported with TeamsOnly mode. - - - - Set-CsTeamsCallParkPolicy - - - Set-CsTeamsCallParkPolicy - - - Set-CsTeamsCallParkPolicy - - Identity - - The unique identifier of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsCallParkPolicy - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - Instance - - This parameter is used when piping a specific policy retrieved from Get-CsTeamsCallParkPolicy that you then want to update. - - PSObject - - PSObject - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCallPark - - If set to true, customers will be able to leverage the call park feature to place calls on hold and then decide how the call should be handled - transferred to another department, retrieved using the same phone, or retrieved using a different phone. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Force - - Suppress all non-fatal errors - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The unique identifier of the policy being updated. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - This parameter is used when piping a specific policy retrieved from Get-CsTeamsCallParkPolicy that you then want to update. - - PSObject - - PSObject - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ParkTimeoutSeconds - - Specify the number of seconds to wait before ringing the parker when the parked call hasn't been picked up. Value can be from 120 to 1800 (seconds). - - Integer - - Integer - - - 300 - - - PickupRangeEnd - - Specify the maximum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 99 - - - PickupRangeStart - - Specify the minimum value that a rendered pickup code can take. Value can be from 10 to 9999. - Note: PickupRangeStart must be smaller than PickupRangeEnd. - - Integer - - Integer - - - 10 - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCallParkPolicy -Identity SalesPolicy -AllowCallPark $true - - Update the existing policy "SalesPolicy" to enable the call park feature. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTeamsCallParkPolicy -Identity "SalesPolicy" -PickupRangeStart 500 -PickupRangeEnd 1500 - - Update the existing policy "SalesPolicy" to generate pickup numbers starting from 500 and up until 1500. - - - - -------------------------- Example 3 -------------------------- - PS C:\> New-CsTeamsCallParkPolicy -Identity "SalesPolicy" -ParkTimeoutSeconds 600 - - Update the existing policy "SalesPolicy" to ring back the parker after 600 seconds if the parked call is unanswered - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamscallparkpolicy - - - - - - Set-CsTeamsCortanaPolicy - Set - CsTeamsCortanaPolicy - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. - - - - The CsTeamsCortanaPolicy cmdlets enable administrators to control settings for Cortana voice assistant in Microsoft Teams. Specifically, these specify if a user can use Cortana voice assistant in Microsoft Teams and Cortana invocation behavior via CortanaVoiceInvocationMode parameter - * Disabled - Cortana voice assistant is disabled - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - - - Set-CsTeamsCortanaPolicy - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsCortanaPolicy - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCortanaAmbientListening - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaInContextSuggestions - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - AllowCortanaVoiceInvocation - - This parameter is reserved for internal Microsoft use. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CortanaVoiceInvocationMode - - The value of this field indicates if Cortana is enabled and mode of invocation. * Disabled - Cortana voice assistant is turned off and cannot be used. - * PushToTalkUserOverride - Cortana voice assistant is enabled but without wake-word ("Hey Cortana") invocation - * WakeWordPushToTalkUserOverride - Cortana voice assistant is enabled with wake-word ("Hey Cortana") invocation on devices where wake-word is supported - - String - - String - - - None - - - Description - - Provide a description of your policy to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Identity for the policy you're modifying. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity MyCortanaPolicy. If you do not specify an Identity the Set-CsTeamsCortanaPolicy cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose external user communication policy are being created. For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" You can return your tenant ID by running this command: Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsCortanaPolicy -Identity MyCortanaPolicy -CortanaVoiceInvocationMode Disabled - - In this example, Cortana voice assistant is set to disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamscortanapolicy - - - - - - Set-CsTeamsEmergencyCallRoutingPolicy - Set - CsTeamsEmergencyCallRoutingPolicy - - This cmdlet modifies an existing Teams Emergency Call Routing Policy. - - - - This cmdlet modifies an existing Teams Emergency Call Routing Policy. Teams Emergency Call Routing policy is used for the life cycle of emergency call routing - emergency numbers and routing configuration - - - - Set-CsTeamsEmergencyCallRoutingPolicy - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Call Routing policy to identify the purpose of setting it. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowEnhancedEmergencyServices - - Flag to enable Enhanced Emergency Services. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provides a description of the Teams Emergency Call Routing policy to identify the purpose of setting it. - - String - - String - - - None - - - EmergencyNumbers - - One or more emergency number objects obtained from the New-CsTeamsEmergencyNumber (https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber)cmdlet. - - Object - - Object - - - None - - - Identity - - The Identity parameter is a unique identifier that designates the name of the policy. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -AllowEnhancedEmergencyServices:$false -Description "test" - - This example modifies an existing Teams Emergency Call Routing Policy. - - - - -------------------------- Example 2 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911" -$en2 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "9112" -OnlinePSTNUsage "DKE911" -Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$en1,$en2} - - This example first creates new Teams emergency number objects and then adds these Teams emergency numbers to an existing Teams Emergency Call Routing policy. - - - - -------------------------- Example 3 -------------------------- - $en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "112" -EmergencyDialMask "9112" -OnlinePSTNUsage "DKE911" -Set-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{remove=$en1} - - This example first creates a new Teams emergency number object and then removes that Teams emergency number from an existing Teams Emergency Call Routing policy. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencycallroutingpolicy - - - Grant-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsemergencycallroutingpolicy - - - Remove-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsemergencycallroutingpolicy - - - Get-CsTeamsEmergencyCallRoutingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsemergencycallroutingpolicy - - - New-CsTeamsEmergencyNumber - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsemergencynumber - - - - - - Set-CsTeamsEnhancedEncryptionPolicy - Set - CsTeamsEnhancedEncryptionPolicy - - Use this cmdlet to update values in existing Teams enhanced encryption policy. - - - - Use this cmdlet to update values in existing Teams enhanced encryption policy. - The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently. - - - - Set-CsTeamsEnhancedEncryptionPolicy - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish modify the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Use this to pipe a specific enhanced encryption policy to be set. You can only modify the global policy, so can only pass the global instance of the enhanced encryption policy. - - Object - - Object - - - None - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CallingEndtoEndEncryptionEnabledType - - Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams enhanced encryption policy. - For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier assigned to the Teams enhanced encryption policy. - Use the "Global" Identity if you wish modify the policy set for the entire tenant. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Use this to pipe a specific enhanced encryption policy to be set. You can only modify the global policy, so can only pass the global instance of the enhanced encryption policy. - - Object - - Object - - - None - - - MeetingEndToEndEncryption - - Determines whether end-to-end encrypted meetings are available in Teams ( requires a Teams Premium license (https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit. - - Enum - - Enum - - - Disabled - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -CallingEndtoEndEncryptionEnabledType DisabledUserOverride - - The command shown in Example 1 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy is re-assigned CallingEndtoEndEncryptionEnabledType to be DisabledUserOverride. - Any Microsoft Teams users who are assigned this policy will have their enhanced encryption policy customized such that the user can use the enhanced encryption setting in Teams. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -MeetingEndToEndEncryption DisabledUserOverride - - The command shown in Example 2 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy has re-assigned MeetingEndToEndEncryption to be DisabledUserOverride. - Any Microsoft Teams users who are assigned this policy and have a Teams Premium license will have the option to create end-to-end encrypted meetings. Learn more about end-to-end encryption for Teams meetings (https://support.microsoft.com/en-us/office/use-end-to-end-encryption-for-teams-meetings-a8326d15-d187-49c4-ac99-14c17dbd617c). - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -Description "allow useroverride" - - The command shown in Example 2 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy. - This policy is re-assigned the description from its existing value to "allow useroverride". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsenhancedencryptionpolicy - - - Get-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsenhancedencryptionpolicy - - - New-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsenhancedencryptionpolicy - - - Remove-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsenhancedencryptionpolicy - - - Grant-CsTeamsEnhancedEncryptionPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsenhancedencryptionpolicy - - - - - - Set-CsTeamsEventsPolicy - Set - CsTeamsEventsPolicy - - This cmdlet allows you to configure options for customizing Teams events experiences. Note that this policy is currently still in preview. - - - - User-level policy for tenant admin to configure options for customizing Teams events experiences. Use this cmdlet to update an existing policy. - - - - Set-CsTeamsEventsPolicy - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting describes how IT admins can control which types of Town Hall attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting describes how IT admins can control which types of webinar attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - None - - - AllowEventIntegrations - - This setting governs access to the integrations tab in the event creation workflow. - Possible values true, false. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town halls. - - String - - String - - - None - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - None - - - BroadcastPremiumApps - - This setting governs if an organizer of a broadcast style event (including town halls) may add an app that is accessible by everyone, including attendees, to the event. This does not include control over apps (such as the AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Please note, only certain apps, such as Polls, are supported for everyone in broadcast style events. - Possible values are: - Enabled : An organizer of a broadcast style event can add Apps such as Polls - Disabled : An organizer of a broadcast style event CANNOT add Apps as Polls - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Confirm - - The Confirm switch does not work with this cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - > [!NOTE] > Currently, webinar and town hall event access is managed together via EventAccessType. - This setting governs which users can access the event registration page or the event site to register. It also governs which user type is allowed to join the session/s in the event. Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - EveryoneInCompanyExcludingGuests : Enables creating events to allow only in-tenant users to register and join the event. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. - Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. - Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs whether the user can enable the Comment Stream chat experience for Town Halls. - Possible values are: Optimized, None. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. - Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. - Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - Boolean - - Boolean - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowedQuestionTypesInRegistrationForm - - This setting governs which users in a tenant can add which registration form questions to an event registration page for attendees to answer when registering for the event. - Possible values are: DefaultOnly, DefaultAndPredefinedOnly, AllQuestions. - - String - - String - - - None - - - AllowedTownhallTypesForRecordingPublish - - This setting describes how IT admins can control which types of Town Hall attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowedWebinarTypesForRecordingPublish - - This setting describes how IT admins can control which types of webinar attendees can have their recordings published. - Possible values are: None, InviteOnly, EveryoneInCompanyIncludingGuests, Everyone. - - String - - String - - - None - - - AllowEmailEditing - - This setting governs if a user is allowed to edit the communication emails in Teams Town Hall or Teams Webinar events. Possible values are: - Enabled : Enables editing of communication emails. - Disabled : Disables editing of communication emails. - - String - - String - - - None - - - AllowEventIntegrations - - This setting governs access to the integrations tab in the event creation workflow. - Possible values true, false. - - Boolean - - Boolean - - - None - - - AllowTownhalls - - This setting governs if a user can create town halls using Teams Events. Possible values are: - Enabled : Enables creating town halls. - Disabled : Disables creating town halls. - - String - - String - - - None - - - AllowWebinars - - This setting governs if a user can create webinars using Teams Events. Possible values are: - Enabled : Enables creating webinars. - Disabled : Disables creating webinars. - - String - - String - - - None - - - BroadcastPremiumApps - - This setting governs if an organizer of a broadcast style event (including town halls) may add an app that is accessible by everyone, including attendees, to the event. This does not include control over apps (such as the AI Producer and Custom Streaming Apps) that are only accessible by the Event group. - Please note, only certain apps, such as Polls, are supported for everyone in broadcast style events. - Possible values are: - Enabled : An organizer of a broadcast style event can add Apps such as Polls - Disabled : An organizer of a broadcast style event CANNOT add Apps as Polls - - String - - String - - - Enabled - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - The Confirm switch does not work with this cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - Description - - Enables administrators to provide explanatory text to accompany a Teams Events policy. - - String - - String - - - None - - - EventAccessType - - > [!NOTE] > Currently, webinar and town hall event access is managed together via EventAccessType. - This setting governs which users can access the event registration page or the event site to register. It also governs which user type is allowed to join the session/s in the event. Possible values are: - Everyone : Enables creating events to allow in-tenant, guests, federated, and anonymous (external to the tenant) users to register and join the event. - EveryoneInCompanyExcludingGuests : Enables creating events to allow only in-tenant users to register and join the event. - - String - - String - - - None - - - Identity - - Unique identifier assigned to the Teams Events policy. - - String - - String - - - None - - - ImmersiveEvents - - This setting governs if a user can create Immersive Events using Teams Events. Possible values are: - Enabled : Enables creating Immersive Events. - Disabled : Disables creating Immersive Events. - - String - - String - - - Enabled - - - RecordingForTownhall - - Determines whether recording is allowed in a user's townhall. - Possible values are: - Enabled : Allow recording in user's townhalls. - Disabled : Prohibit recording in user's townhalls. - - String - - String - - - Enabled - - - RecordingForWebinar - - Determines whether recording is allowed in a user's webinar. - Possible values are: - Enabled : Allow recording in user's webinars. - Disabled : Prohibit recording in user's webinars. - - String - - String - - - Enabled - - - TownhallChatExperience - - This setting governs whether the user can enable the Comment Stream chat experience for Town Halls. - Possible values are: Optimized, None. - - String - - String - - - None - - - TownhallEventAttendeeAccess - - This setting governs what identity types may attend a Town hall that is scheduled by a particular person or group that is assigned this policy. Possible values are: - Everyone : Anyone with the join link may enter the event. - EveryoneInOrganizationAndGuests : Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event. - - String - - String - - - Everyone - - - TranscriptionForTownhall - - Determines whether transcriptions are allowed in a user's townhall. - Possible values are: - Enabled : Allow transcriptions in user's townhalls. - Disabled : Prohibit transcriptions in user's townhalls. - - String - - String - - - Enabled - - - TranscriptionForWebinar - - Determines whether transcriptions are allowed in a user's webinar. - Possible values are: - Enabled : Allow transcriptions in user's webinars. - Disabled : Prohibit transcriptions in user's webinars. - - String - - String - - - Enabled - - - UseMicrosoftECDN - - This setting governs whether the admin disables this property and prevents the organizers from creating town halls that use Microsoft eCDN even though they have been assigned a Teams Premium license. - - Boolean - - Boolean - - - None - - - TownhallMaxResolution - - This policy sets the maximum video resolution supported in Town hall events. - Possible values are: - Max720p : Town halls support video resolution up to 720p. - Max1080p : Town halls support video resolution up to 1080p. - MicrosoftManaged : Town halls will support video resolution up to 720p except for those customers whose networks have been assessed by Microsoft to support up to 1080p." - - String - - String - - - MicrosoftManaged - - - HighBitrateForTownhall - - This policy controls whether high-bitrate streaming is enabled for Town hall events. - Possible values are: - Enabled : Enables high bitrate for Town hall events. - Disabled : Disables high bitrate for Town hall events. - - String - - String - - - Disabled - - - WhatIf - - The WhatIf switch does not work with this cmdlet. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsEventsPolicy -Identity Global -AllowWebinars Disabled - - The command shown in Example 1 sets the value of the Default (Global) Events Policy in the organization to disable webinars, and leaves all other parameters the same. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamseventspolicy - - - - - - Set-CsTeamsGuestCallingConfiguration - Set - CsTeamsGuestCallingConfiguration - - Allows admins to set values in the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. - - - - Allows admins to set values in the GuestCallingConfiguration, which specifies what options guest users have for calling within Teams. This policy primarily allows admins to disable calling for guest users within Teams. - - - - Set-CsTeamsGuestCallingConfiguration - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - AllowPrivateCalling - - Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass confirmation - - - SwitchParameter - - - False - - - Instance - - Internal Microsoft use - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowPrivateCalling - - Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass confirmation - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only option is Global - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Internal Microsoft use - - PSObject - - PSObject - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsGuestCallingConfiguration -Identity Global -AllowPrivateCalling $false - - In this example, the admin has disabled private calling for guests in his organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestcallingconfiguration - - - - - - Set-CsTeamsGuestMeetingConfiguration - Set - CsTeamsGuestMeetingConfiguration - - Designates what meeting features guests using Microsoft Teams will have available. Use this cmdlet to set the configuration. - - - - The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Set-CsTeamsGuestMeetingConfiguration cmdlet to designate what values are set for your organization. - - - - Set-CsTeamsGuestMeetingConfiguration - - Identity - - The only input allowed is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow guests to share their video. Set this to FALSE to prohibit guests from sharing their video - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether guests can start ad-hoc meetings. Set this to TRUE to allow guests to start ad-hoc meetings. Set this to FALSE to prohibit guests from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non fatal errors. - - - SwitchParameter - - - False - - - Instance - - Pipe the existing configuration from a Get- call. - - PSObject - - PSObject - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for guests in Teams meetings. Set this to DisabledUserOverride to allow guests to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - ScreenSharingMode - - Determines the mode in which guests can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow guests to share their video. Set this to FALSE to prohibit guests from sharing their video - - Boolean - - Boolean - - - None - - - AllowMeetNow - - Determines whether guests can start ad-hoc meetings. Set this to TRUE to allow guests to start ad-hoc meetings. Set this to FALSE to prohibit guests from starting ad-hoc meetings. - - Boolean - - Boolean - - - None - - - AllowTranscription - - Determines whether post-meeting captions and transcriptions are allowed in a user's meetings. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The only input allowed is "Global" - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Pipe the existing configuration from a Get- call. - - PSObject - - PSObject - - - None - - - LiveCaptionsEnabledType - - Determines whether real-time captions are available for guests in Teams meetings. Set this to DisabledUserOverride to allow guests to turn on live captions. Set this to Disabled to prohibit. - - String - - String - - - DisabledUserOverride - - - ScreenSharingMode - - Determines the mode in which guests can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens - - String - - String - - - None - - - Tenant - - Internal Microsoft use - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsGuestMeetingConfiguration -Identity Global -AllowMeetNow $false -AllowIPVideo $false - - Disables Guests' usage of MeetNow and Video calling in the organization; all other values of the configuration are left as is. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestmeetingconfiguration - - - - - - Set-CsTeamsGuestMessagingConfiguration - Set - CsTeamsGuestMessagingConfiguration - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. - - - - TeamsGuestMessagingConfiguration determines the messaging settings for the guest users. This cmdlet lets you update the guest messaging options you'd like to enable in your organization. - - - - Set-CsTeamsGuestMessagingConfiguration - - Identity - - {{ Fill Identity Description }} - - XdsIdentity - - XdsIdentity - - - None - - - AllowGiphy - - Determines if Giphy images are available. - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines if immersive reader for viewing messages is enabled. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines if memes are available for use. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines if stickers are available for use. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines if a user is allowed to chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their one-on-one chat, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines if a user is allowed to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines if a user is allowed to edit their own messages. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - - SwitchParameter - - - False - - - GiphyRatingType - - Determines Giphy content restrictions. Default value is "Moderate", other options are "NoRestriction" and "Strict" - - String - - String - - - None - - - Instance - - {{ Fill Instance Description }} - - PSObject - - PSObject - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowGiphy - - Determines if Giphy images are available. - - Boolean - - Boolean - - - None - - - AllowImmersiveReader - - Determines if immersive reader for viewing messages is enabled. - - Boolean - - Boolean - - - None - - - AllowMemes - - Determines if memes are available for use. - - Boolean - - Boolean - - - None - - - AllowStickers - - Determines if stickers are available for use. - - Boolean - - Boolean - - - None - - - AllowUserChat - - Determines if a user is allowed to chat. - - Boolean - - Boolean - - - None - - - AllowUserDeleteChat - - Turn this setting on to allow users to permanently delete their one-on-one chat, group chat, and meeting chat as participants (this deletes the chat only for them, not other users in the chat). Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - TRUE - - - AllowUserDeleteMessage - - Determines if a user is allowed to delete their own messages. - - Boolean - - Boolean - - - None - - - AllowUserEditMessage - - Determines if a user is allowed to edit their own messages. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppresses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - GiphyRatingType - - Determines Giphy content restrictions. Default value is "Moderate", other options are "NoRestriction" and "Strict" - - String - - String - - - None - - - Identity - - {{ Fill Identity Description }} - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - {{ Fill Instance Description }} - - PSObject - - PSObject - - - None - - - Tenant - - {{ Fill Tenant Description }} - - Guid - - Guid - - - None - - - UsersCanDeleteBotMessages - - Determines whether a user is allowed to delete messages sent by bots. Set this to TRUE to allow. Set this to FALSE to prohibit. - - Boolean - - Boolean - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsGuestMessagingConfiguration -AllowMemes $False - - The command shown in Example 1 disables memes usage by guests within Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsguestmessagingconfiguration - - - - - - Set-CsTeamsIPPhonePolicy - Set - CsTeamsIPPhonePolicy - - Set-CsTeamsIPPhonePolicy enables you to modify the properties of an existing Teams phone policy settings. - - - - Set-CsTeamsIPPhonePolicy enables you to modify the properties of an existing TeamsIPPhonePolicy. - - - - Set-CsTeamsIPPhonePolicy - - Identity - - The identity of the policy. To specify the global policy for the organization, use "global". To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines if the hot desking feature is enabled or not. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - Int - - Int - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can look up contacts from the tenant's global address book when the phone is signed into the Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - String - - String - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBetterTogether - - Determines whether Better Together mode is enabled, phones can lock and unlock in an integrated fashion when connected to their Windows PC running a 64-bit Teams desktop client. Possible values this parameter can take: - - Enabled - - Disabled - - String - - String - - - Enabled - - - AllowHomeScreen - - Determines whether the Home Screen feature of the Teams IP Phones is enabled. Possible values this parameter can take: - - Enabled - - EnabledUserOverride - - Disabled - - String - - String - - - EnabledUserOverride - - - AllowHotDesking - - Determines if the hot desking feature is enabled or not. Set this to TRUE to enable. Set this to FALSE to disable hot desking mode. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Free form text that can be used by administrators as desired. - - String - - String - - - None - - - Force - - Suppresses any confirmation prompts that would otherwise be displayed before making changes and suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - HotDeskingIdleTimeoutInMinutes - - Determines the idle timeout value in minutes for the signed in user account. When the timeout is reached, the account is logged out. - - Int - - Int - - - None - - - Identity - - The identity of the policy. To specify the global policy for the organization, use "global". To specify any other policy provide the name of that policy. - - XdsIdentity - - XdsIdentity - - - None - - - SearchOnCommonAreaPhoneMode - - Determines whether a user can look up contacts from the tenant's global address book when the phone is signed into the Common Area Phone Mode. Set this to ENABLED to enable the feature. Set this to DISABLED to disable the feature. - - String - - String - - - None - - - SignInMode - - Determines the sign in mode for the device when signing in to Teams. Possible Values: - 'UserSignIn: Enables the individual user's Teams experience on the phone' - - 'CommonAreaPhoneSignIn: Enables a Common Area Phone experience on the phone' - - 'MeetingSignIn: Enables the meeting/conference room experience on the phone' - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsIPPhonePolicy -Identity CommonAreaPhone -SignInMode CommonAreaPhoneSignin - - This example shows the SignInMode "CommonAreaPhoneSignIn" being set against the policy named "CommonAreaPhone". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsipphonepolicy - - - - - - Set-CsTeamsMeetingBroadcastConfiguration - Set - CsTeamsMeetingBroadcastConfiguration - - Changes the Teams meeting broadcast configuration settings for the specified tenant. - - - - Tenant level configuration for broadcast events in Teams - - - - Set-CsTeamsMeetingBroadcastConfiguration - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - AllowSdnProviderForBroadcastMeeting - - If set to $true, Teams meeting broadcast streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors - - - SwitchParameter - - - False - - - Instance - - You can pass in the output from Get-CsTeamsMeetingBroadcastConfiguration as input to this cmdlet (instead of Identity) - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnLicenseId - - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnRuntimeConfiguration - - Specifies connection parameters used to connect with a 3rd party eCDN provider. These parameters should be obtained from the SDN provider to be used. - - String - - String - - - None - - - SupportURL - - Specifies a URL where broadcast event attendees can find support information or FAQs specific to that event. The URL will be displayed to the attendees during the broadcast. - - String - - String - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowSdnProviderForBroadcastMeeting - - If set to $true, Teams meeting broadcast streams are enabled to take advantage of the network and bandwidth management capabilities of your Software Defined Network (SDN) provider. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Suppress all non-fatal errors - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - You can only have one configuration - "Global" - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - You can pass in the output from Get-CsTeamsMeetingBroadcastConfiguration as input to this cmdlet (instead of Identity) - - PSObject - - PSObject - - - None - - - SdnApiTemplateUrl - - Specifies the Software Defined Network (SDN) provider's HTTP API endpoint. This information is provided to you by the SDN provider. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnApiToken - - Specifies the Software Defined Network (SDN) provider's authentication token which is required to use their SDN license. This is required by some SDN providers who will give you the required token. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnLicenseId - - Specifies the Software Defined Network (SDN) license identifier. This is required and provided by some SDN providers. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnProviderName - - Specifies the Software Defined Network (SDN) provider's name. This parameter is only required if AllowSdnProviderForBroadcastMeeting is set to $true. - - String - - String - - - None - - - SdnRuntimeConfiguration - - Specifies connection parameters used to connect with a 3rd party eCDN provider. These parameters should be obtained from the SDN provider to be used. - - String - - String - - - None - - - SupportURL - - Specifies a URL where broadcast event attendees can find support information or FAQs specific to that event. The URL will be displayed to the attendees during the broadcast. - - String - - String - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbroadcastconfiguration - - - - - - Set-CsTeamsMeetingBroadcastPolicy - Set - CsTeamsMeetingBroadcastPolicy - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. - - - - User-level policy for tenant admin to configure meeting broadcast behavior for the broadcast event organizer. Use this cmdlet to update an existing policy. - - - - Set-CsTeamsMeetingBroadcastPolicy - - Identity - - Unique identifier for the policy to be modified. Policies can be configured at the global or per-user scopes. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - Everyone - - EveryoneInCompany - - InvitedUsersInCompany - - EveryoneInCompanyAndExternal - - InvitedUsersInCompanyAndExternal - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded (AlwaysEnabled), never recorded (AlwaysDisabled) or user can choose whether to record or not (UserOverride). - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - AlwaysEnabled - - AlwaysDisabled - - UserOverride - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - - SwitchParameter - - - False - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowBroadcastScheduling - - Specifies whether this user can create broadcast events in Teams. This setting impacts broadcasts that use both self-service and external encoder production methods. - - Boolean - - Boolean - - - None - - - AllowBroadcastTranscription - - Specifies whether real-time transcription and translation can be enabled in the broadcast event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - - Boolean - - Boolean - - - None - - - BroadcastAttendeeVisibilityMode - - Specifies the attendee visibility mode of the broadcast events created by this user. This setting controls who can watch the broadcast event - e.g. anyone can watch this event including anonymous users or only authenticated users in my company can watch the event. - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - Everyone - - EveryoneInCompany - - InvitedUsersInCompany - - EveryoneInCompanyAndExternal - - InvitedUsersInCompanyAndExternal - - String - - String - - - None - - - BroadcastRecordingMode - - Specifies whether broadcast events created by this user are always recorded (AlwaysEnabled), never recorded (AlwaysDisabled) or user can choose whether to record or not (UserOverride). - > [!NOTE] > This setting is applicable to broadcast events that use Teams Meeting production only and does not apply when external encoder is used as production method. - Possible values: - AlwaysEnabled - - AlwaysDisabled - - UserOverride - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text about the conferencing policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Suppresses the display of any non-fatal error message that might occur when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the policy to be modified. Policies can be configured at the global or per-user scopes. To modify the global policy, use this syntax: -Identity global. To modify a per-user policy, use syntax similar to this: -Identity SalesPolicy. - Note that wildcards are not allowed when specifying an Identity. If you do not specify an Identity the cmdlet will automatically modify the global policy. - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - Tenant - - Not applicable to online service. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMeetingBroadcastPolicy -Identity Global -AllowBroadcastScheduling $false - - Sets the value of the Default (Global) Broadcast Policy in the organization to disable broadcast scheduling, and leaves all other parameters the same. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmeetingbroadcastpolicy - - - - - - Set-CsTeamsMobilityPolicy - Set - CsTeamsMobilityPolicy - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - - - - The TeamsMobilityPolicy allows Admins to control Teams mobile usage for users. - The Set-CsTeamsMobilityPolicy cmdlet allows administrators to update teams mobility policies. - - - - Set-CsTeamsMobilityPolicy - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Bypasses all non-fatal errors. - - - SwitchParameter - - - False - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making, receiving calls or joining meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making, receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide explanatory text about the policy. For example, the Description might indicate the users the policy should be assigned to. - - String - - String - - - None - - - Force - - Bypasses all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the name of the policy that you are creating. - - XdsIdentity - - XdsIdentity - - - None - - - IPAudioMobileMode - - When set to WifiOnly, prohibits the user from making, receiving calls or joining meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - IPVideoMobileMode - - When set to WifiOnly, prohibits the user from making, receiving video calls or enabling video in meetings using VoIP calls on the mobile device while on cellular data connection. - - String - - String - - - None - - - MobileDialerPreference - - Determines the mobile dialer preference, possible values are: Teams, Native, UserOverride. For more information, see Manage user incoming calling policies (https://learn.microsoft.com/microsoftteams/operator-connect-mobile-configure#manage-user-incoming-calling-policies). - - String - - String - - - None - - - LinksInTeams - - Controls the availability of browser choice options in Teams Mobile. When set to OfferBrowserOptions, users get two browser choice experiences: (1) browser options in the Teams Mobile settings page for configuring default preferences, and (2) browser options in the upsell card when tapping links. When set to UseUserDefaults, links open using the user's system default browser settings. Possible values are: OfferBrowserOptions, UseUserDefaults. - - String - - String - - - OfferBrowserOptions - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsMobilityPolicy -Identity SalesPolicy -IPVideoMobileMode "WifiOnly" - - The command shown in Example 1 uses the Set-CsTeamsMobilityPolicy cmdlet to update an existing teams mobility policy with the Identity SalesPolicy. This SalesPolicy will not have IPVideoMobileMode equal to "WifiOnly". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsmobilitypolicy - - - - - - Set-CsTeamsNetworkRoamingPolicy - Set - CsTeamsNetworkRoamingPolicy - - Set-CsTeamsNetworkRoamingPolicy allows IT Admins to create or update policies for Network Roaming and Bandwidth Control experiences in Microsoft Teams. - - - - Updates or creates new Teams Network Roaming Policies configured for use in your organization. - The TeamsNetworkRoamingPolicy cmdlets enable administrators to provide specific settings from the TeamsMeetingPolicy to be rendered dynamically based upon the location of the Teams client. The TeamsNetworkRoamingPolicy cannot be granted to a user but instead can be assigned to a network site. The settings from the TeamsMeetingPolicy included are AllowIPVideo and MediaBitRateKb. When a Teams client is connected to a network site where a CsTeamRoamingPolicy is assigned, these two settings from the TeamsRoamingPolicy will be used instead of the settings from the TeamsMeetingPolicy. - More on the impact of bit rate setting on bandwidth can be found here (https://learn.microsoft.com/microsoftteams/prepare-network). - To enable the network roaming policy for users who are not Enterprise Voice enabled, you must also enable the AllowNetworkConfigurationSettingsLookup setting in TeamsMeetingPolicy. This setting is off by default. See Set-TeamsMeetingPolicy for more information on how to enable AllowNetworkConfigurationSettingsLookup for users who are not Enterprise Voice enabled. - - - - Set-CsTeamsNetworkRoamingPolicy - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the policy to be edited. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be modified. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - AllowIPVideo - - Determines whether video is enabled in a user's meetings or calls. Set this to TRUE to allow the user to share their video. Set this to FALSE to prohibit the user from sharing their video. - - Boolean - - Boolean - - - True - - - Description - - Description of the policy to be edited. - - String - - String - - - None - - - Identity - - Unique identifier of the policy to be modified. - - XdsIdentity - - XdsIdentity - - - None - - - MediaBitRateKb - - Determines the media bit rate for audio/video/app sharing transmissions in meetings. - - Integer - - Integer - - - 50000 - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsNetworkRoamingPolicy -Identity "RedmondRoaming" -AllowIPVideo $true -MediaBitRateKb 2000 -Description "Redmond campus roaming policy" - - The command shown in Example 1 updates the teams network roaming policy with Identity "RedmondRoaming" with IP Video feature enabled, and the maximum media bit rate is capped at 2000 Kbps. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsnetworkroamingpolicy - - - - - - Set-CsTeamsRoomVideoTeleConferencingPolicy - Set - CsTeamsRoomVideoTeleConferencingPolicy - - Modifies the property of an existing TeamsRoomVideoTeleConferencingPolicy. - - - - The Teams Room Video Teleconferencing Policy enables administrators to configure and manage video teleconferencing behavior for Microsoft Teams Rooms (meeting room devices). - - - - Set-CsTeamsRoomVideoTeleConferencingPolicy - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AreaCode - - GUID provided by the CVI partner that the customer signed the agreement with - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to. - - String - - String - - - None - - - Enabled - - The policy can exist for the tenant but it can be enabled or disabled. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the policy to be modified. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - PlaceExternalCalls - - The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - PlaceInternalCalls - - The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveExternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled - - String - - String - - - None - - - ReceiveInternalCalls - - The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant Value: Enabled, Disabled - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsroomvideoteleconferencingpolicy - - - - - - Set-CsTeamsSettingsCustomApp - Set - CsTeamsSettingsCustomApp - - Set the Custom Apps Setting's value of Teams Admin Center. - - - - There is a switch for managing Custom Apps in the Org-wide App Settings page of Teams Admin Center. The command can set the value of this switch. If the isSideloadedAppsInteractionEnabled is set to true, the switch is enabled. So that the custom apps can be uploaded as app packages and available in the organization's app store, vice versa. - - - - Set-CsTeamsSettingsCustomApp - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - isSideloadedAppsInteractionEnabled - - The value to Custom Apps Setting. If the value is true, the custom apps can be uploaded as app packages and available in the organization's app store, vice versa. - - Boolean - - Boolean - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - isSideloadedAppsInteractionEnabled - - The value to Custom Apps Setting. If the value is true, the custom apps can be uploaded as app packages and available in the organization's app store, vice versa. - - Boolean - - Boolean - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsSettingsCustomApp -isSideloadedAppsInteractionEnabled $True - - Set the value of Custom Apps Setting to true. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssettingscustomapp - - - Get-CsTeamsSettingsCustomApp - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamssettingscustomapp - - - - - - Set-CsTeamsShiftsAppPolicy - Set - CsTeamsShiftsAppPolicy - - Allows you to set or update properties of a Teams Shifts App Policy instance. - - - - The Teams Shifts app is designed to help frontline workers and their managers manage schedules and communicate effectively. - - - - Set-CsTeamsShiftsAppPolicy - - Identity - - Policy instance name. - - String - - String - - - None - - - AllowTimeClockLocationDetection - - Turns on the location detection. The time report will indicate whether workers are "on location" when they clocked in and out. Workers are considered as "on location" if they clock in or out within a 200-meter radius of the set location. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowTimeClockLocationDetection - - Turns on the location detection. The time report will indicate whether workers are "on location" when they clocked in and out. Workers are considered as "on location" if they clock in or out within a 200-meter radius of the set location. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Policy instance name. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsShiftsAppPolicy 'Default' -AllowTimeClockLocationDetection $False - - Change Settings on a Teams Shift App Policy (only works on Global policy) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsapppolicy - - - - - - Set-CsTeamsShiftsConnection - Set - CsTeamsShiftsConnection - - This cmdlet sets an existing workforce management (WFM) connection. - - - - This cmdlet updates a Shifts WFM connection. It allows the admin to make changes to the settings such as the name and WFM URLs. Note that the update allows for, but does not require, the -ConnectorSpecificSettings.LoginPwd and ConnectorSpecificSettings.LoginUserName to be included. This cmdlet can update every input field except -ConnectorId and -ConnectionId. - - - - Set-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionRequest - - IUpdateWfmConnectionRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionRequest - - IUpdateWfmConnectionRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connector-specific settings. - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - Name - - The connection name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connector-specific settings. - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connection name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionRequest - - IUpdateWfmConnectionRequest - - - None - - - Break - - Wait for .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connector-specific settings. - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - IUpdateWfmConnectionRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connection name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $connection = Get-CsTeamsShiftsConnection -ConnectionId 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -PS C:\> $result = Set-CsTeamsShiftsConnection ` - -connectionId $connection.Id ` - -IfMatch $connection.Etag ` - -connectorId "6A51B888-FF44-4FEA-82E1-839401E00000" ` - -name "Cmdlet test connection - updated" ` - -connectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsRequest ` - -Property @{ - adminApiUrl = "https://contoso.com/retail/data/wfmadmin/api/v1-beta2" - siteManagerUrl = "https://contoso.com/retail/data/wfmsm/api/v1-beta2" - essApiUrl = "https://contoso.com/retail/data/wfmess/api/v1-beta1" - retailWebApiUrl = "https://contoso.com/retail/data/retailwebapi/api/v1" - cookieAuthUrl = "https://contoso.com/retail/data/login" - federatedAuthUrl = "https://contoso.com/retail/data/login" - LoginUserName = "PlaceholderForUsername" - LoginPwd = "PlaceholderForPassword" - }) ` - -state "Active" - -PS C:\> $result | Format-List - -ConnectorId : 6A51B888-FF44-4FEA-82E1-839401E00000 -ConnectorSpecificSettingAdminApiUrl : https://www.contoso.com/retail/data/wfmadmin/api/v1-beta2 -ConnectorSpecificSettingApiUrl : -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : -ConnectorSpecificSettingCookieAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingEssApiUrl : https://www.contoso.com/retail/data/wfmess/api/v1-beta2 -ConnectorSpecificSettingFederatedAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingRetailWebApiUrl : https://www.contoso.com/retail/data/retailwebapi/api/v1 -ConnectorSpecificSettingSiteManagerUrl : https://www.contoso.com/retail/data/wfmsm/api/v1-beta2 -ConnectorSpecificSettingSsoUrl : -CreatedDateTime : 24/03/2023 04:58:23 -Etag : "5b00dd1b-0000-0400-0000-641d2df00000" -Id : 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -LastModifiedDateTime : 24/03/2023 04:58:23 -Name : Cmdlet test connection - updated -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 - - Updates the instance with the specified -ConnectionId. Returns the object of the updated connection. - In case of an error, you can capture the error response as follows: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - -------------------------- Example 2 -------------------------- - PS C:\> $connection = Get-CsTeamsShiftsConnection -ConnectionId 79964000-286a-4216-ac60-c795a426d61a -PS C:\> $result = Set-CsTeamsShiftsConnection ` - -connectionId $connection.Id ` - -IfMatch $connection.Etag ` - -connectorId "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0" ` - -name "Cmdlet test connection - updated" ` - -connectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest ` - -Property @{ - apiUrl = "https://www.contoso.com/api" - ssoUrl = "https://www.contoso.com/sso" - appKey = "PlaceholderForAppKey" - clientId = "Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W" - clientSecret = "PlaceholderForClientSecret" - LoginUserName = "PlaceholderForUsername" - LoginPwd = "PlaceholderForPassword" - }) ` - -state "Active" -PS C:\> $result | Format-List - -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -ConnectorSpecificSettingAdminApiUrl : -ConnectorSpecificSettingApiUrl : https://www.contoso.com/api -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W -ConnectorSpecificSettingCookieAuthUrl : -ConnectorSpecificSettingEssApiUrl : -ConnectorSpecificSettingFederatedAuthUrl : -ConnectorSpecificSettingRetailWebApiUrl : -ConnectorSpecificSettingSiteManagerUrl : -ConnectorSpecificSettingSsoUrl : https://www.contoso.com/sso -CreatedDateTime : 06/04/2023 11:05:39 -Etag : "3100fd6e-0000-0400-0000-642ea7840000" -Id : a2d1b091-5140-4dd2-987a-98a8b5338744 -LastModifiedDateTime : 06/04/2023 11:05:39 -Name : Cmdlet test connection - updated -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 - - Updates the instance with the specified -ConnectionId. Returns the object of the updated connection. - In case of an error, you can capture the error response as follows: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - New-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - Update-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnection - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - Set-CsTeamsShiftsConnectionInstance - Set - CsTeamsShiftsConnectionInstance - - This cmdlet updates a Shifts connection instance. - - - - This cmdlet updates a Shifts connection instance. It allows the admin to make changes to the settings in the instance such as name, enabled scenarios, and sync frequency. This cmdlet can update every input field except -ConnectorId and -ConnectorInstanceId. - - - - Set-CsTeamsShiftsConnectionInstance - - Body - - The request body - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectorInstanceId - - The Id of the connector instance to be updated. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnectionInstance - - Body - - The request body - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnectionInstance - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - Gets or sets the WFM connection ID for the new instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - ConnectorInstanceId - - The Id of the connector instance to be updated. - - String - - String - - - None - - - DesignatedActorId - - Gets or sets the designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTeamsShiftsConnectionInstance - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - Gets or sets the WFM connection ID for the new instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - DesignatedActorId - - Gets or sets the designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Body - - The request body - - IConnectorInstanceRequest - - IConnectorInstanceRequest - - - None - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - Gets or sets the WFM connection ID for the new instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - ConnectorInstanceId - - The Id of the connector instance to be updated. - - String - - String - - - None - - - DesignatedActorId - - Gets or sets the designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the etag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter. - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $connectionInstance = Get-CsTeamsShiftsConnectionInstance -ConnectorInstanceId WCI-eba2865f-6cac-46f9-8733-e0631a4536e1 -PS C:\> $result = Set-CsTeamsShiftsConnectionInstance ` - -connectorInstanceId "WCI-eba2865f-6cac-46f9-8733-e0631a4536e1" - -IfMatch $connectionInstance.Etag ` - -connectionId "79964000-286a-4216-ac60-c795a426d61a" ` - -name "Cmdlet test instance - updated" ` - -connectorAdminEmail @() ` - -designatedActorId "93f85765-47db-412d-8f06-9844718762a1" ` - -State "Active" ` - -syncFrequencyInMin "10" ` - -SyncScenarioOfferShiftRequest "FromWfmToShifts" ` - -SyncScenarioOpenShift "FromWfmToShifts" ` - -SyncScenarioOpenShiftRequest "FromWfmToShifts" ` - -SyncScenarioShift "FromWfmToShifts" ` - -SyncScenarioSwapRequest "FromWfmToShifts" ` - -SyncScenarioTimeCard "FromWfmToShifts" ` - -SyncScenarioTimeOff "FromWfmToShifts" ` - -SyncScenarioTimeOffRequest "FromWfmToShifts" ` - -SyncScenarioUserShiftPreference "Disabled" - -PS C:\> $result.ToJsonString() - -{ - "syncScenarios": { - "offerShiftRequest": "FromWfmToShifts", - "openShift": "FromWfmToShifts", - "openShiftRequest": "FromWfmToShifts", - "shift": "FromWfmToShifts", - "swapRequest": "FromWfmToShifts", - "timeCard": "FromWfmToShifts", - "timeOff": "FromWfmToShifts", - "timeOffRequest": "FromWfmToShifts", - "userShiftPreferences": "Disabled" - }, - "id": "WCI-eba2865f-6cac-46f9-8733-e0631a4536e1", - "tenantId": "dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a", - "connectionId": "a2d1b091-5140-4dd2-987a-98a8b5338744", - "connectorAdminEmails": [ ], - "connectorId": "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0", - "designatedActorId": "ec1a4edb-1a5f-4b2d-b2a4-37aab6ebd231", - "name": "Cmdlet test instance - updated", - "syncFrequencyInMin": 10, - "workforceIntegrationId": "WFI_6b225907-b476-4d40-9773-08b86db7b11b", - "etag": "\"4f005d22-0000-0400-0000-642ff64a0000\"", - "createdDateTime": "2023-04-07T10:54:01.8170000Z", - "lastModifiedDateTime": "2023-04-07T10:54:01.8170000Z", - "state": "Active" -} - - Updates the instance with the specified -ConnectorInstanceId. Returns the object of the updated connector instance. - In case of error, we can capture the error response as following: - * Hold the cmdlet output in a variable: `$result=<CMDLET>` - * To get the entire error message in Json: `$result.ToJsonString()` - * To get the error object and object details: `$result, $result.Detail` - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - New-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Update-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnectioninstance - - - Remove-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - Set-CsTeamsSurvivableBranchAppliance - Set - CsTeamsSurvivableBranchAppliance - - Changes the Survivable Branch Appliance (SBA) configuration settings for the specified tenant. - - - - The Survivable Branch Appliance (SBA) cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Set-CsTeamsSurvivableBranchAppliance - - Identity - - The identity of the policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Description of the policy. - - String - - String - - - None - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - Site - - The TenantNetworkSite where the SBA is located. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssurvivablebranchappliance - - - - - - Set-CsTeamsSurvivableBranchAppliancePolicy - Set - CsTeamsSurvivableBranchAppliancePolicy - - Changes the Survivable Branch Appliance (SBA) Policy configuration settings for the specified tenant. - - - - The Survivable Branch Appliance (SBA) Policy cmdlets facilitate the continuation of Teams Phone operations, allowing for the placement and reception of Public Switched Telephone Network (PSTN) calls during service disruptions. These cmdlets are exclusively intended for Tenant Administrators and Session Border Controller (SBC) Vendors. In the absence of SBA configuration within a Tenant, the cmdlets will be inoperative. - - - - Set-CsTeamsSurvivableBranchAppliancePolicy - - Identity - - The identity of the policy. - - String - - String - - - None - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - BranchApplianceFqdns - - The FQDN of the SBA(s) in the site. - - Object - - Object - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The identity of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamssurvivablebranchappliancepolicy - - - - - - Set-CsTeamsTargetingPolicy - Set - CsTeamsTargetingPolicy - - The Set-CsTeamsTargetingPolicy cmdlet allows administrators to update existing Tenant tag settings that can be assigned to particular teams to control Team features related to tags. - - - - The CsTeamsTargetingPolicy cmdlets enable administrators to control the type of tags that users can create or the features that they can access in Teams. It also helps determine how tags deal with Teams members or guest users. - - - - Set-CsTeamsTargetingPolicy - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - CustomTagsMode - - Determine whether Teams users can create tags in team. Set this to Enabled to allow users to create new tags. Set this to Disabled to prohibit them from creating new tags. - - String - - String - - - None - - - Description - - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - ManageTagsPermissionMode - - Determine whether team users can manage tag settings in Teams. Set this to EnabledTeamOwner to only allow Teams owners to manage tag settings in current Teams. Set this to EnabledTeamOwnerMember to allow Teams owners and Teams members to manage tag settings in current Teams. Set this to EnabledTeamOwnerMemberGuest to allow Teams owners, Teams members and guest users to manage tag settings in current Teams. Set this to MicrosoftDefault to user default setting in current Teams, which will be the same as EnabledTeamOwner. Set this to Disabled to prohibit all users from managing tag settings in current Teams. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ShiftBackedTagsMode - - Determine whether Teams can have tags created by Shift App. Set this to Enabled to allow tags created by Shift App. Set this to Disabled to prohibit tags from Shift App. - - String - - String - - - None - - - TeamOwnersEditWhoCanManageTagsMode - - Determine whether Teams owners can change Tenant tag settings. Set this to Enabled to allow Teams owners to change Tenant tag settings for current Teams. Set this to Disabled to prohibit them from changing Tenant tag settings. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - CustomTagsMode - - Determine whether Teams users can create tags in team. Set this to Enabled to allow users to create new tags. Set this to Disabled to prohibit them from creating new tags. - - String - - String - - - None - - - Description - - Pass in a new description if that field needs to be updated. - - String - - String - - - None - - - Identity - - Name of the policy instance to be updated. - - String - - String - - - None - - - ManageTagsPermissionMode - - Determine whether team users can manage tag settings in Teams. Set this to EnabledTeamOwner to only allow Teams owners to manage tag settings in current Teams. Set this to EnabledTeamOwnerMember to allow Teams owners and Teams members to manage tag settings in current Teams. Set this to EnabledTeamOwnerMemberGuest to allow Teams owners, Teams members and guest users to manage tag settings in current Teams. Set this to MicrosoftDefault to user default setting in current Teams, which will be the same as EnabledTeamOwner. Set this to Disabled to prohibit all users from managing tag settings in current Teams. - - String - - String - - - None - - - MsftInternalProcessingMode - - For Internal use only. - - String - - String - - - None - - - ShiftBackedTagsMode - - Determine whether Teams can have tags created by Shift App. Set this to Enabled to allow tags created by Shift App. Set this to Disabled to prohibit tags from Shift App. - - String - - String - - - None - - - TeamOwnersEditWhoCanManageTagsMode - - Determine whether Teams owners can change Tenant tag settings. Set this to Enabled to allow Teams owners to change Tenant tag settings for current Teams. Set this to Disabled to prohibit them from changing Tenant tag settings. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsTargetingPolicy -Identity NewTagPolicy -CustomTagsMode Enabled - - The command shown in Example 1 uses the Set-CsTeamsTargetingPolicy cmdlet to update an existing Tenant tag setting with the CustomTagsMode Enabled. This flag will enable Teams users to create tags. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstargetingpolicy - - - Get-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstargetingpolicy - - - Remove-CsTargetingPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstargetingpolicy - - - - - - Set-CsTeamsTranslationRule - Set - CsTeamsTranslationRule - - Cmdlet to modify an existing normalization rule. - - - - You can use this cmdlet to modify an existing number manipulation rule. The rule can be used, for example, in the settings of your SBC (Set-CsOnlinePSTNGateway) to convert a callee or caller number to a desired format before entering or leaving Microsoft Phone System - - - - Set-CsTeamsTranslationRule - - Identity - - Identifier of the rule. This parameter is required and later used to assign the rule to the Inbound or Outbound Trunk Normalization policy. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - - String - - String - - - None - - - Pattern - - A regular expression that caller or callee number must match in order for this rule to be applied. - - String - - String - - - None - - - Translation - - The regular expression pattern that will be applied to the number to convert it. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - A friendly description of the normalization rule. - - String - - String - - - None - - - Identity - - Identifier of the rule. This parameter is required and later used to assign the rule to the Inbound or Outbound Trunk Normalization policy. - - String - - String - - - None - - - Pattern - - A regular expression that caller or callee number must match in order for this rule to be applied. - - String - - String - - - None - - - Translation - - The regular expression pattern that will be applied to the number to convert it. - - String - - String - - - None - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTeamsTranslationRule -Identity StripE164SeattleAreaCode -Pattern ^+12065555(\d{3})$ -Translation $1 - - This example modifies the rule that initially configured to strip +1206555 from any E.164 ten digits number. For example, +12065555555 translated to 5555 to a new pattern. Modified rule now only applies to three digit number (initially to four digits number) and adds one more number in prefix (+120655555 instead of +1206555) - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstranslationrule - - - New-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstranslationrule - - - Get-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstranslationrule - - - Test-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamstranslationrule - - - Remove-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstranslationrule - - - - - - Set-CsTeamsUnassignedNumberTreatment - Set - CsTeamsUnassignedNumberTreatment - - Changes a treatment for how calls to an unassigned number range should be routed. The call can be routed to a user, an application or to an announcement service where a custom message will be played to the caller. - - - - This cmdlet changes a treatment for how calls to an unassigned number range should be routed. - - - - Set-CsTeamsUnassignedNumberTreatment - - Identity - - The Id of the specific treatment. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Free format description of this treatment. - - System.String - - System.String - - - None - - - Identity - - The Id of the specific treatment. - - System.String - - System.String - - - None - - - MsftInternalProcessingMode - - {{ Fill MsftInternalProcessingMode Description }} - - System.String - - System.String - - - None - - - Pattern - - A regular expression that the called number must match in order for the treatment to take effect. It is best practice to start the regular expression with the hat character and end it with the dollar character. You can use various regular expression test sites on the Internet to validate the expression. - - System.String - - System.String - - - None - - - Target - - The identity of the destination the call should be routed to. Depending on the TargetType it should either be the ObjectId of the user or application instance/resource account or the AudioFileId of the uploaded audio file. - - System.String - - System.String - - - None - - - TargetType - - The type of target used for the treatment. Allowed values are User, ResourceAccount and Announcement. - - System.String - - System.String - - - None - - - TreatmentPriority - - The priority of the treatment. Used to distinguish identical patterns. The lower the priority the higher preference. The priority needs to be unique. - - System.Int32 - - System.Int32 - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - System.Object - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 2.5.1 or later. - Both inbound calls to Microsoft Teams and outbound calls from Microsoft Teams will have the called number checked against the unassigned number range. - To route calls to unassigned Microsoft Calling Plan subscriber numbers, your tenant needs to have available Communications Credits. - To route calls to unassigned Microsoft Calling Plan service numbers, your tenant needs to have at least one Microsoft Teams Phone Resource Account license. - If a specified pattern/range contains phone numbers that are assigned to a user or resource account in the tenant, calls to these phone numbers will be routed to the appropriate target and not routed to the specified unassigned number treatment. There are no other checks of the numbers in the range. If the range contains a valid external phone number, outbound calls from Microsoft Teams to that phone number will be routed according to the treatment. - - - - - -------------------------- Example 1 -------------------------- - $RAObjectId = (Get-CsOnlineApplicationInstance -Identity aa2@contoso.com).ObjectId -Set-CsTeamsUnassignedNumberTreatment -Identity MainAA -Target $RAObjectId - - This example changes the treatment MainAA to route the calls to the resource account aa2@contoso.com. - - - - -------------------------- Example 2 -------------------------- - $UserObjectId = (Get-CsOnlineUser -Identity user2@contoso.com).Identity -Set-CsTeamsUnassignedNumberTreatment -Identity User2PSTN -TargetType User -Target $UserObjectId - - This example changes the treatment User2PSTN to route the calls to the user user2@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Import-CsOnlineAudioFile - https://learn.microsoft.com/powershell/module/microsoftteams/import-csonlineaudiofile - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Test-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - - - - Set-CsTeamsWorkLoadPolicy - Set - CsTeamsWorkLoadPolicy - - This cmdlet sets the Teams Workload Policy value for current tenant. - - - - The TeamsWorkLoadPolicy determines the workloads like meeting, messaging, calling that are enabled and/or pinned for the user. - - - - Set-CsTeamsWorkLoadPolicy - - Identity - - The identity of the Teams Work Load Policy. - - String - - String - - - None - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - The description of the policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AllowCalling - - Determines if calling workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowCallingPinned - - Determines if calling workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeeting - - Determines if meetings workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMeetingPinned - - Determines if meetings workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessaging - - Determines if messaging workload is enabled in the Teams App. Possible values are True and False. - - Boolean - - Boolean - - - None - - - AllowMessagingPinned - - Determines if messaging workload is pinned to the teams navigation bar. Possible values are True and False. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - The description of the policy. - - String - - String - - - None - - - Identity - - The identity of the Teams Work Load Policy. - - String - - String - - - None - - - MsftInternalProcessingMode - - For internal use only. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTeamsWorkLoadPolicy -Identity Global -AllowCalling Disabled - - This sets the Teams Workload Policy Global value of AllowCalling to disabled. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsworkloadpolicy - - - Remove-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsworkloadpolicy - - - Get-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsworkloadpolicy - - - New-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsworkloadpolicy - - - Grant-CsTeamsWorkLoadPolicy - https://learn.microsoft.com/powershell/module/microsoftteams/grant-csteamsworkloadpolicy - - - - - - Set-CsTenantBlockedCallingNumbers - Set - CsTenantBlockedCallingNumbers - - Use the Set-CsTenantBlockedCallingNumbers cmdlet to set tenant blocked calling numbers setting. - - - - Microsoft Direct Routing, Operator Connect and Calling Plans supports blocking of inbound calls from the public switched telephone network (PSTN). This feature allows a tenant-global list of number patterns to be defined so that the caller ID of every incoming PSTN call to the tenant can be checked against the list for a match. If a match is made, an incoming call is rejected. - The tenant blocked calling numbers includes a list of inbound blocked number patterns. Number patterns are managed through the CsInboundBlockedNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - The tenant blocked calling numbers also includes a list of number patterns exempt from call blocking. Exempt number patterns are managed through the CsInboundExemptNumberPattern commands New, Get, Set, and Remove. You can manage a given pattern by using these cmdlets, including the ability to toggle the activation of a given pattern. - You can test your number blocking by using the Test-CsInboundBlockedNumberPattern command. - The scope of tenant blocked calling numbers is global across the given tenant. This command-let can also turn on/off the blocked calling numbers setting at the tenant level. - To get the current tenant blocked calling numbers setting, use Get-CsTenantBlockedCallingNumbers - - - - Set-CsTenantBlockedCallingNumbers - - Identity - - The Identity parameter is a unique identifier which identifies the TenantBlockedCallingNumbers to set. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Enabled - - The switch to turn on or turn off the blocked calling numbers setting. - - Object - - Object - - - None - - - Force - - The Force switch overrides the confirmation prompt displayed. - - - SwitchParameter - - - False - - - InboundBlockedNumberPatterns - - The InboundBlockedNumberPatterns parameter contains the list of InboundBlockedNumberPatterns. - - Object - - Object - - - None - - - InboundExemptNumberPatterns - - The InboundExemptNumberPatterns parameter contains the list of InboundExemptNumberPatterns. - - Object - - Object - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet. - - Object - - Object - - - None - - - Name - - This parameter allows you to provide a name to the TenantBlockedCallingNumbers setting. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Enabled - - The switch to turn on or turn off the blocked calling numbers setting. - - Object - - Object - - - None - - - Force - - The Force switch overrides the confirmation prompt displayed. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - The Identity parameter is a unique identifier which identifies the TenantBlockedCallingNumbers to set. - - String - - String - - - None - - - InboundBlockedNumberPatterns - - The InboundBlockedNumberPatterns parameter contains the list of InboundBlockedNumberPatterns. - - Object - - Object - - - None - - - InboundExemptNumberPatterns - - The InboundExemptNumberPatterns parameter contains the list of InboundExemptNumberPatterns. - - Object - - Object - - - None - - - Instance - - Allows you to pass a reference to an object to the cmdlet. - - Object - - Object - - - None - - - Name - - This parameter allows you to provide a name to the TenantBlockedCallingNumbers setting. - - Object - - Object - - - None - - - Tenant - - This parameter is reserved for internal Microsoft use. - - Object - - Object - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTenantBlockedCallingNumbers -Enabled $false - - This example turns off the tenant blocked calling numbers setting. No inbound number will be blocked from this feature. - - - - -------------------------- Example 2 -------------------------- - Set-CsTenantBlockedCallingNumbers -Enabled $true - - This example turns on the tenant blocked calling numbers setting. Inbound calls will be blocked based on the list of blocked number patterns. - - - - -------------------------- Example 3 -------------------------- - Set-CsTenantBlockedCallingNumbers -Name "MyCustomBlockedCallingNumbersName" - - This example renames the current blocked calling numbers with "MyCustomBlockedCallingNumbersName". No change is made besides the Name field change. - - - - -------------------------- Example 4 -------------------------- - Set-CsTenantBlockedCallingNumbers -InboundBlockedNumberPatterns @((New-CsInboundBlockedNumberPattern -Name "AnonymousBlockedPattern" -Enabled $true -Pattern "^(?!)Anonymous")) - - This example sets the tenant blocked calling numbers with a new list of inbound blocked number patterns. There is a new InboundBlockedNumberPattern being created. The pattern name is "AnonymousBlockedPattern". The pattern is turned on. The pattern is a normalization rule which contains "Anonymous". - Note that if the current InboundBlockedNumberPatterns already contains a list of patterns while a new pattern needs to be created, this example will wipe out the existing patterns and only add the new one. Please save the current InboundBlockedNumberPatterns list before adding new patterns. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantblockedcallingnumbers - - - Get-CsTenantBlockedCallingNumbers - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantblockedcallingnumbers - - - Test-CsInboundBlockedNumberPattern - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - - - - Set-CsTenantDialPlan - Set - CsTenantDialPlan - - Use the `Set-CsTenantDialPlan` cmdlet to modify an existing tenant dial plan. - - - - The `Set-CsTenantDialPlan` cmdlet modifies an existing tenant dial plan. A tenant dial plan determines such things as which normalization rules are applied. Tenant dial plans provide required information to let Enterprise Voice users make telephone calls. The Conferencing Attendant application also uses tenant dial plans for dial-in conferencing. - - - - Set-CsTenantDialPlan - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to modify. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to or any other information that helps to identify the purpose of the tenant dial plan. Maximum characters is 1040. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet, which creates the rule and assigns it to the specified tenant dial plan. - The number of normalization rules cannot exceed 50 per TenantDialPlan. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), and parentheses (()). - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - > Applicable: Microsoft Teams - The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to or any other information that helps to identify the purpose of the tenant dial plan. Maximum characters is 1040. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The Identity parameter is a unique identifier that designates the name of the tenant dial plan to modify. - - String - - String - - - None - - - NormalizationRules - - > Applicable: Microsoft Teams - The NormalizationRules parameter is a list of normalization rules that are applied to this dial plan. Although this list and these rules can be created directly by using this cmdlet, we recommend that you create the normalization rules by the New-CsVoiceNormalizationRule (https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule)cmdlet, which creates the rule and assigns it to the specified tenant dial plan. - The number of normalization rules cannot exceed 50 per TenantDialPlan. - - List - - List - - - None - - - SimpleName - - > Applicable: Microsoft Teams - The SimpleName parameter is a display name for the tenant dial plan. This name must be unique among all tenant dial plans. - This string can be up to 49 characters long. Valid characters are alphabetic or numeric characters, hyphen (-), dot (.), and parentheses (()). - - String - - String - - - None - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf parameter describes what would happen if you executed the command, without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - The ExternalAccessPrefix and OptimizeDeviceDialing parameters have been removed from New-CsTenantDialPlan and Set-CsTenantDialPlan cmdlet since they are no longer used. External access dialing is now handled implicitly using normalization rules of the dial plans. The Get-CsTenantDialPlan will still show the external access prefix in the form of a normalization rule of the dial plan. - - - - - -------------------------- Example 1 -------------------------- - $nr2 = Get-CsVoiceNormalizationRule -Identity "US/US Long Distance" -Set-CsTenantDialPlan -Identity vt1tenantDialPlan9 -NormalizationRules @{Add=$nr2} - - This example updates the vt1tenantDialPlan9 tenant dial plan to use the US/US Long Distance normalization rules. - - - - -------------------------- Example 2 -------------------------- - $DP = Get-CsTenantDialPlan -Identity Global -$NR = $DP.NormalizationRules | Where Name -eq "RedmondFourDigit") -$NR.Name = "RedmondRule" -Set-CsTenantDialPlan -Identity Global -NormalizationRules $DP.NormalizationRules - - This example changes the name of a normalization rule. Keep in mind that changing the name also changes the name portion of the Identity. The `Set-CsVoiceNormalizationRule` cmdlet doesn't have a Name parameter, so in order to change the name, we first call the `Get-CsTenantDialPlan` cmdlet to retrieve the Dial Plan with the Identity Global and assign the returned object to the variable $DP. Then we filter the NormalizationRules Object for the rule RedmondFourDigit and assign the returned object to the variable $NR. We then assign the string RedmondRule to the Name property of the object. Finally, we pass the variable back to the NormalizationRules parameter of the `Set-CsTenantDialPlan` cmdlet to make the change permanent. - - - - -------------------------- Example 3 -------------------------- - $DP = Get-CsTenantDialPlan -Identity Global -$NR = $DP.NormalizationRules | Where Name -eq "RedmondFourDigit") -$DP.NormalizationRules.Remove($NR) -Set-CsTenantDialPlan -Identity Global -NormalizationRules $DP.NormalizationRules - - This example removes a normalization rule. We utilize the same functionality as for Example 3 to manipulate the Normalization Rule Object and update it with the `Set-CsTenantDialPlan` cmdlet. We first call the `Get-CsTenantDialPlan` cmdlet to retrieve the Dial Plan with the Identity Global and assign the returned object to the variable $DP. Then we filter the NormalizationRules Object for the rule RedmondFourDigit and assign it to the variable $NR. Next, we remove this Object with the Remove Method from $DP.NormalizationRules. Finally, we pass the variable back to the NormalizationRules parameter of the `Set-CsTenantDialPlan` cmdlet to make the change permanent. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantdialplan - - - Grant-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/grant-cstenantdialplan - - - New-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantdialplan - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - Remove-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantdialplan - - - - - - Set-CsTenantFederationConfiguration - Set - CsTenantFederationConfiguration - - Manages federation configuration settings for your Skype for Business Online tenants. - - - - > [!NOTE] > Starting May 5, 2025, Skype Consumer Interoperability with Teams is no longer supported and the parameter AllowPublicUsers can no longer be used. - Federation is a service that enables users to exchange IM and presence information with users from other domains. With Skype for Business Online, administrators can use the federation configuration settings to govern: - Whether or not users can communicate with people from other domains and if so, which domains they are allowed to communicate with. - Whether or not users can communicate with people who have accounts on public IM and presence providers such as Windows Live, Skype, or people using Microsoft Teams with an account that's not managed by an organization. - Administrators can use the `Set-CsTenantFederationConfiguration` cmdlet to enable and disable federation with other domains and federation with public providers. In addition, this cmdlet can be used to expressly indicate the domains that users can communicate with and/or the domains that users are not allowed to communicate with. However, administrators must use the `Set-CsTenantPublicProvider` cmdlet in order to indicate the public IM and presence providers that users can and cannot communicate with. - - - - Set-CsTenantFederationConfiguration - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need to include this parameter when calling the `Set-CsTenantFederationConfiguration` cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - AllowedDomains - - > Applicable: Microsoft Teams - Domain objects (created by using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet) that represent the domains that users are allowed to communicate with. If the `New-CsEdgeAllowAllKnownDomains` cmdlet is used then users can communicate with any domain that does not appear on the blocked domains list. If the `New-CsEdgeAllowList` cmdlet is used then users can only communicate with domains that have been added to the allowed domains list. - Note that string values cannot be passed directly to the AllowedDomains parameter. Instead, you must create an object reference using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet and then use the object reference variable as the parameter value. - The AllowedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - Boolean - - Boolean - - - None - - - AllowedDomainsAsAList - - > Applicable: Microsoft Teams - You can specify allowed domains using a List object that contains the domains that users are allowed to communicate with. See Examples section. - - List - - List - - - None - - - AllowedTrialTenantDomains - - > Applicable: Microsoft Teams - You can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. This will allow you to protect your organization against majority of tenants that don't have any paid subscriptions, while still being able to collaborate externally with those trusted trial-tenants in the list. - Note: - - The list supports up to maximum 4k domains. - - If `ExternalAccessWithTrialTenants` is set to `Allowed`, then the `AllowedTrialTenantDomains` list will not be checked. - - Any domain in this list that belongs to a tenant with paid subscriptions will be ignored. - - List - - List - - - None - - - AllowFederatedUsers - - > Applicable: Microsoft Teams - When set to True (the default value) users will be potentially allowed to communicate with users from other domains. If this property is set to False then users cannot communicate with users from other domains, regardless of the values assigned to the `AllowedDomains` and `BlockedDomains` properties or any `ExternalAccessPolicy` instances. In effect, the `AllowFederatedUsers` property serves as a master switch that globally enables or disables federation across the Tenant, overriding all other policy settings. - To block all domains while selectively allowing specific users to communicate externally via explicit `ExternalAccessPolicy` instances, set `AllowFederatedUsers` to `True` and leave the `AllowedDomains` property empty. - - Boolean - - Boolean - - - None - - - AllowTeamsConsumer - - Allows federation with people using Teams with an account that's not managed by an organization. - - Boolean - - Boolean - - - True - - - AllowTeamsConsumerInbound - - Allows people using Teams with an account that's not managed by an organization, to discover and start communication with users in your organization. When -AllowTeamsConsumer is enabled and this parameter is disabled, only the users in your organization will be able to discover and start communication with people using Teams with an account that's not managed by an organization, but they will not discover and start communications with users in your organization. - - Boolean - - Boolean - - - True - - - BlockAllSubdomains - - > Applicable: Skype for Business Online - If the BlockedDomains parameter is used, then BlockAllSubdomains can be used to activate all subdomains blocking. If the BlockedDomains parameter is ignored, then BlockAllSubdomains is also ignored. Just like for BlockedDomains, users will be disallowed from communicating with users from blocked domains. But all subdomains for domains in this list will also be blocked. - - - SwitchParameter - - - False - - - BlockedDomains - - > Applicable: Microsoft Teams - If the AllowedDomains property has been set to AllowAllKnownDomains, then users will be allowed to communicate with users from any domain except domains that appear in the blocked domains list. If the AllowedDomains property has not been set to AllowAllKnownDomains, then the blocked list is ignored, and users can only communicate with domains that have been expressly added to the allowed domains list. - The BlockedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - List - - List - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - SecurityTeamAllowBlockListDelegation - - > Applicable: Microsoft Teams - When set to 'Enabled', security operations team will be able to add domains and users to the blocklist on security portal. - When set to 'Disabled', security operations team will not have permissions to update the domains and users blocklists. - - SecurityTeamAllowBlockListDelegationType - - SecurityTeamAllowBlockListDelegationType - - - None - - - ExternalAccessWithTrialTenants - - > Applicable: Microsoft Teams - When set to 'Blocked', all external access with users from Teams subscriptions that contain only trial licenses will be blocked. This means users from these trial-only tenants will not be able to reach to your users via chats, Teams calls, and meetings (using the users authenticated identity) and your users will not be able to reach users in these trial-only tenants. If this setting is set to "Blocked", users from the trial-only tenant will also be removed from existing chats. - Allowed - Communication with other tenants is allowed based on other settings. - Blocked - Communication with users in tenants that contain only trial licenses will be blocked. - - ExternalAccessWithTrialTenantsType - - ExternalAccessWithTrialTenantsType - - - None - - - EnableExternalAccessRestrictionsForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - When set to False (the default value), users in the tenant who have `EnableFederationAccess` set to False in their assigned `ExternalAccessPolicy` can be added to group chats that include external users only when the chat is initiated by a user in the same tenant who has `EnableFederationAccess` set to True. - When set to True, users in the tenant who have `EnableFederationAccess` set to False are blocked from being added to any group chat that includes external users and are removed from existing active group chats that include external users. - The `EnableExternalAccessRestrictionsForChatParticipants ` parameter does not affect the behavior set by `CommunicationWithExternalOrgs` parameter of the `ExternalAccessPolicy`. > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active > - - EnableExternalAccessRestrictionsForChatParticipants - - EnableExternalAccessRestrictionsForChatParticipants - - - False - - - EnableMutualFederationForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - This parameter specifies whether additional mutual federation requirements are extended across all participants in a group chat. Mutual federation relationships are determined by each user’s effective external access configuration (`AllowedDomains`, `BlockedDomains`, and `ExternalAccessPolicy`). When enabled, this parameter adds participant‑level mutual federation enforcement to group chat. - When set to False (the default value), only the initiator of the group chat and the user joining or being added are required to have a mutual federation relationship . Users in the tenant can join or be added to group chats that may include other external participants who are not permitted by the user’s own external access configuration, based on the initiating user’s settings. This behavior applies to group chats initiated by users within the tenant or by external users. - When set to True, all participants in the group chat must have mutual federation relationships with every other participant in the chat . Users are blocked from joining or being added to group chats if they do not have mutual federation relationships with all existing participants. These relationships are evaluated continuously for all active chats and participants are automatically removed from existing active group chats when required relationships are no longer valid. - > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active. > > The user who initiated the chat is never removed from the group chat as a result of this setting. - - EnableMutualFederationForChatParticipants - - EnableMutualFederationForChatParticipants - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory. Possible values: True, False - - Boolean - - Boolean - - - None - - - SharedSipAddressSpace - - > Applicable: Microsoft Teams - When set to True, indicates that the users homed on Skype for Business Online use the same SIP domain as users homed on the on-premises version of Skype for Business Server. The default value is False, meaning that the two sets of users have different SIP domains. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - TreatDiscoveredPartnersAsUnverified - - > Applicable: Microsoft Teams - When set to True, messages sent from discovered partners are considered unverified. That means that those messages will be delivered only if they were sent from a person who is on the recipient's Contacts list. The default value is False ($False). - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AllowedDomains - - > Applicable: Microsoft Teams - Domain objects (created by using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet) that represent the domains that users are allowed to communicate with. If the `New-CsEdgeAllowAllKnownDomains` cmdlet is used then users can communicate with any domain that does not appear on the blocked domains list. If the `New-CsEdgeAllowList` cmdlet is used then users can only communicate with domains that have been added to the allowed domains list. - Note that string values cannot be passed directly to the AllowedDomains parameter. Instead, you must create an object reference using the `New-CsEdgeAllowList` cmdlet or the `New-CsEdgeAllowAllKnownDomains` cmdlet and then use the object reference variable as the parameter value. - The AllowedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - Boolean - - Boolean - - - None - - - AllowedDomainsAsAList - - > Applicable: Microsoft Teams - You can specify allowed domains using a List object that contains the domains that users are allowed to communicate with. See Examples section. - - List - - List - - - None - - - AllowedTrialTenantDomains - - > Applicable: Microsoft Teams - You can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. This will allow you to protect your organization against majority of tenants that don't have any paid subscriptions, while still being able to collaborate externally with those trusted trial-tenants in the list. - Note: - - The list supports up to maximum 4k domains. - - If `ExternalAccessWithTrialTenants` is set to `Allowed`, then the `AllowedTrialTenantDomains` list will not be checked. - - Any domain in this list that belongs to a tenant with paid subscriptions will be ignored. - - List - - List - - - None - - - AllowFederatedUsers - - > Applicable: Microsoft Teams - When set to True (the default value) users will be potentially allowed to communicate with users from other domains. If this property is set to False then users cannot communicate with users from other domains, regardless of the values assigned to the `AllowedDomains` and `BlockedDomains` properties or any `ExternalAccessPolicy` instances. In effect, the `AllowFederatedUsers` property serves as a master switch that globally enables or disables federation across the Tenant, overriding all other policy settings. - To block all domains while selectively allowing specific users to communicate externally via explicit `ExternalAccessPolicy` instances, set `AllowFederatedUsers` to `True` and leave the `AllowedDomains` property empty. - - Boolean - - Boolean - - - None - - - AllowTeamsConsumer - - Allows federation with people using Teams with an account that's not managed by an organization. - - Boolean - - Boolean - - - True - - - AllowTeamsConsumerInbound - - Allows people using Teams with an account that's not managed by an organization, to discover and start communication with users in your organization. When -AllowTeamsConsumer is enabled and this parameter is disabled, only the users in your organization will be able to discover and start communication with people using Teams with an account that's not managed by an organization, but they will not discover and start communications with users in your organization. - - Boolean - - Boolean - - - True - - - BlockAllSubdomains - - > Applicable: Skype for Business Online - If the BlockedDomains parameter is used, then BlockAllSubdomains can be used to activate all subdomains blocking. If the BlockedDomains parameter is ignored, then BlockAllSubdomains is also ignored. Just like for BlockedDomains, users will be disallowed from communicating with users from blocked domains. But all subdomains for domains in this list will also be blocked. - - SwitchParameter - - SwitchParameter - - - False - - - BlockedDomains - - > Applicable: Microsoft Teams - If the AllowedDomains property has been set to AllowAllKnownDomains, then users will be allowed to communicate with users from any domain except domains that appear in the blocked domains list. If the AllowedDomains property has not been set to AllowAllKnownDomains, then the blocked list is ignored, and users can only communicate with domains that have been expressly added to the allowed domains list. - The BlockedDomains parameter can support up to 4,000 domains. - > [!IMPORTANT] > The `AllowFederatedUsers` property must be set to `True` for the `AllowedDomains` list to take effect. If `AllowFederatedUsers` is set to `False`, users will be blocked from communicating with all external domains regardless of the values in `AllowedDomains` or any `ExternalAccessPolicy` instance. - - List - - List - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - SecurityTeamAllowBlockListDelegation - - > Applicable: Microsoft Teams - When set to 'Enabled', security operations team will be able to add domains and users to the blocklist on security portal. - When set to 'Disabled', security operations team will not have permissions to update the domains and users blocklists. - - SecurityTeamAllowBlockListDelegationType - - SecurityTeamAllowBlockListDelegationType - - - None - - - ExternalAccessWithTrialTenants - - > Applicable: Microsoft Teams - When set to 'Blocked', all external access with users from Teams subscriptions that contain only trial licenses will be blocked. This means users from these trial-only tenants will not be able to reach to your users via chats, Teams calls, and meetings (using the users authenticated identity) and your users will not be able to reach users in these trial-only tenants. If this setting is set to "Blocked", users from the trial-only tenant will also be removed from existing chats. - Allowed - Communication with other tenants is allowed based on other settings. - Blocked - Communication with users in tenants that contain only trial licenses will be blocked. - - ExternalAccessWithTrialTenantsType - - ExternalAccessWithTrialTenantsType - - - None - - - EnableExternalAccessRestrictionsForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - When set to False (the default value), users in the tenant who have `EnableFederationAccess` set to False in their assigned `ExternalAccessPolicy` can be added to group chats that include external users only when the chat is initiated by a user in the same tenant who has `EnableFederationAccess` set to True. - When set to True, users in the tenant who have `EnableFederationAccess` set to False are blocked from being added to any group chat that includes external users and are removed from existing active group chats that include external users. - The `EnableExternalAccessRestrictionsForChatParticipants ` parameter does not affect the behavior set by `CommunicationWithExternalOrgs` parameter of the `ExternalAccessPolicy`. > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active > - - EnableExternalAccessRestrictionsForChatParticipants - - EnableExternalAccessRestrictionsForChatParticipants - - - False - - - EnableMutualFederationForChatParticipants - - > Applicable: Microsoft Teams - > This parameter is reserved for future use and has no effect and should not be used. Any values set will not be applied or retained before this parameter is released - This parameter specifies whether additional mutual federation requirements are extended across all participants in a group chat. Mutual federation relationships are determined by each user’s effective external access configuration (`AllowedDomains`, `BlockedDomains`, and `ExternalAccessPolicy`). When enabled, this parameter adds participant‑level mutual federation enforcement to group chat. - When set to False (the default value), only the initiator of the group chat and the user joining or being added are required to have a mutual federation relationship . Users in the tenant can join or be added to group chats that may include other external participants who are not permitted by the user’s own external access configuration, based on the initiating user’s settings. This behavior applies to group chats initiated by users within the tenant or by external users. - When set to True, all participants in the group chat must have mutual federation relationships with every other participant in the chat . Users are blocked from joining or being added to group chats if they do not have mutual federation relationships with all existing participants. These relationships are evaluated continuously for all active chats and participants are automatically removed from existing active group chats when required relationships are no longer valid. - > [!NOTE] > This setting only applies to group chats and does not affect a user's ability to join meetings with external users or participate in meeting chats with external users. Refer to Set-CsExternalAccessPolicy (/powershell/module/microsoftteams/set-csexternalaccesspolicy)for information about `EnableFederationAccess` parameter. > > Removal of users only applies to active group chats. An active group chat is defined as a chat in which a message has been sent within the past two hours. Users are removed from inactive group chats only when a new message is sent and the chat becomes active. > > The user who initiated the chat is never removed from the group chat as a result of this setting. - - EnableMutualFederationForChatParticipants - - EnableMutualFederationForChatParticipants - - - False - - - Force - - > Applicable: Microsoft Teams - Suppresses the display of any non-fatal error message that might arise when running the command. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need to include this parameter when calling the `Set-CsTenantFederationConfiguration` cmdlet. If you do choose to use the Identity parameter you must also include the Tenant parameter. For example: - `Set-CsTenantFederationConfiguration -Tenant "bf19b7db-6960-41e5-a139-2aa373474354" -Identity "global"` - - XdsIdentity - - XdsIdentity - - - None - - - Instance - - > Applicable: Microsoft Teams - Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values. - - PSObject - - PSObject - - - None - - - RestrictTeamsConsumerToExternalUserProfiles - - Defines if a user is restricted to collaboration with Teams Consumer (TFL) user only in Extended Directory. Possible values: True, False - - Boolean - - Boolean - - - None - - - SharedSipAddressSpace - - > Applicable: Microsoft Teams - When set to True, indicates that the users homed on Skype for Business Online use the same SIP domain as users homed on the on-premises version of Skype for Business Server. The default value is False, meaning that the two sets of users have different SIP domains. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose federation settings are being modified. For example: - `-Tenant "38aad667-af54-4397-aaa7-e94c79ec2308"` - You can return your tenant ID by running this command: - `Get-CsTenant | Select-Object DisplayName, TenantID` - If you are using a remote session of Windows PowerShell and are connected only to Skype for Business Online you do not have to include the Tenant parameter. Instead, the tenant ID will automatically be filled in for you based on your connection information. The Tenant parameter is primarily for use in a hybrid deployment. - - Guid - - Guid - - - None - - - TreatDiscoveredPartnersAsUnverified - - > Applicable: Microsoft Teams - When set to True, messages sent from discovered partners are considered unverified. That means that those messages will be delivered only if they were sent from a person who is on the recipient's Contacts list. The default value is False ($False). - - Boolean - - Boolean - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - The `Set-CsTenantFederationConfiguration` cmdlet accepts pipelined instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings object. - - - - - - - Output types - - - None. Instead, the `Set-CsTenantFederationConfiguration` cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.Edge.TenantFederationSettings object. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Replace=$x} - - In Example 1, the domain fabrikam.com is assigned as the only domain on the blocked domains list for current tenant. To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a new domain object for fabrikam.com. This domain object is stored in a variable named $x. - The second command in the example then uses the `Set-CsTenantFederationConfiguration` cmdlet to update the blocked domains list. Using the Replace method ensures that the existing blocked domains list will be replaced by the new list: a list that contains only the domain fabrikam.com. - - - - -------------------------- Example 3 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Remove=$x} - - The commands shown in Example 3 remove fabrikam.com from the list of domains blocked by the current tenant. To do this, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a domain object for fabrikam.com. The resulting domain object is then stored in a variable named $x. - The second command in the example then uses the `Set-CsTenantFederationConfiguration` cmdlet and the Remove method to remove fabrikam.com from the blocked domains list for the specified tenant. - - - - -------------------------- Example 4 -------------------------- - $x = New-CsEdgeDomainPattern -Domain "fabrikam.com" - -Set-CsTenantFederationConfiguration -BlockedDomains @{Add=$x} - - The commands shown in Example 4 add the domain fabrikam.com to the list of domains blocked by the current tenant. To add a new blocked domain, the first command in the example uses the `New-CsEdgeDomainPattern` cmdlet to create a domain object for fabrikam.com. This object is stored in a variable named $x. - After the domain object has been created, the second command then uses the `Set-CsTenantFederationConfiguration` cmdlet and the Add method to add fabrikam.com to any domains already on the blocked domains list. - - - - -------------------------- Example 5 -------------------------- - Set-CsTenantFederationConfiguration -BlockedDomains $Null - - Example 5 shows how you can remove all the domains assigned to the blocked domains list for the current tenant. To do this, simply include the BlockedDomains parameter and set the parameter value to null ($Null). When this command completes, the blocked domain list will be cleared. - - - - -------------------------- Example 6 -------------------------- - Set-CsTenantFederationConfiguration -AllowedDomains $Null - - Example 6 shows how you can remove all the domains assigned to the allowed domains list for the current tenant, thereby blocking external communication for all users in the Tenant. In case `AllowFederatedUsers` is set to `True`, then explicit `ExternalAccessPolicy` instances can be leveraged to set a per-user federation setting. To do this, simply include the AllowedDomains parameter and set the parameter value to null ($Null). When this command completes, the allowed domain list will be cleared. - - - - -------------------------- Example 7 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList $list - - Example 7 shows how you can replace domains in the Allowed Domains using a List collection object. First, a List collection is created and domains are added to it, then, simply include the AllowedDomainsAsAList parameter and set the parameter value to the List object. When this command completes, the allowed domains list will be replaced with those domains. - - - - -------------------------- Example 8 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Add=$list} - - Example 8 shows how you can add domains to the existing Allowed Domains using a List object. First, a List is created and domains are added to it, then use the Add method in the AllowedDomainsAsAList parameter to add the domains to the existing allowed domains list. When this command completes, the domains in the list will be added to any domains already on the AllowedDomains list. - - - - -------------------------- Example 9 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Remove=$list} - - Example 9 shows how you can remove domains from the existing Allowed Domains using a List object. First, a List is created and domains are added to it, then use the Remove method in the AllowedDomainsAsAList parameter to remove the domains from the existing allowed domains list. When this command completes, the domains in the list will be removed from the AllowedDomains list. - - - - -------------------------- Example 10 -------------------------- - Set-CsTenantFederationConfiguration -AllowTeamsConsumer $True -AllowTeamsConsumerInbound $False - - The command shown in Example 10 enables communication with people using Teams with an account that's not managed by an organization, to only be initiated by people in your organization. This means that people using Teams with an account that's not managed by an organization will not be able to discover or start a conversation with people in your organization. - - - - -------------------------- Example 11 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") -Set-CsTenantFederationConfiguration -BlockedDomains $list - -Set-CsTenantFederationConfiguration -BlockAllSubdomains $True - - Example 11 shows how you can block all subdomains of domains in BlockedDomains list. In this example, all users from contoso.com and fabrikam.com will be blocked. When the BlockAllSubdomains is enabled, all users from all subdomains of all domains in BlockedDomains list will also be blocked. So, users from subdomain.contoso.com and subdomain.fabrikam.com will be blocked. Note: Users from subcontoso.com will not be blocked because it's a completely different domain rather than a subdomain of contoso.com. - - - - -------------------------- Example 12 -------------------------- - Set-CsTenantFederationConfiguration -ExternalAccessWithTrialTenants "Allowed" - - Example 12 shows how you can allow users to communicate with users in tenants that contain only trial licenses (default value is Blocked). - - - - -------------------------- Example 13 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") -$list.add("fabrikam.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains $list - - Using the `AllowedTrialTenantDomains` parameter, you can safelist specific "trial-only" tenant domains, while keeping the `ExternalAccessWithTrialTenants` set to `Blocked`. Example 13 shows how you can set or replace domains in the Allowed Trial Tenant Domains using a List collection object. First, a List collection is created and domains are added to it, then, simply include the `AllowedTrialTenantDomains` parameter and set the parameter value to the List object. When this command completes, the Allowed Trial Tenant Domains list will be replaced with those domains. - - - - -------------------------- Example 14 -------------------------- - Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @("contoso.com", "fabrikam.com") - - Example 14 shows another way to set a value of `AllowedTrialTenantDomains`. It uses array of objects and it always replaces value of the `AllowedTrialTenantDomains`. When this command completes, the result is the same as in example 13. - The array of `AllowedTrialTenantDomains` can be emptied by running the following command: `Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @()`. - - - - -------------------------- Example 15 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Add=$list} - - Example 15 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object. First, a List is created and domains are added to it, then, use the Add method in the `AllowedTrialTenantDomains` parameter to add the domains to the existing allowed domains list. When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list. - - - - -------------------------- Example 16 -------------------------- - $list = New-Object Collections.Generic.List[String] -$list.add("contoso.com") - -Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Remove=$list} - - Example 16 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object. First, a List is created and domains are added to it, then use the Remove method in the `AllowedTrialTenantDomains` parameter to remove the domains from the existing allowed domains list. When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list. - - - - -------------------------- Example 17 -------------------------- - Set-CsTenantFederationConfiguration -SecurityTeamAllowBlockListDelegation "Enabled" - - Example 17 shows how you let your security operations team edit the blocked domains and blocked users lists from Defender for Office 365 (default value is Disabled). - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantfederationconfiguration - - - Get-CsTenantFederationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantfederationconfiguration - - - - - - Set-CsTenantMigrationConfiguration - Set - CsTenantMigrationConfiguration - - Used to enable or disable Meeting Migration Service (MMS). - - - - Used to enable or disable Meeting Migration Service (MMS). For more information, see Using the Meeting Migration Service (MMS) (https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms). - - - - Set-CsTenantMigrationConfiguration - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the Migration Configuration. - - String - - String - - - None - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - - SwitchParameter - - - False - - - - Set-CsTenantMigrationConfiguration - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - > Applicable: Microsoft Teams - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantMigrationConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Unique identifier for the Migration Configuration. - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantMigrationConfiguration` cmdlet. - - PSObject - - PSObject - - - None - - - MeetingMigrationEnabled - - > Applicable: Microsoft Teams - Set this to false to disable the Meeting Migration Service. - - Boolean - - Boolean - - - None - - - Tenant - - > Applicable: Microsoft Teams - Globally unique identifier (GUID) of the tenant account whose Migration Configurations are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - Guid - - Guid - - - None - - - WhatIf - - > Applicable: Microsoft Teams - Shows what would happen if the cmdlet runs. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsTenantMigrationConfiguration -MeetingMigrationEnabled $false - - This example disables MMS in the organization. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantmigrationconfiguration - - - - - - Set-CsTenantNetworkRegion - Set - CsTenantNetworkRegion - - Changes the definintion of network regions. - - - - As an admin, you can use the Teams PowerShell command, Set-CsTenantNetworkRegion to define network regions. A network region interconnects various parts of a network across multiple geographic areas. The RegionID parameter is a logical name that represents the geography of the region and has no dependencies or restrictions. The organization's network region is used for Location-Based Routing. - Location-Based Routing leverages the same network regions, sites, and subnets concept that is available in Skype for Business Server. A network region contains a collection of network sites. For example, if your organization has many sites located in Redmond, then you may choose to designate "Redmond" as a network region. - - - - Set-CsTenantNetworkRegion - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be set. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. Not required in this PowerShell command. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - CentralSite - - This parameter is not used. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network region to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network region to be set. - - String - - String - - - None - - - NetworkRegionID - - The name of the network region. Not required in this PowerShell command. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkRegion -Identity "RegionA" -Description "Region A" - - The command shown in Example 1 sets the network region 'RegionA' with the description 'Region A'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworkregion - - - New-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworkregion - - - Remove-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworkregion - - - Get-CsTenantNetworkRegion - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworkregion - - - - - - Set-CsTenantNetworkSite - Set - CsTenantNetworkSite - - Changes the definition of network sites. - - - - A network site represents a location where your organization has a physical venue, such as offices, a set of buildings, or a campus. Network sites are defined as a collection of IP subnets. Each network site must be associated with a network region. - A best practice for Location Based Routing (LBR) is to create a separate site for each location which has unique PSTN connectivity. Sites may be created as LBR or non-LBR enabled. A non-LBR enabled site may be created to allow LBR enabled users to make PSTN calls when they roam to that site. Note that network sites may also be used for emergency calling enablement and configuration. In addition, network sites can also be used for configuring Network Roaming Policy capabilities. - - - - Set-CsTenantNetworkSite - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of setting it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information, see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be set. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region which the current network site is associating to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of setting it. - - String - - String - - - None - - - EmergencyCallingPolicy - - This parameter is used to assign a custom emergency calling policy to a network site. For more information, see Assign a custom emergency calling policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-calling-policies#assign-a-custom-emergency-calling-policy-to-a-network-site). - - String - - String - - - None - - - EmergencyCallRoutingPolicy - - This parameter is used to assign a custom emergency call routing policy to a network site. For more information, see Assign a custom emergency call routing policy to a network site (https://learn.microsoft.com/microsoftteams/manage-emergency-call-routing-policies#assign-a-custom-emergency-call-routing-policy-to-a-network-site). - - String - - String - - - None - - - EnableLocationBasedRouting - - This parameter determines whether the current site is enabled for Location-Based Routing. - - Boolean - - Boolean - - - None - - - Identity - - Unique identifier for the network site to be set. - - String - - String - - - None - - - LocationPolicy - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - NetworkRegionID - - NetworkRegionID is the identifier for the network region which the current network site is associating to. - - String - - String - - - None - - - NetworkRoamingPolicy - - NetworkRoamingPolicy is the identifier for the network roaming policy to which the network site will associate to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "MicrosoftSite1" -NetworkRegionID "RegionRedmond" -Description "Microsoft site 1" - - The command shown in Example 1 set the network site 'MicrosoftSite1' with description 'Microsoft site 1'. - The network region 'RegionRedmond' is created beforehand and 'MicrosoftSite1' will be associated with 'RegionRedmond'. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "site2" -Description "site 2" -NetworkRegionID "RedmondRegion" -EnableLocationBasedRouting $true - - The command shown in Example 2 sets the network site 'site2' with description 'site 2'. This site is enabled for LBR. The example associates the site with network region 'RedmondRegion'. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTenantNetworkSite -Identity "site3" -Description "site 3" -NetworkRegionID "RedmondRegion" -NetworkRoamingPolicy "TestNetworkRoamingPolicy" - - The command shown in Example 3 sets the network site 'site3' with description 'site 3'. This site is enabled for network roaming capabilities. The example associates the site with network region 'RedmondRegion' and network roaming policy 'TestNetworkRoamingPolicy'. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksite - - - New-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksite - - - Remove-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksite - - - Get-CsTenantNetworkSite - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksite - - - - - - Set-CsTenantNetworkSubnet - Set - CsTenantNetworkSubnet - - Changes the definition of network subnets. - - - - IP subnets at the location where Teams endpoints can connect to the network must be defined and associated to a defined network in order to enforce toll bypass. Multiple subnets may be associated with the same network site, but multiple sites may not be associated with a same subnet. This association of subnets enables Location-Based Routing to locate the endpoints geographically to determine if a given PSTN call should be allowed. Both IPv4 and IPv6 subnets are supported. When determining if a Teams endpoint is located at a site an IPv6 address will be checked for a match first. - - - - Set-CsTenantNetworkSubnet - - Identity - - Unique identifier for the network subnet to be set. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify purpose of setting it. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network subnet to identify purpose of setting it. - - String - - String - - - None - - - Identity - - Unique identifier for the network subnet to be set. - - String - - String - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - Int32 - - Int32 - - - None - - - NetworkSiteID - - NetworkSiteID is the identifier for the network site which the current network subnet is associating to. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantNetworkSubnet -Identity "192.168.0.1" -MaskBits "24" -NetworkSiteID "site1" - - The command shown in Example 1 set the network subnet '192.168.0.1'. The subnet is in IPv4 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 24. - IPv4 format subnet accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantNetworkSubnet -Identity "2001:4898:e8:25:844e:926f:85ad:dd8e" -MaskBits "120" -NetworkSiteID "site1" -Description "Subnet 2001:4898:e8:25:844e:926f:85ad:dd8e" - - The command shown in Example 2 set the network subnet '2001:4898:e8:25:844e:926f:85ad:dd8e' with description 'Subnet 2001:4898:e8:25:844e:926f:85ad:dd8e'. The subnet is in IPv6 format, and the subnet is assigned to network site 'site1'. The maskbits is set to 120. - IPv6 format subnet accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantnetworksubnet - - - New-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/new-cstenantnetworksubnet - - - Remove-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cstenantnetworksubnet - - - Get-CsTenantNetworkSubnet - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantnetworksubnet - - - - - - Set-CsTenantTrustedIPAddress - Set - CsTenantTrustedIPAddress - - Changes the definition of network IP addresses. - - - - External trusted IPs are the Internet external IPs of the enterprise network and are used to determine if the user's endpoint is inside the corporate network before checking for a specific site match. If the user's external IP matches one defined in the trusted list, then Location-Based Routing will check to determine which internal subnet the user's endpoint is located. If the user's external IP doesn't match one defined in the trusted list, the endpoint will be classified as being at an unknown and any PSTN calls to/from an LBR enabled user are blocked. - Both IPv4 and IPv6 trusted IP addresses are supported. - When the client is sending the trusted IP address, please make sure we have already safelisted the IP address by running this command-let, otherwise the request will be rejected. If you are only adding the IPv4 address by running this command-let, but your client are only sending and IPv6 address, it will be rejected. - - - - Set-CsTenantTrustedIPAddress - - Identity - - Unique identifier for the IP address to be set. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsTenantTrustedIPAddress - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Instance - - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantTrustedIPAddress` cmdlet. - - PSObject - - PSObject - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Description - - Provide a description of the network site to identify purpose of creating it. - - String - - String - - - None - - - Force - - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Unique identifier for the IP address to be set. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - The Instance parameter allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values. You can retrieve this object reference by calling the `Get-CsTenantTrustedIPAddress` cmdlet. - - PSObject - - PSObject - - - None - - - MaskBits - - This parameter determines the length of bits to mask to the subnet. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - System.Int32 - - System.Int32 - - - None - - - Tenant - - Globally unique identifier (GUID) of the tenant account whose IP addresses are being created. For example: - -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308" - You can return your tenant ID by running this command: - Get-CsTenant | Select-Object DisplayName, TenantID - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "192.168.0.1" -Description "External IP 192.168.0.1" - - The command shown in Example 1 created the IP address '192.168.0.1' with description 'External IP 192.168.0.1'. - - - - -------------------------- Example 2 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "192.168.0.2" -MaskBits "24" - - The command shown in Example 2 set the IP address '192.168.0.2'. The IP address is in IPv4 format, and the maskbits is set to 24. - IPv4 format IP address accepts maskbits from 0 to 32 inclusive. - - - - -------------------------- Example 3 -------------------------- - PS C:\> Set-CsTenantTrustedIPAddress -Identity "2001:4898:e8:25:844e:926f:85ad:dd8e" -Description "IPv6 IP address" - - The command shown in Example 3 set the IP address '2001:4898:e8:25:844e:926f:85ad:dd8e' with description 'IPv6 IP address'. - IPv6 format IP address accepts maskbits from 0 to 128 inclusive. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenanttrustedipaddress - - - - - - Set-CsUser - Set - CsUser - - Modifies Skype for Business properties for an existing user account. - - - - Properties can be modified only for accounts that have been enabled for use with Skype for Business. This cmdlet was introduced in Lync Server 2010. Note : Using this cmdlet for Microsoft Teams users in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment) and [Remove-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/microsoftteams/remove-csphonenumberassignment)cmdlets instead. - The `Set-CsUser` cmdlet enables you to modify the Skype for Business related user account attributes that are stored in Active Directory Domain Services or modify a subset of Skype for Business online user attributes that are stored in Microsoft Entra ID. For example, you can disable or re-enable a user for Skype for Business Server; enable or disable a user for audio/video (A/V) communications; or modify a user's private line and line URI numbers. For Skype for Business online enable or disable a user for enterprise voice, hosted voicemail, or modify the user's on premise line uri. The `Set-CsUser` cmdlet can be used only for users who have been enabled for Skype for Business. - The only attributes you can modify using the `Set-CsUser` cmdlet are attributes related to Skype for Business. Other user account attributes, such as the user's job title or department, cannot be modified by using this cmdlet. Keep in mind, however, that the Skype for Business attributes should only be modified by using the `Set-CsUser` cmdlet or the Skype for Business Server Control Panel. You should not attempt to manually configure these attributes. - - - - Set-CsUser - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account to be modified. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - You can use the asterisk (*) wildcard character when using the display name as the user Identity. For example, the Identity "Smith" returns all the users who have a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - AcpInfo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to assign one or more third-party audio conferencing providers to a user. However, it is recommended that you use the `Set-CsUserAcp` cmdlet to assign Audio conferencing providers. - - AcpInfo - - AcpInfo - - - None - - - AudioVideoDisabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to make audio/visual (A/V) calls by using Skype for Business. If set to True, the user will largely be restricted to sending and receiving instant messages. - You cannot disable A/V communications if a user is currently enabled for remote call control, Enterprise Voice, and/or Internet Protocol private branch exchange (IP-PBX) soft phone routing. Note : This parameter is not available for Teams Only tenants from version 3.0.0 onwards. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - - SwitchParameter - - - False - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify a domain controller to connect to when modifying a user account. If this parameter is not included then the cmdlet will use the first available domain controller. - - Fqdn - - Fqdn - - - None - - - Enabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not the user has been enabled for Skype for Business Server. If you set this value to False, the user will no longer be able to log on to Skype for Business Server; setting this value to True re-enables the user's logon privileges. - If you disable an account by using the Enabled parameter, the information associated with that account (including assigned policies and whether or not the user is enabled for Enterprise Voice and/or remote call control) is retained. If you later re-enable the account by using the Enabled parameter, the associated account information will be restored. This differs from using the `Disable-CsUser` cmdlet to disable a user account. When you run the `Disable-CsUser` cmdlet, all the Skype for Business Server data associated with that account is deleted. - - Boolean - - Boolean - - - None - - - EnterpriseVoiceEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user has been enabled for Enterprise Voice, which is the Microsoft implementation of Voice over Internet Protocol (VoIP). With Enterprise Voice, users can make telephone calls using the Internet rather than using the standard telephone network. Note : Using this parameter for Microsoft Teams users in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)cmdlet instead. - - Boolean - - Boolean - - - None - - - ExchangeArchivingPolicy - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates where the user's instant messaging sessions are archived. Allowed values are: - Uninitialized - UseLyncArchivingPolicy - ArchivingToExchange - NoArchiving - - ExchangeArchivingPolicyOptionsEnum - - ExchangeArchivingPolicyOptionsEnum - - - None - - - HostedVoiceMail - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, enables a user's voice mail calls to be routed to a hosted version of Microsoft Exchange Server. In addition, setting this option to True enables Skype for Business users to directly place a call to another user's voice mail. Note : It is not required to set this parameter for Microsoft Teams users. Using this parameter has been deprecated for Microsoft Teams users in commercial and GCC cloud instances. - - Boolean - - Boolean - - - None - - - LineServerURI - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The URI of the remote call control telephone gateway assigned to the user. The LineServerUri is the gateway URI, prefaced by "sip:". For example: sip:rccgateway@litwareinc.com - - String - - String - - - None - - - LineURI - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Phone number to be assigned to the user in Skype for Business Server or Direct Routing phone number to be assigned to a Microsoft Teams user in GCC High and DoD cloud instances only. - The line Uniform Resource Identifier (URI) must be specified using the E.164 format and the "tel:" prefix, for example: tel:+14255551297. Any extension number should be added to the end of the line URI, for example: tel:+14255551297;ext=51297. - It is important to note that Skype for Business Server treats tel:+14255551297 and tel:+14255551297;ext=51297 as two different numbers. If you assign Ken Myer the line URI tel:+14255551297 and later try to assign Pilar Ackerman the line URI tel:+14255551297;ext=51297, that assignment will succeed; the number assigned to Pilar will not be flagged as a duplicate number. This is due to the fact that, depending on your setup, those two numbers could actually be different. For example, in some organizations dialing 1-425-555-1297 routes your call to an Exchange Auto Attendant. Conversely, dialing just the extension (51297) or using Skype for Business to dial the number 1-425-555-1297 extension 51297 will route your call directly to the user. - For Direct Routing phone numbers in GCC High and DoD cloud instances, assigning a base phone number to a user or resource account is not supported if you already have other users or resource accounts assigned phone numbers with the same base phone number and extensions or vice versa. For instance, if you have a user with the assigned phone number +14255551200;ext=123 you can't assign the phone number +14255551200 to another user or resource account or if you have a user or resource account with the assigned phone number +14255551200 you can't assign the phone number +14255551200;ext=123 to another user or resource account. Assigning phone numbers with the same base number but different extensions to users and resource accounts is supported. For instance, you can have a user with +14255551200;ext=123 and another user with +14255551200;ext=124. - Note: Extension should be part of the E164 Number. For example if you have 5 digit Extensions then the last 5 digits of the E164 Number should always match the 5 digit extension tel:+14255551297;ext=51297 - - String - - String - - - None - - - OnPremLineURI - - > Applicable: Microsoft Teams - Specifies the phone number assigned to the user if no number is assigned to that user in the Skype for Business hybrid environment. The line Uniform Resource Identifier (URI) must be specified using the E.164 format and use the "tel:" prefix. For example: tel:+14255551297. Any extension number should be added to the end of the line URI, for example: tel:+14255551297;ext=51297. - Note that Skype for Business treats tel:+14255551297 and tel:+14255551297;ext=51297 as two different numbers. If you assign Ken Myer the line URI tel:+14255551297 and later try to assign Pilar Ackerman the line URI tel:+14255551297;ext=51297, that assignment will succeed. Depending on your setup, those two numbers could actually be different. For example, in some organizations dialing 1-425-555-1297 routes your call to an Exchange Auto Attendant. Conversely, dialing just the extension (51297) or using Skype for Business to dial the number 1-425-555-1297 extension 51297 will route your call directly to the user. Note : Using this parameter for Microsoft Teams users in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)cmdlet instead. Note : Using this parameter for Microsoft Teams users in GCC High and DoD cloud instances has been deprecated. Use the -LineURI parameter instead. - - String - - String - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user whose account is being modified. By default, the `Set-CsUser` cmdlet does not pass objects through the pipeline. Note : This parameter is not available for Teams Only tenants from version 3.0.0 onwards. - - - SwitchParameter - - - False - - - PrivateLine - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Phone number for the user's private telephone line. A private line is a phone number that is not published in Active Directory Domain Services and, as a result, is not readily available to other people. In addition, this private line bypasses most in-bound call routing rules; for example, a call to a private line will not be forwarded to a person's delegates. Private lines are often used for personal phone calls or for business calls that should be kept separate from other team members. - The private line value should be specified using the E.164 format, and be prefixed by the "tel:" prefix. For example: tel:+14255551297. - - String - - String - - - None - - - RemoteCallControlTelephonyEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user has been enabled for remote call control telephony. When enabled for remote call control, a user can employ Skype for Business to answer phone calls made to his or her desk phone. Phone calls can also be made using Skype for Business. These calls all rely on the standard telephone network, also known as the public switched telephone network (PSTN). To make and receive phone calls over the Internet, the user must be enabled for Enterprise Voice. For details, see the parameter EnterpriseVoiceEnabled. - To be enabled for remote call control, a user must have both a LineUri and a LineServerUri. - - Boolean - - Boolean - - - None - - - SipAddress - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier (similar to an email address) that allows the user to communicate using SIP devices such as Skype for Business. The SIP address must use the sip: prefix as well as a valid SIP domain; for example: `-SipAddress sip:kenmyer@litwareinc.com`. - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - - SwitchParameter - - - False - - - - - - AcpInfo - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to assign one or more third-party audio conferencing providers to a user. However, it is recommended that you use the `Set-CsUserAcp` cmdlet to assign Audio conferencing providers. - - AcpInfo - - AcpInfo - - - None - - - AudioVideoDisabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user is allowed to make audio/visual (A/V) calls by using Skype for Business. If set to True, the user will largely be restricted to sending and receiving instant messages. - You cannot disable A/V communications if a user is currently enabled for remote call control, Enterprise Voice, and/or Internet Protocol private branch exchange (IP-PBX) soft phone routing. Note : This parameter is not available for Teams Only tenants from version 3.0.0 onwards. - - Boolean - - Boolean - - - None - - - Confirm - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - DomainController - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to specify a domain controller to connect to when modifying a user account. If this parameter is not included then the cmdlet will use the first available domain controller. - - Fqdn - - Fqdn - - - None - - - Enabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether or not the user has been enabled for Skype for Business Server. If you set this value to False, the user will no longer be able to log on to Skype for Business Server; setting this value to True re-enables the user's logon privileges. - If you disable an account by using the Enabled parameter, the information associated with that account (including assigned policies and whether or not the user is enabled for Enterprise Voice and/or remote call control) is retained. If you later re-enable the account by using the Enabled parameter, the associated account information will be restored. This differs from using the `Disable-CsUser` cmdlet to disable a user account. When you run the `Disable-CsUser` cmdlet, all the Skype for Business Server data associated with that account is deleted. - - Boolean - - Boolean - - - None - - - EnterpriseVoiceEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user has been enabled for Enterprise Voice, which is the Microsoft implementation of Voice over Internet Protocol (VoIP). With Enterprise Voice, users can make telephone calls using the Internet rather than using the standard telephone network. Note : Using this parameter for Microsoft Teams users in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)cmdlet instead. - - Boolean - - Boolean - - - None - - - ExchangeArchivingPolicy - - > Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates where the user's instant messaging sessions are archived. Allowed values are: - Uninitialized - UseLyncArchivingPolicy - ArchivingToExchange - NoArchiving - - ExchangeArchivingPolicyOptionsEnum - - ExchangeArchivingPolicyOptionsEnum - - - None - - - HostedVoiceMail - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - When set to True, enables a user's voice mail calls to be routed to a hosted version of Microsoft Exchange Server. In addition, setting this option to True enables Skype for Business users to directly place a call to another user's voice mail. Note : It is not required to set this parameter for Microsoft Teams users. Using this parameter has been deprecated for Microsoft Teams users in commercial and GCC cloud instances. - - Boolean - - Boolean - - - None - - - Identity - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates the Identity of the user account to be modified. User Identities can be specified using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name. - You can use the asterisk (*) wildcard character when using the display name as the user Identity. For example, the Identity "Smith" returns all the users who have a display name that ends with the string value " Smith". - - UserIdParameter - - UserIdParameter - - - None - - - LineServerURI - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - The URI of the remote call control telephone gateway assigned to the user. The LineServerUri is the gateway URI, prefaced by "sip:". For example: sip:rccgateway@litwareinc.com - - String - - String - - - None - - - LineURI - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - Phone number to be assigned to the user in Skype for Business Server or Direct Routing phone number to be assigned to a Microsoft Teams user in GCC High and DoD cloud instances only. - The line Uniform Resource Identifier (URI) must be specified using the E.164 format and the "tel:" prefix, for example: tel:+14255551297. Any extension number should be added to the end of the line URI, for example: tel:+14255551297;ext=51297. - It is important to note that Skype for Business Server treats tel:+14255551297 and tel:+14255551297;ext=51297 as two different numbers. If you assign Ken Myer the line URI tel:+14255551297 and later try to assign Pilar Ackerman the line URI tel:+14255551297;ext=51297, that assignment will succeed; the number assigned to Pilar will not be flagged as a duplicate number. This is due to the fact that, depending on your setup, those two numbers could actually be different. For example, in some organizations dialing 1-425-555-1297 routes your call to an Exchange Auto Attendant. Conversely, dialing just the extension (51297) or using Skype for Business to dial the number 1-425-555-1297 extension 51297 will route your call directly to the user. - For Direct Routing phone numbers in GCC High and DoD cloud instances, assigning a base phone number to a user or resource account is not supported if you already have other users or resource accounts assigned phone numbers with the same base phone number and extensions or vice versa. For instance, if you have a user with the assigned phone number +14255551200;ext=123 you can't assign the phone number +14255551200 to another user or resource account or if you have a user or resource account with the assigned phone number +14255551200 you can't assign the phone number +14255551200;ext=123 to another user or resource account. Assigning phone numbers with the same base number but different extensions to users and resource accounts is supported. For instance, you can have a user with +14255551200;ext=123 and another user with +14255551200;ext=124. - Note: Extension should be part of the E164 Number. For example if you have 5 digit Extensions then the last 5 digits of the E164 Number should always match the 5 digit extension tel:+14255551297;ext=51297 - - String - - String - - - None - - - OnPremLineURI - - > Applicable: Microsoft Teams - Specifies the phone number assigned to the user if no number is assigned to that user in the Skype for Business hybrid environment. The line Uniform Resource Identifier (URI) must be specified using the E.164 format and use the "tel:" prefix. For example: tel:+14255551297. Any extension number should be added to the end of the line URI, for example: tel:+14255551297;ext=51297. - Note that Skype for Business treats tel:+14255551297 and tel:+14255551297;ext=51297 as two different numbers. If you assign Ken Myer the line URI tel:+14255551297 and later try to assign Pilar Ackerman the line URI tel:+14255551297;ext=51297, that assignment will succeed. Depending on your setup, those two numbers could actually be different. For example, in some organizations dialing 1-425-555-1297 routes your call to an Exchange Auto Attendant. Conversely, dialing just the extension (51297) or using Skype for Business to dial the number 1-425-555-1297 extension 51297 will route your call directly to the user. Note : Using this parameter for Microsoft Teams users in commercial and GCC cloud instances has been deprecated. Use the new Set-CsPhoneNumberAssignment (https://learn.microsoft.com/powershell/module/microsoftteams/set-csphonenumberassignment)cmdlet instead. Note : Using this parameter for Microsoft Teams users in GCC High and DoD cloud instances has been deprecated. Use the -LineURI parameter instead. - - String - - String - - - None - - - PassThru - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Enables you to pass a user object through the pipeline that represents the user whose account is being modified. By default, the `Set-CsUser` cmdlet does not pass objects through the pipeline. Note : This parameter is not available for Teams Only tenants from version 3.0.0 onwards. - - SwitchParameter - - SwitchParameter - - - False - - - PrivateLine - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Phone number for the user's private telephone line. A private line is a phone number that is not published in Active Directory Domain Services and, as a result, is not readily available to other people. In addition, this private line bypasses most in-bound call routing rules; for example, a call to a private line will not be forwarded to a person's delegates. Private lines are often used for personal phone calls or for business calls that should be kept separate from other team members. - The private line value should be specified using the E.164 format, and be prefixed by the "tel:" prefix. For example: tel:+14255551297. - - String - - String - - - None - - - RemoteCallControlTelephonyEnabled - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Indicates whether the user has been enabled for remote call control telephony. When enabled for remote call control, a user can employ Skype for Business to answer phone calls made to his or her desk phone. Phone calls can also be made using Skype for Business. These calls all rely on the standard telephone network, also known as the public switched telephone network (PSTN). To make and receive phone calls over the Internet, the user must be enabled for Enterprise Voice. For details, see the parameter EnterpriseVoiceEnabled. - To be enabled for remote call control, a user must have both a LineUri and a LineServerUri. - - Boolean - - Boolean - - - None - - - SipAddress - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Unique identifier (similar to an email address) that allows the user to communicate using SIP devices such as Skype for Business. The SIP address must use the sip: prefix as well as a valid SIP domain; for example: `-SipAddress sip:kenmyer@litwareinc.com`. - - String - - String - - - None - - - WhatIf - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Input types - - - String or Microsoft.Rtc.Management.ADConnect.Schema.ADUser object. The `Set-CsUser` cmdlet accepts a pipelined string value representing the Identity of a user account that has been enabled for Skype for Business Server. The cmdlet also accepts pipelined instances of the Active Directory user object. - - - - - - - Output types - - - The `Set-CsUser` cmdlet does not return any objects. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Set-CsUser -Identity "Pilar Ackerman" -EnterpriseVoiceEnabled $True - - In Example 1, the `Set-CsUser` cmdlet is used to modify the user account with the Identity Pilar Ackerman. In this case, the account is modified to enable Enterprise Voice, the Microsoft implementation of VoIP. This task is carried out by adding the EnterpriseVoiceEnabled parameter, and then setting the parameter value to $True. - - - - -------------------------- Example 2 -------------------------- - Get-CsUser -LdapFilter "Department=Finance" | Set-CsUser -EnterpriseVoiceEnabled $True - - In Example 2, all the users in the Finance department have their accounts enabled for Enterprise Voice. In this command, the `Get-CsUser` cmdlet and the LdapFilter parameter are first used to return a collection of all the users who work in the Finance department. That information is then piped to the `Set-CsUser` cmdlet, which enables Enterprise Voice for each account in the collection. - - - - -------------------------- Example 3 -------------------------- - Set-CsUser -Identity "Pilar Ackerman" -LineUri "tel:+123456789" - - In Example 3, the `Set-CsUser` cmdlet is used to modify the user account with the Identity Pilar Ackerman. In this case, the account is modified to set the phone number assigned to the user settings its LineUri property. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csuser - - - Get-CsOnlineUser - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineuser - - - - - - Set-CsUserCallingDelegate - Set - CsUserCallingDelegate - - This cmdlet will change permissions for a delegate for calling in Microsoft Teams. - - - - This cmdlet can change the permissions assigned to a delegate for the specified user. - - - - Set-CsUserCallingDelegate - - Delegate - - The Identity of the delegate to add. Can be specified using the ObjectId or the SIP address. - A user can have up to 25 delegates. - - System.String - - System.String - - - None - - - Identity - - The Identity of the user to add a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - MakeCalls - - Specifies whether delegate is allowed to make calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - ManageSettings - - Specifies whether delegate is allowed to change the delegate and calling settings for the specified user. - - System.Boolean - - System.Boolean - - - False - - - ReceiveCalls - - Specifies whether delegate is allowed to receive calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - PickUpHeldCalls - - Specifies whether delegate is allowed to pick up calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - JoinActiveCalls - - Specifies whether delegate is allowed to join active calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - - - - Delegate - - The Identity of the delegate to add. Can be specified using the ObjectId or the SIP address. - A user can have up to 25 delegates. - - System.String - - System.String - - - None - - - Identity - - The Identity of the user to add a delegate for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - MakeCalls - - Specifies whether delegate is allowed to make calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - ManageSettings - - Specifies whether delegate is allowed to change the delegate and calling settings for the specified user. - - System.Boolean - - System.Boolean - - - False - - - ReceiveCalls - - Specifies whether delegate is allowed to receive calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - PickUpHeldCalls - - Specifies whether delegate is allowed to pick up calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - JoinActiveCalls - - Specifies whether delegate is allowed to join active calls on behalf of the specified user. - - System.Boolean - - System.Boolean - - - False - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. - The specified user need to have the Microsoft Phone System license assigned. - You can see the delegate of a user by using the Get-CsUserCallingSettings cmdlet. - - - - - -------------------------- Example 1 -------------------------- - Set-CsUserCallingDelegate -Identity user1@contoso.com -Delegate user2@contoso.com -MakeCalls $false -ReceiveCalls $true -ManageSettings $false -PickUpHeldCalls $true -JoinActiveCalls $true - - This example shows setting the permissions for user1@contoso.com's delegate user2@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Set-CsUserCallingDelegate -Identity user1@contoso.com -Delegate user2@contoso.com -MakeCalls $true - - This example shows setting the MakeCalls permissions to True for user1@contoso.com's delegate user2@contoso.com. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingdelegate - - - Get-CsUserCallingSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csusercallingsettings - - - New-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csusercallingdelegate - - - Remove-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csusercallingdelegate - - - - - - Set-CsUserCallingSettings - Set - CsUserCallingSettings - - This cmdlet will set the call forwarding, simultaneous ringing and call group settings for the specified user. - - - - This cmdlet sets the call forwarding, simultaneous ringing and call group settings for the specified user. - When specifying settings you need to specify all settings with a settings grouping, for instance, you can't just change a forwarding target. Instead, you need to start by getting the current settings, making the necessary changes, and then setting/writing all settings within the settings group. - - - - Set-CsUserCallingSettings - - CallGroupOrder - - The order in which to call members of the Call Group. The supported values are Simultaneous and InOrder. - You can only use InOrder, if the call group has 5 or less members. - - System.String - - System.String - - - None - - - CallGroupTargets - - The members of the Call Group. You need to always specify the full set of members as the parameter value. What you set here will overwrite the current call group membership. - A call group can have up to 25 members. - - System.Array - - System.Array - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - - Set-CsUserCallingSettings - - ForwardingTarget - - The forwarding target. Supported types of values are ObjectId's, SIP addresses and phone numbers. For phone numbers we support the following types of formats: E.164 (+12065551234 or +1206555000;ext=1234) or non-E.164 like 1234. - Only used when ForwardingTargetType is SingleTarget. - - System.String - - System.String - - - None - - - ForwardingTargetType - - The forwarding target type. Supported values are Voicemail, SingleTarget, MyDelegates and Group. Voicemail is only supported for Immediate forwarding. - SingleTarget is used when forwarding to another user or PSTN phone number. MyDelegates is used when forwarding to the users's delegates (there needs to be at least 1 delegate). Group is used when forwarding to the user's call group (it needs to have at least 1 member). - - System.String - - System.String - - - None - - - ForwardingType - - The type of forwarding to set. Supported values are Immediate and Simultaneous - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsForwardingEnabled - - This parameter controls whether forwarding is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - - Set-CsUserCallingSettings - - GroupMembershipDetails - - The group membership details for the specified user. It is an array of ICallGroupMembershipDetails, which is an object containing the identity of an owner of a call group and the notification setting for the specified user for that call group. - This parameter only exists if the specified user is a member of a call group. You can't create it, you can only change it. - You need to always specify the full group membership details as the parameter value. What you set here will over-write the current group membership details. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - - Set-CsUserCallingSettings - - GroupNotificationOverride - - The group notification override that will be set on the specified user. The supported values are Ring, Mute and Banner. - The initial setting is shown as Null. It means that the group notification set for the user in the call group is used. If you set GroupNotificationOverride to Mute, that setting will override the group notification for the user in the call group. If you set the GroupNotificationOverride to Ring or Banner, the group notification set for the user in the call group will be used. - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - - Set-CsUserCallingSettings - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsForwardingEnabled - - This parameter controls whether forwarding is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - - Set-CsUserCallingSettings - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsUnansweredEnabled - - This parameter controls whether forwarding for unanswered calls is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - UnansweredDelay - - The time the call will ring the user before it is forwarded to the unanswered target. The supported format is hh:mm:ss and the delay range needs to be between 5 and 60 seconds in 5 seconds increments between 5 and 15 seconds, and 10 seconds increments otherwise, i.e. 00:00:05, 00:00:10, 00:00:15, 00:00:20, 00:00:30, 00:00:40, 00:00:50 and 00:01:00. The default value is 20 seconds. - - System.String - - System.String - - - None - - - UnansweredTarget - - The unanswered target. Supported type of values are ObjectId, SIP address and phone number. For phone numbers we support the following types of formats: E.164 (+12065551234 or +1206555000;ext=1234) or non-E.164 like 1234. - Only used when UnansweredTargetType is SingleTarget. - - System.String - - System.String - - - None - - - UnansweredTargetType - - The unanswered target type. Supported values are Voicemail, SingleTarget, MyDelegates and Group. - SingleTarget is used when forwarding the unanswered call to another user or phone number. MyDelegates is used when forwarding the unanswered call to the users's delegates. Group is used when forwarding the unanswered call to the specified user's call group. - - System.String - - System.String - - - None - - - - Set-CsUserCallingSettings - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsUnansweredEnabled - - This parameter controls whether forwarding for unanswered calls is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - - - - CallGroupOrder - - The order in which to call members of the Call Group. The supported values are Simultaneous and InOrder. - You can only use InOrder, if the call group has 5 or less members. - - System.String - - System.String - - - None - - - CallGroupTargets - - The members of the Call Group. You need to always specify the full set of members as the parameter value. What you set here will overwrite the current call group membership. - A call group can have up to 25 members. - - System.Array - - System.Array - - - None - - - ForwardingTarget - - The forwarding target. Supported types of values are ObjectId's, SIP addresses and phone numbers. For phone numbers we support the following types of formats: E.164 (+12065551234 or +1206555000;ext=1234) or non-E.164 like 1234. - Only used when ForwardingTargetType is SingleTarget. - - System.String - - System.String - - - None - - - ForwardingTargetType - - The forwarding target type. Supported values are Voicemail, SingleTarget, MyDelegates and Group. Voicemail is only supported for Immediate forwarding. - SingleTarget is used when forwarding to another user or PSTN phone number. MyDelegates is used when forwarding to the users's delegates (there needs to be at least 1 delegate). Group is used when forwarding to the user's call group (it needs to have at least 1 member). - - System.String - - System.String - - - None - - - ForwardingType - - The type of forwarding to set. Supported values are Immediate and Simultaneous - - System.String - - System.String - - - None - - - GroupMembershipDetails - - The group membership details for the specified user. It is an array of ICallGroupMembershipDetails, which is an object containing the identity of an owner of a call group and the notification setting for the specified user for that call group. - This parameter only exists if the specified user is a member of a call group. You can't create it, you can only change it. - You need to always specify the full group membership details as the parameter value. What you set here will over-write the current group membership details. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[] - - - None - - - GroupNotificationOverride - - The group notification override that will be set on the specified user. The supported values are Ring, Mute and Banner. - The initial setting is shown as Null. It means that the group notification set for the user in the call group is used. If you set GroupNotificationOverride to Mute, that setting will override the group notification for the user in the call group. If you set the GroupNotificationOverride to Ring or Banner, the group notification set for the user in the call group will be used. - - System.String - - System.String - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - Identity - - The Identity of the user to set call forwarding, simultaneous ringing and call group settings for. Can be specified using the ObjectId or the SIP address. - - System.String - - System.String - - - None - - - IsForwardingEnabled - - This parameter controls whether forwarding is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - IsUnansweredEnabled - - This parameter controls whether forwarding for unanswered calls is enabled or not. - - System.Boolean - - System.Boolean - - - None - - - UnansweredDelay - - The time the call will ring the user before it is forwarded to the unanswered target. The supported format is hh:mm:ss and the delay range needs to be between 5 and 60 seconds in 5 seconds increments between 5 and 15 seconds, and 10 seconds increments otherwise, i.e. 00:00:05, 00:00:10, 00:00:15, 00:00:20, 00:00:30, 00:00:40, 00:00:50 and 00:01:00. The default value is 20 seconds. - - System.String - - System.String - - - None - - - UnansweredTarget - - The unanswered target. Supported type of values are ObjectId, SIP address and phone number. For phone numbers we support the following types of formats: E.164 (+12065551234 or +1206555000;ext=1234) or non-E.164 like 1234. - Only used when UnansweredTargetType is SingleTarget. - - System.String - - System.String - - - None - - - UnansweredTargetType - - The unanswered target type. Supported values are Voicemail, SingleTarget, MyDelegates and Group. - SingleTarget is used when forwarding the unanswered call to another user or phone number. MyDelegates is used when forwarding the unanswered call to the users's delegates. Group is used when forwarding the unanswered call to the specified user's call group. - - System.String - - System.String - - - None - - - - - - None - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PowerShell module 4.0.0 or later. - The specified user need to have the Microsoft Phone System license assigned. - When forwarding to MyDelegates, the specified user needs to have one or more delegates defined that are allowed to receive calls. When forwarding to Group, the specified user needs to have one or more members of the user's call group. - The cmdlet is validating the different settings and is always writing all the parameters in a settings group. You might see validation errors from the cmdlet due to this behavior. As an example, if you have ForwardingTargetType set to Group and you want to remove all members of the call group, you will get a validation error. - You can specify a SIP URI without 'sip:' on input, but the output from Get-CsUserCallingSettings will show the full SIP URI. - You are not able to configure delegates via this cmdlet. Please use New-CsUserCallingDelegate, Set-CsUserCallingDelegate cmdlets and Remove-CsUserCallingDelegate. - - - - - -------------------------- Example 1 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsForwardingEnabled $true -ForwardingType Immediate -ForwardingTargetType Voicemail - - This example shows setting immediate call forwarding to voicemail for user1@contoso.com. - - - - -------------------------- Example 2 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsForwardingEnabled $false - - This example shows removing call forwarding for user1@contoso.com. - - - - -------------------------- Example 3 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsForwardingEnabled $true -ForwardingType Simultaneous -ForwardingTargetType SingleTarget -ForwardingTarget "+12065551234" - - This example shows setting simultaneous ringing to +12065551234 for user1@contoso.com. - - - - -------------------------- Example 4 -------------------------- - Set-CsUserCallingSettings -Identity user1@contoso.com -IsUnansweredEnabled $true -UnansweredTargetType MyDelegates -UnansweredDelay 00:00:30 - - This example shows setting unanswered call forward to the delegates after 30 seconds for user1@contoso.com. - - - - -------------------------- Example 5 -------------------------- - $cgm = @("sip:user2@contoso.com","sip:user3@contoso.com") -Set-CsUserCallingSettings -Identity user1@contoso.com -CallGroupOrder InOrder -CallGroupTargets $cgm -Set-CsUserCallingSettings -Identity user1@contoso.com -IsForwardingEnabled $true -ForwardingType Immediate -ForwardingTargetType Group - - This example shows creating a call group for user1@contoso.com with 2 members and setting immediate call forward to the call group for user1@contoso.com. - - - - -------------------------- Example 6 -------------------------- - $ucs = Get-CsUserCallingSettings -Identity user1@contoso.com -$cgt = {$ucs.CallGroupTargets}.Invoke() -$cgt.Add("sip:user5@contoso.com") -$cgt.Remove("sip:user6@contoso.com") -Set-CsUserCallingSettings -Identity user1@contoso.com -CallGroupOrder $ucs.CallGroupOrder -CallGroupTargets $cgt - -$gmd = (Get-CsUserCallingSettings -Identity user5@contoso.com).GroupMembershipDetails -$gmd[[array]::IndexOf($gmd.CallGroupOwnerId,'sip:user1@contoso.com')].NotificationSetting = 'Banner' -Set-CsUserCallingSettings -Identity user5@contoso.com -GroupMembershipDetails $gmd - - This example shows how to update the call group of user1@contoso.com to add user5@contoso.com and remove user6@contoso.com. In addition the notification setting for user5@contoso.com for user1@contoso.com's call group is set to Banner. - The key to note here is the call group membership is defined on the object of the owner of the call group, in the above case this is user1@contoso.com. However, the notification setting for a member for a particular call group is defined on the member. In this case user5@contoso.com. - - - - -------------------------- Example 7 -------------------------- - $ucs = Get-CsUserCallingSettings -Identity user1@contoso.com -Set-CsUserCallingSettings -Identity user1@contoso.com -CallGroupOrder $ucs.CallGroupOrder -CallGroupTargets @() - - This example shows how to remove all members of the call group. - - - - -------------------------- Example 8 -------------------------- - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[]]$gmd = @( - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails]@{CallGroupOwnerId='sip:user20@contoso.com';NotificationSetting='Banner'} - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails]@{CallGroupOwnerId='sip:user30@contoso.com';NotificationSetting='Mute'} -) -Set-CsUserCallingSettings -Identity user10@contoso.com -GroupMembershipDetails $gmd - - In this example user10@contoso.com is a member of two call groups: user20@contoso.com and user30@contoso.com. User10@contoso.com would like to have Banner notification for the first call group and Mute notification for the last one. - - - - -------------------------- Example 9 -------------------------- - Set-CsUserCallingSettings -Identity user2@contoso.com -GroupNotificationOverride 'Mute' - - This example shows how to set the group notification override for user2@contoso.com. This setting overrides any specific notification setting set for the user on any call group the user is a member of. - - - - -------------------------- Example 10 -------------------------- - Set-CsUserCallingSettings -Identity user6@contoso.com -IsForwardingEnabled $false -Set-CsUserCallingSettings -Identity user6@contoso.com -IsUnansweredEnabled $true -UnansweredTargetType Voicemail -UnansweredDelay 00:00:20 - - This example shows how to set the default call forwarding settings for a user. - - - - -------------------------- Example 11 -------------------------- - Set-CsUserCallingSettings -Identity user7@contoso.com -IsUnansweredEnabled $false - - This example shows turning off unanswered call forwarding for a user. The Microsoft Teams client will show this as If unanswered Do nothing . - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingsettings - - - Get-CsUserCallingSettings - https://learn.microsoft.com/powershell/module/microsoftteams/get-csusercallingsettings - - - New-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/new-csusercallingdelegate - - - Set-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/set-csusercallingdelegate - - - Remove-CsUserCallingDelegate - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csusercallingdelegate - - - - - - Set-CsVideoInteropServiceProvider - Set - CsVideoInteropServiceProvider - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - - - - Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider. - Use the Set-CsVideoInteropServiceProvider to update information about a supported CVI partner your organization uses. - - - - Set-CsVideoInteropServiceProvider - - Identity - - Specify the VideoInteropServiceProvider to be updated. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Set-CsVideoInteropServiceProvider - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - - SwitchParameter - - - False - - - Instance - - Pass an existing provider from Get-CsVideoInteropServiceProvider to update (use instead of specifying "Identity") - - PSObject - - PSObject - - - None - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AadApplicationIds - - This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with AllowAppGuestJoinsAsAuthenticated. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of these bots, is shown in the meeting as an authenticated tenant entity. - - String - - String - - - None - - - AllowAppGuestJoinsAsAuthenticated - - This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the bots Microsoft Entra application ids specified in AadApplicationIds, is shown in the meeting as an authenticated tenant entity. - - Boolean - - Boolean - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - Bypass all non-fatal errors. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - Specify the VideoInteropServiceProvider to be updated. - - XdsGlobalRelativeIdentity - - XdsGlobalRelativeIdentity - - - None - - - Instance - - Pass an existing provider from Get-CsVideoInteropServiceProvider to update (use instead of specifying "Identity") - - PSObject - - PSObject - - - None - - - InstructionUri - - InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners - - String - - String - - - None - - - Tenant - - Internal Microsoft use only. - - System.Guid - - System.Guid - - - None - - - TenantKey - - Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information when you sign up for CVI service through any of our partners. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.Management.Automation.PSObject - - - - - - - - - - System.Object - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Set-CsVideoInteropServiceProvider -Identity cviprovider -AllowAppGuestJoinsAsAuthenticated $true - - This example enables a VTC device joining anonymously to shown in the meeting as authenticated, for a supported CVI partner your organization uses. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/set-csvideointeropserviceprovider - - - - - - Start-CsExMeetingMigration - Start - CsExMeetingMigration - - This cmdlet manually trigger a meeting migration request for the specified user. - - - - Meeting Migration Service (MMS) is a Skype for Business service that runs in the background and automatically updates Skype for Business and Microsoft Teams meetings for users. MMS is designed to eliminate the need for users to run the Meeting Migration Tool to update their Skype for Business and Microsoft Teams meetings. - Also, with `Start-CsExMeetingMigration` cmdlet, you can start a meeting migration manually. For more information about requirements of the Meeting Migration Service (MMS), see Using the Meeting Migration Service (MMS) (https://learn.microsoft.com/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms). - - - - Start-CsExMeetingMigration - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be modified. A user identity can be specified by using one of four formats: 1. The user's SIP address 2. The user's user principal name (UPN) 3. The user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) 4. The user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - SourceMeetingType - - > Applicable: Microsoft Teams - The possible values are: All: indicates that both Skype for Business meetings and Teams meetings should be updated. This is the default value *. SfB: * indicates that only Skype for Business meetings (whether on-premises or online) should be updated. Teams: * indicates that only Teams meetings should be updated. - - Object - - Object - - - All - - - TargetMeetingType - - > Applicable: Microsoft Teams - The possible values are: Current: specifies that Skype for Business meetings remain Skype for Business meetings and Teams meetings remain Teams meetings. However audio conferencing coordinates might be changed, and any on-premises Skype for Business meetings would be migrated to Skype for Business Online. This is the default value *. Teams: * specifies that any existing meeting must be migrated to Teams, regardless of whether the meeting is hosted in Skype for Business online or on-premises, and regardless of whether any audio conferencing updates are required. - - Object - - Object - - - Current - - - - - - Identity - - > Applicable: Microsoft Teams - Specifies the Identity of the user account to be modified. A user identity can be specified by using one of four formats: 1. The user's SIP address 2. The user's user principal name (UPN) 3. The user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) 4. The user's Active Directory display name (for example, Ken Myer). You can also reference a user account by using the user's Active Directory distinguished name. - - UserIdParameter - - UserIdParameter - - - None - - - SourceMeetingType - - > Applicable: Microsoft Teams - The possible values are: All: indicates that both Skype for Business meetings and Teams meetings should be updated. This is the default value *. SfB: * indicates that only Skype for Business meetings (whether on-premises or online) should be updated. Teams: * indicates that only Teams meetings should be updated. - - Object - - Object - - - All - - - TargetMeetingType - - > Applicable: Microsoft Teams - The possible values are: Current: specifies that Skype for Business meetings remain Skype for Business meetings and Teams meetings remain Teams meetings. However audio conferencing coordinates might be changed, and any on-premises Skype for Business meetings would be migrated to Skype for Business Online. This is the default value *. Teams: * specifies that any existing meeting must be migrated to Teams, regardless of whether the meeting is hosted in Skype for Business online or on-premises, and regardless of whether any audio conferencing updates are required. - - Object - - Object - - - Current - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Start-CsExMeetingMigration -Identity ashaw@contoso.com -TargetMeetingType Teams - - This example below shows how to initiate meeting migration for user ashaw@contoso.com so that all meetings are migrated to Teams. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/start-csexmeetingmigration - - - Using the Meeting Migration Service (MMS) - https://learn.microsoft.com/SkypeForBusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms - - - Get-CsMeetingMigrationStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csmeetingmigrationstatus - - - Set-CsTenantMigrationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/set-cstenantmigrationconfiguration - - - Get-CsTenantMigrationConfiguration - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantmigrationconfiguration - - - - - - Sync-CsOnlineApplicationInstance - Sync - CsOnlineApplicationInstance - - Sync the application instance from Microsoft Entra ID into Agent Provisioning Service. - - - - Use the Sync-CsOnlineApplicationInstance cmdlet to sync the application instance from Microsoft Entra ID into Agent Provisioning Service. This is needed because the mapping between application instance and application needs to be stored in Agent Provisioning Service. If an application ID was provided at the creation of the application instance, you need not run this cmdlet. - - - - Sync-CsOnlineApplicationInstance - - AcsResourceId - - The ACS Resource ID. The unique identifier assigned to an instance of Azure Communication Services within the Azure cloud infrastructure. - - System.Guid - - System.Guid - - - None - - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - CallbackUri - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - ObjectId - - The application instance ID. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - AcsResourceId - - The ACS Resource ID. The unique identifier assigned to an instance of Azure Communication Services within the Azure cloud infrastructure. - - System.Guid - - System.Guid - - - None - - - ApplicationId - - The application ID. The Microsoft application Auto Attendant has the ApplicationId ce933385-9390-45d1-9512-c8d228074e07 and the Microsoft application Call Queue has the ApplicationId 11cd3e2e-fccb-42ad-ad00-878b93575e07. Third-party applications available in a tenant will use other ApplicationId's. - - System.Guid - - System.Guid - - - None - - - CallbackUri - - This parameter is reserved for internal Microsoft use. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - Force - - This switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If it isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - ObjectId - - The application instance ID. - - System.Guid - - System.Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Sync-CsOnlineApplicationInstance -ObjectId xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -ApplicationId yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy - - This example sync application instance with object ID "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" and application ID "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy" into Agent Provisioning Service. - - - - -------------------------- Example 2 -------------------------- - Sync-CsOnlineApplicationInstance -ObjectId xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -ApplicationId 00000000-0000-0000-0000-000000000000 - - This command is helpful when there's already a mapping in Agent Provisioning Service and you want to set a different app ID value. In this case, when running the cmdlet in example 1, you will see `Sync-CsOnlineApplicationInstance : An item with the same key has already been added.`. - The command removes the mapping for application instance with object ID "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx". Run the example cmdlet again to create the mapping in Agent Provisioning Service. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/sync-csonlineapplicationinstance - - - Set-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csonlineapplicationinstance - - - New-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csonlineapplicationinstance - - - Find-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/find-csonlineapplicationinstance - - - Get-CsOnlineApplicationInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csonlineapplicationinstance - - - - - - Test-CsEffectiveTenantDialPlan - Test - CsEffectiveTenantDialPlan - - Use the Test-CsEffectiveTenantDialPlan cmdlet to test a tenant dial plan. - - - - The `Test-CsEffectiveTenantDialPlan` cmdlet normalizes the dialed number by applying the normalization rules from the effective tenant dial plan that is returned for the specified user. - - - - Test-CsEffectiveTenantDialPlan - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - - SwitchParameter - - - False - - - DialedNumber - - > Applicable: Microsoft Teams - The DialedNumber parameter is the phone number to be normalized with the effective tenant dial plan. - - PhoneNumber - - PhoneNumber - - - None - - - CallerNumber - - > Applicable: Microsoft Teams - The CallerNumber parameter is the phone number assigned to the user, used to identify which effective tenant dial plan to use. - - PhoneNumber - - PhoneNumber - - - None - - - EffectiveTenantDialPlanName - - > Applicable: Microsoft Teams - The EffectiveTenantDialPlanName parameter is the effective tenant dial plan name in the form of TenantId_TenantDialPlan_GlobalVoiceDialPlan. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Indicates the identity of the user account to be tested against. The user's SIP address, the user's user principal name (UPN) or the user's display name can be specified. - - UserIdParameter - - UserIdParameter - - - None - - - TenantScopeOnly - - > Applicable: Microsoft Teams - Runs the test only against Tenant-level dial plans (does not take into account Service Level Dial Plans). - - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - - SwitchParameter - - - False - - - - - - Confirm - - > Applicable: Microsoft Teams - The Confirm switch causes the command to pause processing, and requires confirmation to proceed. - - SwitchParameter - - SwitchParameter - - - False - - - DialedNumber - - > Applicable: Microsoft Teams - The DialedNumber parameter is the phone number to be normalized with the effective tenant dial plan. - - PhoneNumber - - PhoneNumber - - - None - - - CallerNumber - - > Applicable: Microsoft Teams - The CallerNumber parameter is the phone number assigned to the user, used to identify which effective tenant dial plan to use. - - PhoneNumber - - PhoneNumber - - - None - - - EffectiveTenantDialPlanName - - > Applicable: Microsoft Teams - The EffectiveTenantDialPlanName parameter is the effective tenant dial plan name in the form of TenantId_TenantDialPlan_GlobalVoiceDialPlan. - - String - - String - - - None - - - Force - - > Applicable: Microsoft Teams - The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required. - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - Indicates the identity of the user account to be tested against. The user's SIP address, the user's user principal name (UPN) or the user's display name can be specified. - - UserIdParameter - - UserIdParameter - - - None - - - TenantScopeOnly - - > Applicable: Microsoft Teams - Runs the test only against Tenant-level dial plans (does not take into account Service Level Dial Plans). - - SwitchParameter - - SwitchParameter - - - False - - - WhatIf - - > Applicable: Microsoft Teams - The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes. - - SwitchParameter - - SwitchParameter - - - False - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsEffectiveTenantDialPlan -Identity adelev | Test-CsEffectiveTenantDialPlan -DialedNumber 14258828080 - - This example gets the Identity of a dial plan that is associated with the identity of a user, and applies the retrieved tenant dial plan to normalize the dialed number. - - - - -------------------------- Example 2 -------------------------- - Test-CsEffectiveTenantDialPlan -DialedNumber 14258828080 -Identity adelev@contoso.onmicrosoft.com - - This example tests the given dialed number against a specific identity. - - - - -------------------------- Example 3 -------------------------- - Get-CsEffectiveTenantDialPlan -Identity adelev | Test-CsEffectiveTenantDialPlan -DialedNumber 14258828080 -CallerNumber 1234567890 - - This example gets the Identity of a dial plan that is associated with the identity of an user, and applies the retrieved tenant dial plan specific to the phone number which will be used as the caller number to normalize the dialed number. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-cseffectivetenantdialplan - - - - - - Test-CsInboundBlockedNumberPattern - Test - CsInboundBlockedNumberPattern - - This cmdlet tests the given number against the created (by using New-CsInboundBlockedNumberPattern cmdlet) blocked numbers pattern. Cmdlet will return an object with two properties: - IsMatch: True if the given number matches any of the blocked number patterns, otherwise False - - ResourceAccount: If the matched blocked number pattern has a ResourceAccount assigned, it will return the ResourceAccount Guid, otherwise null. - - - - This cmdlet tests the given number against the created (by using New-CsInboundBlockedNumberPattern cmdlet) blocked numbers pattern. - - - - Test-CsInboundBlockedNumberPattern - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - PhoneNumber - - The phone number to be tested. - - String - - String - - - None - - - TenantId - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - PhoneNumber - - The phone number to be tested. - - String - - String - - - None - - - TenantId - - This parameter is reserved for internal Microsoft use. - - Guid - - Guid - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - System.String - - - - - - - - System.Guid - - - - - - - - - - System.Object - - - An object with two properties: - IsMatch: True if the given number matches any of the blocked number patterns, otherwise False - - ResourceAccount: If the matched blocked number pattern has a ResourceAccount assigned, it will return the ResourceAccount Guid, otherwise null. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Test-CsInboundBlockedNumberPattern -PhoneNumber "321321321" - -{ - "IsMatch": true, - "ResourceAccount": "00000000-0000-0000-0000-000000000000" -} - - Tests the "321321321" number to check if it will be blocked for inbound calls. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-csinboundblockednumberpattern - - - - - - Test-CsTeamsShiftsConnectionValidate - Test - CsTeamsShiftsConnectionValidate - - This cmdlet validates workforce management (WFM) connection settings. - - - - This cmdlet validates Workforce management (WFM) connection settings. It validates that the provided WFM account/password and required endpoints are set correctly. - - - - Test-CsTeamsShiftsConnectionValidate - - ConnectorId - - > Applicable: Microsoft Teams - The ID of the shifts connector. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connector specific settings. - - IConnectorInstanceRequestConnectorSpecificSettings - - IConnectorInstanceRequestConnectorSpecificSettings - - - None - - - Name - - > Applicable: Microsoft Teams - The connector's instance name. - - String - - String - - - None - - - - - - ConnectorId - - > Applicable: Microsoft Teams - The ID of the shifts connector. - - String - - String - - - None - - - ConnectorSpecificSettings - - The connector specific settings. - - IConnectorInstanceRequestConnectorSpecificSettings - - IConnectorInstanceRequestConnectorSpecificSettings - - - None - - - Name - - > Applicable: Microsoft Teams - The connector's instance name. - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $InstanceName = "test instance name" -PS C:\> $WfmUserName = "WfmUserName" -PS C:\> $plainPwd = "plainPwd" -PS C:\> Test-CsTeamsShiftsConnectionValidate -ConnectorId "6A51B888-FF44-4FEA-82E1-839401E00000" -ConnectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificBlueYonderSettingsRequest -Property @{ AdminApiUrl = "https://contoso.com/retail/data/wfmadmin/api/v1-beta3"; SiteManagerUrl = "https://contoso.com/retail/data/wfmsm/api/v1-beta4"; EssApiUrl = "https://contoso.com/retail/data/wfmess/api/v1-beta2"; RetailWebApiUrl = "https://contoso.com/retail/data/retailwebapi/api/v1"; CookieAuthUrl = "https://contoso.com/retail/data/login"; FederatedAuthUrl = "https://contoso.com/retail/data/login"; LoginUserName = "PlaceholderForUsername"; LoginPwd = "PlaceholderForPassword" }) -Name $InstanceName - - Returns the list of conflicts if there are any. Empty result means there's no conflict. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $InstanceName = "test instance name" -PS C:\> $WfmUserName = "WfmUserName" -PS C:\> $plainPwd = "plainPwd" -PS C:\> Test-CsTeamsShiftsConnectionValidate -ConnectorId "6A51B888-FF44-4FEA-82E1-839401E00000" -ConnectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest -Property @{ apiUrl = "https://contoso.com/api"; ssoUrl = "https://contoso.com/sso"; appKey = "myAppKey"; clientId = "myClientId"; clientSecret = "PlaceholderForClientSecret"; LoginUserName = "PlaceholderForUsername"; LoginPwd = "PlaceholderForPassword" }) -Name $InstanceName - - Returns the list of conflicts if there are any. Empty result means there's no conflict. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - New-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - - - - Test-CsTeamsTranslationRule - Test - CsTeamsTranslationRule - - This cmdlet tests a phone number against the configured number manipulation rules and returns information about the matching rule. - - - - This cmdlet tests a phone number against the configured number manipulation rules and returns information about the matching rule. - - - - Test-CsTeamsTranslationRule - - Break - - {{ Fill Break Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - PhoneNumber - - The phone number to test. - - System.String - - System.String - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - - System.Management.Automation.SwitchParameter - - - False - - - - - - Break - - {{ Fill Break Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - {{ Fill HttpPipelineAppend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - {{ Fill HttpPipelinePrepend Description }} - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[] - - - None - - - PhoneNumber - - The phone number to test. - - System.String - - System.String - - - None - - - Proxy - - {{ Fill Proxy Description }} - - System.Uri - - System.Uri - - - None - - - ProxyCredential - - {{ Fill ProxyCredential Description }} - - System.Management.Automation.PSCredential - - System.Management.Automation.PSCredential - - - None - - - ProxyUseDefaultCredentials - - {{ Fill ProxyUseDefaultCredentials Description }} - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - None - - - - - - - - - - None - - - - - - - - - The cmdlet is available in Teams PowerShell Module 4.5.0 or later. - The matching logic used in the cmdlet is the same as when the manipulation rule has been associated with an SBC and a call is being routed. - If a match is found in two or more manipulation rules, the first one is returned. - There is a short delay before newly created manipulation rules are added to the evaluation. - If no matching TeamsTranslationRule is found, then the cmdlet will return error: "No number translation rule matched". - If a matching TeamsTranslationRule is found, but it produces invalid phone number, the cmdlet will return error: "Number translation rule {TeamsTranslationRule.Name} applied to phone number produced invalid phone number: {resultPhoneNumber}". - - - - - -------------------------- Example 1 -------------------------- - Test-CsTeamsTranslationRule -PhoneNumber 1234 - -Identity Pattern PhoneNumberTranslated Translation --------- ------- --------------------- ----------- -rule1 ^1234$ 4321 4321 - - This example displays information about the manipulation rule matching the phone number 1234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamstranslationrule - - - New-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamstranslationrule - - - Get-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamstranslationrule - - - Set-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamstranslationrule - - - Remove-CsTeamsTranslationRule - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamstranslationrule - - - - - - Test-CsTeamsUnassignedNumberTreatment - Test - CsTeamsUnassignedNumberTreatment - - This cmdlet tests the given number against the created (by using New-CsTeamsUnassignedNumberTreatment cmdlet) unassigned number treatment configurations. - - - - This cmdlet tests the given number against the created (by using New-CsTeamsUnassignedNumberTreatment cmdlet) unassigned number treatment configurations. If a match is found, the matching treatment is displayed. - - - - Test-CsTeamsUnassignedNumberTreatment - - PhoneNumber - - The phone number to be tested. - - System.String - - System.String - - - None - - - - - - PhoneNumber - - The phone number to be tested. - - System.String - - System.String - - - None - - - - - - System.String - - - - - - - - - - System.Object - - - - - - - - - The cmdlet is available in Teams PS module 3.2.0-preview or later. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Test-CsTeamsUnassignedNumberTreatment -PhoneNumber "321321321" - - Tests the "321321321" number to check if there is a matching unassigned number treatment. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsunassignednumbertreatment - - - New-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsunassignednumbertreatment - - - Get-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsunassignednumbertreatment - - - Set-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsunassignednumbertreatment - - - Remove-CsTeamsUnassignedNumberTreatment - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsunassignednumbertreatment - - - - - - Test-CsVoiceNormalizationRule - Test - CsVoiceNormalizationRule - - Tests a telephone number against a voice normalization rule and returns the number after the normalization rule has been applied. - - - - This cmdlet was introduced in Lync Server 2010. - This cmdlet allows you to see the results of applying a voice normalization rule to a given telephone number. Voice normalization rules are a required part of phone authorization and call routing. They define the requirements for converting--or translating-- numbers from a format typically entered by users to a standard (E.164) format. Use this cmdlet to troubleshoot dialing issues or to verify that rules will work as expected against given numbers. - - - - Test-CsVoiceNormalizationRule - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The phone number against which you want to test the normalization rule specified in the NormalizationRule parameter. - Full Data Type: Microsoft.Rtc.Management.Voice.PhoneNumber - - PhoneNumber - - PhoneNumber - - - None - - - NormalizationRule - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - An object containing a reference to the normalization rule against which you want to test the number specified in the DialedNumber parameter. - For Lync and Skype for Business Server, you can retrieve voice normalization rules by calling the `Get-CsVoiceNormalizationRule` cmdlet. For Microsoft Teams, you can retrieve voice normalization rules by calling the `Get-CsTenantDialPlan` cmdlet. - - NormalizationRule - - NormalizationRule - - - None - - - - - - DialedNumber - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - The phone number against which you want to test the normalization rule specified in the NormalizationRule parameter. - Full Data Type: Microsoft.Rtc.Management.Voice.PhoneNumber - - PhoneNumber - - PhoneNumber - - - None - - - NormalizationRule - - > Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019, Microsoft Teams - An object containing a reference to the normalization rule against which you want to test the number specified in the DialedNumber parameter. - For Lync and Skype for Business Server, you can retrieve voice normalization rules by calling the `Get-CsVoiceNormalizationRule` cmdlet. For Microsoft Teams, you can retrieve voice normalization rules by calling the `Get-CsTenantDialPlan` cmdlet. - - NormalizationRule - - NormalizationRule - - - None - - - - - - Input types - - - Microsoft.Rtc.Management.WritableConfig.Policy.Voice.NormalizationRule object. Accepts pipelined input of voice normalization rule objects. - - - - - - - Output types - - - Returns an object of type Microsoft.Rtc.Management.Voice.NormalizationRuleTestResult. - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Get-CsVoiceNormalizationRule -Identity "global/11 digit number rule" | Test-CsVoiceNormalizationRule -DialedNumber 14255559999 - - For Lync or Skype for Business Server, this example runs a voice normalization test against the voice normalization rule with the Identity "global/11 digit number rule". First the `Get-CsVoiceNormalizationRule` cmdlet is run to retrieve the rule with the Identity "global/11 digit number rule". That rule object is then piped to the `Test-CsVoiceNormalizationRule` cmdlet, where the rule is tested against the telephone number 14255559999. The output will be the DialedNumber after the voice normalization rule "global/11 digit number rule" has been applied. If this rule does not apply to the DialedNumber value (for example, if the normalization rule matches the pattern for an 11-digit number and you supply a 7-digit number) no value will be returned. - - - - -------------------------- Example 2 -------------------------- - $a = Get-CsVoiceNormalizationRule -Identity "global/11 digit number rule" -Test-CsVoiceNormalizationRule -DialedNumber 5551212 -NormalizationRule $a - - For Lync or Skype for Business Server, example 2 is identical to Example 1 except that instead of piping the results of the Get operation directly to the Test cmdlet, the object is first stored in the variable $a and then is passed as the value to the parameter NormalizationRule to be used as the voice normalization rule against which the test will run. - - - - -------------------------- Example 3 -------------------------- - Get-CsVoiceNormalizationRule | Test-CsVoiceNormalizationRule -DialedNumber 2065559999 - - For Lync or Skype for Business Server, this example runs a voice normalization test against all voice normalization rules defined within the Skype for Business Server deployment. First the `Get-CsVoiceNormalizationRule` cmdlet is run (with no parameters) to retrieve all the voice normalization rules. The collection of rules that is returned is then piped to the `Test-CsVoiceNormalizationRule` cmdlet, where each rule in the collection is tested against the telephone number 2065559999. The output will be a list of translated numbers, one for each rule tested. If a rule does not apply to the DialedNumber value (for example, if the normalization rule matches the pattern for an 11-digit number and you supply a 7-digit number) there will be a blank line in the list for that rule. - - - - -------------------------- Example 4 -------------------------- - $nr=(Get-CsTenantDialPlan -Identity dp1).NormalizationRules -$nr[0] - -Description : -Pattern : ^(\d{4})$ -Translation : +1206555$1 -Name : nr1 -IsInternalExtension : False - -Test-CsVoiceNormalizationRule -DialedNumber 1234 -NormalizationRule $nr[0] - -TranslatedNumber ----------------- -+12065551234 - - For Microsoft Teams, this example gets all the normalization rules in the tenant dial plan DP1, shows the first of these rules, and then test that rule on the dialed number 1234. The output shows that the rule normalize the dialed number to +12065551234. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/test-csvoicenormalizationrule - - - New-CsVoiceNormalizationRule - https://learn.microsoft.com/powershell/module/microsoftteams/new-csvoicenormalizationrule - - - Get-CsTenantDialPlan - https://learn.microsoft.com/powershell/module/microsoftteams/get-cstenantdialplan - - - - - - Unregister-CsOnlineDialInConferencingServiceNumber - Unregister - CsOnlineDialInConferencingServiceNumber - - Unassigns the previously assigned service number as default Conference Bridge number. - - - - Unassigns the previously assigned service number as default Conference Bridge number. - - - - Unregister-CsOnlineDialInConferencingServiceNumber - - Identity - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - PARAMVALUE: ConferencingServiceNumber - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - BridgeId - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - PARAMVALUE: Fqdn - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - RemoveDefaultServiceNumber - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - - - - BridgeId - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - BridgeName - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - DomainController - - > Applicable: Microsoft Teams - PARAMVALUE: Fqdn - - Fqdn - - Fqdn - - - None - - - Force - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Identity - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - Instance - - > Applicable: Microsoft Teams - PARAMVALUE: ConferencingServiceNumber - - ConferencingServiceNumber - - ConferencingServiceNumber - - - None - - - RemoveDefaultServiceNumber - - > Applicable: Microsoft Teams - PARAMVALUE: SwitchParameter - - SwitchParameter - - SwitchParameter - - - False - - - Tenant - - > Applicable: Microsoft Teams - PARAMVALUE: Guid - - Guid - - Guid - - - None - - - TenantDomain - - > Applicable: Microsoft Teams - PARAMVALUE: String - - String - - String - - - None - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Unregister-CsOnlineDialInConferencingServiceNumber -BridgeName "Conference Bridge" -RemoveDefaultServiceNumber 1234 - - Unassigns the 1234 Service Number to the given Conference Bridge. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/unregister-csonlinedialinconferencingservicenumber - - - - - - Update-CsAutoAttendant - Update - CsAutoAttendant - - Use Update-CsAutoAttendant cmdlet to force an update of resources associated with an Auto Attendant (AA) provisioning. - - - - This cmdlet provides a way to update the resources associated with an auto attendant configured for use in your organization. Currently, it repairs the Dial-by-Name recognition status of an auto attendant. - Note: This cmdlet only triggers the refresh of auto attendant resources. It does not wait until all the resources have been refreshed. The last completed status of auto attendant can be retrieved using `Get-CsAutoAttendantStatus` (https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus)cmdlet. - - - - Update-CsAutoAttendant - - Identity - - The identity for the AA whose resources are to be updated. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - Identity - - The identity for the AA whose resources are to be updated. - - System.String - - System.String - - - None - - - Tenant - - This parameter is reserved for Microsoft internal use only. - - System.Guid - - System.Guid - - - None - - - - - - System.String - - - The Update-CsAutoAttendant cmdlet accepts a string as the Identity parameter. - - - - - - - None - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - Update-CsAutoAttendant -Identity "6abea1cd-904b-520b-be96-1092cc096432" - - In Example 1, the Update-CsAutoAttendant cmdlet is used to update all resources of an auto attendant with Identity of 6abea1cd-904b-520b-be96-1092cc096432. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/update-csautoattendant - - - Get-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendant - - - Get-CsAutoAttendantStatus - https://learn.microsoft.com/powershell/module/microsoftteams/get-csautoattendantstatus - - - Set-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/set-csautoattendant - - - Remove-CsAutoAttendant - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csautoattendant - - - - - - Update-CsCustomPolicyPackage - Update - CsCustomPolicyPackage - - Note: This cmdlet is currently in private preview. - This cmdlet updates a custom policy package. - - - - This cmdlet updates a custom policy package with new package settings. For more information on policy packages and the policy types available, please review https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages. - - - - Update-CsCustomPolicyPackage - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - PolicyList - - > Applicable: Microsoft Teams - A list of one or more policies to be included in the updated package. To specify the policy list, follow this format: "<PolicyType>, <PolicyName>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). To get the list of available policy names on your tenant, use the skypeforbusiness module and refer to cmdlets such as [Get-CsTeamsMeetingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingpolicy) and [Get-CsTeamsMessagingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy). - - String[] - - String[] - - - None - - - Description - - > Applicable: Microsoft Teams - The description of the custom package. - - String - - String - - - None - - - - - - Description - - > Applicable: Microsoft Teams - The description of the custom package. - - String - - String - - - None - - - Identity - - > Applicable: Microsoft Teams - The name of the custom package. - - String - - String - - - None - - - PolicyList - - > Applicable: Microsoft Teams - A list of one or more policies to be included in the updated package. To specify the policy list, follow this format: "<PolicyType>, <PolicyName>". Delimiters of ' ', '.', ':', '\t' are also acceptable. Supported policy types are listed here (https://learn.microsoft.com/MicrosoftTeams/manage-policy-packages#what-is-a-policy-package). To get the list of available policy names on your tenant, use the skypeforbusiness module and refer to cmdlets such as [Get-CsTeamsMeetingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmeetingpolicy) and [Get-CsTeamsMessagingPolicy](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsmessagingpolicy). - - String[] - - String[] - - - None - - - - - - - The resulting custom package's contents will be replaced by the new one instead of a union. Default packages created by Microsoft cannot be updated. - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Update-CsCustomPolicyPackage -Identity "MyPackage" -PolicyList "TeamsMessagingPolicy, MyMessagingPolicy" - - Updates the custom package named "MyPackage" to have one policy in the package: a messaging policy of name "MyMessagingPolicy". - - - - -------------------------- Example 2 -------------------------- - PS C:\> Update-CsCustomPolicyPackage -Identity "MyPackage" -PolicyList "TeamsMessagingPolicy, MyMessagingPolicy", "TeamsMeetingPolicy, MyMeetingPolicy" -Description "My package" - - Updates the custom package named "MyPackage" to have a description of "My package" and two policies in the package: a messaging policy of name "MyMessagingPolicy" and a meeting policy of name "MyMeetingPolicy". - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/update-cscustompolicypackage - - - Get-CsPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/get-cspolicypackage - - - New-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/new-cscustompolicypackage - - - Remove-CsCustomPolicyPackage - https://learn.microsoft.com/powershell/module/microsoftteams/remove-cscustompolicypackage - - - - - - Update-CsPhoneNumberTag - Update - CsPhoneNumberTag - - This cmdlet allows admin to update existing telephone number tags. - - - - This cmdlet can be used to update existing tags for telephone numbers. Tags can be up to 50 characters long, including spaces, and can contain multiple words. They are not case-sensitive. An admin can get a list of all existing tags using Get-CsPhoneNumberTag (https://learn.microsoft.com/powershell/module/microsoftteams/get-csphonenumbertag). - - - - Update-CsPhoneNumberTag - - NewTag - - This is the new tag. A tag can be maximum 50 characters long. - - String - - String - - - None - - - Tag - - This is the old tag which the admin wants to update. - - String - - String - - - None - - - - - - NewTag - - This is the new tag. A tag can be maximum 50 characters long. - - String - - String - - - None - - - Tag - - This is the old tag which the admin wants to update. - - String - - String - - - None - - - - - - None - - - - - - - - - - System.Boolean - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> Update-CsPhoneNumberTag -Tag "Redmond" -NewTag "Redmond HQ" - - This example shows how to update an existing tag "Redmond" to "Redmond HQ" - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/update-csphonenumbertag - - - - - - Update-CsTeamsShiftsConnection - Update - CsTeamsShiftsConnection - - This cmdlet updates an existing workforce management (WFM) connection. - - - - This cmdlet updates a Shifts WFM connection. Similar to the Set-CsTeamsShiftsConnection cmdlet, it allows the admin to make changes to the settings in the connection. The complete list of fields is not required allowing the user to update single fields of the connection. - - - - Update-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionFieldsRequest - - IUpdateWfmConnectionFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionFieldsRequest - - IUpdateWfmConnectionFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - Used to specify settings that are unique to the connector being used. This parameter allows administrators to configure various properties specific to the workforce management (WFM) system they are integrating with Teams Shifts. - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnection - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - Used to specify settings that are unique to the connector being used. This parameter allows administrators to configure various properties specific to the workforce management (WFM) system they are integrating with Teams Shifts. - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Authorization - - Used to provide the necessary credentials for authenticating and authorizing the connection to the workforce management (WFM) system. This parameter ensures that the connection has the appropriate permissions to access and manage the data within the WFM system. - - String - - String - - - None - - - Body - - The request body. - - IUpdateWfmConnectionFieldsRequest - - IUpdateWfmConnectionFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorId - - Used to specify the unique identifier of the connector being used for the connection. - - String - - String - - - None - - - ConnectorSpecificSettings - - Used to specify settings that are unique to the connector being used. This parameter allows administrators to configure various properties specific to the workforce management (WFM) system they are integrating with Teams Shifts. - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionFieldsRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $connection = Get-CsTeamsShiftsConnection -ConnectionId 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -PS C:\> $result = Update-CsTeamsShiftsConnection ` - -connectionId $connection.Id ` - -IfMatch $connection.Etag ` - -name "Cmdlet test connection - updated" ` - -PS C:\> $result | Format-List - -ConnectorId : 6A51B888-FF44-4FEA-82E1-839401E00000 -ConnectorSpecificSettingAdminApiUrl : https://www.contoso.com/retail/data/wfmadmin/api/v1-beta2 -ConnectorSpecificSettingApiUrl : -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : -ConnectorSpecificSettingCookieAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingEssApiUrl : https://www.contoso.com/retail/data/wfmess/api/v1-beta2 -ConnectorSpecificSettingFederatedAuthUrl : https://www.contoso.com/retail/data/login -ConnectorSpecificSettingRetailWebApiUrl : https://www.contoso.com/retail/data/retailwebapi/api/v1 -ConnectorSpecificSettingSiteManagerUrl : https://www.contoso.com/retail/data/wfmsm/api/v1-beta2 -ConnectorSpecificSettingSsoUrl : -CreatedDateTime : 24/03/2023 04:58:23 -Etag : "5b00dd1b-0000-0400-0000-641d2df00000" -Id : 4dae9db0-0841-412c-8d6b-f5684bfebdd7 -LastModifiedDateTime : 24/03/2023 04:58:23 -Name : Cmdlet test connection - updated -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 - - Updates the connection with the specified -ConnectionId with the given name. Returns the object of the updated connection. - - - - -------------------------- Example 2 -------------------------- - PS C:\> $connection = Get-CsTeamsShiftsConnection -ConnectionId 79964000-286a-4216-ac60-c795a426d61a -PS C:\> $result = Update-CsTeamsShiftsConnection ` - -connectionId $connection.Id ` - -IfMatch $connection.Etag ` - -connectorId "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0" ` - -connectorSpecificSettings (New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConnectorSpecificUkgDimensionsSettingsRequest ` - -Property @{ - apiUrl = "https://www.contoso.com/api" - ssoUrl = "https://www.contoso.com/sso" - appKey = "PlaceholderForAppKey" - clientId = "Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W" - clientSecret = "PlaceholderForClientSecret" - }) ` - -state "Active" -PS C:\> $result | Format-List - -ConnectorId : 95BF2848-2DDA-4425-B0EE-D62AEED4C0A0 -ConnectorSpecificSettingAdminApiUrl : -ConnectorSpecificSettingApiUrl : https://www.contoso.com/api -ConnectorSpecificSettingAppKey : -ConnectorSpecificSettingClientId : Es5Q2fB4PXweCyto6Ms6J2kRB7uwAc3W -ConnectorSpecificSettingCookieAuthUrl : -ConnectorSpecificSettingEssApiUrl : -ConnectorSpecificSettingFederatedAuthUrl : -ConnectorSpecificSettingRetailWebApiUrl : -ConnectorSpecificSettingSiteManagerUrl : -ConnectorSpecificSettingSsoUrl : https://www.contoso.com/sso -CreatedDateTime : 06/04/2023 11:05:39 -Etag : "3100fd6e-0000-0400-0000-642ea7840000" -Id : 79964000-286a-4216-ac60-c795a426d61a -LastModifiedDateTime : 06/04/2023 11:05:39 -Name : Cmdlet test connection -State : Active -TenantId : 3FDCAAF2-863A-4520-97BA-DFA211595876 - - Updates the connection with the specified -ConnectionId with the given settings. Returns the object of the updated connection. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnection - - - Get-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection - - - New-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnection - - - Set-CsTeamsShiftsConnection - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnection - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - Update-CsTeamsShiftsConnectionInstance - Update - CsTeamsShiftsConnectionInstance - - This cmdlet updates Shifts connection instance fields. - - - - This cmdlet updates a Shifts connection instance. Similar to the Set-CsTeamsShiftsConnectionInstance cmdlet, it allows the admin to make changes to the settings in the instance such as name, enabled scenarios, and sync frequency. The complete list of fields is not required allowing the user to update single fields of the instance. - - - - Update-CsTeamsShiftsConnectionInstance - - Body - - The request body. - - IUpdateConnectorInstanceFieldsRequest - - IUpdateConnectorInstanceFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectorInstanceId - - The connector instance ID. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnectionInstance - - Body - - The request body. - - IUpdateConnectorInstanceFieldsRequest - - IUpdateConnectorInstanceFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnectionInstance - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - ConnectorInstanceId - - The connector instance ID. - - String - - String - - - None - - - DesignatedActorId - - The designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Update-CsTeamsShiftsConnectionInstance - - Break - - Wait for the .NET debugger to attach. - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - DesignatedActorId - - The designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - - - Body - - The request body. - - IUpdateConnectorInstanceFieldsRequest - - IUpdateConnectorInstanceFieldsRequest - - - None - - - Break - - Wait for the .NET debugger to attach. - - SwitchParameter - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - SwitchParameter - - SwitchParameter - - - False - - - ConnectionId - - The WFM connection ID for the instance. This can be retrieved by running Get-CsTeamsShiftsConnection (https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnection). - - String - - String - - - None - - - ConnectorAdminEmail - - Gets or sets the list of connector admin email addresses. - - String[] - - String[] - - - None - - - ConnectorInstanceId - - The connector instance ID. - - String - - String - - - None - - - DesignatedActorId - - The designated actor ID that App acts as for Shifts Graph API calls. - - String - - String - - - None - - - Etag - - Used to manage concurrency control. It helps ensure that updates to a Shifts connection instance are only applied if the instance has not been modified since it was last retrieved. This is particularly useful in preventing conflicts when multiple administrators might be making changes simultaneously. - - String - - String - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline. - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - IfMatch - - The value of the ETag field as returned by the cmdlets. - - String - - String - - - None - - - InputObject - - Identity Parameter - - IConfigApiBasedCmdletsIdentity - - IConfigApiBasedCmdletsIdentity - - - None - - - Name - - The connector instance name. - - String - - String - - - None - - - Proxy - - The URI for the proxy server to use. - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call. - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy. - - SwitchParameter - - SwitchParameter - - - False - - - State - - The state of the connection instance. Valid values are "Active" and "Disabled". A third value, "ErrorDisabled", signifies an error in the connection instance. - - String - - String - - - None - - - SyncFrequencyInMin - - The sync frequency in minutes. - - Int32 - - Int32 - - - None - - - SyncScenarioOfferShiftRequest - - The sync state for the offer shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShift - - The sync state for the open shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioOpenShiftRequest - - The sync state for the open shift request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioShift - - The sync state for the shift scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioSwapRequest - - The sync state for the shift swap request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeCard - - The sync state for the time card scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOff - - The sync state for the time off scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioTimeOffRequest - - The sync state for the time off request scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - SyncScenarioUserShiftPreference - - The sync state for the user shift preferences scenario. Valid values are "Disabled", "FromWfmToShifts", and "TwoWay". - - String - - String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - SwitchParameter - - SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateConnectorInstanceFieldsRequest - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - PS C:\> $connectionInstance = Get-CsTeamsShiftsConnectionInstance -ConnectorInstanceId WCI-eba2865f-6cac-46f9-8733-e0631a4536e1 -PS C:\> $result = Update-CsTeamsShiftsConnectionInstance ` - -connectorInstanceId "WCI-eba2865f-6cac-46f9-8733-e0631a4536e1" - -IfMatch $connectionInstance.Etag ` - -connectionId "79964000-286a-4216-ac60-c795a426d61a" ` - -name "Cmdlet test instance - updated" ` - -syncFrequencyInMin "30" ` - -PS C:\> $result.ToJsonString() - -{ - "syncScenarios": { - "offerShiftRequest": "FromWfmToShifts", - "openShift": "FromWfmToShifts", - "openShiftRequest": "FromWfmToShifts", - "shift": "FromWfmToShifts", - "swapRequest": "FromWfmToShifts", - "timeCard": "FromWfmToShifts", - "timeOff": "FromWfmToShifts", - "timeOffRequest": "FromWfmToShifts", - "userShiftPreferences": "Disabled" - }, - "id": "WCI-eba2865f-6cac-46f9-8733-e0631a4536e1", - "tenantId": "dfd24b34-ccb0-47e1-bdb7-e49db9c7c14a", - "connectionId": "a2d1b091-5140-4dd2-987a-98a8b5338744", - "connectorAdminEmails": [ ], - "connectorId": "95BF2848-2DDA-4425-B0EE-D62AEED4C0A0", - "designatedActorId": "ec1a4edb-1a5f-4b2d-b2a4-37aab6ebd231", - "name": "Cmdlet test instance - updated", - "syncFrequencyInMin": 30, - "workforceIntegrationId": "WFI_6b225907-b476-4d40-9773-08b86db7b11b", - "etag": "\"4f005d22-0000-0400-0000-642ff64a0000\"", - "createdDateTime": "2023-04-07T10:54:01.8170000Z", - "lastModifiedDateTime": "2023-04-07T10:54:01.8170000Z", - "state" : "Active" -} - - Updates the instance with the specified -ConnectorInstanceId with the given name and sync frequency. Returns the object of the updated connector instance. - - - - - - Online Version: - https://docs.microsoft.com/powershell/module/microsoftteams/update-csteamsshiftsconnectioninstance - - - Get-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamsshiftsconnectioninstance - - - New-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/new-csteamsshiftsconnectioninstance - - - Set-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/set-csteamsshiftsconnectioninstance - - - Remove-CsTeamsShiftsConnectionInstance - https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamsshiftsconnectioninstance - - - Test-CsTeamsShiftsConnectionValidate - https://learn.microsoft.com/powershell/module/microsoftteams/test-csteamsshiftsconnectionvalidate - - - - - - Update-CsTeamTemplate - Update - CsTeamTemplate - - This cmdlet submits an operation that updates a custom team template with new team template settings. - - - - NOTE: The response is a PowerShell object formatted as a JSON for readability. Please refer to the examples for suggested interaction flows for template management. - - - - Update-CsTeamTemplate - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - - System.Management.Automation.SwitchParameter - - - False - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OdataId - - A composite URI of a template. - - System.String - - System.String - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - Update-CsTeamTemplate - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - - System.Management.Automation.SwitchParameter - - - False - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - Update-CsTeamTemplate - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - OdataId - - A composite URI of a template. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - Update-CsTeamTemplate - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - - SwitchParameter - - - False - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - System.Management.Automation.SwitchParameter - - - False - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - System.Management.Automation.SwitchParameter - - - False - - - - - - App - - Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. To construct, see NOTES section for APP properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[] - - - None - - - Body - - The client input for a request to create a template. Only admins from Config Api can perform this request. To construct, see NOTES section for BODY properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - None - - - Break - - Wait for .NET debugger to attach - - SwitchParameter - - SwitchParameter - - - False - - - Category - - Gets or sets list of categories. - - System.String[] - - System.String[] - - - None - - - Channel - - Gets or sets the set of channel templates included in the team template. To construct, see NOTES section for CHANNEL properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[] - - - None - - - Classification - - Gets or sets the team's classification.Tenant admins configure Microsoft Entra ID with the set of possible values. - - System.String - - System.String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - Description - - Gets or sets the team's Description. - - System.String - - System.String - - - None - - - DiscoverySetting - - Governs discoverability of a team. To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings - - - None - - - DisplayName - - Gets or sets the team's DisplayName. - - System.String - - System.String - - - None - - - FunSetting - - Governs use of fun media like giphy and stickers in the team. To construct, see NOTES section for FUNSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings - - - None - - - GuestSetting - - Guest role settings for the team. To construct, see NOTES section for GUESTSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings - - - None - - - HttpPipelineAppend - - SendAsync Pipeline Steps to be appended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - HttpPipelinePrepend - - SendAsync Pipeline Steps to be prepended to the front of the pipeline - - SendAsyncStep[] - - SendAsyncStep[] - - - None - - - Icon - - Gets or sets template icon. - - System.String - - System.String - - - None - - - InputObject - - Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - None - - - IsMembershipLimitedToOwner - - Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - MemberSetting - - Member role settings for the team. To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings - - - None - - - MessagingSetting - - Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings - - - None - - - OdataId - - A composite URI of a template. - - System.String - - System.String - - - None - - - OwnerUserObjectId - - Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - - System.String - - System.String - - - None - - - Proxy - - The URI for the proxy server to use - - Uri - - Uri - - - None - - - ProxyCredential - - Credentials for a proxy server to use for the remote call - - PSCredential - - PSCredential - - - None - - - ProxyUseDefaultCredentials - - Use the default credentials for the proxy - - SwitchParameter - - SwitchParameter - - - False - - - PublishedBy - - Gets or sets published name. - - System.String - - System.String - - - None - - - ShortDescription - - Gets or sets template short description. - - System.String - - System.String - - - None - - - Specialization - - The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - System.String - - System.String - - - None - - - TemplateId - - Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - - System.String - - System.String - - - None - - - Uri - - Gets or sets uri to be used for GetTemplate api call. - - System.String - - System.String - - - None - - - Visibility - - Used to control the scope of users who can view a group/team and its members, and ability to join. - - System.String - - System.String - - - None - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - System.Management.Automation.SwitchParameter - - System.Management.Automation.SwitchParameter - - - False - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate - - - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse - - - - - - - - Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject - - - - - - - - - ALIASES - COMPLEX PARAMETER PROPERTIES - To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - APP <ITeamsAppTemplate[]>: Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - - `[Id <String>]`: Gets or sets the app's ID in the global apps catalog. - BODY <ITeamTemplate>: The client input for a request to create a template. Only admins from Config Api can perform this request. - - `DisplayName <String>`: Gets or sets the team's DisplayName. - - `ShortDescription <String>`: Gets or sets template short description. - - `[App <ITeamsAppTemplate[]>]`: Gets or sets the set of applications that should be installed in teams created based on the template. The app catalog is the main directory for information about each app; this set is intended only as a reference. - - `[Id <String>]`: Gets or sets the app's ID in the global apps catalog. - `[Category <String[]>]`: Gets or sets list of categories. - - `[Channel <IChannelTemplate[]>]`: Gets or sets the set of channel templates included in the team template. - - `[Description <String>]`: Gets or sets channel description as displayed to users. - `[DisplayName <String>]`: Gets or sets channel name as displayed to users. - `[Id <String>]`: Gets or sets identifier for the channel template. - `[IsFavoriteByDefault <Boolean?>]`: Gets or sets a value indicating whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - `[Tab <IChannelTabTemplate[]>]`: Gets or sets collection of tabs that should be added to the channel. - `[Configuration <ITeamsTabConfiguration>]`: Represents the configuration of a tab. - `[ContentUrl <String>]`: Gets or sets the Url used for rendering tab contents in Teams. - `[EntityId <String>]`: Gets or sets the identifier for the entity hosted by the tab provider. - `[RemoveUrl <String>]`: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - `[WebsiteUrl <String>]`: Gets or sets the Url for showing tab contents outside of Teams. - `[Id <String>]`: Gets or sets identifier for the channel tab template. - `[Key <String>]`: Gets a unique identifier. - `[MessageId <String>]`: Gets or sets id used to identify the chat message associated with the tab. - `[Name <String>]`: Gets or sets the tab name displayed to users. - `[SortOrderIndex <String>]`: Gets or sets index of the order used for sorting tabs. - `[TeamsAppId <String>]`: Gets or sets the app's id in the global apps catalog. - `[WebUrl <String>]`: Gets or sets the deep link url of the tab instance. - `[Classification <String>]`: Gets or sets the team's classification. Tenant admins configure Microsoft Entra ID with the set of possible values. - - `[Description <String>]`: Gets or sets the team's Description. - - `[DiscoverySetting <ITeamDiscoverySettings>]`: Governs discoverability of a team. - - `ShowInTeamsSearchAndSuggestion <Boolean>`: Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - `[FunSetting <ITeamFunSettings>]`: Governs use of fun media like giphy and stickers in the team. - `AllowCustomMeme <Boolean>`: Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - `AllowGiphy <Boolean>`: Gets or sets a value indicating whether users can post giphy content in team conversations. - `AllowStickersAndMeme <Boolean>`: Gets or sets a value indicating whether users can post stickers and memes in team conversations. - `GiphyContentRating <String>`: Gets or sets the rating filter on giphy content. - `[GuestSetting <ITeamGuestSettings>]`: Guest role settings for the team. - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether guests can create or edit channels in the team. - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether guests can delete team channels. - `[Icon <String>]`: Gets or sets template icon. - - `[IsMembershipLimitedToOwner <Boolean?>]`: Gets or sets whether to limit the membership of the team to owners in the Microsoft Entra group until an owner "activates" the team. - - `[MemberSetting <ITeamMemberSettings>]`: Member role settings for the team. - - `AllowAddRemoveApp <Boolean>`: Gets or sets a value indicating whether members can add or remove apps in the team. - `AllowCreatePrivateChannel <Boolean>`: Gets or Sets a value indicating whether members can create Private channels. - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether members can create or edit channels in the team. - `AllowCreateUpdateRemoveConnector <Boolean>`: Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - `AllowCreateUpdateRemoveTab <Boolean>`: Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether members can delete team channels. - `UploadCustomApp <Boolean>`: Gets or sets a value indicating is allowed to upload custom apps. - `[MessagingSetting <ITeamMessagingSettings>]`: Governs use of messaging features within the team These are settings the team owner should be able to modify from UI after team creation. - `AllowChannelMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - `AllowOwnerDeleteMessage <Boolean>`: Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - `AllowTeamMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - `AllowUserDeleteMessage <Boolean>`: Gets or sets a value indicating whether team members can delete their own messages in team conversations. - `AllowUserEditMessage <Boolean>`: Gets or sets a value indicating whether team members can edit their own messages in team conversations. - `[OwnerUserObjectId <String>]`: Gets or sets the Microsoft Entra user object id of the user who should be set as the owner of the new team. Only to be used when an application or administrative user is making the request on behalf of the specified user. - - `[PublishedBy <String>]`: Gets or sets published name. - - `[Specialization <String>]`: The specialization or use case describing the team. Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - - `[TemplateId <String>]`: Gets or sets the id of the base template for the team. Either a Microsoft base template or a custom template. - - `[Uri <String>]`: Gets or sets uri to be used for GetTemplate api call. - - `[Visibility <String>]`: Used to control the scope of users who can view a group/team and its members, and ability to join. - - CHANNEL <IChannelTemplate[]>: Gets or sets the set of channel templates included in the team template. - - `[Description <String>]`: Gets or sets channel description as displayed to users. - - `[DisplayName <String>]`: Gets or sets channel name as displayed to users. - - `[Id <String>]`: Gets or sets identifier for the channel template. - - `[IsFavoriteByDefault <Boolean?>]`: Gets or sets a value indicating whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - - `[Tab <IChannelTabTemplate[]>]`: Gets or sets collection of tabs that should be added to the channel. - - `[Configuration <ITeamsTabConfiguration>]`: Represents the configuration of a tab. - `[ContentUrl <String>]`: Gets or sets the Url used for rendering tab contents in Teams. - `[EntityId <String>]`: Gets or sets the identifier for the entity hosted by the tab provider. - `[RemoveUrl <String>]`: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - `[WebsiteUrl <String>]`: Gets or sets the Url for showing tab contents outside of Teams. - `[Id <String>]`: Gets or sets identifier for the channel tab template. - `[Key <String>]`: Gets a unique identifier. - `[MessageId <String>]`: Gets or sets id used to identify the chat message associated with the tab. - `[Name <String>]`: Gets or sets the tab name displayed to users. - `[SortOrderIndex <String>]`: Gets or sets index of the order used for sorting tabs. - `[TeamsAppId <String>]`: Gets or sets the app's id in the global apps catalog. - `[WebUrl <String>]`: Gets or sets the deep link url of the tab instance. - DISCOVERYSETTING <ITeamDiscoverySettings>: Governs discoverability of a team. - - `ShowInTeamsSearchAndSuggestion <Boolean>`: Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - FUNSETTING <ITeamFunSettings>: Governs use of fun media like giphy and stickers in the team. - - `AllowCustomMeme <Boolean>`: Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - - `AllowGiphy <Boolean>`: Gets or sets a value indicating whether users can post giphy content in team conversations. - - `AllowStickersAndMeme <Boolean>`: Gets or sets a value indicating whether users can post stickers and memes in team conversations. - - `GiphyContentRating <String>`: Gets or sets the rating filter on giphy content. - - GUESTSETTING <ITeamGuestSettings>: Guest role settings for the team. - - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether guests can create or edit channels in the team. - - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether guests can delete team channels. - - INPUTOBJECT <IConfigApiBasedCmdletsIdentity>: Identity Parameter - - `[Bssid <String>]`: - - `[ChassisId <String>]`: - - `[CivicAddressId <String>]`: Civic address id. - - `[Country <String>]`: - - `[GroupId <String>]`: The ID of a group whose policy assignments will be returned. - - `[Id <String>]`: - - `[Identity <String>]`: - - `[Locale <String>]`: - - `[LocationId <String>]`: Location id. - - `[OdataId <String>]`: A composite URI of a template. - - `[OperationId <String>]`: The ID of a batch policy assignment operation. - - `[OrderId <String>]`: - - `[PackageName <String>]`: The name of a specific policy package - - `[PolicyType <String>]`: The policy type for which group policy assignments will be returned. - - `[Port <String>]`: - - `[PortInOrderId <String>]`: - - `[PublicTemplateLocale <String>]`: Language and country code for localization of publicly available templates. - - `[SubnetId <String>]`: - - `[TenantId <String>]`: - - `[UserId <String>]`: UserId. Supports Guid. Eventually UPN and SIP. - - MEMBERSETTING <ITeamMemberSettings>: Member role settings for the team. - - `AllowAddRemoveApp <Boolean>`: Gets or sets a value indicating whether members can add or remove apps in the team. - - `AllowCreatePrivateChannel <Boolean>`: Gets or Sets a value indicating whether members can create Private channels. - - `AllowCreateUpdateChannel <Boolean>`: Gets or sets a value indicating whether members can create or edit channels in the team. - - `AllowCreateUpdateRemoveConnector <Boolean>`: Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - - `AllowCreateUpdateRemoveTab <Boolean>`: Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - - `AllowDeleteChannel <Boolean>`: Gets or sets a value indicating whether members can delete team channels. - - `UploadCustomApp <Boolean>`: Gets or sets a value indicating is allowed to upload custom apps. - - MESSAGINGSETTING <ITeamMessagingSettings>: Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - - `AllowChannelMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - - `AllowOwnerDeleteMessage <Boolean>`: Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - - `AllowTeamMention <Boolean>`: Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - - `AllowUserDeleteMessage <Boolean>`: Gets or sets a value indicating whether team members can delete their own messages in team conversations. - - `AllowUserEditMessage <Boolean>`: Gets or sets a value indicating whether team members can edit their own messages in team conversations. - - ## RELATED LINKS - - [Get-CsTeamTemplateList](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Get-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [New-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Update-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - [Remove-CsTeamTemplate](https://learn.microsoft.com/powershell/module/microsoftteams/get-csteamtemplatelist) - - - - - -------------------------- EXAMPLE 1 -------------------------- - PS C:\> (Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/bfd1ccc8-40f4-4996-833f-461947d23348/Tenant/fr-FR') > input.json -# open json in your favorite editor, make changes - -Update-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/bfd1ccc8-40f4-4996-833f-461947d23348/Tenant/fr-FR' -Body (Get-Content '.\input.json' | Out-String) - - Step 1: Creates a JSON file of the template you have specified. Step 2: Updates the template with JSON file you have edited. - - - - -------------------------- EXAMPLE 2 -------------------------- - PS C:\> $template = New-Object Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.TeamTemplate -Property @{` -DisplayName='New Template';` -ShortDescription='Short Definition';` -Description='New Description';` -App=@{id='feda49f8-b9f2-4985-90f0-dd88a8f80ee1'}, @{id='1d71218a-92ad-4254-be15-c5ab7a3e4423'};` -Channel=@{` - displayName = "General";` - id= "General";` - isFavoriteByDefault= $true` - },` - @{` - displayName= "test";` - id= "b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475";` - isFavoriteByDefault= $false` - }` -} - -PS C:\> Update-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/bfd1ccc8-40f4-4996-833f-461947d23348/Tenant/fr-FR' -Body $template - - Update to a new object - - - - -------------------------- EXAMPLE 3 -------------------------- - PS C:\> Update-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/bfd1ccc8-40f4-4996-833f-461947d23348/Tenant/fr-FR' ` --Locale en-US -DisplayName 'New Template' ` --ShortDescription 'New Description' ` --App @{id='feda49f8-b9f2-4985-90f0-dd88a8f80ee1'}, @{id='1d71218a-92ad-4254-be15-c5ab7a3e4423'} ` --Channel @{ ` -displayName = "General"; ` -id= "General"; ` -isFavoriteByDefault= $true ` -}, ` -@{ ` - displayName= "test"; ` - id= "b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475"; ` - isFavoriteByDefault= $false ` -} - - > [!Note] > It can take up to 24 hours for Teams users to see a custom template change in the gallery. - - - - - - Online Version: - https://learn.microsoft.com/powershell/module/microsoftteams/update-csteamtemplate - - - - \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/exports/ProxyCmdletDefinitionsWithHelp.ps1 b/Modules/MicrosoftTeams/7.8.0/exports/ProxyCmdletDefinitionsWithHelp.ps1 deleted file mode 100644 index d1b321fb205f2..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/exports/ProxyCmdletDefinitionsWithHelp.ps1 +++ /dev/null @@ -1,57276 +0,0 @@ - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -# .ExternalHelp en-US\MicrosoftTeams-help -function Clear-CsCacheOperation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICacheClearResponse])] -[CmdletBinding(DefaultParameterSetName='ClearExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Clear', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICacheClearRequest] - # Request to clear cache entries. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='ClearExpanded', Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Keys to be deleted from the cache. - ${KeysToDelete}, - - [Parameter(ParameterSetName='ClearExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Region from where cache keys are to be deleted. - ${Region}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Clear = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Clear-CsCacheOperation_Clear'; - ClearExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Clear-CsCacheOperation_ClearExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Clear-CsOCEContext { -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Clear-CsOCEContext'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Clear-CsRegionContext { -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Clear-CsRegionContext'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Connect-CsConfigApi { -[OutputType([System.Management.Automation.Runspaces.PSSession])] -[CmdletBinding(DefaultParameterSetName='DefaultSet', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantDomain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.CmdletHostContract.DeploymentConfiguration+TeamsEnvironment] - ${TeamsEnvironmentName}, - - [Parameter(ParameterSetName='DefaultSet')] - [Parameter(ParameterSetName='CredentialFlow')] - [Parameter(ParameterSetName='AccessTokenFlow')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.CmdletHostContract.DeploymentConfiguration+ConfigApiEnvironment] - ${UseConfigApiEnvironment}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ShowTelemetry}, - - [Parameter(ParameterSetName='CredentialFlow', Mandatory)] - [Parameter(ParameterSetName='CredentialFlowWithLocal', Mandatory)] - [Parameter(ParameterSetName='CredentialFlowWithInt', Mandatory)] - [Parameter(ParameterSetName='CredentialFlowWithMsit', Mandatory)] - [Parameter(ParameterSetName='CredentialFlowWithNpe', Mandatory)] - [Parameter(ParameterSetName='CredentialFlowWithTdf', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSCredential] - ${Credential}, - - [Parameter(ParameterSetName='CredentialFlowWithLocal', Mandatory)] - [Parameter(ParameterSetName='LocalHost', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UseLocalHost}, - - [Parameter(ParameterSetName='CredentialFlowWithInt', Mandatory)] - [Parameter(ParameterSetName='IntHost', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UseConfigApiInt}, - - [Parameter(ParameterSetName='CredentialFlowWithMsit', Mandatory)] - [Parameter(ParameterSetName='MsitHost', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UseConfigApiMsit}, - - [Parameter(ParameterSetName='CredentialFlowWithNpe', Mandatory)] - [Parameter(ParameterSetName='NpeHost', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UseConfigApiNpe}, - - [Parameter(ParameterSetName='CredentialFlowWithTdf', Mandatory)] - [Parameter(ParameterSetName='TDFHost', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UseConfigApiTDF}, - - [Parameter(ParameterSetName='AccessTokenFlow', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantGuid}, - - [Parameter(ParameterSetName='AccessTokenFlow', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AccessToken}, - - [Parameter(ParameterSetName='AccessTokenFlow', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserName} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - DefaultSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlow = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlowWithLocal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlowWithInt = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlowWithMsit = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlowWithNpe = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - CredentialFlowWithTdf = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - AccessTokenFlow = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - LocalHost = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - IntHost = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - MsitHost = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - NpeHost = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - TDFHost = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Connect-CsConfigApi'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Disable-CsOnlineSipDomain { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Domain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Disable-CsOnlineSipDomain'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Disable-CsTeamsShiftsConnectionErrorReport { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Disable', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Disable1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The UUID of a report instance - ${ErrorReportId}, - - [Parameter(ParameterSetName='DisableViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.DateTime] - # The timestamp indicating results should be after which date and time - ${After}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.DateTime] - # The timestamp indicating results should be before which date and time - ${Before}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The enum value of error code, human readable string defined in codebase - ${Code}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The UUID of a connector instance - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The name of the action of the controller or the name of the command - ${Operation}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The name of the executing function or procedure - ${Procedure}, - - [Parameter(ParameterSetName='Disable')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The UUID of a team in Graph - ${TeamId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Disable = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Disable-CsTeamsShiftsConnectionErrorReport_Disable'; - Disable1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Disable-CsTeamsShiftsConnectionErrorReport_Disable1'; - DisableViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Disable-CsTeamsShiftsConnectionErrorReport_DisableViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Disconnect-CsConfigApi { -[OutputType([System.Management.Automation.Runspaces.PSSession])] -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Disconnect-CsConfigApi'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Enable-CsOnlineSipDomain { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Domain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Enable-CsOnlineSipDomain'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Export-CsAcquiredPhoneNumber { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Export', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Property}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Export = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Export-CsAcquiredPhoneNumber_Export'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAiAgents { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentQueryResult])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Provider IDs to filter by. - # Can be a single ID or comma-separated IDs. - ${ProviderId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Filter by a specific agent ID. - ${AgentId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Filter by multiple agent IDs. - ${AgentIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Token for pagination. - ${ContinuationToken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Filter agents by display names that contain the specified string. - ${DisplayNameContains}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Filter agents by display name prefix. - ${DisplayNamePrefix}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Filter by Teams IVR enabled. - ${IsTeamsIvrEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Maximum number of results to return. - ${MaxResult}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Include total count of matching agents, regardless of pagination. - ${ShowCount}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAiAgents_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsApplicationAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationAccessPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsApplicationInstanceV2ApplicationInstanceAsync { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceAutoGenerated])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity. - # Object id or UPN. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationInstanceV2ApplicationInstanceAsync_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationInstanceV2ApplicationInstanceAsync_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsApplicationMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationMeetingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsApplicationMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoRestCommandInfo { -[OutputType([System.Management.Automation.Runspaces.PSSession])] -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Generic.Dictionary[System.String,System.Object]] - ${BoundParameters}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RemotingCommand}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigApi.Cmdlets.FlightingUtils+OverrideFlightMode] - ${FlightMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRestCommandInfo'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsBatchPolicyAssignmentOperation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISimpleBatchJobStatus], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBatchJobStatus])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Alias('OperationId')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The ID of a batch policy assignment operation. - ${Identity}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Option filter - ${Status}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBatchPolicyAssignmentOperation_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBatchPolicyAssignmentOperation_Get1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsBatchTeamsDeploymentStatus { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The Id of specific Orchestration - ${OrchestrationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBatchTeamsDeploymentStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBatchTeamsDeploymentStatus_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCallingLineIdentity { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallingLineIdentity'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallingLineIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCloudCallDataConnection { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCloudCallDataConnection'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCloudCallDataConnectionModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICloudCallDataConnection])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCloudCallDataConnectionModern_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCloudTenant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICloudTenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCloudTenant_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCloudUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICloudUser])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # UserId. - # Supports Guid. - ${UserId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCloudUser_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsDialPlan'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsEffectiveTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${CallerNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OU}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ResultSize}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsEffectiveTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsEffectiveTenantDialPlanModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantDialPlan])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CallerNumber}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsEffectiveTenantDialPlanModern_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsEffectiveTenantDialPlanModern_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsExportAcquiredPhoneNumberStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetExportAcquiredTelephoneNumbersResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${OrderId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsExportAcquiredPhoneNumberStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsExportAcquiredPhoneNumberStatus_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsExternalAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsExternalAccessPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsExternalAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsGroupPolicyAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGroupAssignment])] -[CmdletBinding(DefaultParameterSetName='Get2', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The ID of a group whose policy assignments will be returned. - ${GroupId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get2')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The policy type for which group policy assignments will be returned. - ${PolicyType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsGroupPolicyAssignment_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsGroupPolicyAssignment_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsGroupPolicyAssignment_Get2'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsHostingProvider { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${LocalStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsHostingProvider'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsHostingProvider'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsHybridTelephoneNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IHybridTelephoneNumber])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # An instance of hybrid telephone number. - ${TelephoneNumber}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsHybridTelephoneNumber_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsHybridTelephoneNumber_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsHybridTelephoneNumber_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsInboundBlockedNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsInboundBlockedNumberPattern'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsInboundBlockedNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsInboundExemptNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsInboundExemptNumberPattern'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsInboundExemptNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsInternalConfigApiModuleVersion { -[OutputType([System.String])] -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsInternalConfigApiModuleVersion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMasObjectChangelog { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMasChangelogItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Schemas to get from MAS DB, defaults to User, UserAdminAuthoredProps, UserAuthoredProps - ${SchemaName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Last X versions to fetch from MAS DB. - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMasObjectChangelog_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMeetingMigrationStatus { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.DateTime]] - ${EndTime}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MigrationType}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.DateTime]] - ${StartTime}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${State}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SummaryOnly}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationStatus'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the service number. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity of the bridge, optional parameter. - ${BridgeId}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # BridgeName, optional parameter. - ${BridgeName}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # City service number belongs to, optional parameter. - ${City}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Result size to send, optional parameter. - ${ResultSize}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcServiceNumber_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcServiceNumber_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcServiceNumber_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineApplicationInstance { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Identities}, - - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${ResultSize}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineApplicationInstanceDiagnosticData { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceDiagnosticDataResult])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Application instance object ID. - ${ObjectId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceDiagnosticData_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceDiagnosticData_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineApplicationInstanceV2 { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceAutoGenerated])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # identity. - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # resultSize. - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # skip. - ${Skip}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceV2_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineAudioConferencingRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioConferencingRoutingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioConferencingRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialinConferencingBridge { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the bridge. - ${Identity}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Name of the bridge. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingBridge_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingBridge_Get1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialinConferencingLanguagesSupported { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISupportedLanguage])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingLanguagesSupported_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialinConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialInConferencingServiceNumber { -[CmdletBinding(DefaultParameterSetName='FiltersParams', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='FiltersParams')] - [Parameter(ParameterSetName='TenantIdParams')] - [Parameter(ParameterSetName='TenantDomainParams')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter(ParameterSetName='FiltersParams')] - [Parameter(ParameterSetName='UniqueBridgeParams')] - [Parameter(ParameterSetName='TenantIdParams')] - [Parameter(ParameterSetName='TenantDomainParams')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ParameterSetName='FiltersParams')] - [Parameter(ParameterSetName='UniqueBridgeParams')] - [Parameter(ParameterSetName='TenantIdParams')] - [Parameter(ParameterSetName='TenantDomainParams')] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ResultSize}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='UniqueBridgeParams', Mandatory)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${BridgeId}, - - [Parameter(ParameterSetName='TenantDomainParams', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantDomain}, - - [Parameter(ParameterSetName='UniqueNumberParams', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - FiltersParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingServiceNumber'; - UniqueBridgeParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingServiceNumber'; - TenantIdParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingServiceNumber'; - TenantDomainParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingServiceNumber'; - UniqueNumberParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialinConferencingTenantConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingTenantConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialinConferencingTenantConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialInConferencingTenantSettings { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingTenantSettings'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialInConferencingTenantSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialOutPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialOutPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDialOutPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDirectoryTenant { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineDirectoryTenant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineEnhancedEmergencyServiceDisclaimer { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineEnhancedEmergencyServiceDisclaimer'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisCivicAddress { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AssignmentStatus}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${CivicAddressId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${NumberOfResultsToSkip}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PopulateNumberOfTelephoneNumbers}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PopulateNumberOfVoiceUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ResultSize}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisCivicAddressModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${City}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${NumberOfResultsToSkip}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${PopulateNumberOfTelephoneNumbers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${PopulateNumberOfVoiceUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddressModern_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisCivicAddressOnly { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddressOnly_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddressOnly_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisLocation { -[CmdletBinding(DefaultParameterSetName='GetByLocationID', PositionalBinding=$false)] -param( - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AssignmentStatus}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${NumberOfResultsToSkip}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PopulateNumberOfTelephoneNumbers}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PopulateNumberOfVoiceUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ResultSize}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='UseCivicAddressId', Mandatory, ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${CivicAddressId}, - - [Parameter(ParameterSetName='UseLocation', Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Location}, - - [Parameter(ParameterSetName='UseLocationId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${LocationId} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GetByLocationID = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocation'; - UseCivicAddressId = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocation'; - UseLocation = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocation'; - UseLocationId = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisLocationModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ILocationSchema])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${City}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Location}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${NumberOfResultsToSkip}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${PopulateNumberOfTelephoneNumbers}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${PopulateNumberOfVoiceUsers}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${ResultSize}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationModern_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationModern_Get1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisLocationOnly { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ILocationSchema])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationOnly_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationOnly_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationOnly_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisLocationOnly_GetViaIdentity1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisPort { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=1, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PortID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisPort'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisPortModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPortResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='Get2', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChassisId}, - - [Parameter(ParameterSetName='Get2', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PortId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisPortModern_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisPortModern_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisPortModern_Get2'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisSubnet { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter(Position=1, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Subnet}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisSubnetModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISubnetResponse], [System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get2', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Subnet}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSubnetModern_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSubnetModern_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSubnetModern_Get2'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSubnetModern_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisSwitch { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=1, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSwitch'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisSwitchModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISwitchResponse], [System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get2', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ChassisId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSwitchModern_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSwitchModern_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSwitchModern_Get2'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisSwitchModern_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisWirelessAccessPoint { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=1, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BSSID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisWirelessAccessPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineLisWirelessAccessPointModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWaPResponse], [System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get2', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Bssid}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisWirelessAccessPointModern_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisWirelessAccessPointModern_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisWirelessAccessPointModern_Get2'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisWirelessAccessPointModern_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlinePSTNGateway { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlinePSTNGateway'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlinePSTNGateway'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlinePstnUsage { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlinePstnUsage'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlinePstnUsage'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineSipDomain { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Domain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DomainStatus}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSipDomain'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineSipDomainModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantVerifiedSipDomain])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Option filter for domain - ${Domain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Option filter for status - ${DomainStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSipDomainModern_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineTelephoneNumber { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ActivationState}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Assigned}, - - [Parameter()] - [Alias('CityCode')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CapitalOrMajorCity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Country}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExpandLocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${InventoryType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${IsNotAssigned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumberGreaterThan}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumberLessThan}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumberStartsWith}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineTelephoneNumberCountry { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCountry], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumberCountry_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineTelephoneNumberType { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletPlan], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Country}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumberType_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumberType_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineUser { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter}, - - [Parameter(Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SkipUserPolicies}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SoftDeletedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.AccountType] - ${AccountType}, - - [Parameter()] - [Alias('Sort')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Properties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineVoicemailPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoicemailPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoicemailPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineVoiceRoute { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoiceRoute'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoiceRoute'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineVoiceRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoiceRoutingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoiceRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineVoiceUser { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${CivicAddressId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${EnterpriseVoiceStatus}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExpandLocation}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${First}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${GetFromAAD}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${GetPendingUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${NumberAssigned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${NumberNotAssigned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${PSTNConnectivity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SearchQuery}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Skip}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVoiceUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPersonalAttendantSettings { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPersonalAttendantSettings])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPersonalAttendantSettings_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPersonalAttendantSettings_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPhoneNumberAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletAcquiredTelephoneNumber])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ActivationState}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${AssignedPstnTargetId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${AssignmentCategory}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CapabilitiesContain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Filter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${IsoCountryCode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NetworkSiteId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PstnAssignmentStatus}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumberContain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumberGreaterThan}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumberLessThan}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumberStartsWith}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Top}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPhoneNumberAssignment_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPhoneNumberPolicyAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtPhoneNumberPolicyAssignmentCmdletResult])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PolicyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PolicyType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${ResultSize}, - - [Parameter()] - [Alias('Identity')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPhoneNumberPolicyAssignment_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPhoneNumberTag { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletTenantTagRecord])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPhoneNumberTag_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPhoneNumberTenantConfiguration { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetTenantConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPhoneNumberTenantConfiguration_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPolicyPackage { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsFormattedPackageSummary], [System.String], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsFormattedPackage])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The name of a specific policy package - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPolicyPackage_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPolicyPackage_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPolicyPackage_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsPrivacyConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPrivacyConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsPrivacyConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsRegionContext { -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsRegionContext'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsSdgBulkSignInRequestsSummary { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestsSummaryResponseItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSdgBulkSignInRequestsSummary_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsSdgBulkSignInRequestStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestStatusResult])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # batchid for which the status needs to be fetched - ${Batchid}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSdgBulkSignInRequestStatus_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsSessionState { -[OutputType([System.Management.Automation.Runspaces.PSSession])] -[CmdletBinding(PositionalBinding=$false)] -param() - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSessionState'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsAcsFederationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAcsFederationConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAcsFederationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsAppPermissionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAppPermissionPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAppPermissionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsAppSetupPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAppSetupPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAppSetupPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsAudioConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAudioConferencingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsAudioConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsCallHoldPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallHoldPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallHoldPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsCallParkPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallParkPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCallParkPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsChannelsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsChannelsPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsChannelsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsClientConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsClientConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsClientConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsComplianceRecordingApplication { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsComplianceRecordingApplication'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsComplianceRecordingApplication'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsComplianceRecordingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsComplianceRecordingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsComplianceRecordingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsCortanaPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCortanaPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsCortanaPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEducationAssignmentsAppPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEducationAssignmentsAppPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEducationAssignmentsAppPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEducationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEducationConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEducationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEmergencyCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEmergencyCallingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEmergencyCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEmergencyCallRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEmergencyCallRoutingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEmergencyCallRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEnhancedEncryptionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEnhancedEncryptionPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEnhancedEncryptionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsEventsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEventsPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsEventsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsFeedbackPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsFeedbackPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsFeedbackPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsFilesPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsFilesPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsFilesPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsGuestCallingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestCallingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestCallingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsGuestMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestMeetingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsGuestMessagingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestMessagingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsGuestMessagingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsIPPhonePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsIPPhonePolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsIPPhonePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMediaLoggingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMediaLoggingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMediaLoggingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMeetingBroadcastConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExposeSDNConfigurationJsonBlob}, - - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingBroadcastConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingBroadcastConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMeetingBroadcastPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingBroadcastPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingBroadcastPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMeetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMeetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMessagingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMessagingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMessagingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMigrationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMigrationConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMigrationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsMobilityPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMobilityPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsMobilityPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsNetworkRoamingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsNetworkRoamingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsNetworkRoamingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsNotificationAndFeedsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsNotificationAndFeedsPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsNotificationAndFeedsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsRoomVideoTeleConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsRoomVideoTeleConferencingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsRoomVideoTeleConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsAppPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsAppPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsAppPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionConnector { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionConnector_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionErrorReport { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorReportResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The UUID of a report instance - ${ErrorReportId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Activeness}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${After}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Before}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Code}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ConnectionId}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Operation}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Procedure}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TeamId}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionErrorReport_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionErrorReport_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionErrorReport_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionInstance_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionInstance_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionInstance_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionOperation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetOperationResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${OperationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionOperation_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionOperation_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionSyncResult { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetUserSyncResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Team Id - ${TeamId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionSyncResult_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionSyncResult_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionTeamMap { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamConnectResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionTeamMap_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionTeamMap_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionWfmTeam { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmTeam], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmTeamResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connection Id. - ${ConnectionId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Parameter(ParameterSetName='GetViaIdentity1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmTeam_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmTeam_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmTeam_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmTeam_GetViaIdentity1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnectionWfmUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserAutoGenerated], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Team Id - ${WfmTeamId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnectionWfmUser_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsConnection { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connection Id. - ${ConnectionId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnection_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnection_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsConnection_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsShiftsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsShiftsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsSurvivableBranchAppliance { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSurvivableBranchAppliance'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSurvivableBranchAppliance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsSurvivableBranchAppliancePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSurvivableBranchAppliancePolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSurvivableBranchAppliancePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsTargetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsTargetingPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsTargetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsTranslationRule { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsTranslationRule'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsTranslationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsUnassignedNumberTreatment { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUnassignedNumberTreatment'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUnassignedNumberTreatment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsUpdateManagementPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpdateManagementPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpdateManagementPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsUpgradeConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpgradeConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpgradeConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsUpgradePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpgradePolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsUpgradePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsVdiPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVdiPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVdiPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsVideoInteropServicePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVideoInteropServicePolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVideoInteropServicePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsVoiceApplicationsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVoiceApplicationsPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsVoiceApplicationsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsWorkLoadPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsWorkLoadPolicy'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsWorkLoadPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # A composite URI of a template. - ${OdataId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplate_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplate_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenant { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter}, - - [Parameter(Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ResultSize}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantApp { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantApp_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantBlockedCallingNumbers { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantBlockedCallingNumbers'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantBlockedCallingNumbers'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantDialPlan'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantFederationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantFederationConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantFederationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantLicensingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLicensingConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLicensingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantLocationPhoneNumberAsync { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The civic address Id. - ${CivicAddressId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The location Id. - ${LocationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationPhoneNumberAsync_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationPhoneNumberAsync_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationPhoneNumberAsync_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationPhoneNumberAsync_GetViaIdentity1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantLocationUserAsync { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Civic address id. - ${CivicAddressId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Location id. - ${LocationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationUserAsync_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationUserAsync_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationUserAsync_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantLocationUserAsync_GetViaIdentity1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantMigrationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantMigrationConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantMigrationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantNetworkConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkConfiguration'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantNetworkRegion { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkRegion'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkRegion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantNetworkSite { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkSite'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkSite'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantNetworkSubnet { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkSubnet'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantNetworkSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantPhoneAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Parameter(ParameterSetName='Get2', Mandatory)] - [Parameter(ParameterSetName='Get3', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Civic address id. - ${CivicAddressId}, - - [Parameter(ParameterSetName='Get2', Mandatory)] - [Parameter(ParameterSetName='Get3', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Location id. - ${LocationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity2', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity3', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_Get2'; - Get3 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_Get3'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_GetViaIdentity1'; - GetViaIdentity2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_GetViaIdentity2'; - GetViaIdentity3 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantPhoneAssignment_GetViaIdentity3'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantTrustedIPAddress { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantTrustedIPAddress'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantTrustedIPAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantUserAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Parameter(ParameterSetName='Get2', Mandatory)] - [Parameter(ParameterSetName='Get3', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Civic address id. - ${CivicAddressId}, - - [Parameter(ParameterSetName='Get2', Mandatory)] - [Parameter(ParameterSetName='Get3', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Location id. - ${LocationId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity2', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity3', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_Get1'; - Get2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_Get2'; - Get3 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_Get3'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_GetViaIdentity1'; - GetViaIdentity2 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_GetViaIdentity2'; - GetViaIdentity3 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantUserAssignment_GetViaIdentity3'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserApp { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - # Supports Guid. - ${UserId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Skip user policies in user response object - ${Skipuserpolicy}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserApp_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserApp_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserCallingSettings { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserRoutingSettings])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserCallingSettings_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserCallingSettings_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserPolicyAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEffectivePolicy])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('User')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The policy type for which group policy assignments will be returned. - ${PolicyType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserPolicyAssignment_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserPolicyAssignment_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserPolicyPackageRecommendation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsFormattedPackageRecommendation], [System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # The user that will receive policy package recommendations if provided - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserPolicyPackageRecommendation_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserPolicyPackage { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsFormattedPackageSummary], [System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # The user - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUserPolicyPackage_Get'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUssUserSettings { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # TenantId. - # Guid - ${TenantId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - # Guid - ${UserId}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Setting name - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUssUserSettings_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUssUserSettings_GetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsVideoInteropServiceProvider { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Identity', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='Filter')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsVideoInteropServiceProvider'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsVideoInteropServiceProvider'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsApplicationAccessPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsApplicationAccessPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsApplicationAccessPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsApplicationAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsCallingLineIdentity { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsCallingLineIdentity'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsCallingLineIdentity'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsCallingLineIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsDialoutPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsDialoutPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsDialoutPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsDialoutPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsExternalAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsExternalAccessPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsExternalAccessPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsExternalAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsOnlineAudioConferencingRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineAudioConferencingRoutingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineAudioConferencingRoutingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineAudioConferencingRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsOnlineVoicemailPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoicemailPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoicemailPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoicemailPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsOnlineVoiceRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoiceRoutingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoiceRoutingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsOnlineVoiceRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsAppPermissionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppPermissionPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppPermissionPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppPermissionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsAppSetupPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppSetupPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppSetupPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAppSetupPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsAudioConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAudioConferencingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAudioConferencingPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsAudioConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsCallHoldPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallHoldPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallHoldPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallHoldPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsCallParkPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallParkPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallParkPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCallParkPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsChannelsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsChannelsPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsChannelsPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsChannelsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsComplianceRecordingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsComplianceRecordingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsComplianceRecordingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsComplianceRecordingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsCortanaPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCortanaPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCortanaPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsCortanaPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsEmergencyCallingPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallingPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsEmergencyCallRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallRoutingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallRoutingPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEmergencyCallRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsEnhancedEncryptionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEnhancedEncryptionPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEnhancedEncryptionPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEnhancedEncryptionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsEventsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEventsPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEventsPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsEventsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsFeedbackPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFeedbackPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFeedbackPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFeedbackPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsFilesPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFilesPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFilesPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsFilesPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsIPPhonePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsIPPhonePolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsIPPhonePolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsIPPhonePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsMediaLoggingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMediaLoggingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMediaLoggingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMediaLoggingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsMeetingBroadcastPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingBroadcastPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingBroadcastPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingBroadcastPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsMeetingPolicy { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingPolicy'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMeetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsMessagingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMessagingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMessagingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMessagingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsMobilityPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMobilityPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMobilityPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsMobilityPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsRoomVideoTeleConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsRoomVideoTeleConferencingPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsRoomVideoTeleConferencingPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsRoomVideoTeleConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsShiftsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsShiftsPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsShiftsPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsShiftsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsSurvivableBranchAppliancePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsSurvivableBranchAppliancePolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsSurvivableBranchAppliancePolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsSurvivableBranchAppliancePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsUpdateManagementPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpdateManagementPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpdateManagementPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpdateManagementPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsUpgradePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MigrateMeetingsToTeams}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpgradePolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpgradePolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsUpgradePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsVdiPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVdiPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVdiPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVdiPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsVideoInteropServicePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVideoInteropServicePolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVideoInteropServicePolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVideoInteropServicePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsVoiceApplicationsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVoiceApplicationsPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVoiceApplicationsPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsVoiceApplicationsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsWorkLoadPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsWorkLoadPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsWorkLoadPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTeamsWorkLoadPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='GrantToTenant', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='GrantToTenant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantDialPlan'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantDialPlan'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsUserPolicyPackage { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsPostPackageResponse])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PackageName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicyPackage_GrantExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsCustomHandlerNgtprov { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='CustomExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Custom', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICustomHandlerPayload] - # Payload for custom Handler - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CustomExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Custom Handler Fully Qualified Name - ${HandlerFullyQualifiedName}, - - [Parameter(ParameterSetName='CustomExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # PayLoad for Custom Handler - ${Payload}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Custom = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsCustomHandlerNgtprov_Custom'; - CustomExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsCustomHandlerNgtprov_CustomExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalBeginmove { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMigrationData])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBeginMoveRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MajorVersion}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalBeginmove_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalBeginmove_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalCompletemove { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICompleteMoveRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MajorVersion}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalCompletemove_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalCompletemove_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalGetpolicy { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IKeyValuePairStringItem])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserSipUriRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalGetpolicy_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalGetpolicy_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalPsTelemetry { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TeamsModuleAuthTypeUsed} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalPsTelemetry'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalRehomeuser { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRehomeUserRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MoveToCloud}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckCpc}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckEnterpriseVoice}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataMoveToTeam}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalRehomeuser_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalRehomeuser_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalRollback { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserSipUriRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalRollback_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalRollback_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalSelfhostLogger { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LogLevel}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Message} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalSelfhostLogger'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalSetmovedresourcedata { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISetMovedResourceDataRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MajorVersion}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ResourceDataDatastr}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckCpc}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckEnterpriseVoice}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataMoveToTeam}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalSetmovedresourcedata_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalSetmovedresourcedata_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalTelemetryRelayApp { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITelemetryRelayResponseSessionConfiguration], [System.String])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectPowershellTelemetry] - # The version numbers for the relevant powershell modules, possibly installed on the machine. - # NOTE: This definition must be manually kept same as defined in - # src\Microsoft.TeamsCmdlets.PowerShell.Connect\ConnectMicrosoftTeams.cs of the repository - # https://domoreexp.visualstudio.com/DefaultCollection/Teamspace/_git/teams-powershellcmdlet. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the ConfigApiPowershell module. - ${ConfigApiPowershellModuleVersion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the MicrosoftTeams powershell module. - ${MicrosoftTeamsPsVersion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the Skype For Business Online Connector. - ${SfBOnlineConnectorPsversion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets Authentication type used by MicrosoftTeams module. - ${TeamsModuleAuthTypeUsed}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalTelemetryRelayApp_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalTelemetryRelayApp_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalTelemetryRelay { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITelemetryRelayResponseSessionConfiguration], [System.String])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectPowershellTelemetry] - # The version numbers for the relevant powershell modules, possibly installed on the machine. - # NOTE: This definition must be manually kept same as defined in - # src\Microsoft.TeamsCmdlets.PowerShell.Connect\ConnectMicrosoftTeams.cs of the repository - # https://domoreexp.visualstudio.com/DefaultCollection/Teamspace/_git/teams-powershellcmdlet. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the ConfigApiPowershell module. - ${ConfigApiPowershellModuleVersion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the MicrosoftTeams powershell module. - ${MicrosoftTeamsPsVersion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets the Version of the Skype For Business Online Connector. - ${SfBOnlineConnectorPsversion}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or Sets Authentication type used by MicrosoftTeams module. - ${TeamsModuleAuthTypeUsed}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalTelemetryRelay_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalTelemetryRelay_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsInternalValidateuser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDeploymentInfo])] -[CmdletBinding(DefaultParameterSetName='InternalExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Internal', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IValidateUserRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CmdletVersion}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${Force}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${LocalDeploymentInfoMajorVersion}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocalDeploymentInfoPresenceFqdn}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocalDeploymentInfoRegistrarFqdn}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MoveToCloud}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckCpc}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataCheckEnterpriseVoice}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TeamDataMoveToTeam}, - - [Parameter(ParameterSetName='InternalExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserSipUri}, - - [Parameter(ParameterSetName='InternalExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocalDeploymentInfoHostingProviderFqdn}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Internal = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalValidateuser_Internal'; - InternalExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsInternalValidateuser_InternalExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsRehomeuser { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Post', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Post', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - ${UserId}, - - [Parameter(ParameterSetName='PostViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsRehomeuser_Post'; - PostViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsRehomeuser_PostViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Move-CsAvsTenantPartition { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPartitionMovementResponse])] -[CmdletBinding(DefaultParameterSetName='MoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Move', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPartitionMovementRequest] - # Payload for AVS Partition Movement Request - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Tenant ID - ${BasePartitionKey}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # Batch Size - ${BatchSize}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Container Name - ${ContainerName}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # Number of Documents to be moved from Source to Target partition. - ${NumberOfDocuments}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # Percentage of Documents to be moved from Source to Target partition. - ${PercentageOfPartition}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Source Partition from where the documents are to be moved. - # Partition key is of format 'tenantId_suffix'. - ${SourcePartitionKey}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Target Partition to where the documents are going to be moved. - # Partition key is of format 'tenantId_suffix'. - ${TargetPartitionKey}, - - [Parameter(ParameterSetName='MoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Workload - ${Workload}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Move = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsAvsTenantPartition_Move'; - MoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsAvsTenantPartition_MoveExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Move-CsInternalHelper { -[OutputType([System.Management.Automation.PSObject])] -[CmdletBinding(DefaultParameterSetName='Rehome', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ActionType}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserSipUri}, - - [Parameter(ParameterSetName='Validate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CmdletVersion}, - - [Parameter(ParameterSetName='Validate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocalDeploymentInfoMajorVersion}, - - [Parameter(ParameterSetName='Validate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocalDeploymentInfoPresenceFqdn}, - - [Parameter(ParameterSetName='Validate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocalDeploymentInfoRegistrarFqdn}, - - [Parameter(ParameterSetName='Validate')] - [Parameter(ParameterSetName='Rehome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${MoveToCloud}, - - [Parameter(ParameterSetName='Validate')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ParameterSetName='Validate')] - [Parameter(ParameterSetName='MoveResourcedata')] - [Parameter(ParameterSetName='Rehome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${TeamDataCheckCpc}, - - [Parameter(ParameterSetName='Validate')] - [Parameter(ParameterSetName='MoveResourcedata')] - [Parameter(ParameterSetName='Rehome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${TeamDataCheckEnterpriseVoice}, - - [Parameter(ParameterSetName='Validate')] - [Parameter(ParameterSetName='MoveResourcedata')] - [Parameter(ParameterSetName='Rehome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${TeamDataMoveToTeam}, - - [Parameter(ParameterSetName='Validate')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocalDeploymentInfoHostingProviderFqdn}, - - [Parameter(ParameterSetName='MoveResourcedata', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ResourceData}, - - [Parameter(ParameterSetName='MoveResourcedata', Mandatory)] - [Parameter(ParameterSetName='BeginAndCompleteMove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MajorVersion} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Validate = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsInternalHelper'; - MoveResourcedata = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsInternalHelper'; - Rehome = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsInternalHelper'; - BeginAndCompleteMove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Move-CsInternalHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsApplicationAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AppIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsApplicationAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsBatchPolicyAssignmentOperation { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # An optional name for the batch assignment operation. - ${OperationName}, - - [Parameter(Mandatory)] - [Alias('User')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBatchAssignBodyAdditionalParameters]))] - [System.Collections.Hashtable] - # Dictionary of - ${AdditionalParameters}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchPolicyAssignmentOperation_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsBatchPolicyPackageAssignmentOperation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsBatchPostPackageResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PackageName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchPolicyPackageAssignmentOperation_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsCallingLineIdentity { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${BlockIncomingPstnCallerID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallingIDSubstitute}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ResourceAccount}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ServiceNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCallingLineIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsCloudCallDataConnection { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCloudCallDataConnection'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsCloudCallDataConnectionModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICloudCallDataConnection])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCloudCallDataConnectionModern_New'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeAllowAllKnownDomains { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeAllowAllKnownDomains'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeAllowAllKnownDomainsHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeAllowAllKnownDomainsHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeAllowList { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedDomain}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeAllowList'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeAllowListHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeAllowListHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeDomainPattern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Domain}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeDomainPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsEdgeDomainPatternHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsEdgeDomainPatternHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsExternalAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableAcsFederationAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableFederationAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOutsideAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnablePublicCloudAudioVideoAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTeamsConsumerAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTeamsConsumerInbound}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableXmppAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RestrictTeamsConsumerAccessToExternalUserProfiles}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsExternalAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsGroupPolicyAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The ID of a batch policy assignment operation. - ${GroupId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The policy type for which group policy assignments will be returned. - ${PolicyType}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Rank}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsGroupPolicyAssignment_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsHybridTelephoneNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IHybridTelephoneNumber])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # An instance of hybrid telephone number. - ${TelephoneNumber}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsHybridTelephoneNumber_New'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsHybridTelephoneNumber_NewViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsInboundBlockedNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${ResourceAccount}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsInboundBlockedNumberPattern'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsInboundBlockedNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsInboundExemptNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsInboundExemptNumberPattern'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsInboundExemptNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineApplicationInstance { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserPrincipalName}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${ApplicationId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DisplayName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineApplicationInstanceV2 { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceAutoGenerated])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceCreateRequest] - # The request to create an application instance. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Application ID. - ${ApplicationId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Display name. - ${DisplayName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # User principal name. - ${UserPrincipalName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceV2_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceV2_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineAudioConferencingRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RouteType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineAudioConferencingRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineLisCivicAddress { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CityAlias}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyTaxId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Confidence}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Elin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumber}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumberSuffix}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsAzureMapValidationRequired}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Latitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Longitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostalCode}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostDirectional}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreDirectional}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StateOrProvince}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetName}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetSuffix}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisCivicAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineLisCivicAddressModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.INewCivicAddress] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${City}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CityAlias}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyTaxId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Confidence}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Elin}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumberSuffix}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Latitude}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Longitude}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostDirectional}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostalCode}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PreDirectional}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StateOrProvince}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetSuffix}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisCivicAddressModern_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisCivicAddressModern_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineLisLocation { -[CmdletBinding(DefaultParameterSetName='ExistingCivicAddress', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Location}, - - [Parameter(ParameterSetName='ExistingCivicAddress', Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${CivicAddressId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CityAlias}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Alias('Name')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyTaxId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Confidence}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Elin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumberSuffix}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Latitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Longitude}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='CreateCivicAddress', Mandatory, ValueFromPipelineByPropertyName)] - [Alias('Country')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumber}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostalCode}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostDirectional}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreDirectional}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Alias('State')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StateOrProvince}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetName}, - - [Parameter(ParameterSetName='CreateCivicAddress', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetSuffix} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - ExistingCivicAddress = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisLocation'; - CreateCivicAddress = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisLocation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineLisLocationModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ILocationSchema])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.INewLocation] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${City}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CityAlias}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyTaxId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Confidence}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountyOrDistrict}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Elin}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumberSuffix}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsDefault}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Latitude}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Location}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Longitude}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PartnerId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostDirectional}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostalCode}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PreDirectional}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StateOrProvince}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetSuffix}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisLocationModern_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineLisLocationModern_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlinePSTNGateway { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${SipSignalingPort}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BypassMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${FailoverResponseCodes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${FailoverTimeSeconds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ForwardCallHistory}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ForwardPai}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${GatewayLbrEnabledUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GatewaySiteId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${GatewaySiteLbrEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundPstnNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundTeamsNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAddressVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${MaxConcurrentSessions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MediaBypass}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MediaRelayRoutingLocationOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OutboundPstnNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OutboundTeamsNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PidfLoSupported}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ProxySbc}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SendSipOptions}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Fqdn} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlinePSTNGateway'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlinePSTNGateway'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineTelephoneNumberOrder { -[OutputType([System.String], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletCreateSearchOrderRequest] - # CmdletCreateSearchOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Telephone number country. - ${Country}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Search order description. - ${Description}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Search order name. - ${Name}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Telephone number type. - ${NumberType}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Number of telephone numbers to acquire. - ${Quantity}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Telephone number area code for AreaCodeSelection search. - ${AreaCode}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # CivicAddressId when RequiresCivicAddress is true. - ${CivicAddressId}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Telephone number prefix for Prefix search. - ${NumberPrefix}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Create = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberOrder_Create'; - CreateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberOrder_CreateExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineVoicemailPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableEditingCallAnswerRulesSetting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscriptionProfanityMasking}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscriptionTranslation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.TimeSpan] - ${MaximumRecordingLength}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PrimarySystemPromptLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SecondarySystemPromptLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShareData}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineVoicemailPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineVoiceRoute { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeSourcePhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NumberPattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnGatewayList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Priority}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineVoiceRoute'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineVoiceRoute'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineVoiceRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RouteType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineVoiceRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateAcquiredCapabilitiesRequest] - # TenantTnUpdateAcquiredCapabilitiesRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AcquiredCapabilitiesToAdd}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AcquiredCapabilitiesToRemove}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PhoneNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateDrNumberAcquiredCapabilitiesOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberBulkUpdateLocationIdOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateLocationIdRequest] - # TenantTnUpdateLocationIdRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PhoneNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateLocationIdOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateLocationIdOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateNetworkSiteIdRequest] - # TenantTnUpdateNetworkSiteIdRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${NetworkSiteId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PhoneNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateNetworkSiteIdOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateReverseNumberLookupRequest] - # TenantTnUpdateReverseNumberLookupRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PhoneNumbers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ReverseNumberLookupToAdd}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ReverseNumberLookupToRemove}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateReverseNumberLookupOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberBulkUpdateTagsOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateOrderResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtTenantTnUpdateTagsRequest] - # TenantTnUpdateTagsRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PhoneNumbers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagsToAdd}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagsToRemove}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateTagsOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberBulkUpdateTagsOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberUsageChangeOrder { -[OutputType([System.String], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletPhoneNumberUsageChangeOrderRequest] - # CmdletPhoneNumberUsageChangeOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${TelephoneNumbers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Usage}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberUsageChangeOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsPhoneNumberUsageChangeOrder_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsSdgDeviceTaggingRequest { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgDeviceTaggingResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Target Region where the device is located - ${TargetRegion}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgDeviceTaggingRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HardwareId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${IcmId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OceUserName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SdhRegion}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSdgDeviceTaggingRequest_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSdgDeviceTaggingRequest_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsSdgDeviceTransferRequest { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Device id of the device that is to be transferred - ${SdhDeviceId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Source Region from where the device is to be tranferred - ${SourceRegion}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Target Region where the device is to be tranferred - ${TargetRegion}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSdgDeviceTransferRequest_New'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsAudioConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTollFreeDialin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${MeetingInvitePhoneNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsAudioConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsCallHoldPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsCallHoldPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallForwardingToPhone}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallForwardingToUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallGroups}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowCallRedirect}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCloudRecordingForCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowDelegation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSIPDevicesCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTranscriptionForCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowVoicemail}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWebPSTNCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoAnswerEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BusyOnBusyEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${CallRecordingExpirationDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveCaptionsEnabledTypeForCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MusicOnHoldEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PopoutAppPathForIncomingPstnCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PopoutForIncomingPstnCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PreventTollBypass}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SpamFilteringEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsCallParkPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallPark}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ParkTimeoutSeconds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${PickupRangeEnd}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${PickupRangeStart}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsCallParkPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsChannelsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowChannelSharingToExternalUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOrgWideTeamCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateChannelCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateTeamDiscovery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSharedChannelCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserToParticipateInExternalSharedChannel}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsChannelsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsComplianceRecordingApplication { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ComplianceRecordingPairedApplications}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ConcurrentInvitationCount}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Priority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredBeforeCallEstablishment}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredBeforeMeetingJoin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredDuringCall}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredDuringMeeting}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Parent} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsComplianceRecordingApplication'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsComplianceRecordingApplication'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsComplianceRecordingPairedApplication { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsComplianceRecordingPairedApplication'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsComplianceRecordingPairedApplicationHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsComplianceRecordingPairedApplicationHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsComplianceRecordingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ComplianceRecordingApplications}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableComplianceRecordingAudioNotificationForCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${WarnUserOnRemoval}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsComplianceRecordingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsCortanaPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaAmbientListening}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaInContextSuggestions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaVoiceInvocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CortanaVoiceInvocationMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsCortanaPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEmergencyCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EnhancedEmergencyServiceDisclaimer}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ExternalLocationLookupMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NotificationDialOutNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NotificationGroup}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NotificationMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEmergencyCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEmergencyCallRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEnhancedEmergencyServices}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${EmergencyNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEmergencyCallRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEmergencyNumber { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyDialMask}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyDialString}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OnlinePSTNUsage}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEmergencyNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEmergencyNumberHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEmergencyNumberHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEnhancedEncryptionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallingEndtoEndEncryptionEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingEndToEndEncryption}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEnhancedEncryptionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsEventsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowWebinars}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EventAccessType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ForceStreamingAttendeeMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsEventsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsFeedbackPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEmailCollection}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowLogCollection}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowScreenshotCollection}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveSurveysMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserInitiatedMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsFeedbackPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsFilesPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NativeFileEntryPoints}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SPChannelFilesTab}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsFilesPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsIPPhonePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowBetterTogether}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowHomeScreen}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowHotDesking}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${HotDeskingIdleTimeoutInMinutes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SearchOnCommonAreaPhoneMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SignInMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsIPPhonePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsMeetingBroadcastPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBroadcastScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBroadcastTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BroadcastAttendeeVisibilityMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BroadcastRecordingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsMeetingBroadcastPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsMeetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnnotations}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToDialOut}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToJoinMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToStartMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAvatarsInGallery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBreakoutRooms}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCarbonSummary}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowCartCaptionsScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowChannelMeetingScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCloudRecording}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowDocumentCollaboration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowedStreamingMediaInput}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowEngagementReport}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowExternalParticipantGiveRequestControl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowImmersiveView}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPAudio}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingCoach}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingReactions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingRegistration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetNow}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowNDIStreaming}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowNetworkConfigurationSettingsLookup}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOrganizersToOverrideLobbySettings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOutlookAddIn}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowParticipantGiveRequestControl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPowerPointSharing}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateMeetingScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateMeetNow}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPSTNUsersToBypassLobby}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowRecordingStorageOutsideRegion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowScreenContentDigitization}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSharedNotes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowTasksFromTranscript}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowTrackingInReport}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowUserToJoinExternalMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWatermarkForCameraVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWatermarkForScreenSharing}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWhiteboard}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoAdmittedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BlockedAnonymousJoinClientTypes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelRecordingDownload}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DesignatedPresenterRoleMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EnrollUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${InfoShownInReportMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAudioMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPVideoMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveCaptionsEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveInterpretationEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveStreamingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${MediaBitRateKb}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingChatEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingInviteLanguages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${NewMeetingRecordingExpirationDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreferredMeetingProviderForIslandsMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${QnAEngagementMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RecordingStorageMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RoomAttributeUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RoomPeopleNameUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScreenSharingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SpeakerAttributionMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreamingAttendeeMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TeamsCameraFarEndPTZMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${VideoFiltersMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WhoCanRegister}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsMeetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsMessagingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCommunicationComplianceEndUserReporting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowFluidCollaborate}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowFullChatPermissionUserToDeleteAnyMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGiphy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGiphyDisplay}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowImmersiveReader}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMemes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOwnerDeleteMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPasteInternetImage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPriorityMessages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowRemoveUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSmartCompose}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSmartReply}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowStickers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUrlPreviews}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserEditMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserTranslation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowVideoMessages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AudioMessageEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelsInChatListEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChatPermissionRole}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GiphyRatingType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReadReceiptsEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsMessagingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsMobilityPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAudioMobileMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPVideoMobileMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MobileDialerPreference}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsMobilityPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsNetworkRoamingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${MediaBitRateKb}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsNetworkRoamingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsRoomVideoTeleConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AreaCode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PlaceExternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PlaceInternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveExternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveInternalCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsRoomVideoTeleConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsShiftsConnectionBatchTeamMap { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamConnectsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Create', Mandatory)] - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectAadWfmTeamsRequest] - # Connect Aad Wfm Teams Request - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMapping[]] - # The team mappings. - # To construct, see NOTES section for TEAMMAPPING properties and create a hash table. - ${TeamMapping}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Create = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionBatchTeamMap_Create'; - CreateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionBatchTeamMap_CreateExpanded'; - CreateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionBatchTeamMap_CreateViaIdentity'; - CreateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionBatchTeamMap_CreateViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsShiftsConnectionInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceRequest] - # Connector Instance Request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The WFM connection id. - ${ConnectionId}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # The list of connector admin email addresses. - ${ConnectorAdminEmail}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The designated actor id that App acts as for Shifts Graph Api calls. - ${DesignatedActorId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance name. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM Connector Instance. - ${State}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # The sync frequency in minutes. - ${SyncFrequencyInMin}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OfferShiftRequest entity. - ${SyncScenarioOfferShiftRequest}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShift entity. - ${SyncScenarioOpenShift}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShiftRequest entity. - ${SyncScenarioOpenShiftRequest}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The Shift entity. - ${SyncScenarioShift}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The SwapRequest entity. - ${SyncScenarioSwapRequest}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeCard entity. - ${SyncScenarioTimeCard}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOff entity. - ${SyncScenarioTimeOff}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOffRequest entity. - ${SyncScenarioTimeOffRequest}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The UserShiftPreferences entity. - ${SyncScenarioUserShiftPreference}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionInstance_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnectionInstance_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsShiftsConnection { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionRequest] - # WFM Connection Base Request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector id. - ${ConnectorId}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionRequestConnectorSpecificSettings] - # The connector settings. - ${ConnectorSpecificSettings}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object name. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM connection. - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnection_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsConnection_NewExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsShiftsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${AccessGracePeriodMinutes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AccessType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableScheduleOwnerPermissions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableShiftPresence}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeFrequency}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeMessageCustom}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeMessageType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsShiftsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsSurvivableBranchAppliance { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Site}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Fqdn} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsSurvivableBranchAppliance'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsSurvivableBranchAppliance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsSurvivableBranchAppliancePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${BranchApplianceFqdns}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsSurvivableBranchAppliancePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsTranslationRule { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Translation}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsTranslationRule'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsTranslationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsUnassignedNumberTreatment { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Target}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${TreatmentPriority}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TreatmentId} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsUnassignedNumberTreatment'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsUnassignedNumberTreatment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsUpdateManagementPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowManagedUpdates}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPreview}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowPublicPreview}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${UpdateDayOfWeek}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UpdateTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - ${UpdateTimeOfDay}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsUpdateManagementPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsVdiPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableAudioVideoInCallsAndMeetings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableCallsAndMeetings}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsVdiPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsVoiceApplicationsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantAfterHoursGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantAfterHoursRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidayGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidayRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidaysChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantLanguageChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantTimeZoneChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueAgentOptChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueConferenceModeChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueLanguageChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueMembershipChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueMusicOnHoldChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueNoAgentsRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOptOutChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOverflowRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOverflowSharedVoicemailGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueuePresenceBasedRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueRoutingMethodChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueTimeoutRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueTimeoutSharedVoicemailGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueWelcomeGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallQueueAgentMonitorMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallQueueAgentMonitorNotificationMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsVoiceApplicationsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamsWorkLoadPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMessaging}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMessagingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamsWorkLoadPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NormalizationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SimpleName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTenantNetworkRegion { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BypassID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CentralSite}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRegionID} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkRegion'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkRegion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTenantNetworkSite { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyCallingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyCallRoutingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableLocationBasedRouting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocationPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRegionID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRoamingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SiteAddress}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkSiteID} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkSite'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkSite'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTenantNetworkSubnet { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${MaskBits}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkSiteID}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SubnetID} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkSubnet'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantNetworkSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTenantTrustedIPAddress { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${MaskBits}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAddress} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantTrustedIPAddress'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantTrustedIPAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsVideoInteropServiceProvider { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantKey}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AadApplicationIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAppGuestJoinsAsAuthenticated}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${InstructionUri}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsVideoInteropServiceProvider'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsVideoInteropServiceProvider'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsVoiceNormalizationRule { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${InMemory}, - - [Parameter(ParameterSetName='Identity', Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsInternalExtension}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Priority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Translation}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(ParameterSetName='ParentAndRelativeKey', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Parent} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsVoiceNormalizationRule'; - ParentAndRelativeKey = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsVoiceNormalizationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsVoiceNormalizationRuleHelper { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsVoiceNormalizationRuleHelper'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Register-CsOnlineDialInConferencingServiceNumber { -[CmdletBinding(DefaultParameterSetName='UniqueNumberParams', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='UniqueNumberParams', Position=0, Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantDomain}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='InstanceParams', Position=0, Mandatory, ValueFromPipeline)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UniqueNumberParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOnlineDialInConferencingServiceNumber'; - InstanceParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOnlineDialInConferencingServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsApplicationAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsApplicationAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsCallingLineIdentity { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCallingLineIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The name of a policy package - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCustomPolicyPackage_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCustomPolicyPackage_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsExternalAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsExternalAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsGroupPolicyAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The ID of the group from which the assignment will be removed. - ${GroupId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The policy type for which group policy assignments will be returned. - ${PolicyType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsGroupPolicyAssignment_Remove'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsHybridTelephoneNumber { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # hybrid telephone number. - ${TelephoneNumber}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsHybridTelephoneNumber_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsHybridTelephoneNumber_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsInboundBlockedNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsInboundBlockedNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsInboundExemptNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsInboundExemptNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineAudioConferencingRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineAudioConferencingRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineDialInConferencingTenantSettings { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineDialInConferencingTenantSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisCivicAddress { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${CivicAddressId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisCivicAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisCivicAddressModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisCivicAddressModern_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisCivicAddressModern_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisLocation { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisLocation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisLocationModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisLocationModern_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisLocationModern_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisPort { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PortID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisPort'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisPortModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChassisId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PortId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisPortModern_Remove'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisSubnet { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Subnet}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisSubnetModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Subnet}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSubnetModern_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSubnetModern_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisSwitch { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSwitch'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisSwitchModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ChassisId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSwitchModern_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisSwitchModern_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisWirelessAccessPoint { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BSSID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisWirelessAccessPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineLisWirelessAccessPointModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Bssid}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisWirelessAccessPointModern_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineLisWirelessAccessPointModern_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlinePSTNGateway { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlinePSTNGateway'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineTelephoneNumber { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${TelephoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineTelephoneNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineVoicemailPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineVoicemailPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineVoiceRoute { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineVoiceRoute'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineVoiceRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineVoiceRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsPhoneNumberAssignmentBlock { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberAssignmentBlock_Remove'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsPhoneNumberSmsActivation { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletCapabilityUpdateRequest] - # CmdletCapabilityUpdateRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberSmsActivation_Remove'; - RemoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberSmsActivation_RemoveExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsPhoneNumberTag { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Tag}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberTag_Remove'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsPhoneNumberTenantConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowOnPremToOnlineMigration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentEmailEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${UnassignmentEmailEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberTenantConfiguration_Remove'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsAppPermissionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsAppPermissionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsAppSetupPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsAppSetupPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsAudioConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsAudioConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsCallHoldPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsCallHoldPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsCallParkPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsCallParkPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsChannelsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsChannelsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsComplianceRecordingApplication { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsComplianceRecordingApplication'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsComplianceRecordingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsComplianceRecordingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsCortanaPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsCortanaPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsEmergencyCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsEmergencyCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsEmergencyCallRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsEmergencyCallRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsEnhancedEncryptionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsEnhancedEncryptionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsEventsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsEventsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsFeedbackPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsFeedbackPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsFilesPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsFilesPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsIPPhonePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsIPPhonePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsMeetingBroadcastPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsMeetingBroadcastPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsMeetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsMeetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsMessagingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsMessagingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsMobilityPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsMobilityPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsNetworkRoamingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsNetworkRoamingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsNotificationAndFeedsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsNotificationAndFeedsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsRoomVideoTeleConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsRoomVideoTeleConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsShiftsConnectionInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnectionInstance_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnectionInstance_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsShiftsConnectionTeamMap { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Team Id - ${TeamId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnectionTeamMap_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnectionTeamMap_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsShiftsConnection { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connection Id. - ${ConnectionId}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnection_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsConnection_RemoveViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsShiftsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsShiftsScheduleRecord { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IClearScheduleRequest] - # The clear schedule request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether [clear scheduling group]. - ${ClearSchedulingGroup}, - - [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the entity types. - ${EntityType}, - - [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team identifier. - ${TeamId}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DateRangeEndDate}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DateRangeStartDate}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DesignatedActorId}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets the time zone. - ${TimeZone}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsScheduleRecord_Remove'; - RemoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsShiftsScheduleRecord_RemoveExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsSurvivableBranchAppliance { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsSurvivableBranchAppliance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsSurvivableBranchAppliancePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsSurvivableBranchAppliancePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsTargetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsTargetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsTranslationRule { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsTranslationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsUnassignedNumberTreatment { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsUnassignedNumberTreatment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsUpdateManagementPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsUpdateManagementPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsVdiPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsVdiPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsVoiceApplicationsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsVoiceApplicationsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamsWorkLoadPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamsWorkLoadPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # A composite URI of a template. - ${OdataId}, - - [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Delete = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamTemplate_Delete'; - DeleteViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTeamTemplate_DeleteViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTenantNetworkRegion { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTenantNetworkRegion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTenantNetworkSite { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTenantNetworkSite'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTenantNetworkSubnet { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTenantNetworkSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTenantTrustedIPAddress { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTenantTrustedIPAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsUserLicenseGracePeriod { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='RemoveViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Remove', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserDelicensingAccelerationPatch] - # UserDelicensingAccelerationPatch - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Parameter(ParameterSetName='RemoveViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Action to take - ${Action}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [Parameter(ParameterSetName='RemoveViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # List of capabilities - ${Capability}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserLicenseGracePeriod_Remove'; - RemoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserLicenseGracePeriod_RemoveExpanded'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserLicenseGracePeriod_RemoveViaIdentity'; - RemoveViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserLicenseGracePeriod_RemoveViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsVideoInteropServiceProvider { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsVideoInteropServiceProvider'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Search-CsApplicationInstanceV2ApplicationInstanceAsync { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceSearchResults])] -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # keyword. - ${Keyword}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # pageSize. - ${PageSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # skipToken. - ${SkipToken}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Search-CsApplicationInstanceV2ApplicationInstanceAsync_Search'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsApplicationAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AppIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsApplicationAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsApplicationMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowRemoveParticipantAppIds}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsApplicationMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsCallingLineIdentity { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${BlockIncomingPstnCallerID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallingIDSubstitute}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableUserOverride}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ResourceAccount}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ServiceNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallingLineIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsExternalAccessPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableAcsFederationAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableFederationAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOutsideAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnablePublicCloudAudioVideoAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTeamsConsumerAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTeamsConsumerInbound}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableXmppAccess}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RestrictTeamsConsumerAccessToExternalUserProfiles}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsExternalAccessPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsGroupPolicyAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The ID of a group whose policy assignments will be returned. - ${GroupId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The policy type for which group policy assignments will be returned. - ${PolicyType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Rank}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsGroupPolicyAssignment_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsInboundBlockedNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${ResourceAccount}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsInboundBlockedNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsInboundExemptNumberPattern { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsInboundExemptNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOCEContext { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${AppId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantDomain}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${TenantId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.CmdletHostContract.DeploymentConfiguration+ConfigApiEnvironment] - ${Environment}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # This can be used to provide optional headers. - ${Headers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsSystemTenant} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOCEContext'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOdcUserDefaultNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUsersDefaultNumberUpdateRequest] - # Update all users default service number. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets AreaOrState filter for user query. - ${AreaOrState}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge id to use for service number change. - ${BridgeId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge name to use for service number change. - ${BridgeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CapitalOrMajorCity filter for user query. - ${CapitalOrMajorCity}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CountryOrRegion filter for user query. - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge FromNumber to be updated. - ${FromNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets number inventory type Toll or TollFreee. - ${NumberType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether or not users who are modified by this operation should have their existing conferences rescheduled. - ${RescheduleMeeting}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge ToNumber to be set as default number. - ${ToNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUserDefaultNumber_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUserDefaultNumber_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineApplicationInstance { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${ApplicationId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DisplayName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OnpremPhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${AcsResourceId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineApplicationInstanceV2 { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceAutoGenerated])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Application instance identity. - # Support GUID or User principal name. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceUpdateRequest] - # The request to update an application instance. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # ACS resource ID. - ${AcsResourceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Application ID. - ${ApplicationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Display name. - ${DisplayName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Onprem phone number. - ${OnpremPhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineApplicationInstanceV2_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineApplicationInstanceV2_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineApplicationInstanceV2_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineApplicationInstanceV2_SetViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineAudioConferencingRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RouteType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineAudioConferencingRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineDialInConferencingServiceNumber { -[CmdletBinding(DefaultParameterSetName='UniqueNumberParams', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='UniqueNumberParams', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BotType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PrimaryLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RestoreDefaultLanguages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${SecondaryLanguages}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='InstanceParams', Position=0, Mandatory, ValueFromPipeline)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UniqueNumberParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineDialInConferencingServiceNumber'; - InstanceParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineDialInConferencingServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineDialInConferencingTenantSettings { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedDialOutExternalDomains}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowFederatedUsersToDialOutToSelf}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowFederatedUsersToDialOutToThirdParty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPSTNOnlyMeetingsByDefault}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AutomaticallyMigrateUserMeetings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AutomaticallyReplaceAcpProvider}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AutomaticallySendEmailsToUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableDialOutJoinConfirmation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableEntryExitNotifications}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableNameRecording}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EntryExitAnnouncementsType}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IncludeTollFreeNumberInMeetingInvites}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MaskPstnNumbersType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DynamicCallerIdMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MigrateServiceNumbersOnCrossForestMove}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${PinLength}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SendEmailFromAddress}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SendEmailFromDisplayName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SendEmailFromOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${UseUniqueConferenceIds}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineDialInConferencingTenantSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineDialinConferencingUserDefaultNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Continuation / Pagination marker. - # Use the value from nextlink property in response. - ${Skiptoken}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUsersDefaultNumberUpdateRequest] - # Update all users default service number. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets AreaOrState filter for user query. - ${AreaOrState}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge id to use for service number change. - ${BridgeId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge name to use for service number change. - ${BridgeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CapitalOrMajorCity filter for user query. - ${CapitalOrMajorCity}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CountryOrRegion filter for user query. - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge FromNumber to be updated. - ${FromNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets number inventory type Toll or TollFreee. - ${NumberType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether or not users who are modified by this operation should have their existing conferences rescheduled. - ${RescheduleMeetings}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets bridge ToNumber to be set as default number. - ${ToNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineDialinConferencingUserDefaultNumber_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineDialinConferencingUserDefaultNumber_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineEnhancedEmergencyServiceDisclaimer { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ForceAccept}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineEnhancedEmergencyServiceDisclaimer'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisCivicAddress { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${CivicAddressId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CityAlias}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyTaxId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Confidence}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Elin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumber}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumberSuffix}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsAzureMapValidationRequired}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Latitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Longitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostalCode}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostDirectional}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreDirectional}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StateOrProvince}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetName}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetSuffix}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisCivicAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisCivicAddressModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISetCivicAddress] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${City}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CityAlias}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyTaxId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Confidence}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Elin}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumberSuffix}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Latitude}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Longitude}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostDirectional}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostalCode}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PreDirectional}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StateOrProvince}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetSuffix}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisCivicAddressModern_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisCivicAddressModern_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisLocation { -[CmdletBinding(DefaultParameterSetName='UseCivicAddressId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='UseCivicAddressId', Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${CivicAddressId}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${City}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CityAlias}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyName}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CompanyTaxId}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Confidence}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Elin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumber}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HouseNumberSuffix}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsAzureMapValidationRequired}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Latitude}, - - [Parameter(ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Longitude}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostalCode}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PostDirectional}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreDirectional}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StateOrProvince}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetName}, - - [Parameter(ParameterSetName='UseCivicAddressId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreetSuffix}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='UseLocationId', Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter(ParameterSetName='UseLocationId', ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Location} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UseCivicAddressId = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisLocation'; - UseLocationId = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisLocation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisLocationModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ILocationSchema])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISetLocation] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${City}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CityOrTownAlias}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CivicAddressId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CompanyTaxId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Confidence}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountyOrDistrict}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Elin}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${HouseNumberSuffix}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsDefault}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Latitude}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Location}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Longitude}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfTelephoneNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfVoiceUser}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PartnerId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostDirectional}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PostalCode}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PreDirectional}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StateOrProvince}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StreetSuffix}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ValidationStatus}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisLocationModern_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisLocationModern_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisPort { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PortID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisPort'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisPortModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPortRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ChassisId}, - - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LocationId}, - - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PortId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisPortModern_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisPortModern_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisSubnet { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Subnet}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisSubnetModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Subnet}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSubnetModern_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSubnetModern_SetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisSwitch { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChassisID}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSwitch'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisSwitchModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ChassisId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSwitchModern_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisSwitchModern_SetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisWirelessAccessPoint { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1, Mandatory, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BSSID}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsDebug}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NCSApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetStore}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisWirelessAccessPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineLisWirelessAccessPointModern { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Bssid}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisWirelessAccessPointModern_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineLisWirelessAccessPointModern_SetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlinePSTNGateway { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BypassMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${FailoverResponseCodes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${FailoverTimeSeconds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ForwardCallHistory}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ForwardPai}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${GatewayLbrEnabledUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GatewaySiteId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${GatewaySiteLbrEnabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundPstnNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundTeamsNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAddressVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${MaxConcurrentSessions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MediaBypass}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MediaRelayRoutingLocationOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OutboundPstnNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OutboundTeamsNumberTranslationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PidfLoSupported}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ProxySbc}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SendSipOptions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${SipSignalingPort}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlinePSTNGateway'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlinePstnUsage { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Usage}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlinePstnUsage'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceApplicationInstance { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceApplicationInstanceV2 { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationInstanceAutoGenerated])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IOnlineNumberAssignmentRequest] - # The request to update an application instance. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Telephone number. - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceApplicationInstanceV2_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceApplicationInstanceV2_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceApplicationInstanceV2_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceApplicationInstanceV2_SetViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoicemailPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableEditingCallAnswerRulesSetting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscriptionProfanityMasking}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTranscriptionTranslation}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.TimeSpan] - ${MaximumRecordingLength}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PrimarySystemPromptLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SecondarySystemPromptLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShareData}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoicemailPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceRoute { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeSourcePhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NumberPattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnGatewayList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Priority}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceRoute'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${OnlinePstnUsages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RouteType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceUser { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${LocationID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVoiceUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberAssignmentBlock { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletSetAssignmentBlockRequest] - # CmdletSetAssignmentBlockRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${AssignmentBlockedDays}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberAssignmentBlock_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberAssignmentBlock_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberPolicyAssignment { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PolicyType}, - - [Parameter(Mandatory)] - [Alias('Identity')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberPolicyAssignment_Set'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberSmsActivation { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletCapabilityUpdateRequest] - # CmdletCapabilityUpdateRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberSmsActivation_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberSmsActivation_SetExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberTag { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Tag}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberTag_Set'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPrivacyConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AutoInitiateContacts}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisplayPublishedPhotoDefault}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnablePrivacyMode}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PublishLocationDataDefault}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPrivacyConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsRegionContext { -[CmdletBinding(DefaultParameterSetName='Region', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.CmdletHostContract.DeploymentConfiguration+ConfigApiRegion] - ${Region} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Region = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsRegionContext'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsSessionState { -[OutputType([System.Management.Automation.Runspaces.PSSession])] -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AddFlightedCommand}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RemoveFlightedCommand}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${Mocks}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AddCmdletConfigOverrideForAutorest}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RemoveCmdletConfigOverrideForAutorest}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.Remoting.PSSessionOption] - ${SessionOption} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSessionState'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsAcsFederationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedAcsResources}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableAcsUsers}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsAcsFederationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsAudioConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTollFreeDialin}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${MeetingInvitePhoneNumbers}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsAudioConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsCallHoldPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsCallHoldPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallForwardingToPhone}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallForwardingToUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallGroups}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowCallRedirect}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCloudRecordingForCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowDelegation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSIPDevicesCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTranscriptionForCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowVoicemail}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWebPSTNCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoAnswerEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BusyOnBusyEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${CallRecordingExpirationDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveCaptionsEnabledTypeForCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MusicOnHoldEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PopoutAppPathForIncomingPstnCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PopoutForIncomingPstnCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PreventTollBypass}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SpamFilteringEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsCallParkPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallPark}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ParkTimeoutSeconds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${PickupRangeEnd}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${PickupRangeStart}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsCallParkPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsChannelsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowChannelSharingToExternalUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOrgWideTeamCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateChannelCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateTeamDiscovery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSharedChannelCreation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserToParticipateInExternalSharedChannel}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsChannelsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsClientConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBox}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowDropBox}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEgnyte}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEmailIntoChannel}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGoogleDrive}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGuestUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOrganizationTab}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowResourceAccountSendMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowRoleBasedChatPermissions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowScopedPeopleSearchandAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowShareFile}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSkypeBusinessInterop}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ContentPin}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ResourceAccountContentAccess}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RestrictedSenderList}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsClientConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsComplianceRecordingApplication { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ComplianceRecordingPairedApplications}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ConcurrentInvitationCount}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Priority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredBeforeCallEstablishment}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredBeforeMeetingJoin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredDuringCall}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RequiredDuringMeeting}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsComplianceRecordingApplication'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsComplianceRecordingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ComplianceRecordingApplications}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableComplianceRecordingAudioNotificationForCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${WarnUserOnRemoval}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsComplianceRecordingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsCortanaPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaAmbientListening}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaInContextSuggestions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCortanaVoiceInvocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CortanaVoiceInvocationMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsCortanaPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEducationAssignmentsAppPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MakeCodeEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ParentDigestEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TurnItInApiKey}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TurnItInApiUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TurnItInEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEducationAssignmentsAppPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEducationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ParentGuardianPreferredContactMethod}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEducationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEmergencyCallingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EnhancedEmergencyServiceDisclaimer}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ExternalLocationLookupMode}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NotificationDialOutNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NotificationGroup}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NotificationMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEmergencyCallingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEmergencyCallRoutingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEnhancedEmergencyServices}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${EmergencyNumbers}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEmergencyCallRoutingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEnhancedEncryptionPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallingEndtoEndEncryptionEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingEndToEndEncryption}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEnhancedEncryptionPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsEventsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowWebinars}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EventAccessType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ForceStreamingAttendeeMode}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsEventsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsFeedbackPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowEmailCollection}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowLogCollection}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowScreenshotCollection}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveSurveysMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserInitiatedMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsFeedbackPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsFilesPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NativeFileEntryPoints}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SPChannelFilesTab}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsFilesPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsGuestCallingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateCalling}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsGuestCallingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsGuestMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetNow}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTranscription}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveCaptionsEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScreenSharingMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsGuestMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsGuestMessagingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGiphy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowImmersiveReader}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMemes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowStickers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserEditMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GiphyRatingType}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsGuestMessagingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsIPPhonePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowBetterTogether}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowHomeScreen}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowHotDesking}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${HotDeskingIdleTimeoutInMinutes}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SearchOnCommonAreaPhoneMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SignInMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsIPPhonePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMeetingBroadcastConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSdnProviderForBroadcastMeeting}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SdnApiTemplateUrl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SdnApiToken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SdnLicenseId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SdnProviderName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SdnRuntimeConfiguration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SupportURL}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMeetingBroadcastConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMeetingBroadcastPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBroadcastScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBroadcastTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BroadcastAttendeeVisibilityMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BroadcastRecordingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMeetingBroadcastPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMeetingConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientAppSharingPort}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientAppSharingPortRange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientAudioPort}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientAudioPortRange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ClientMediaPortRangeEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientVideoPort}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${ClientVideoPortRange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomFooterText}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableAnonymousJoin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableAppInteractionForAnonymousUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableQoS}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${HelpURL}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LegalURL}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LogoURL}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMeetingConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMeetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnnotations}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToDialOut}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToJoinMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAnonymousUsersToStartMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAvatarsInGallery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowBreakoutRooms}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCarbonSummary}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowCartCaptionsScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowChannelMeetingScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCloudRecording}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowDocumentCollaboration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowedStreamingMediaInput}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowEngagementReport}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowExternalParticipantGiveRequestControl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowImmersiveView}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPAudio}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingCoach}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingReactions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingRegistration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetNow}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowNDIStreaming}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowNetworkConfigurationSettingsLookup}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOrganizersToOverrideLobbySettings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOutlookAddIn}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowParticipantGiveRequestControl}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPowerPointSharing}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateMeetingScheduling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPrivateMeetNow}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPSTNUsersToBypassLobby}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowRecordingStorageOutsideRegion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowScreenContentDigitization}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSharedNotes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowTasksFromTranscript}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowTrackingInReport}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowUserToJoinExternalMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWatermarkForCameraVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWatermarkForScreenSharing}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowWhiteboard}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoAdmittedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BlockedAnonymousJoinClientTypes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelRecordingDownload}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DesignatedPresenterRoleMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EnrollUserOverride}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${InfoShownInReportMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAudioMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPVideoMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveCaptionsEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveInterpretationEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LiveStreamingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.UInt32] - ${MediaBitRateKb}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingChatEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MeetingInviteLanguages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${NewMeetingRecordingExpirationDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PreferredMeetingProviderForIslandsMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${QnAEngagementMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RecordingStorageMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RoomAttributeUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RoomPeopleNameUserOverride}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScreenSharingMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SpeakerAttributionMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StreamingAttendeeMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TeamsCameraFarEndPTZMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${VideoFiltersMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WhoCanRegister}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMeetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMessagingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCommunicationComplianceEndUserReporting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowFluidCollaborate}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowFullChatPermissionUserToDeleteAnyMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGiphy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowGiphyDisplay}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowImmersiveReader}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMemes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOwnerDeleteMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPasteInternetImage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPriorityMessages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowRemoveUser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSmartCompose}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowSmartReply}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowStickers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUrlPreviews}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteChat}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserDeleteMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserEditMessage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowUserTranslation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowVideoMessages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AudioMessageEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelsInChatListEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChatPermissionRole}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GiphyRatingType}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReadReceiptsEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMessagingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMigrationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableLegacyClientInterop}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMigrationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsMobilityPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPAudioMobileMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${IPVideoMobileMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MobileDialerPreference}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsMobilityPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsNetworkRoamingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowIPVideo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${MediaBitRateKb}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsNetworkRoamingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsNotificationAndFeedsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SuggestedFeedsEnabledType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TrendingFeedsEnabledType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsNotificationAndFeedsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsRoomVideoTeleConferencingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AreaCode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PlaceExternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PlaceInternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveExternalCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReceiveInternalCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsRoomVideoTeleConferencingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsShiftsAppPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTimeClockLocationDetection}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsAppPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsShiftsConnectionInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # ETag value - ${IfMatch}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateConnectorInstanceRequest] - # Update Connector Instance Request. - # This request is used for performing a complete update (PUT) on connector instance. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The WFM connection id. - ${ConnectionId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # The list of connector admin email addresses. - ${ConnectorAdminEmail}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The designated actor id that App acts as for Shifts Graph Api calls. - ${DesignatedActorId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance ETag. - ${Etag}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance name. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM Connector Instance. - ${State}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # The sync frequency in minutes. - ${SyncFrequencyInMin}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OfferShiftRequest entity. - ${SyncScenarioOfferShiftRequest}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShift entity. - ${SyncScenarioOpenShift}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShiftRequest entity. - ${SyncScenarioOpenShiftRequest}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The Shift entity. - ${SyncScenarioShift}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The SwapRequest entity. - ${SyncScenarioSwapRequest}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeCard entity. - ${SyncScenarioTimeCard}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOff entity. - ${SyncScenarioTimeOff}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOffRequest entity. - ${SyncScenarioTimeOffRequest}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The UserShiftPreferences entity. - ${SyncScenarioUserShiftPreference}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnectionInstance_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnectionInstance_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnectionInstance_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnectionInstance_SetViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsShiftsConnection { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connection Id. - ${ConnectionId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # ETag value - ${IfMatch}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionRequest] - # Update WFM Connection Request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector id. - ${ConnectorId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionRequestConnectorSpecificSettings] - # The connector settings. - ${ConnectorSpecificSettings}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The ETag of WFM connection. - ${Etag}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object name. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM connection. - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnection_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnection_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnection_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsConnection_SetViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsShiftsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${AccessGracePeriodMinutes}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AccessType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableScheduleOwnerPermissions}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableShiftPresence}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeFrequency}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeMessageCustom}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftNoticeMessageType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsShiftsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsSurvivableBranchAppliance { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Site}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSurvivableBranchAppliance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsSurvivableBranchAppliancePolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${BranchApplianceFqdns}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSurvivableBranchAppliancePolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsTargetingPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomTagsMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ManageTagsPermissionMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftBackedTagsMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SuggestedPresetTags}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TeamOwnersEditWhoCanManageTagsMode}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsTargetingPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsTranslationRule { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Translation}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsTranslationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsUnassignedNumberTreatment { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Pattern}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Target}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${TreatmentPriority}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsUnassignedNumberTreatment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsUpdateManagementPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowManagedUpdates}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowPreview}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AllowPublicPreview}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${UpdateDayOfWeek}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UpdateTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - ${UpdateTimeOfDay}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsUpdateManagementPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsUpgradeConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DownloadTeams}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SfBMeetingJoinUx}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsUpgradeConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsVdiPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableAudioVideoInCallsAndMeetings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${DisableCallsAndMeetings}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsVdiPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsVoiceApplicationsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantAfterHoursGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantAfterHoursRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantBusinessHoursRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidayGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidayRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantHolidaysChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantLanguageChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAutoAttendantTimeZoneChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueAgentOptChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueConferenceModeChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueLanguageChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueMembershipChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueMusicOnHoldChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueNoAgentsRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOptOutChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOverflowRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueOverflowSharedVoicemailGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueuePresenceBasedRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueRoutingMethodChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueTimeoutRoutingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueTimeoutSharedVoicemailGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallQueueWelcomeGreetingChange}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallQueueAgentMonitorMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallQueueAgentMonitorNotificationMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsVoiceApplicationsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsWorkLoadPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCalling}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowCallingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeeting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMeetingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMessaging}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowMessagingPinned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsWorkLoadPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantBlockedCallingNumbers { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundBlockedNumberPatterns}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${InboundExemptNumberPatterns}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantBlockedCallingNumbers'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NormalizationRules}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SimpleName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantFederationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedDomains}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedDomainsAsAList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowFederatedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTeamsConsumer}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowTeamsConsumerInbound}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${BlockedDomains}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AllowedTrialTenantDomains}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RestrictTeamsConsumerToExternalUserProfiles}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SharedSipAddressSpace}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${TreatDiscoveredPartnersAsUnverified}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${BlockAllSubdomains}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ExternalAccessWithTrialTenants}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SecurityTeamAllowBlockListDelegation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableExternalAccessRestrictionsForChatParticipants}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableMutualFederationForChatParticipants}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantFederationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantMigrationConfiguration { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MeetingMigrationEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantMigrationConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantNetworkRegion { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CentralSite}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRegionID}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantNetworkRegion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantNetworkSite { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyCallingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EmergencyCallRoutingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableLocationBasedRouting}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocationPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRegionID}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkRoamingPolicy}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantNetworkSite'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantNetworkSubnet { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${MaskBits}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkSiteID}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantNetworkSubnet'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantTrustedIPAddress { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${MaskBits}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantTrustedIPAddress'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTenantUserBackfill { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Operation to perform. - ${Operation}, - - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTenantUserBackfill_Set'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsUser { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AcpInfo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AudioVideoDisabled}, - - [Parameter()] - [Alias('CsEnabled')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${Enabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnterpriseVoiceEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ExchangeArchivingPolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${HostedVoiceMail}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LineServerURI}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LineURI}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OnPremLineURI}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PrivateLine}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RemoteCallControlTelephonyEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SipAddress}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsUssUserSettings { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Setting name - ${Name}, - - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # TenantId. - # Guid - ${TenantId}, - - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - # Guid - ${UserId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUssUserSettings_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUssUserSettings_SetViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsVideoInteropServiceProvider { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AadApplicationIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowAppGuestJoinsAsAuthenticated}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${InstructionUri}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantKey}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsVideoInteropServiceProvider'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Start-CsExMeetingMigration { -[CmdletBinding(DefaultParameterSetName='UserId', PositionalBinding=$false)] -param( - [Parameter(Position=1, Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${CleanupSipDisabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${EnqueueSourceType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${SourceMeetingType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${TargetMeetingType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UserId = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Start-CsExMeetingMigration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Start-CsMeetingMigrationModern { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='StartExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Start', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStartMeetingMigrationRequestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='StartExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='StartExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SourceMeetingType}, - - [Parameter(ParameterSetName='StartExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TargetMeetingType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Start = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Start-CsMeetingMigrationModern_Start'; - StartExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Start-CsMeetingMigrationModern_StartExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Sync-CsOnlineApplicationInstance { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${ObjectId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackUri}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${ApplicationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${AcsResourceId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Sync-CsOnlineApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Sync-CsOnlineApplicationInstanceV2 { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Sync', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Sync', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Application instance object ID. - ${ObjectId}, - - [Parameter(ParameterSetName='SyncViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # ACS Resource Id. - ${AcsResourceId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # applicationId. - ${ApplicationId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Sync = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Sync-CsOnlineApplicationInstanceV2_Sync'; - SyncViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Sync-CsOnlineApplicationInstanceV2_SyncViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsEffectiveTenantDialPlan { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${DialedNumber}, - - [Parameter(ParameterSetName='Identity')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${CallerNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ParameterSetName='Identity', Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${TenantScopeOnly}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='EffectiveTDPName', ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EffectiveTenantDialPlanName} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlan'; - EffectiveTDPName = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlan'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsEffectiveTenantDialPlanModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDialPlanTestResult])] -[CmdletBinding(DefaultParameterSetName='TestExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Test', Mandatory)] - [Parameter(ParameterSetName='Test1', Mandatory)] - [Parameter(ParameterSetName='TestExpanded', Mandatory)] - [Parameter(ParameterSetName='TestExpanded1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${DialedNumber}, - - [Parameter(ParameterSetName='Test1', Mandatory)] - [Parameter(ParameterSetName='TestExpanded1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CallerNumber}, - - [Parameter(ParameterSetName='TestViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentity1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentityExpanded1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Test', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='Test1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDialPlanRulesTestBody] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='TestExpanded')] - [Parameter(ParameterSetName='TestExpanded1')] - [Parameter(ParameterSetName='TestViaIdentityExpanded')] - [Parameter(ParameterSetName='TestViaIdentityExpanded1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Dial Plan to be used if Identity is not provided - ${EffectiveTenantDialPlanName}, - - [Parameter(ParameterSetName='TestExpanded')] - [Parameter(ParameterSetName='TestExpanded1')] - [Parameter(ParameterSetName='TestViaIdentityExpanded')] - [Parameter(ParameterSetName='TestViaIdentityExpanded1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # User Identity - ${Identity}, - - [Parameter(ParameterSetName='TestExpanded')] - [Parameter(ParameterSetName='TestExpanded1')] - [Parameter(ParameterSetName='TestViaIdentityExpanded')] - [Parameter(ParameterSetName='TestViaIdentityExpanded1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Optional filter to include only tenant dial rules - ${TenantScopeOnly}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_Test'; - Test1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_Test1'; - TestExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestExpanded'; - TestExpanded1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestExpanded1'; - TestViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestViaIdentity'; - TestViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestViaIdentity1'; - TestViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestViaIdentityExpanded'; - TestViaIdentityExpanded1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsEffectiveTenantDialPlanModern_TestViaIdentityExpanded1'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsInboundBlockedNumberPattern { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory, ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsInboundBlockedNumberPattern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsInboundBlockedNumberPatternModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITestInboundBlockedNumberResponse])] -[CmdletBinding(DefaultParameterSetName='Test', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Phone number to test - ${PhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsInboundBlockedNumberPatternModern_Test'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsOnlineLiCivicAddressOnly { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Test1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Test1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='TestViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Test', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.IO.Stream] - # . - ${Data}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsOnlineLiCivicAddressOnly_Test'; - Test1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsOnlineLiCivicAddressOnly_Test1'; - TestViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsOnlineLiCivicAddressOnly_TestViaIdentity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsTeamsShiftsConnectionValidate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='Test', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Test', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceBaseRequest] - # Connector Instance Base Request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='TestExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector id. - ${ConnectorId}, - - [Parameter(ParameterSetName='TestExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceBaseRequestConnectorSpecificSettings] - # The connector specific settings. - ${ConnectorSpecificSettings}, - - [Parameter(ParameterSetName='TestExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance name. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsTeamsShiftsConnectionValidate_Test'; - TestExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsTeamsShiftsConnectionValidate_TestExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsTeamsTranslationRule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITestTeamsTranslationRuleResponse], [System.String])] -[CmdletBinding(DefaultParameterSetName='Test', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Phone number to test - ${PhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsTeamsTranslationRule_Test'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsTeamsUnassignedNumberTreatment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITestUnassignedNumberTreatmentResponse], [System.String])] -[CmdletBinding(DefaultParameterSetName='Test', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Phone number to test - ${PhoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsTeamsUnassignedNumberTreatment_Test'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsVoiceNormalizationRule { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${DialedNumber}, - - [Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${NormalizationRule}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsVoiceNormalizationRule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Test-CsVoiceNormalizationRuleModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoiceNormalizationTestResult])] -[CmdletBinding(DefaultParameterSetName='TestExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Test', Mandatory)] - [Parameter(ParameterSetName='TestExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${DialedNumber}, - - [Parameter(ParameterSetName='TestViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Test', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='TestViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.INormalizationRuleTestPayload] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='TestExpanded')] - [Parameter(ParameterSetName='TestViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.INormalizationRuleForTest[]] - # . - # To construct, see NOTES section for NORMALIZATIONRULE properties and create a hash table. - ${NormalizationRule}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Test = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsVoiceNormalizationRuleModern_Test'; - TestExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsVoiceNormalizationRuleModern_TestExpanded'; - TestViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsVoiceNormalizationRuleModern_TestViaIdentity'; - TestViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Test-CsVoiceNormalizationRuleModern_TestViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Unregister-CsOnlineDialInConferencingServiceNumber { -[CmdletBinding(DefaultParameterSetName='UniqueNumberParams', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='UniqueNumberParams', Position=0, Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RemoveDefaultServiceNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantDomain}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MsftInternalProcessingMode}, - - [Parameter(ParameterSetName='InstanceParams', Position=0, Mandatory, ValueFromPipeline)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UniqueNumberParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOnlineDialInConferencingServiceNumber'; - InstanceParams = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOnlineDialInConferencingServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsPhoneNumberTag { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Update', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NewTag}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Tag}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsPhoneNumberTag_Update'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsTeamsShiftsConnectionInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConnectorInstanceResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connector Instance Id - ${ConnectorInstanceId}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # ETag value - ${IfMatch}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateConnectorInstanceFieldsRequest] - # Update Connector Instance Fields Request. - # This request is used for performing a partial update (PATCH) on connector instance. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The WFM connection id. - ${ConnectionId}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # The list of connector admin email addresses. - ${ConnectorAdminEmail}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The designated actor id that App acts as for Shifts Graph Api calls. - ${DesignatedActorId}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance ETag. - ${Etag}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector instance name. - ${Name}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM Connector Instance. - ${State}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # The sync frequency in minutes. - ${SyncFrequencyInMin}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OfferShiftRequest entity. - ${SyncScenarioOfferShiftRequest}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShift entity. - ${SyncScenarioOpenShift}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The OpenShiftRequest entity. - ${SyncScenarioOpenShiftRequest}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The Shift entity. - ${SyncScenarioShift}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The SwapRequest entity. - ${SyncScenarioSwapRequest}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeCard entity. - ${SyncScenarioTimeCard}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOff entity. - ${SyncScenarioTimeOff}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The TimeOffRequest entity. - ${SyncScenarioTimeOffRequest}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The UserShiftPreferences entity. - ${SyncScenarioUserShiftPreference}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnectionInstance_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnectionInstance_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnectionInstance_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnectionInstance_UpdateViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsTeamsShiftsConnection { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IWfmConnectionResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorDetailsResponse])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Connection Id. - ${ConnectionId}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # Bearer: token - ${Authorization}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Header')] - [System.String] - # ETag value - ${IfMatch}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionFieldsRequest] - # Update WFM Connection Request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The connector id. - ${ConnectorId}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateWfmConnectionFieldsRequestConnectorSpecificSettings] - # The connector settings. - ${ConnectorSpecificSettings}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The ETag of WFM connection. - ${Etag}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object name. - ${Name}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The state of the WFM connection. - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnection_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnection_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnection_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamsShiftsConnection_UpdateViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # A composite URI of a template. - ${OdataId}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate] - # The client input for a request to create a template. - # Only admins from Config Api can perform this request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's DisplayName. - ${DisplayName}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template short description. - ${ShortDescription}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[]] - # Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - # To construct, see NOTES section for APP properties and create a hash table. - ${App}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets list of categories. - ${Category}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[]] - # Gets or sets the set of channel templates included in the team template. - # To construct, see NOTES section for CHANNEL properties and create a hash table. - ${Channel}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's classification.Tenant admins configure AAD with the set of possible values. - ${Classification}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's Description. - ${Description}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings] - # Governs discoverability of a team. - # To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - ${DiscoverySetting}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings] - # Governs use of fun media like giphy and stickers in the team. - # To construct, see NOTES section for FUNSETTING properties and create a hash table. - ${FunSetting}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings] - # Guest role settings for the team. - # To construct, see NOTES section for GUESTSETTING properties and create a hash table. - ${GuestSetting}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template icon. - ${Icon}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - ${IsMembershipLimitedToOwner}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings] - # Member role settings for the team. - # To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - ${MemberSetting}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings] - # Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - # To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - ${MessagingSetting}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AAD user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - ${OwnerUserObjectId}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets published name. - ${PublishedBy}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - ${Specialization}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - ${TemplateId}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets uri to be used for GetTemplate api call. - ${Uri}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Used to control the scope of users who can view a group/team and its members, and ability to join. - ${Visibility}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamTemplate_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamTemplate_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamTemplate_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsTeamTemplate_UpdateViaIdentityExpanded'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Clear-CsOnlineTelephoneNumberOrder { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Clear-CsOnlineTelephoneNumberOrder'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Complete-CsOnlineTelephoneNumberOrder { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Complete-CsOnlineTelephoneNumberOrder'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Export-CsAutoAttendantHolidays { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Export-CsAutoAttendantHolidays'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Export-CsOnlineAudioFile { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ApplicationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Export-CsOnlineAudioFile'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Find-CsGroup { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SearchQuery}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.UInt32]] - ${MaxResults}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ExactMatchOnly}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MailEnabledOnly}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Find-CsGroup'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Find-CsOnlineApplicationInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ApplicationInstance])] -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SearchQuery}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.UInt32]] - ${MaxResults}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExactMatchOnly}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${AssociatedOnly}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${UnAssociatedOnly}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Find-CsOnlineApplicationInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAadTenant { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAadTenant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAadUser { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAadUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAgent { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAgent'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendant { -[CmdletBinding(DefaultParameterSetName='GetAllParamSet', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='GetAllParamSet', Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${IncludeStatus}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${First}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExcludeContent}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NameFilter}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=6)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SortBy}, - - [Parameter(ParameterSetName='GetAllParamSet', Position=7)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Descending}, - - [Parameter(Position=8)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='GetSpecificParamSet', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GetAllParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendant'; - GetSpecificParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendantHolidays { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Years}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Names}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendantHolidays'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendantStatus { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${IncludeResources}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendantStatus'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendantSupportedLanguage { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendantSupportedLanguage'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendantSupportedTimeZone { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendantSupportedTimeZone'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoAttendantTenantInformation { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoAttendantTenantInformation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsAutoRecordingTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsAutoRecordingTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsBusinessVoiceDirectoryDiagnosticData { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - ${PartitionKey}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - ${Region}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - ${Table}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${RowKey}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsBusinessVoiceDirectoryDiagnosticData'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsCallQueue { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${First}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExcludeContent}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Sort}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Descending}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NameFilter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=5, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsCallQueue'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsComplianceRecordingForCallQueueTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsComplianceRecordingForCallQueueTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsConfigurationModern { -[CmdletBinding(DefaultParameterSetName='ConfigType', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='Filter', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter}, - - [Parameter(ParameterSetName='Identity', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - ConfigType = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsConfigurationModern'; - Filter = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsConfigurationModern'; - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsConfigurationModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantAppointmentBookingFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${First}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SortBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Descending}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NameFilter}, - - [Parameter(Position=5, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantAppointmentBookingFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Type}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RelatedConfigurationId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${First}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SortBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Descending}, - - [Parameter(Position=6)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NameFilter}, - - [Parameter(Position=7, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantQuestionAnswerFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${First}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${Skip}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SortBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Descending}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NameFilter}, - - [Parameter(Position=5, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantQuestionAnswerFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantSupportedLanguages { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=0, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantSupportedLanguages'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantSupportedVoices { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=0, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantSupportedVoices'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMainlineAttendantTenantInformation { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMainlineAttendantTenantInformation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMasVersionedSchemaData { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${SchemaName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${Version}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMasVersionedSchemaData'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMeetingMigrationTransactionHistory { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Identity. - # Supports UPN and SIP - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # CorrelationId - ${CorrelationId}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # start time filter - to get meeting migration transaction history after starttime - ${StartTime}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # end time filter - to get meeting migration transaction history before endtime - ${EndTime}, - - [Parameter(Position=4, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMeetingMigrationTransactionHistory'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMmsStatus { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # SummaryOnly - to get only meting migration status summary. - ${SummaryOnly}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(Position=5, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMmsStatus'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsMoveTenantServiceInstanceTaskStatus { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsMoveTenantServiceInstanceTaskStatus'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineApplicationInstanceAssociation { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineApplicationInstanceAssociation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineApplicationInstanceAssociationStatus { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineApplicationInstanceAssociationStatus'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineAudioFile { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ApplicationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineAudioFile'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineDialInConferencingUser { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${ResultSize}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineDialInConferencingUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineEnhancedEmergencyServiceDisclaimerModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Version}, - - [Parameter(Position=2, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineEnhancedEmergencyServiceDisclaimerModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineSchedule { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineSchedule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineTelephoneNumberOrder { -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='Generic')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderType} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineTelephoneNumberOrder'; - Generic = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineTelephoneNumberOrder'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsOnlineVoicemailUserSettings { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsOnlineVoicemailUserSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsSharedCallHistoryTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsSharedCallHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsSharedCallQueueHistoryTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsSharedCallQueueHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTagsTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsTagsTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamsSettingsCustomApp { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsTeamsSettingsCustomApp'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTeamTemplateList { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IErrorObject])] -[CmdletBinding(DefaultParameterSetName='DefaultLocaleOverride', PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PublicTemplateLocale}, - - [Parameter(Position=1, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - DefaultLocaleOverride = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsTeamTemplateList'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsTenantPoint { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsTenantPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserList { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SkipUserPolicies}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SoftDeletedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.AccountType] - ${AccountType}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsUserList'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserPoint { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SkipUserPolicies}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Properties}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsUserPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsUserSearch { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Identities}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Filter}, - - [Parameter()] - [Alias('Sort')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OrderBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SkipUserPolicies}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SoftDeletedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.AccountType] - ${AccountType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Properties}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsUserSearch'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsVoiceUserList { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExpandLocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${First}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${NumberAssigned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${NumberNotAssigned}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Guid]] - ${CivicAddressId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.PSTNConnectivity] - ${PSTNConnectivity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.EnterpriseVoiceStatus] - ${EnterpriseVoiceStatus}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsVoiceUserList'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-CsVoiceUserPoint { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ExpandLocation}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-CsVoiceUserPoint'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-FormatsForConfig { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigType} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-FormatsForConfig'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-StatusRecordStatusCodeString { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${StatusRecordErrorCode} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-StatusRecordStatusCodeString'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Get-StatusRecordStatusString { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${StatusRecordStatus} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Get-StatusRecordStatusString'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsGroupPolicyPackageAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='RequiredPolicyList', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${GroupId}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${PackageName}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${PolicyRankings}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - RequiredPolicyList = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Grant-CsGroupPolicyPackageAssignment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Grant-CsTeamsPolicy { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [ArgumentCompleter({param ($CommandName, $ParameterName, $WordToComplete, $CommandAst, $FakeBoundParameters) return @("ApplicationAccessPolicy","BroadcastMeetingPolicy","CallingLineIdentity","ClientPolicy","CloudMeetingPolicy","ConferencingPolicy","DialoutPolicy","ExternalAccessPolicy","ExternalUserCommunicationPolicy","GraphPolicy","GroupPolicyPackageAssignment","HostedVoicemailPolicy","IPPhonePolicy","MobilityPolicy","OnlineAudioConferencingRoutingPolicy","OnlineVoicemailPolicy","OnlineVoiceRoutingPolicy","Policy","TeamsAppPermissionPolicy","TeamsAppSetupPolicy","TeamsAudioConferencingPolicy","TeamsCallHoldPolicy","TeamsCallingPolicy","TeamsCallParkPolicy","TeamsChannelsPolicy","TeamsComplianceRecordingPolicy","TeamsCortanaPolicy","TeamsEmergencyCallingPolicy","TeamsEmergencyCallRoutingPolicy","TeamsEnhancedEncryptionPolicy","TeamsFeedbackPolicy","TeamsFilesPolicy","TeamsIPPhonePolicy","TeamsMeetingBroadcastPolicy","TeamsMeetingPolicy","TeamsMessagingPolicy","TeamsMobilityPolicy","TeamsShiftsPolicy","TeamsSurvivableBranchAppliancePolicy","TeamsUpdateManagementPolicy","TeamsUpgradePolicy","TeamsVdiPolicy","TeamsVerticalPackagePolicy","TeamsVideoInteropServicePolicy","TeamsWorkLoadPolicy","TenantDialPlan","UserOrTenantPolicy","UserPolicyPackage","VoiceRoutingPolicy") | ?{ $_ -like "$WordToComplete*" } })] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyType}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PolicyName}, - - [Parameter(ParameterSetName='Identity', Position=0, ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${AdditionalParameters}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='GrantToTenant', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Global}, - - [Parameter(ParameterSetName='GrantToGroup', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Group}, - - [Parameter(ParameterSetName='GrantToGroup')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${Rank} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Grant-CsTeamsPolicy'; - GrantToTenant = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Grant-CsTeamsPolicy'; - GrantToGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Grant-CsTeamsPolicy'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Import-CsAutoAttendantHolidays { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1, Mandatory)] - [Alias('Input')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Byte[]] - ${InputBytes}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Import-CsAutoAttendantHolidays'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Import-CsOnlineAudioFile { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${FileName}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Byte[]] - ${Content}, - - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ApplicationId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Import-CsOnlineAudioFile'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsCustomHandlerCallBackNgtprov { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${Id}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.CustomHandlerOperationName] - ${Operation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - ${Eventname}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsCustomHandlerCallBackNgtprov'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsDeprecatedError { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DeprecatedErrorMessage}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsDeprecatedError'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsDirectObjectSync { -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody] - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.DirectoryDeploymentName] - ${DeploymentName}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.DirectoryObjectClass] - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${ObjectIds}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ReSyncOption} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsDirectObjectSync'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsDirectObjectSync'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Invoke-CsMsodsSync { -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody] - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='PostExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Models.ObjectClass] - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TenantId}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - ${ReSyncOption} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsMsodsSync'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Invoke-CsMsodsSync'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Move-CsTenantCrossRegion { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Move-CsTenantCrossRegion'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Move-CsTenantServiceInstance { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MoveOption}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TargetServiceInstance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Move-CsTenantServiceInstance'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAgent { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AIAgentId}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AIAgentType}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AIAgentTargetTagTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAgent'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendant { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LanguageId}, - - [Parameter(Position=3, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow] - ${DefaultCallFlow}, - - [Parameter(Position=6, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeZoneId}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${VoiceId}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - ${Operator}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${EnableVoiceResponse}, - - [Parameter(Position=7)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallFlow[]] - ${CallFlows}, - - [Parameter(Position=8)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociation[]] - ${CallHandlingAssociations}, - - [Parameter(Position=9)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope] - ${InclusionScope}, - - [Parameter(Position=10)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DialScope] - ${ExclusionScope}, - - [Parameter(Position=11)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${AuthorizedUsers}, - - [Parameter(Position=12)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${HideAuthorizedUsers}, - - [Parameter(Position=13)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=14)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UserNameExtension}, - - [Parameter(Position=15)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${EnableMainlineAttendant}, - - [Parameter(Position=16)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MainlineAttendantAgentVoiceId}, - - [Parameter(Position=17)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantCallableEntity { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntityType] - ${Type}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${EnableTranscription}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${EnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${CallPriority}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(Position=6)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantCallableEntity'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantCallFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Menu}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject[]] - ${Greetings}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ForceListenMenuEnabled}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RingResourceAccountDelegates}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantCallFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantCallHandlingAssociation { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallHandlingAssociationType] - ${Type}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ScheduleId}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallFlowId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Disable}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantCallHandlingAssociation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantDialScope { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${GroupScope}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${GroupIds}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantDialScope'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantMenu { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject[]] - ${Prompts}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject[]] - ${MenuOptions}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${EnableDialByName}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DirectorySearchMethod] - ${DirectorySearchMethod}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantMenu'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantMenuOption { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.ActionType] - ${Action}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.DtmfTone] - ${DtmfResponse}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${VoiceResponses}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - ${CallTarget}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Prompt}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(Position=6)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=7)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MainlineAttendantTarget}, - - [Parameter(Position=8)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.AgentTargetType] - ${AgentTargetType}, - - [Parameter(Position=9)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AgentTarget}, - - [Parameter(Position=10)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AgentTargetTagTemplateId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantMenuOption'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoAttendantPrompt { -[CmdletBinding(DefaultParameterSetName='TextToSpeechParamSet', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='TextToSpeechParamSet', Position=0, Mandatory)] - [Parameter(ParameterSetName='DualParamSet', Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TextToSpeechPrompt}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='DualParamSet', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ActiveType}, - - [Parameter(ParameterSetName='DualParamSet', Position=1)] - [Parameter(ParameterSetName='AudioFileParamSet', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.AudioFile] - ${AudioFilePrompt} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - TextToSpeechParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantPrompt'; - DualParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantPrompt'; - AudioFileParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoAttendantPrompt'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsAutoRecordingTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=5, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharePointHostName}, - - [Parameter(Position=6, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharePointSiteName}, - - [Parameter(Position=7, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RecordingDocumentOwner}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${TranscriptionEnabled}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RecordingEnabled}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.AgentViewPermission] - ${AgentViewPermission}, - - [Parameter(Position=8)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter(Position=9)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsAutoRecordingTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsBatchTeamsDeployment { -[OutputType([System.String])] -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TeamsFilePath}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UsersFilePath}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UsersToNotify}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsBatchTeamsDeployment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsCallQueue { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${AgentAlertTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOptOut}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${DistributionLists}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${UseDefaultMusicOnHold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WelcomeMusicAudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WelcomeTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MusicOnHoldAudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction] - ${OverflowAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${OverflowThreshold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction] - ${TimeoutAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${TimeoutThreshold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod] - ${RoutingMethod}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PresenceBasedRouting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ConferenceMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${Users}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LanguageId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LineUri}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${OboResourceAccountIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentAction] - ${NoAgentAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentApplyTo] - ${NoAgentApplyTo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${ChannelUserObjectId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${AuthorizedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${HideAuthorizedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${OverflowActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${TimeoutActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${NoAgentActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${IsCallbackEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackRequestDtmf}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackEmailNotificationTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftsTeamId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftsSchedulingGroupId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TextAnnouncementForCR}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomAudioFileAnnouncementForCR}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TextAnnouncementForCRFailure}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomAudioFileAnnouncementForCRFailure}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharedCallQueueHistoryTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsCallQueue'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsComplianceRecordingForCallQueueTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BotApplicationInstanceObjectId}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RequiredDuringCall}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RequiredBeforeCall}, - - [Parameter(Position=5)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${ConcurrentInvitationCount}, - - [Parameter(Position=6)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PairedApplicationInstanceObjectId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsComplianceRecordingForCallQueueTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsConfigurationModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigType}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(Position=2, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsConfigurationModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='RequiredPolicyList', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Identity}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${PolicyList}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Description}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - RequiredPolicyList = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsCustomPolicyPackage'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsMainlineAttendantAppointmentBookingFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.CallerAuthenticationMethod] - ${CallerAuthenticationMethod}, - - [Parameter(Position=3, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.ApiAuthenticationType] - ${ApiAuthenticationType}, - - [Parameter(Position=4, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ApiDefinitions}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsMainlineAttendantAppointmentBookingFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsMainlineAttendantQuestionAnswerFlow { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=3, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${KnowledgeBase}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.ApiAuthenticationType] - ${ApiAuthenticationType}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsMainlineAttendantQuestionAnswerFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineApplicationInstanceAssociation { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Identities}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigurationId}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigurationType}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${CallPriority}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineApplicationInstanceAssociation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineDateTimeRange { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Start}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${End}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineDateTimeRange'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineDirectRoutingTelephoneNumberUploadOrder { -[CmdletBinding(DefaultParameterSetName='InputByList', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='InputByList')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='InputByRange')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StartingNumber}, - - [Parameter(ParameterSetName='InputByRange')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EndingNumber}, - - [Parameter(ParameterSetName='InputByFile')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Byte[]] - ${FileContent} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - InputByList = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder'; - InputByRange = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder'; - InputByFile = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineSchedule { -[CmdletBinding(DefaultParameterSetName='UnresolvedParamSet', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='FixedScheduleParamSet', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${FixedSchedule}, - - [Parameter(ParameterSetName='FixedScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${DateTimeRanges}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${WeeklyRecurrentSchedule}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${MondayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${TuesdayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${WednesdayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ThursdayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${FridayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${SaturdayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${SundayHours}, - - [Parameter(ParameterSetName='WeeklyRecurrentScheduleParamSet')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Complement} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UnresolvedParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineSchedule'; - FixedScheduleParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineSchedule'; - WeeklyRecurrentScheduleParamSet = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineSchedule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineTelephoneNumberReleaseOrder { -[CmdletBinding(DefaultParameterSetName='InputByList', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='InputByList')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='InputByRange')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${StartingNumber}, - - [Parameter(ParameterSetName='InputByRange')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${EndingNumber}, - - [Parameter(ParameterSetName='InputByFile')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Byte[]] - ${FileContent} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - InputByList = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineTelephoneNumberReleaseOrder'; - InputByRange = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineTelephoneNumberReleaseOrder'; - InputByFile = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineTelephoneNumberReleaseOrder'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsOnlineTimeRange { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Start}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${End}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsOnlineTimeRange'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsPhoneNumberUsageChangeOrderModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${TelephoneNumber}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Usage}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsPhoneNumberUsageChangeOrderModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsSdgBulkSignInRequest { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DeviceDetailsFilePath}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Region} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsSdgBulkSignInRequest'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsSharedCallHistoryTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingMissedCalls] - ${IncomingMissedCalls}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.AnsweredAndOutboundCalls] - ${AnsweredAndOutboundCalls}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingRedirectedCalls] - ${IncomingRedirectedCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsSharedCallHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsSharedCallQueueHistoryTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingMissedCalls] - ${IncomingMissedCalls}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.AnsweredAndOutboundCalls] - ${AnsweredAndOutboundCalls}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.IncomingRedirectedCalls] - ${IncomingRedirectedCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsSharedCallQueueHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTag { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TagName}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.OAA.Models.CallableEntity] - ${TagDetails} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTag'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTagsTemplate { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(Position=2, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject[]] - ${Tags}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTagsTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - ${Locale}, - - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DisplayName}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShortDescription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[]] - # To construct, see NOTES section for APP properties and create a hash table. - ${App}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Category}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[]] - # To construct, see NOTES section for CHANNEL properties and create a hash table. - ${Channel}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Classification}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings] - # To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - ${DiscoverySetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings] - # To construct, see NOTES section for FUNSETTING properties and create a hash table. - ${FunSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings] - # To construct, see NOTES section for GUESTSETTING properties and create a hash table. - ${GuestSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Icon}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${IsMembershipLimitedToOwner}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings] - # To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - ${MemberSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings] - # To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - ${MessagingSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OwnerUserObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PublishedBy}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Specialization}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Uri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Visibility}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate] - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTeamTemplate'; - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTeamTemplate'; - NewViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTeamTemplate'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsTeamTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function New-CsUserCallingDelegate { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Delegate}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MakeCalls}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ManageSettings}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ReceiveCalls}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PickUpHeldCalls}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${JoinActiveCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\New-CsUserCallingDelegate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Register-CsOdcServiceNumber { -[CmdletBinding(DefaultParameterSetName='ById', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='ById', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='ByInstance', Mandatory, ValueFromPipeline)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - # To construct, see NOTES section for INSTANCE properties and create a hash table. - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - ById = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Register-CsOdcServiceNumber'; - ByInstance = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Register-CsOdcServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsAgent { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsAgent'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsAutoAttendant { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsAutoAttendant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsAutoRecordingTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsAutoRecordingTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsCallQueue { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsCallQueue'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsComplianceRecordingForCallQueueTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsComplianceRecordingForCallQueueTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsConfigurationModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigType}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=2, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsConfigurationModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsMainlineAttendantAppointmentBookingFlow { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsMainlineAttendantAppointmentBookingFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsMainlineAttendantQuestionAnswerFlow { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsMainlineAttendantQuestionAnswerFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineApplicationInstanceAssociation { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${Identities}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsOnlineApplicationInstanceAssociation'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineAudioFile { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsOnlineAudioFile'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineSchedule { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsOnlineSchedule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsOnlineTelephoneNumberModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${TelephoneNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsOnlineTelephoneNumberModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsPhoneNumberAssignment { -[CmdletBinding(DefaultParameterSetName='RemoveSome', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(ParameterSetName='RemoveSome', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PhoneNumber}, - - [Parameter(ParameterSetName='RemoveSome', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PhoneNumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Notify}, - - [Parameter(ParameterSetName='RemoveSome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${AssignmentBlockedForever}, - - [Parameter(ParameterSetName='RemoveSome')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${AssignmentBlockedDays}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='RemoveAll', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RemoveAll} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - RemoveSome = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsPhoneNumberAssignment'; - RemoveAll = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsPhoneNumberAssignment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsSharedCallHistoryTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsSharedCallHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsSharedCallQueueHistoryTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsSharedCallQueueHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsTagsTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Id}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsTagsTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Remove-CsUserCallingDelegate { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Delegate}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Remove-CsUserCallingDelegate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsAgent { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsAgent'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsAutoAttendant { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsAutoAttendant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsAutoRecordingTemplate { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Identity', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Description}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${TranscriptionEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${RecordingEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Online.Models.AgentViewPermission] - ${AgentViewPermission}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharePointHostName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharePointSiteName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RecordingDocumentOwner}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='Instance', Position=0, Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsAutoRecordingTemplate'; - Instance = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsAutoRecordingTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsCallQueue { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${AgentAlertTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOptOut}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${DistributionLists}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${UseDefaultMusicOnHold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WelcomeMusicAudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${WelcomeTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${MusicOnHoldAudioFileId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.OverflowAction] - ${OverflowAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${OverflowThreshold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.TimeoutAction] - ${TimeoutAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${TimeoutThreshold}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.RoutingMethod] - ${RoutingMethod}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PresenceBasedRouting}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ConferenceMode}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${Users}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LanguageId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LineUri}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${OboResourceAccountIds}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentAction] - ${NoAgentAction}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentActionTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.HuntGroup.Models.NoAgentApplyTo] - ${NoAgentApplyTo}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ChannelId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid] - ${ChannelUserObjectId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${AuthorizedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Guid[]] - ${HideAuthorizedUsers}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${OverflowActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${TimeoutActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int16] - ${NoAgentActionCallPriority}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${IsCallbackEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackRequestDtmf}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallbackEmailNotificationTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Int32]] - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftsTeamId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TextAnnouncementForCR}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomAudioFileAnnouncementForCR}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TextAnnouncementForCRFailure}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CustomAudioFileAnnouncementForCRFailure}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SharedCallQueueHistoryTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AutoRecordingTemplateId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ShiftsSchedulingGroupId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsCallQueue'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsComplianceRecordingForCallQueueTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsComplianceRecordingForCallQueueTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsConfigurationModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ConfigType}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - ${PropertyBag}, - - [Parameter(Position=2, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsConfigurationModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsMainlineAttendantAppointmentBookingFlow { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsMainlineAttendantAppointmentBookingFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsMainlineAttendantQuestionAnswerFlow { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsMainlineAttendantQuestionAnswerFlow'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOdcServiceNumber { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PrimaryLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${SecondaryLanguages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RestoreDefaultLanguages}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - # To construct, see NOTES section for INSTANCE properties and create a hash table. - ${Instance}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOdcServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineDialInConferencingBridge { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultServiceNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SetDefault}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge] - # To construct, see NOTES section for INSTANCE properties and create a hash table. - ${Instance}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${AsJob}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineDialInConferencingBridge'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineDialInConferencingUser { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(ValueFromPipeline, ValueFromPipelineByPropertyName)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TollFreeServiceNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${SendEmail}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ServiceNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ResetLeaderPin}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${SendEmailToAddress}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${AllowTollFreeDialIn}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${AsJob}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineDialInConferencingUser'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineEnhancedEmergencyServiceDisclaimerModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CountryOrRegion}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Version}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${ForceAccept}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Response}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${RespondedByObjectId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ResponseTimestamp}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Locale}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineEnhancedEmergencyServiceDisclaimerModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineSchedule { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineSchedule'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineSipDomainModern { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Domain}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Action}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineSipDomainModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoicemailUserSettings { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Rtc.Management.Hosted.Voicemail.Models.CallAnswerRules] - ${CallAnswerRule}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultGreetingPromptOverwrite}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultOofGreetingPromptOverwrite}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${OofGreetingEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${OofGreetingFollowAutomaticRepliesEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PromptLanguage}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${ShareData}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TransferTarget}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Nullable[System.Boolean]] - ${VoicemailEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineVoicemailUserSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsOnlineVoiceUserV2 { -[CmdletBinding(DefaultParameterSetName='Id', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${TelephoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Id = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsOnlineVoiceUserV2'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPersonalAttendantSettings { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='PersonalAttendantOnOff', Mandatory)] - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsPersonalAttendantEnabled}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultLanguage}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsBookingCalendarEnabled}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsCallScreeningEnabled}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowInboundInternalCalls}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowInboundFederatedCalls}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowInboundPSTNCalls}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsAutomaticTranscriptionEnabled}, - - [Parameter(ParameterSetName='PersonalAttendant', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsAutomaticRecordingEnabled}, - - [Parameter(ParameterSetName='PersonalAttendant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultVoice}, - - [Parameter(ParameterSetName='PersonalAttendant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CalleeName}, - - [Parameter(ParameterSetName='PersonalAttendant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${DefaultTone}, - - [Parameter(ParameterSetName='PersonalAttendant')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsNonContactCallbackEnabled} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPersonalAttendantSettings'; - PersonalAttendantOnOff = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPersonalAttendantSettings'; - PersonalAttendant = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPersonalAttendantSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberAssignment { -[CmdletBinding(DefaultParameterSetName='LocationUpdate', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='LocationUpdate', Mandatory)] - [Parameter(ParameterSetName='Assignment', Mandatory)] - [Parameter(ParameterSetName='ReverseNumberLookupUpdate', Mandatory)] - [Parameter(ParameterSetName='NetworkSiteUpdate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PhoneNumber}, - - [Parameter(ParameterSetName='LocationUpdate', Mandatory)] - [Parameter(ParameterSetName='Assignment')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LocationId}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='Attribute', Mandatory)] - [Parameter(ParameterSetName='Assignment', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(ParameterSetName='Attribute', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${EnterpriseVoiceEnabled}, - - [Parameter(ParameterSetName='Assignment', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${PhoneNumberType}, - - [Parameter(ParameterSetName='Assignment')] - [Parameter(ParameterSetName='NetworkSiteUpdate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${NetworkSiteId}, - - [Parameter(ParameterSetName='Assignment')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${AssignmentCategory}, - - [Parameter(ParameterSetName='Assignment')] - [Parameter(ParameterSetName='ReverseNumberLookupUpdate', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ReverseNumberLookup}, - - [Parameter(ParameterSetName='Assignment')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Notify} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - LocationUpdate = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberAssignment'; - Attribute = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberAssignment'; - Assignment = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberAssignment'; - ReverseNumberLookupUpdate = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberAssignment'; - NetworkSiteUpdate = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberAssignment'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsPhoneNumberTenantConfiguration { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AssignmentEmailEnabled}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${UnassignmentEmailEnabled}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - ${AssignmentBlockedDays}, - - [Parameter(Position=3)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AssignmentBlockedForever}, - - [Parameter(Position=4)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${AllowOnPremToOnlineMigration}, - - [Parameter(Position=5, DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsPhoneNumberTenantConfiguration'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsSharedCallHistoryTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsSharedCallHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsSharedCallQueueHistoryTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsSharedCallQueueHistoryTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTagsTemplate { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.PSObject] - ${Instance}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsTagsTemplate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsTeamsSettingsCustomApp { -[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${isSideloadedAppsInteractionEnabled}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsTeamsSettingsCustomApp'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsUserCallingDelegate { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Delegate}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${MakeCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ManageSettings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${ReceiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${PickUpHeldCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${JoinActiveCalls}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingDelegate'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsUserCallingSettings { -[CmdletBinding(DefaultParameterSetName='Identity', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='CallGroupNotification', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${GroupNotificationOverride}, - - [Parameter(ParameterSetName='CallGroupMembership', Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[]] - # To construct, see NOTES section for GROUPMEMBERSHIPDETAILS properties and create a hash table. - ${GroupMembershipDetails}, - - [Parameter(ParameterSetName='CallGroup', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${CallGroupOrder}, - - [Parameter(ParameterSetName='CallGroup', Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Array] - ${CallGroupTargets}, - - [Parameter(ParameterSetName='UnansweredOnOff', Mandatory)] - [Parameter(ParameterSetName='Unanswered', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsUnansweredEnabled}, - - [Parameter(ParameterSetName='Unanswered', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UnansweredDelay}, - - [Parameter(ParameterSetName='Unanswered')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UnansweredTarget}, - - [Parameter(ParameterSetName='Unanswered')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${UnansweredTargetType}, - - [Parameter(ParameterSetName='ForwardingOnOff', Mandatory)] - [Parameter(ParameterSetName='Forwarding', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Boolean] - ${IsForwardingEnabled}, - - [Parameter(ParameterSetName='Forwarding', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ForwardingType}, - - [Parameter(ParameterSetName='Forwarding', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ForwardingTargetType}, - - [Parameter(ParameterSetName='Forwarding')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${ForwardingTarget} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Identity = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - CallGroupNotification = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - CallGroupMembership = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - CallGroup = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - UnansweredOnOff = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - Unanswered = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - ForwardingOnOff = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - Forwarding = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserCallingSettings'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-CsUserModern { -[CmdletBinding(DefaultParameterSetName='Id', PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${EnterpriseVoiceEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${HostedVoiceMail}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${LineURI}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${OnPremLineURI}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Id = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-CsUserModern'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-FixTenantFedConfigObject { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ConfigObject} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-FixTenantFedConfigObject'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-FixTypoInOnlinePSTNGatewayConfigObject { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ConfigObject} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-FixTypoInOnlinePSTNGatewayConfigObject'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Set-FormatOnConfigObject { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ConfigObject}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${ConfigType} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Set-FormatOnConfigObject'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Unregister-CsOdcServiceNumber { -[CmdletBinding(DefaultParameterSetName='ById', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='ById', Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter()] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${RemoveDefaultServiceNumber}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(ParameterSetName='ByInstance', Mandatory, ValueFromPipeline)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ConferencingServiceNumber] - # To construct, see NOTES section for INSTANCE properties and create a hash table. - ${Instance} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - ById = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Unregister-CsOdcServiceNumber'; - ByInstance = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Unregister-CsOdcServiceNumber'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsAutoAttendant { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - ${Identity}, - - [Parameter(Position=1)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - ${Force}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Update-CsAutoAttendant'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Update-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='RequiredPolicyList', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Position=0, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Identity}, - - [Parameter(Position=1, Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - ${PolicyList}, - - [Parameter(Position=2)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Object] - ${Description}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - RequiredPolicyList = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Update-CsCustomPolicyPackage'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# .ExternalHelp en-US\MicrosoftTeams-help -function Write-AdminServiceDiagnostic { -[CmdletBinding(PositionalBinding=$false)] -param( - [Parameter(Position=0)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord[]] - # To construct, see NOTES section for DIAGNOSTICS properties and create a hash table. - ${Diagnostics} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - __AllParameterSets = 'Microsoft.Teams.ConfigAPI.Cmdlets.custom\Write-AdminServiceDiagnostic'; - } - $cmdInfo = Get-Command -Name $mapping[$parameterSet] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# SIG # Begin signature block -# MIIncQYJKoZIhvcNAQcCoIInYjCCJ14CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDFbIOVPv4av3wf -# cPCRpC95shrGrvdZUTJ+9TZmCuxueaCCDMkwggYEMIID7KADAgECAhMzAAACHPrN -# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1 -# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP -# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC -# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf -# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j -# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT -# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL -# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT -# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw -# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w -# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl -# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC -# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN -# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK -# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK -# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY -# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu -# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE -# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz -# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6 -# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO -# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD -# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC -# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS -# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX -# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq -# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo -# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv -# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a -# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1 -# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO -# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7 -# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ -# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS -# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm -# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3 -# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E -# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX -# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB -# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP -# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw -# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv -# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC -# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D -# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY -# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI -# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6 -# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w -# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7 -# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK -# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK -# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw -# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT -# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn+MIIZ+gIBATBu -# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x -# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc -# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG -# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI -# hvcNAQkEMSIEIOzP+uskuU3D6LoSGMmGSo29RhSXFoNOdOWgr1wvmjNGMEIGCisG -# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAjhv2JCNETx3xdwzWTQwu -# 6MhIEoWhVFJccEQvy02CyrbZXQkwyJH3Zjzn2ZxqEb1s+aR8eEYE7EmlxxLvu9bj -# gb4ou2fL/oO+HGL55vaXTQ/6Y1fhmsaKJV09iDnLNFKRjEnpJ25/Q4pkanTXSUBA -# KmsMD++sxfvYq58oBxLLWERa/7j/djfFOA5KBGzi15KDy7ernJ4xA9nrn1xAaJWV -# AxOrTEqqeymHqTFmAW2SOab3vDIB9HvtK7IjnzgupsqFjAU36YBtepDTZ646QuPs -# MYDG/9vzWBIjZQw4lsLH+4rhONg0WKp9tPMVHf7nORNTYzUP/uRtqfAI+fQln/Hb -# f6GCF7AwghesBgorBgEEAYI3AwMBMYIXnDCCF5gGCSqGSIb3DQEHAqCCF4kwgheF -# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFaBgsqhkiG9w0BCRABBKCCAUkEggFFMIIB -# QQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCA5A5jh1ISSR37NEME8 -# KqFb3cueziBuc+p9r8kl6Sv15wIGaevXcJGDGBMyMDI2MDUxNTEwMDYzNi4xMjFa -# MASAAgH0oIHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo0QzFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCCEf4wggcoMIIFEKAD -# AgECAhMzAAACGCXZkgXi5+XkAAEAAAIYMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTI1MDgxNDE4NDgyNVoXDTI2MTExMzE4 -# NDgyNVowgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTAr -# BgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEnMCUG -# A1UECxMeblNoaWVsZCBUU1MgRVNOOjRDMUEtMDVFMC1EOTQ3MSUwIwYDVQQDExxN -# aWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOC -# Ag8AMIICCgKCAgEAsdzo6uuQJqAfxLnvEBfIvj6knK+p6bnMXEFZ/QjPOFywlcjD -# fzI8Dg1nzDlxm7/pqbvjWhyvazKmFyO6qbPwClfRnI57h5OCixgpOOCGJJQIZSTi -# Mgui3B8DPiFtJPcfzRt3FsnxjLXwBIjGgnjGfmQl7zejA1WoYL/qBmQhw/FDFTWe -# bxfo4m0RCCOxf2qwj31aOjc2aYUePtLMXHsXKPFH0tp5SKIF/9tJxRSg0NYEvQqV -# ilje8aQkPd3qzAux2Mc5HMSK4NMTtVVCYAWDUZ4p+6iDI9t5BNCBIsf5ooFNUWtx -# CqnpFYiLYkHfFfxhVUBZ8LGGxYsA36snD65s2Hf4t86k0e8WelH/usfhYqOM3z2y -# aI8rg08631IkwqUzyQoEPqMsHgBem1xpmOGSIUnVvTsAv+lmECL2RqrcOZlZax8K -# 0aiij8h6UkWBN2IA/ikackTSGVRBQmWWZuLFWV/T4xuNzscC0X7xo4fetgpsqaEA -# 0jY/QevkTvLv4OlNN9eOL8LNh7Vm0R65P7oabOQDqtUFAwCgjgPJ0iV/jQCaMAcO -# 3SYpG5wSAYiJkk4XLjNSlNxU2Idjs1sORhl7s7LC6hOb7bVAHVwON74GxfFNiEIA -# 6BfudANjpQJ0nUc/ppEXpT4pgDBHsYtV8OyKSjKsIxOdFR7fIJIjDc8DvUkCAwEA -# AaOCAUkwggFFMB0GA1UdDgQWBBQkLqHEXDobY7dHuoQCBa4sX7aL0TAfBgNVHSME -# GDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1l -# LVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsG -# AQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01p -# Y3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMB -# Af8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIHgDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnkjRhjwPgdoIpvt4YioT/j0LWuBxF3ARBKXDENgg -# raKvC0oRPwbjAmsXnPEmtuo5MD8uJ9Xw9eYrxqqkK4DF9snZMrHMfooxCa++1irL -# z8YoozC4tci+a4N37Sbke1pt1xs9qZtvkPgZGWn5BcwVfmAwSZLHi2CuZ06Y0/X+ -# t6fNBnrbMVovNaDX4WPdyI9GEzxfIggDsck2Ipo4VXL/Arcz7p2F7bEZGRuyxjgM -# C+woCkDJaH/yk/wcZpAsixe4POdN0DW6Zb35O3Dg3+a6prANMc3WIdvfKDl75P0a -# qcQbQAR7b0f4gH4NMkUct0Wm4GN5KhsE1YK7V/wAqDKmK4jx3zLz3a8Hsxa9HB3G -# yitlmC5sDhOl4QTGN5kRi6oCoV4hK+kIFgnkWjHhSRNomz36QnbCSG/BHLEm2GRU -# 9u3/I4zUd9E1AC97IJEGfwb+0NWb3QEcrkypdGdWwl0LEObhrQR9B1V7+edcyNms -# X0p2BX0rFpd1PkXJSbxf8IcEiw/bkNgagZE+VlDtxXeruLdo5k3lGOv7rPYuOEao -# ZYxDvZtpHP9P36wmW4INjR6NInn2UM+krP/xeLnRbDBkm9RslnoDhVraliKDH62B -# xhcgL9tiRgOHlcI0wqvVWLdv8yW8rxkawOlhCRqT3EKECW8ktUAPwNbBULkT+oWc -# vBcwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0GCSqGSIb3DQEB -# CwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD -# VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAe -# Fw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5OGm -# TOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9uT4XYDP/XE/H -# ZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZrBxTzxXb1hlDc -# wUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk2pg7uhp7M62A -# W36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxRnOlwaQ3KNi1w -# jjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uDRedGbsoy1cCG -# MFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGaRnXNxF803RKJ -# 1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fzpk03dJQcNIIP -# 8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG4tG9ahhaYQFz -# ymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGUlNi5UPkLiWHz -# NgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLEhReTwDwV2xo3 -# xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0wggHZMBIGCSsG -# AQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+gpE8RjUpzxD/ -# LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNVHSAEVTBTMFEG -# DCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29m -# dC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8G -# A1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQw -# VgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j -# cmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUF -# BwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br -# aS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJKoZIhvcNAQEL -# BQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEGk5c9MTO1OdfC -# cTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2LpypglYAA7AF -# vonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7ndn/OOPcbzaN9l -# 9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSFQrP8DJ6LGYnn -# 8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy87JGA0j3mSj5m -# O0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8x1RtnWN0SCyx -# TkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2fpCjcZxkoJLo4 -# S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz/gq77EFmPWn9 -# y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQKBqJC4822rpM -# +Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAxM328y+l7vzhw -# RNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGbyoYIDWTCCAkEC -# AQEwggEBoYHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0 -# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo0QzFBLTA1RTAtRDk0NzElMCMG -# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcGBSsOAwIa -# AxUAnWtGrXWiuNE8QrKfm4CtGr57z+mggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1T -# dGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQsFAAIFAO2xWzkwIhgPMjAyNjA1MTUw -# ODQzMzdaGA8yMDI2MDUxNjA4NDMzN1owdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA -# 7bFbOQIBADAKAgEAAgIENQIB/zAHAgEAAgISRjAKAgUA7bKsuQIBADA2BgorBgEE -# AYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAIDAYag -# MA0GCSqGSIb3DQEBCwUAA4IBAQB8Yf9FM7/uMp39GuXbVHLY3di68EP7SEI60Zzp -# B//Au/6py6KU129z6hgBYFlVTrYIXRJwgLq7sCxh5pavqXROliSJZiyEkOUMYz5F -# 8cm5DFmrIV0J7oMydSlu4QkMhv7zQLFyfrlWbRJxdCQoa9/hUl0Hmg1b4SUs8Vc4 -# 95NN2Y8pkNjbRhAtbeLcTl01TqwtBO3C694RcWngYFioQCETWmAcKgXzhKcaUrxK -# SEhIc5avYY7sDYJPJBai9DPaIY2CTiqCtLAQivAZRB4zOtFX9MNp4XDiKH5SIIOq -# a9YdSmBWJPIyXqafKyMMAuL5x+q04rc3dCoiRyq/zlT1K2yqMYIEDTCCBAkCAQEw -# gZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAIYJdmSBeLn5eQA -# AQAAAhgwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0B -# CRABBDAvBgkqhkiG9w0BCQQxIgQgsbpK1JPzVMLJlgS+s4maDrJdH+o/0X3c6BqT -# PY4zTG4wgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCCZE9yJuOTItIwWaES6 -# lzGKK1XcSoz1ynRzaOVzx9eFajCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAACGCXZkgXi5+XkAAEAAAIYMCIEIJU0gQq+RH5jUzebRoPp -# RdXjP3Q+Fnd8Gb0daXNW4P4KMA0GCSqGSIb3DQEBCwUABIICADM15ZVCC12e8pj7 -# rOjQz2JxKnAYjGzPirmsGUzjWZstUcGd8eu3tGZhvEoHri8EHDpdpi2v4qqXYGN6 -# lpwccSoTh8ErSFSu3t5a9ar5PshW+YjkT5QL5Vshl+pVQy3ycMvgwGKFFuDgYCmO -# q02L5u2mdV24uiwy5jkg7r7urb3VqwVTyihW1Jcl6gTB3PKgZSovJk4Nv6OkWzlI -# wTa7xBlrN/NXcnbqRuyeCwbVIu5ihmpYwCruYgv7eG/nGNLDQnmtoW0kiecKOHNR -# yyVca7iRCu+6a3JtgbJVYHJ4SM0fMB2XQG1MmR1wfVzUsTDB8BsjYqW0Hlrl+HKG -# gCgLsn3layVZWQJq3/vHRcJyfF0I8/mowSg7vndE+Wz15BC61YvINiTC+rZ2Ij8G -# 4SFKkWLjLCcqmiyuCRMdSqTr6u5j+kmaqIkfLSHP9lta/jF+0Kh244Qoup30gUy6 -# k6UnMONpWjApLWA7FagUi9n3PT8YKVD7zLF/ni/Rnz2u5nFKu4fybn4y03EZH6ED -# ENSy3KALmadtEe2R6LxlaUyDLOfKwM0XJL8XCJ9TFb5Uc3AqiiribuyydMLkG8+L -# I05hrGAAEDBvlbY+iRDU3B4wMNuUpPqKdDBrYbTHHSy+wC6310yN/JJ46ATyFQjZ -# e3Xz8kDq1NjA0Mw8q40PK1bNpWkb -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/internal/Merged_internal.ps1 b/Modules/MicrosoftTeams/7.8.0/internal/Merged_internal.ps1 deleted file mode 100644 index 8d5e79fdbe3e5..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/internal/Merged_internal.ps1 +++ /dev/null @@ -1,51503 +0,0 @@ - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtUpdateSearchOrderRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : UpdateSearchOrderRequest - [Action ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/complete-csonlinetelephonenumberorder -#> -function Complete-CsOnlineTelephoneNumberOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='CompleteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Complete', Mandatory)] - [Parameter(ParameterSetName='CompleteExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${OrderId}, - - [Parameter(ParameterSetName='CompleteViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CompleteViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Complete', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CompleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtUpdateSearchOrderRequest] - # UpdateSearchOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CompleteExpanded')] - [Parameter(ParameterSetName='CompleteViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Action}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Complete = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_Complete'; - CompleteExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteExpanded'; - CompleteViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteViaIdentity'; - CompleteViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Audio file content. -GET Teams.MediaStorage/audiofile/appId/audiofileId/content -.Description -Get Audio file content. -GET Teams.MediaStorage/audiofile/appId/audiofileId/content -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/export-csonlineaudiofile -#> -function Export-CsOnlineAudioFile { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Export', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Export', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Export', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='ExportViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Export = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Export-CsOnlineAudioFile_Export'; - ExportViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Export-CsOnlineAudioFile_ExportViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Find group. -GET /Teams.VoiceApps/groups?. -.Description -Find group. -GET /Teams.VoiceApps/groups?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetGroupsResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/find-csgroup -#> -function Find-CsGroup { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetGroupsResponse])] -[CmdletBinding(DefaultParameterSetName='Find', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to exact match on the search query or not. - ${ExactMatchOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to return only groups enabled for mail. - ${MailEnabledOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Gets or sets max results to return. - ${MaxResults}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Gets or sets search query. - ${SearchQuery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Find = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Find-CsGroup_Find'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Search for application instances that match the search criteria. -.Description -Search for application instances that match the search criteria. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstancesResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/find-csonlineapplicationinstance -#> -function Find-CsOnlineApplicationInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstancesResponse])] -[CmdletBinding(DefaultParameterSetName='Find', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssociatedOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExactMatchOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAssociated}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${MaxResults}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SearchQuery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${UnAssociatedOnly}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Find = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Find-CsOnlineApplicationInstance_Find'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Tenant from AAD. -Get-CsAadTenant -.Description -Get Tenant from AAD. -Get-CsAadTenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadTenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csaadtenant -#> -function Get-CsAadTenant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadTenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadTenant_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get User. -Get-CsAadUser -.Description -Get User. -Get-CsAadUser -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csaaduser -#> -function Get-CsAadUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadUser])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # identity. - # Supports UserId as Guid or UPN as String. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all AI Agents for a tenant. -GET /Teams.VoiceApps/aiagents? -.Description -Get all AI Agents for a tenant. -GET /Teams.VoiceApps/aiagents? -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csagent -#> -function Get-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # AI Agent Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/identity. -.Description -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendant -#> -function Get-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantsResponse])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Gets auto attendant holidays. -GET Teams.VoiceApps/auto-attendants/identity/holidays. -.Description -Gets auto attendant holidays. -GET Teams.VoiceApps/auto-attendants/identity/holidays. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantHolidaysResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantholidays -#> -function Get-CsAutoAttendantHolidays { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantHolidaysResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${ResponseType}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${Year}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantHolidays_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantHolidays_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/status/identity -.Description -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/status/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord3 -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantstatus -#> -function Get-CsAutoAttendantStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord3])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${IncludeResources}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantStatus_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get specific language information. -GET Teams.VoiceApps/supported-languages/identity. -.Description -Get specific language information. -GET Teams.VoiceApps/supported-languages/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedLanguageResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantsupportedlanguage -#> -function Get-CsAutoAttendantSupportedLanguage { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedLanguageResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the supported language to retrieve the information for. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedLanguage_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedLanguage_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get supported timezone information. -GET Teams.VoiceApps/supported-timezones/identity. -.Description -Get supported timezone information. -GET Teams.VoiceApps/supported-timezones/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedTimeZoneResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantsupportedtimezone -#> -function Get-CsAutoAttendantSupportedTimeZone { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedTimeZoneResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the supported timezone to retrieve the information for. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedTimeZone_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedTimeZone_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get tenant information specific to Voice Apps by the tenant Id. -GET Teams.VoiceApps/information. -.Description -Get tenant information specific to Voice Apps by the tenant Id. -GET Teams.VoiceApps/information. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetTenantInformationResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendanttenantinformation -#> -function Get-CsAutoAttendantTenantInformation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetTenantInformationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantTenantInformation_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all Auto Recording Template. -GET /Teams.VoiceApps/auto-recording?. -.Description -Get all Auto Recording Template. -GET /Teams.VoiceApps/auto-recording?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplatesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautorecordingtemplate -#> -function Get-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Auto Recording Template Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Gets raw data from bvd tables. -.Description -Gets raw data from bvd tables. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBvdTableEntity -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csbusinessvoicedirectorydiagnosticdata -#> -function Get-CsBusinessVoiceDirectoryDiagnosticData { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBvdTableEntity])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # PartitionKey of the table. - ${PartitionKey}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Region to query Bvd table. - ${Region}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Bvd table name. - ${Table}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Optional resultSize. - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Optional row key. - ${RowKey}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBusinessVoiceDirectoryDiagnosticData_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBusinessVoiceDirectoryDiagnosticData_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get call queues. -GET Teams.VoiceApps/callqueues?. -.Description -Get call queues. -GET Teams.VoiceApps/callqueues?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueueResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueuesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cscallqueue -#> -function Get-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueuesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to filter invalid Obo from the response. - # If invalid Obos are not needed in the response set the flag to true, otherwise false. - # An obo is termed invalid when a previously associated Obo is deleted from AAD or phone number associated to the Obo is removed. - ${FilterInvalidObos}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all Compliance Recording Configs. -GET /Teams.VoiceApps/compliance-recording?. -.Description -Get all Compliance Recording Configs. -GET /Teams.VoiceApps/compliance-recording?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingForCallQueueResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingsForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cscompliancerecordingforcallqueuetemplate -#> -function Get-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingsForCallQueueResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Compliance Recording Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all tenant available configurations -.Description -Get all tenant available configurations -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csconfiguration -#> -function Get-CsConfiguration { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration], [System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # string - ${ConfigType}, - - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_GetViaIdentity1'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all Appointment Booking flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking?. -.Description -Get all Appointment Booking flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantappointmentbookingflow -#> -function Get-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get a specific MainlineAttendantFlow Config for the given flow identity. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/identity. -.Description -Get a specific MainlineAttendantFlow Config for the given flow identity. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantflow -#> -function Get-CsMainlineAttendantFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Type}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all Question Answer flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer?. -.Description -Get all Question Answer flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantquestionanswerflow -#> -function Get-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get requested Schema's data from MAS DB. -.Description -Get requested Schema's data from MAS DB. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMasSchemaItem -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmasversionedschemadata -#> -function Get-CsMasVersionedSchemaData { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMasSchemaItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Schema to get from MAS DB - ${SchemaName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Last X versions to fetch from MAS DB. - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMasVersionedSchemaData_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get meeting migration status for a user or tenant -.Description -Get meeting migration status for a user or tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationstatusmodern -#> -function Get-CsMeetingMigrationStatusModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationStatusModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get meeting migration status summary for a user or tenant -.Description -Get meeting migration status summary for a user or tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusSummaryResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationstatussummarymodern -#> -function Get-CsMeetingMigrationStatusSummaryModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusSummaryResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationStatusSummaryModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get meeting migration transaction history for a user -.Description -Get meeting migration transaction history for a user -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationTransactionHistoryResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationtransactionhistorymodern -#> -function Get-CsMeetingMigrationTransactionHistoryModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationTransactionHistoryResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, Aad user object Id - ${UserIdentity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # CorrelationId fetched when running start-csexmeetingmigration - ${CorrelationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationTransactionHistoryModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Tenant's Migrationdetails. -.Description -Get Tenant's Migrationdetails. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGmtSchemaItem -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmovetenantserviceinstancetaskstatus -#> -function Get-CsMoveTenantServiceInstanceTaskStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGmtSchemaItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMoveTenantServiceInstanceTaskStatus_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -This cmdlet is point get operation on users. -.Description -This cmdlet is point get operation on users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csodcuser -#> -function Get-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId of user. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get application instance association. -GET Teams.VoiceApps/applicationinstanceassociations/identity. -.Description -Get application instance association. -GET Teams.VoiceApps/applicationinstanceassociations/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineapplicationinstanceassociation -#> -function Get-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociation_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociation_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get application instance association status. -GET Teams.VoiceApps/applicationinstanceassociations/identity/status. -.Description -Get application instance association status. -GET Teams.VoiceApps/applicationinstanceassociations/identity/status. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationStatusResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineapplicationinstanceassociationstatus -#> -function Get-CsOnlineApplicationInstanceAssociationStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationStatusResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociationStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociationStatus_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Audio file metedata with expiring download link. -GET api/v3/tenants/tenantId/audiofile/appId/audiofileId?durationInMins=int(default=60) -.Description -Get Audio file metedata with expiring download link. -GET api/v3/tenants/tenantId/audiofile/appId/audiofileId?durationInMins=int(default=60) -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineaudiofile -#> -function Get-CsOnlineAudioFile { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Parameter(ParameterSetName='GetViaIdentity')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${DurationInMin}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_GetViaIdentity1'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineenhancedemergencyservicedisclaimer -#> -function Get-CsOnlineEnhancedEmergencyServiceDisclaimer { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Version}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineEnhancedEmergencyServiceDisclaimer_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineEnhancedEmergencyServiceDisclaimer_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineliscivicaddress -#> -function Get-CsOnlineLisCivicAddress { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddress_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all schedules for a tenant. -GET Teams.VoiceApps/schedules?. -.Description -Get all schedules for a tenant. -GET Teams.VoiceApps/schedules?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetScheduleResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSchedulesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineschedule -#> -function Get-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSchedulesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetGenericOrderResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlinetelephonenumberorder -#> -function Get-CsOnlineTelephoneNumberOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetGenericOrderResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${OrderId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${OrderType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumberOrder_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Cs-OnlineVoicemailUserSettings. -.Description -Get Cs-OnlineVoicemailUserSettings. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlinevmusersetting -#> -function Get-CsOnlineVMUserSetting { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVMUserSetting_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVMUserSetting_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all shared call history template Configs. -GET /Teams.VoiceApps/shared-call-history-template?. -.Description -Get all shared call history template Configs. -GET /Teams.VoiceApps/shared-call-history-template?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllSharedCallHistoryTemplatesResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cssharedcallhistorytemplate -#> -function Get-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllSharedCallHistoryTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # shared call history template Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get all ivr tags template for a tenant. -GET api/v1.0/tenants/tenantId/ivr-tags-template?. -.Description -Get all ivr tags template for a tenant. -GET api/v1.0/tenants/tenantId/ivr-tags-template?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplatesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cstagstemplate -#> -function Get-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Org Settings - Get-CsTeamsSettingsCustomApp -.Description -Get Org Settings - Get-CsTeamsSettingsCustomApp -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCustomAppSettingResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csteamssettingscustomapp -#> -function Get-CsTeamsSettingsCustomApp { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCustomAppSettingResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSettingsCustomApp_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get a list of available team templates -.Description -Get a list of available team templates -.Example -PS C:\> Get-CsTeamTemplateList - -OdataId Name ShortDescription Chann AppCo - elCou unt - nt -------- ---- ---------------- ----- ----- -/api/teamtemplates/v1.0/healthcareWard/Public/en-US Collaborate on Patient Care Collaborate on patient care i... 6 1 -/api/teamtemplates/v1.0/healthcareHospital/Public/en-US Hospital Facilitate collaboration with... 6 1 -/api/teamtemplates/v1.0/retailStore/Public/en-US Organize a Store Collaborate with your retail ... 3 1 -/api/teamtemplates/v1.0/retailManagerCollaboration/Public/en-US Retail - Manager Collaboration Collaborate with managers acr... 3 1 - -.Example -PS C:\> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where ChannelCount -GT 3 - -OdataId Name ShortDescription Chann AppCo - elCou unt - nt -------- ---- ---------------- ----- ----- -/api/teamtemplates/v1.0/healthcareWard/Public/en-US Collaborate on Patient Care Collaborate on patient care i... 6 1 -/api/teamtemplates/v1.0/healthcareHospital/Public/en-US Hospital Facilitate collaboration with... 6 1 - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csteamtemplatelist -#> -function Get-CsTeamTemplateList { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Language and country code for localization of publicly available templates. - ${PublicTemplateLocale}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplateList_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplateList_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get Tenant. -.Description -Get Tenant. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cstenantobou -#> -function Get-CsTenantObou { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantObou_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Get User. -.Description -Get User. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csuser -#> -function Get-CsUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('UserId')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - # Supports Guid. - # Eventually UPN and SIP. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To fetch optional location field - ${Expandlocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set includedefaultproperties value - ${Includedefaultproperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Skip user policies in user response object - ${Skipuserpolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set to true when called from Get-CsVoiceUser cmdlet - ${Voiceuserquery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Unified group grant. -.Description -Unified group grant. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGroupGrantPayload -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [PolicyName ]: - [Priority ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csgrouppolicyassignment -#> -function Grant-CsGroupPolicyAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${GroupId}, - - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGroupGrantPayload] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Rank}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Assign a policy package to a group in a tenant -.Description -Assign a policy package to a group in a tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsApplyPackageGroupResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYRANKINGS : . - PolicyType : - Rank : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csgrouppolicypackageassignment -#> -function Grant-CsGroupPolicyPackageAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsApplyPackageGroupResponse])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${GroupId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PackageName}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyRanking[]] - # . - # To construct, see NOTES section for POLICYRANKINGS properties and create a hash table. - ${PolicyRankings}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyPackageAssignment_GrantExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update single policy of a Tenant -.Description -Update single policy of a Tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AdditionalParameter ]: Dictionary of - [(Any) ]: This indicates any property can be added to this object. - [ForceSwitchPresent ]: - [PolicyName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-cstenantpolicy -#> -function Grant-CsTenantPolicy { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Policy Type - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequestAdditionalParameters]))] - [System.Collections.Hashtable] - # Dictionary of - ${AdditionalParameters}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceSwitchPresent}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update single policy of a user -.Description -Update single policy of a user -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AdditionalParameter ]: Dictionary of - [(Any) ]: This indicates any property can be added to this object. - [PolicyName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csuserpolicy -#> -function Grant-CsUserPolicy { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # User Id - ${Identity}, - - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Policy Type - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequestAdditionalParameters]))] - [System.Collections.Hashtable] - # Dictionary of - ${AdditionalParameters}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Import holidays for auto attendant. -PUT Teams.VoiceApps/auto-attendants/identity/holidays. -.Description -Import holidays for auto attendant. -PUT Teams.VoiceApps/auto-attendants/identity/holidays. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Id ]: - [SerializedHolidayRecord ]: - [TenantId ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/import-csautoattendantholidays -#> -function Import-CsAutoAttendantHolidays { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysResponse])] -[CmdletBinding(DefaultParameterSetName='ImportExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Import', Mandatory)] - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='ImportViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='ImportViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Import', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='ImportViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SerializedHolidayRecord}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Import = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_Import'; - ImportExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportExpanded'; - ImportViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportViaIdentity'; - ImportViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Store a new Audio file in MSS. -POST api/v3/tenants/tenantId/audiofile. -.Description -Store a new Audio file in MSS. -POST api/v3/tenants/tenantId/audiofile. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantAudioFileDto -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - ApplicationId : - Content : - OriginalFilename : - [Id ]: - [ContextId ]: - [ConvertedFilename ]: - [DeletionTimestampOffset ]: - [DownloadUri ]: - [DownloadUriExpiryTimestampOffset ]: - [Duration ]: - [LastAccessedTimestampOffset ]: - [UploadedTimestampOffset ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/import-csonlineaudiofile -#> -function Import-CsOnlineAudioFile { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto])] -[CmdletBinding(DefaultParameterSetName='ImportExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Import', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantAudioFileDto] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Content}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileName}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ContextId}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConvertedFilename}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DeletionTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DownloadUri}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DownloadUriExpiryTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Duration}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${LastAccessedTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${UploadedTimestampOffset}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Import = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsOnlineAudioFile_Import'; - ImportExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsOnlineAudioFile_ImportExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Invokes Custom Handler -.Description -Invokes Custom Handler -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICustomHandlerCallBackOutput -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-cscustomhandlercallbackngtprov -#> -function Invoke-CsCustomHandlerCallBackNgtprov { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICustomHandlerCallBackOutput])] -[CmdletBinding(DefaultParameterSetName='Post', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Unique Id of the Handler. - ${Id}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Callback Operation. - ${Operation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # EventName for the SendEventPostURI. - ${Eventname}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsCustomHandlerCallBackNgtprov_Post'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Post DsSync resync cmdlet -.Description -Post DsSync resync cmdlet -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request body for DsSync cmdlet - [DeploymentName ]: Deployment Name - [IsValidationRequest ]: - [ObjectClass ]: Object Class enum - [ObjectId ]: GUID of the user - [ObjectIds ]: - [ReSyncOption ]: ReSync for the given entity - [ScenariosToSuppress ]: Scenarios to Suppress - [ServiceInstance ]: Service Instance of the tenant - [SynchronizeTenantWithAllObject ]: Sync all the users of the tenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-csdirectobjectsync -#> -function Invoke-CsDirectObjectSync { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody] - # Request body for DsSync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Deployment Name - ${DeploymentName}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object Class enum - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # GUID of the user - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ObjectIds}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync for the given entity - ${ReSyncOption}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Sync all the users of the tenant - ${SynchronizeTenantWithAllObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsDirectObjectSync_Post'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsDirectObjectSync_PostExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Post resync operation cmdlet -.Description -Post resync operation cmdlet -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request body for Resync cmdlet - [IsValidationRequest ]: - [ObjectClass ]: Object Class enum - [ObjectId ]: - [ReSyncOption ]: ReSync for the given entity - [ScenariosToSuppress ]: Scenarios to Suppress - [ServiceInstance ]: Service Instance of the tenant - [SynchronizeTenantWithAllObject ]: Sync all the users of the tenant - [TenantId ]: TenantId GUID -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-csmsodssync -#> -function Invoke-CsMsodsSync { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody] - # Request body for Resync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object Class enum - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync for the given entity - ${ReSyncOption}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Sync all the users of the tenant - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # TenantId GUID - ${TenantId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsMsodsSync_Post'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsMsodsSync_PostExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Creates a new AI Agent. -POST /Teams.VoiceApps/aiagents -.Description -Creates a new AI Agent. -POST /Teams.VoiceApps/aiagents -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAiAgentConfigurationResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csagent -#> -function New-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny] - # Any object - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAgent_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAgent_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create an AutoAttendant. -POST Teams.VoiceApps/auto-attendants. -.Description -Create an AutoAttendant. -POST Teams.VoiceApps/auto-attendants. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AuthorizedUser ]: - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallFlow ]: - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - [CallHandlingAssociation ]: - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - [DefaultCallFlowForceListenMenuEnabled ]: - [DefaultCallFlowGreeting ]: - [DefaultCallFlowId ]: - [DefaultCallFlowName ]: - [DefaultCallFlowRingResourceAccountDelegate ]: - [ExclusionScopeGroupDialScopeGroupId ]: - [ExclusionScopeType ]: - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [InclusionScopeGroupDialScopeGroupId ]: - [InclusionScopeType ]: - [LanguageId ]: - [MainlineAttendantAgentVoiceId ]: - [MainlineAttendantEnabled ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [MenuPrompt ]: - [Name ]: - [OperatorCallPriority ]: - [OperatorEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorEnableTranscription ]: - [OperatorId ]: - [OperatorSharedVoicemailHistoryTemplateId ]: - [OperatorType ]: - [TimeZoneId ]: - [UserNameExtension ]: - [VoiceId ]: - [VoiceResponseEnabled ]: - -CALLFLOW : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -CALLHANDLINGASSOCIATION : . - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - -DEFAULTCALLFLOWGREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendant -#> -function New-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AuthorizedUser}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallFlow[]] - # . - # To construct, see NOTES section for CALLFLOW properties and create a hash table. - ${CallFlow}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallHandlingAssociation[]] - # . - # To construct, see NOTES section for CALLHANDLINGASSOCIATION properties and create a hash table. - ${CallHandlingAssociation}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowForceListenMenuEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for DEFAULTCALLFLOWGREETING properties and create a hash table. - ${DefaultCallFlowGreeting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowRingResourceAccountDelegate}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableMainlineAttendant}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableVoiceResponse}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ExclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ExclusionScopeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUser}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${InclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${InclusionScopeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LanguageId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantAgentVoiceId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TimeZoneId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserNameExtension}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${VoiceId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendant_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendant_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a callable entity draft. -POST Teams.VoiceApps/auto-attendants/callable-entities/draft. -.Description -Create a callable entity draft. -POST Teams.VoiceApps/auto-attendants/callable-entities/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallPriority ]: - [EnableSharedVoicemailSystemPromptSuppression ]: - [EnableTranscription ]: - [Id ]: - [SharedVoicemailHistoryTemplateId ]: - [Type ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallableentity -#> -function New-CsAutoAttendantCallableEntity { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallableEntity_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallableEntity_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a call flow draft. -POST Teams.VoiceApps/auto-attendants/call-flows/draft. -.Description -Create a call flow draft. -POST Teams.VoiceApps/auto-attendants/call-flows/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -GREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallflow -#> -function New-CsAutoAttendantCallFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceListenMenuEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for GREETING properties and create a hash table. - ${Greeting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${RingResourceAccountDelegates}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a call handling association draft. -POST Teams.VoiceApps/auto-attendants/call-handling-associations/draft. -.Description -Create a call handling association draft. -POST Teams.VoiceApps/auto-attendants/call-handling-associations/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallFlowId ]: - [Enabled ]: - [ScheduleId ]: - [Type ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallhandlingassociation -#> -function New-CsAutoAttendantCallHandlingAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallFlowId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${Enabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ScheduleId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallHandlingAssociation_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallHandlingAssociation_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a group dial scope draft. -POST Teams.VoiceApps/auto-attendants/group-dial-scopes/draft. -.Description -Create a group dial scope draft. -POST Teams.VoiceApps/auto-attendants/group-dial-scopes/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [GroupId ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantdialscope -#> -function New-CsAutoAttendantDialScope { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${GroupIds}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantDialScope_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantDialScope_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a menu draft. -POST Teams.VoiceApps/auto-attendants/menus/draft. -.Description -Create a menu draft. -POST Teams.VoiceApps/auto-attendants/menus/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [DialByNameEnabled ]: - [DirectorySearchMethod ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [Name ]: - [Prompt ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -PROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantmenu -#> -function New-CsAutoAttendantMenu { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableDialByName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for PROMPT properties and create a hash table. - ${Prompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenu_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenu_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a menu option draft. -POST Teams.VoiceApps/auto-attendants/menus/menu-options/draft. -.Description -Create a menu option draft. -POST Teams.VoiceApps/auto-attendants/menus/menu-options/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantmenuoption -#> -function New-CsAutoAttendantMenuOption { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Action}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AgentTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AgentTargetTagTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${AgentTargetType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptDownloadUri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptFileName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallTargetCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${CallTargetEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${CallTargetEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DtmfResponse}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PromptActiveType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PromptTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${VoiceResponses}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenuOption_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenuOption_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a prompt draft. -POST Teams.VoiceApps/auto-attendants/prompts/draft. -.Description -Create a prompt draft. -POST Teams.VoiceApps/auto-attendants/prompts/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantprompt -#> -function New-CsAutoAttendantPrompt { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ActiveType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptDownloadUri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptFileName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantPrompt_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantPrompt_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create auto recording template POST /Teams.VoiceApps/auto-recording -.Description -Create auto recording template POST /Teams.VoiceApps/auto-recording -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoRecordingTemplateResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautorecordingtemplate -#> -function New-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny] - # Any object - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoRecordingTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoRecordingTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Starts Deployment at Scale -.Description -Starts Deployment at Scale -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequestResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - DeploymentCsv : - [UsersToNotify ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csbatchteamsdeployment -#> -function New-CsBatchTeamsDeployment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequestResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DeploymentCsv}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UsersToNotify}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchTeamsDeployment_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchTeamsDeployment_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create call queue. -POST Teams.VoiceApps/callqueues. -.Description -Create call queue. -POST Teams.VoiceApps/callqueues. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -AGENT : Gets or sets the Call Queue's agents list. - [ObjectId ]: - [OptIn ]: - -BODY : CallQueue creation request DTO class. - [Agent ]: Gets or sets the Call Queue's agents list. - [ObjectId ]: - [OptIn ]: - [AgentAlertTime ]: Gets or sets the number of seconds that a call can remain unanswered. - [AllowOptOut ]: Gets or sets a value indicating whether to allow agent optout on CallQueue. - [AuthorizedUser ]: Gets or sets authorized user ids. - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallToAgentRatioThresholdBeforeOfferingCallback ]: - [CallbackEmailNotificationTarget ]: Gets or sets the callback email notification target. - [CallbackOfferAudioFilePromptResourceId ]: - [CallbackOfferTextToSpeechPrompt ]: - [CallbackRequestDtmf ]: - [ComplianceRecordingForCallQueueId ]: Gets or Sets the Id for Compliance Recording template for Callqueue. - [ConferenceMode ]: Gets or sets a value indicating whether to allow Conference Mode on CallQueue. - [CustomAudioFileAnnouncementForCr ]: Gets or sets the custom audio file announcement for compliance recording. - [CustomAudioFileAnnouncementForCrFailure ]: Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - [DistributionList ]: Gets or sets the Call Queue's Distribution Lists. - [EnableNoAgentSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableNoAgentSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableOverflowSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableOverflowSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableResourceAccountsForObo ]: Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - [EnableTimeoutSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableTimeoutSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [IsCallbackEnabled ]: - [LanguageId ]: Gets or sets the language Id used for TTS. - [MusicOnHoldAudioFileId ]: Gets or sets music on hold audio file id. - [Name ]: Gets or sets The Call Queue's name. - [NoAgentAction ]: Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - [NoAgentActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - [NoAgentActionTarget ]: Gets or sets the target of the NoAgent action. - [NoAgentApplyTo ]: Determines whether NoAgentAction is to be applied to All Calls or New Calls only. - [NoAgentDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on NoAgent. - [NoAgentDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on NoAgent. - [NoAgentRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - [NoAgentRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - [NoAgentSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemail. - [NoAgentSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [NumberOfCallsInQueueBeforeOfferingCallback ]: - [OboResourceAccountId ]: Gets or sets the Obo resource account ids. - [OverflowAction ]: Gets or sets the action to take when the overflow threshold is reached. - [OverflowActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - [OverflowActionTarget ]: Gets or sets the target of the overflow action. - [OverflowDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on overflow. - [OverflowDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on overflow. - [OverflowRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on overflow. - [OverflowRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on overflow. - [OverflowRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on overflow. - [OverflowRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on overflow. - [OverflowRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - [OverflowRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - [OverflowSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [OverflowSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [OverflowThreshold ]: Gets or sets the number of simultaneous calls that can be in the queue at any one time. - [PresenceAwareRouting ]: Gets or sets a value indicating whether to enable presence aware routing. - [RoutingMethod ]: Gets or sets the routing method for the Call Queue. - [ServiceLevelThresholdResponseTimeInSecond ]: - [SharedCallQueueHistoryId ]: Gets or sets the shared call history template. - [ShiftsSchedulingGroupId ]: Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - [ShiftsTeamId ]: Gets or sets the Shifts Team to use as Call queues answer target. - [ShouldOverwriteCallableChannelProperty ]: Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - [TextAnnouncementForCr ]: Gets or sets the text announcement for compliance recording. - [TextAnnouncementForCrFailure ]: Gets or sets the text announcemet that is played if CR bot is unable to join the call. - [ThreadId ]: Gets or sets teams channel thread id if user choose to sync CQ with a channel. - [TimeoutAction ]: Gets or sets the action to take if the timeout threshold is reached. - [TimeoutActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - [TimeoutActionTarget ]: Gets or sets the target of the timeout action. - [TimeoutDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on Timeout. - [TimeoutDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on Timeout. - [TimeoutRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on Timeout. - [TimeoutRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on Timeout. - [TimeoutRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - [TimeoutRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - [TimeoutSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [TimeoutSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [TimeoutThreshold ]: Gets or sets the number of minutes that a call can be in the queue before it times out. - [UseDefaultMusicOnHold ]: Gets or sets a value indicating whether to use default music on hold audio file. - [User ]: Gets or sets the Call Queue's Users. - [WaitTimeBeforeOfferingCallbackInSecond ]: - [WelcomeMusicAudioFileId ]: Gets or sets welcome music audio file id. - [WelcomeTextToSpeechPrompt ]: Gets or sets welcome text to speech content. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscallqueue -#> -function New-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChannelUserObjectId}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueRequest] - # CallQueue creation request DTO class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAgent[]] - # Gets or sets the Call Queue's agents list. - # To construct, see NOTES section for AGENT properties and create a hash table. - ${Agent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of seconds that a call can remain unanswered. - ${AgentAlertTime}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow agent optout on CallQueue. - ${AllowOptOut}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets authorized user ids. - ${AuthorizedUsers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the callback email notification target. - ${CallbackEmailNotificationTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackRequestDtmf}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or Sets the Id for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow Conference Mode on CallQueue. - ${ConferenceMode}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording. - ${CustomAudioFileAnnouncementForCr}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Distribution Lists. - ${DistributionLists}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - ${EnableResourceAccountsForObo}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUsers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallbackEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the language Id used for TTS. - ${LanguageId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets music on hold audio file id. - ${MusicOnHoldAudioFileId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets The Call Queue's name. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - ${NoAgentActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Determines whether NoAgentAction is to be applied to All Calls or New Calls only. - ${NoAgentApplyTo}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Obo resource account ids. - ${OboResourceAccountIds}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take when the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - ${OverflowActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of simultaneous calls that can be in the queue at any one time. - ${OverflowThreshold}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to enable presence aware routing. - ${PresenceAwareRouting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the routing method for the Call Queue. - ${RoutingMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the shared call history template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Team to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcement for compliance recording. - ${TextAnnouncementForCr}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcemet that is played if CR bot is unable to join the call. - ${TextAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets teams channel thread id if user choose to sync CQ with a channel. - ${ThreadId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - ${TimeoutActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of minutes that a call can be in the queue before it times out. - ${TimeoutThreshold}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to use default music on hold audio file. - ${UseDefaultMusicOnHold}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Users. - ${Users}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets welcome music audio file id. - ${WelcomeMusicAudioFileId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets welcome text to speech content. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCallQueue_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCallQueue_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create compliance recording template POST /Teams.VoiceApps/compliance-recording. -.Description -Create compliance recording template POST /Teams.VoiceApps/compliance-recording. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating a compliance recording. - [BotId ]: Gets or sets the MRI of the first bot. - [ConcurrentInvitationCount ]: Gets or sets the number of concurrent invitations allowed. - [Description ]: Gets or sets the description of the compliance recording. - [Name ]: Gets or sets the name of the compliance recording. - [PairedApplication ]: Gets or sets the paired applications for the compliance recording bot. This is a resiliency feature that allows invitation of another bot. If either of BotMRI or the paired application is available, we will consider the call to be successful. - [RequiredBeforeCall ]: Gets or sets a value indicating whether the compliance recording is required before the call. - [RequiredDuringCall ]: Gets or sets a value indicating whether the compliance recording is required during the call. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscompliancerecordingforcallqueuetemplate -#> -function New-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueRequest] - # Request model for creating a compliance recording. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the MRI of the first bot. - ${BotApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of concurrent invitations allowed. - ${ConcurrentInvitationCount}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the compliance recording. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the compliance recording. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the paired applications for the compliance recording bot. - # This is a resiliency feature that allows invitation of another bot.If either of BotMRI or the paired application is available, we will consider the call to be successful. - ${PairedApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required before the call. - ${RequiredBeforeCall}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required during the call. - ${RequiredDuringCall}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsComplianceRecordingForCallQueueTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsComplianceRecordingForCallQueueTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create new configuration -.Description -Create new configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csconfiguration -#> -function New-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Create', Mandatory)] - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Create = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_Create'; - CreateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateExpanded'; - CreateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateViaIdentity'; - CreateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a policy package -.Description -Create a policy package -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYLIST : . - PolicyName : - PolicyType : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscustompolicypackage -#> -function New-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyTypeAndName[]] - # . - # To construct, see NOTES section for POLICYLIST properties and create a hash table. - ${PolicyList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCustomPolicyPackage_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create apointment booking flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking. -.Description -Create apointment booking flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [ApiDefinition ]: Gets or sets the detailed definitions of the api. - [CallerAuthenticationMethod ]: Gets or sets the caller authentication method, allowed values: Sms, Email, VerificationLink, Voiceprint, UserDetails. - [Description ]: Gets or sets the description of the mainline attendant appointment booking flow. - [Name ]: Gets or sets the name of the mainline attendant appointment booking flow. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csmainlineattendantappointmentbookingflow -#> -function New-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the api. - ${ApiDefinitions}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the caller authentication method, allowed values: Sms, Email, VerificationLink, Voiceprint, UserDetails. - ${CallerAuthenticationMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant appointment booking flow. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant appointment booking flow. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantAppointmentBookingFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantAppointmentBookingFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create question and answer flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer. -.Description -Create question and answer flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [Description ]: Gets or sets the description of the mainline attendant question and answer flow. - [KnowledgeBase ]: Gets or sets the detailed definitions of the knowledge base. - [Name ]: Gets or sets the name of the mainline attendant question and answer flow. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csmainlineattendantquestionanswerflow -#> -function New-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant question and answer flow. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the knowledge base. - ${KnowledgeBase}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant question and answer flow. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantQuestionAnswerFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantQuestionAnswerFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create application instance associations. -POST Teams.VoiceApps/applicationinstanceassociations. -.Description -Create application instance associations. -POST Teams.VoiceApps/applicationinstanceassociations. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallPriority ]: - [ConfigurationId ]: - [ConfigurationType ]: - [EndpointsId ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlineapplicationinstanceassociation -#> -function New-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConfigurationId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConfigurationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${Identities}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceAssociation_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceAssociation_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a date time range draft. -POST Teams.VoiceApps/schedules/date-time-ranges/draft. -.Description -Create a date time range draft. -POST Teams.VoiceApps/schedules/date-time-ranges/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinedatetimerange -#> -function New-CsOnlineDateTimeRange { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${End}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Start}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDateTimeRange_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDateTimeRange_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletDirectRoutingNumberCreationRequest - [Description ]: - [EndingNumber ]: - [FileContent ]: - [StartingNumber ]: - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinedirectroutingtelephonenumberuploadorder -#> -function New-CsOnlineDirectRoutingTelephoneNumberUploadOrder { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest] - # CmdletDirectRoutingNumberCreationRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${EndingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileContent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StartingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a schedule. -POST Teams.VoiceApps/schedules. -.Description -Create a schedule. -POST Teams.VoiceApps/schedules. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -FIXEDSCHEDULEDATETIMERANGE : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEFRIDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEMONDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESATURDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESUNDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETHURSDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETUESDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlineschedule -#> -function New-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDateTimeRange[]] - # . - # To construct, see NOTES section for FIXEDSCHEDULEDATETIMERANGE properties and create a hash table. - ${FixedScheduleDateTimeRange}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeEnd}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${RecurrenceRangeNumberOfOccurrence}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeStart}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RecurrenceRangeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEFRIDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleFridayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${WeeklyRecurrentScheduleIsComplemented}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEMONDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleMondayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESATURDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSaturdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESUNDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSundayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETHURSDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleThursdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETUESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleTuesdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleWednesdayHour}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineSchedule_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineSchedule_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderRequest -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletReleaseOrderRequest - [EndingNumber ]: - [FileContent ]: - [StartingNumber ]: - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinetelephonenumberreleaseorder -#> -function New-CsOnlineTelephoneNumberReleaseOrder { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderRequest] - # CmdletReleaseOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${EndingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileContent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StartingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberReleaseOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberReleaseOrder_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create a time range draft. -POST Teams.VoiceApps/schedules/time-ranges/draft. -.Description -Create a time range draft. -POST Teams.VoiceApps/schedules/time-ranges/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinetimerange -#> -function New-CsOnlineTimeRange { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${End}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Start}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTimeRange_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTimeRange_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create New Bulk Sign in Request -.Description -Create New Bulk Sign in Request -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestItem[] -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Array of SDGBulkSignInRequestItem - [HardwareId ]: - [UserName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cssdgbulksigninrequest -#> -function New-CsSdgBulkSignInRequest { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInResponse])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Target Region where the device is located - ${TargetRegion}, - - [Parameter(Mandatory, ValueFromPipeline)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestItem[]] - # Array of SDGBulkSignInRequestItem - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSdgBulkSignInRequest_New'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Create shared call history template. -POST /Teams.VoiceApps/shared-call-history-template. -.Description -Create shared call history template. -POST /Teams.VoiceApps/shared-call-history-template. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating a shared call history template. - [AnsweredAndOutboundCall ]: Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - [Description ]: Gets or sets the description of the shared call history template. - [IncomingMissedCall ]: Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - [IncomingRedirectedCall ]: Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - [Name ]: Gets or sets the name of the shared call history template. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cssharedcallhistorytemplate -#> -function New-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateRequest] - # Request model for creating a shared call history template. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the shared call history template. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - ${IncomingMissedCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the shared call history template. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSharedCallHistoryTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSharedCallHistoryTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Creates a draft of each Ivr Tag -.Description -Creates a draft of each Ivr Tag -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: Name of the IVR tag. This alue is used to identify which callable entity to transfer the call to. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstag -#> -function New-CsTag { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${TagDetailCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TagDetailEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TagDetailEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Name of the IVR tag. - # This alue is used to identify which callable entity to transfer the call to. - ${TagName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTag_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTag_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Creates a new IVR tags template. -POST api/v1.0/tenants/tenantId/ivr-tags-template -.Description -Creates a new IVR tags template. -POST api/v1.0/tenants/tenantId/ivr-tags-template -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Description ]: Description of the IVR tag template. - [Name ]: Gets or sets the name of the IVR tag template. - [Tag ]: List of tags associated with the IVR tag template. These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: - -TAGS : List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstagstemplate -#> -function New-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Description of the IVR tag template. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the IVR tag template. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagDtoModel[]] - # List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - # To construct, see NOTES section for TAGS properties and create a hash table. - ${Tags}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTagsTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTagsTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -PS C:\> (Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/com.microsoft.teams.template.AdoptOffice365/Public/en-US') > input.json -# open json in your favorite editor, make changes - -PS C:\> New-CsTeamTemplate -Locale en-US -Body (Get-Content '.\input.json' | Out-String) - -{ - "id": "061fe692-7da7-4f65-a57b-0472cf0045af", - "name": "New Template", - "scope": "Tenant", - "shortDescription": "New Description", - "iconUri": "https://statics.teams.cdn.office.net/evergreen-assets/teamtemplates/icons/default_tenant.svg", - "channelCount": 2, - "appCount": 2, - "modifiedOn": "2020-12-10T18:46:52.7231705Z", - "modifiedBy": "6c4445f6-a23d-473c-951d-7474d289c6b3", - "locale": "en-US", - "@odata.id": "/api/teamtemplates/v1.0/061fe692-7da7-4f65-a57b-0472cf0045af/Tenant/en-US" -} -.Example -PS C:\> New-CsTeamTemplate ` --Locale en-US ` --DisplayName 'New Template' ` --ShortDescription 'New Description' ` --App @{id='feda49f8-b9f2-4985-90f0-dd88a8f80ee1'}, @{id='1d71218a-92ad-4254-be15-c5ab7a3e4423'} ` --Channel @{ ` - displayName="General"; ` - id="General"; ` - isFavoriteByDefault=$true; ` -}, ` -@{ ` - displayName="test"; ` - id="b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475"; ` - isFavoriteByDefault=$false; ` -} - - -{ - "id": "061fe692-7da7-4f65-a57b-0472cf0045af", - "name": "New Template", - "scope": "Tenant", - "shortDescription": "New Description", - "iconUri": "https://statics.teams.cdn.office.net/evergreen-assets/teamtemplates/icons/default_tenant.svg", - "channelCount": 2, - "appCount": 2, - "modifiedOn": "2020-12-10T18:46:52.7231705Z", - "modifiedBy": "6c4445f6-a23d-473c-951d-7474d289c6b3", - "locale": "en-US", - "@odata.id": "/api/teamtemplates/v1.0/061fe692-7da7-4f65-a57b-0472cf0045af/Tenant/en-US" -} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -APP : Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - [Id ]: Gets or sets the app's ID in the global apps catalog. - -BODY : The client input for a request to create a template. Only admins from Config Api can perform this request. - DisplayName : Gets or sets the team's DisplayName. - ShortDescription : Gets or sets template short description. - [App ]: Gets or sets the set of applications that should be installed in teams created based on the template. The app catalog is the main directory for information about each app; this set is intended only as a reference. - [Id ]: Gets or sets the app's ID in the global apps catalog. - [Category ]: Gets or sets list of categories. - [Channel ]: Gets or sets the set of channel templates included in the team template. - [Description ]: Gets or sets channel description as displayed to users. - [DisplayName ]: Gets or sets channel name as displayed to users. - [Id ]: Gets or sets identifier for the channel template. - [IsFavoriteByDefault ]: Gets or sets a value indicating whether whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - [Tab ]: Gets or sets collection of tabs that should be added to the channel. - [Configuration ]: Represents the configuration of a tab. - [ContentUrl ]: Gets or sets the Url used for rendering tab contents in Teams. - [EntityId ]: Gets or sets the identifier for the entity hosted by the tab provider. - [RemoveUrl ]: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - [WebsiteUrl ]: Gets or sets the Url for showing tab contents outside of Teams. - [Id ]: Gets or sets identifier for the channel tab template. - [Key ]: Gets a unique identifier. - [MessageId ]: Gets or sets id used to identify the chat message associated with the tab. - [Name ]: Gets or sets the tab name displayed to users. - [SortOrderIndex ]: Gets or sets index of the order used for sorting tabs. - [TeamsAppId ]: Gets or sets the app's id in the global apps catalog. - [WebUrl ]: Gets or sets the deep link url of the tab instance. - [Classification ]: Gets or sets the team's classification. Tenant admins configure AAD with the set of possible values. - [Description ]: Gets or sets the team's Description. - [DiscoverySetting ]: Governs discoverability of a team. - ShowInTeamsSearchAndSuggestion : Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - [FunSetting ]: Governs use of fun media like giphy and stickers in the team. - AllowCustomMeme : Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - AllowGiphy : Gets or sets a value indicating whether users can post giphy content in team conversations. - AllowStickersAndMeme : Gets or sets a value indicating whether users can post stickers and memes in team conversations. - GiphyContentRating : Gets or sets the rating filter on giphy content. - [GuestSetting ]: Guest role settings for the team. - AllowCreateUpdateChannel : Gets or sets a value indicating whether guests can create or edit channels in the team. - AllowDeleteChannel : Gets or sets a value indicating whether guests can delete team channels. - [Icon ]: Gets or sets template icon. - [IsMembershipLimitedToOwner ]: Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - [MemberSetting ]: Member role settings for the team. - AllowAddRemoveApp : Gets or sets a value indicating whether members can add or remove apps in the team. - AllowCreatePrivateChannel : Gets or Sets a value indicating whether members can create Private channels. - AllowCreateUpdateChannel : Gets or sets a value indicating whether members can create or edit channels in the team. - AllowCreateUpdateRemoveConnector : Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - AllowCreateUpdateRemoveTab : Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - AllowDeleteChannel : Gets or sets a value indicating whether members can delete team channels. - UploadCustomApp : Gets or sets a value indicating is allowed to upload custom apps. - [MessagingSetting ]: Governs use of messaging features within the team These are settings the team owner should be able to modify from UI after team creation. - AllowChannelMention : Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - AllowOwnerDeleteMessage : Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - AllowTeamMention : Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - AllowUserDeleteMessage : Gets or sets a value indicating whether team members can delete their own messages in team conversations. - AllowUserEditMessage : Gets or sets a value indicating whether team members can edit their own messages in team conversations. - [OwnerUserObjectId ]: Gets or sets the AAD user object id of the user who should be set as the owner of the new team. Only to be used when an application or administrative user is making the request on behalf of the specified user. - [PublishedBy ]: Gets or sets published name. - [Specialization ]: The specialization or use case describing the team. Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - [TemplateId ]: Gets or sets the id of the base template for the team. Either a Microsoft base template or a custom template. - [Uri ]: Gets or sets uri to be used for GetTemplate api call. - [Visibility ]: Used to control the scope of users who can view a group/team and its members, and ability to join. - -CHANNEL : Gets or sets the set of channel templates included in the team template. - [Description ]: Gets or sets channel description as displayed to users. - [DisplayName ]: Gets or sets channel name as displayed to users. - [Id ]: Gets or sets identifier for the channel template. - [IsFavoriteByDefault ]: Gets or sets a value indicating whether whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - [Tab ]: Gets or sets collection of tabs that should be added to the channel. - [Configuration ]: Represents the configuration of a tab. - [ContentUrl ]: Gets or sets the Url used for rendering tab contents in Teams. - [EntityId ]: Gets or sets the identifier for the entity hosted by the tab provider. - [RemoveUrl ]: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - [WebsiteUrl ]: Gets or sets the Url for showing tab contents outside of Teams. - [Id ]: Gets or sets identifier for the channel tab template. - [Key ]: Gets a unique identifier. - [MessageId ]: Gets or sets id used to identify the chat message associated with the tab. - [Name ]: Gets or sets the tab name displayed to users. - [SortOrderIndex ]: Gets or sets index of the order used for sorting tabs. - [TeamsAppId ]: Gets or sets the app's id in the global apps catalog. - [WebUrl ]: Gets or sets the deep link url of the tab instance. - -DISCOVERYSETTING : Governs discoverability of a team. - ShowInTeamsSearchAndSuggestion : Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - -FUNSETTING : Governs use of fun media like giphy and stickers in the team. - AllowCustomMeme : Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - AllowGiphy : Gets or sets a value indicating whether users can post giphy content in team conversations. - AllowStickersAndMeme : Gets or sets a value indicating whether users can post stickers and memes in team conversations. - GiphyContentRating : Gets or sets the rating filter on giphy content. - -GUESTSETTING : Guest role settings for the team. - AllowCreateUpdateChannel : Gets or sets a value indicating whether guests can create or edit channels in the team. - AllowDeleteChannel : Gets or sets a value indicating whether guests can delete team channels. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -MEMBERSETTING : Member role settings for the team. - AllowAddRemoveApp : Gets or sets a value indicating whether members can add or remove apps in the team. - AllowCreatePrivateChannel : Gets or Sets a value indicating whether members can create Private channels. - AllowCreateUpdateChannel : Gets or sets a value indicating whether members can create or edit channels in the team. - AllowCreateUpdateRemoveConnector : Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - AllowCreateUpdateRemoveTab : Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - AllowDeleteChannel : Gets or sets a value indicating whether members can delete team channels. - UploadCustomApp : Gets or sets a value indicating is allowed to upload custom apps. - -MESSAGINGSETTING : Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - AllowChannelMention : Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - AllowOwnerDeleteMessage : Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - AllowTeamMention : Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - AllowUserDeleteMessage : Gets or sets a value indicating whether team members can delete their own messages in team conversations. - AllowUserEditMessage : Gets or sets a value indicating whether team members can edit their own messages in team conversations. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csteamtemplate -#> -function New-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory)] - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Locale}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate] - # The client input for a request to create a template. - # Only admins from Config Api can perform this request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's DisplayName. - ${DisplayName}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template short description. - ${ShortDescription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[]] - # Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - # To construct, see NOTES section for APP properties and create a hash table. - ${App}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets list of categories. - ${Category}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[]] - # Gets or sets the set of channel templates included in the team template. - # To construct, see NOTES section for CHANNEL properties and create a hash table. - ${Channel}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's classification.Tenant admins configure AAD with the set of possible values. - ${Classification}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's Description. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings] - # Governs discoverability of a team. - # To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - ${DiscoverySetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings] - # Governs use of fun media like giphy and stickers in the team. - # To construct, see NOTES section for FUNSETTING properties and create a hash table. - ${FunSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings] - # Guest role settings for the team. - # To construct, see NOTES section for GUESTSETTING properties and create a hash table. - ${GuestSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template icon. - ${Icon}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - ${IsMembershipLimitedToOwner}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings] - # Member role settings for the team. - # To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - ${MemberSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings] - # Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - # To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - ${MessagingSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AAD user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - ${OwnerUserObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets published name. - ${PublishedBy}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - ${Specialization}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - ${TemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets uri to be used for GetTemplate api call. - ${Uri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Used to control the scope of users who can view a group/team and its members, and ability to join. - ${Visibility}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewExpanded'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewViaIdentity'; - NewViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Invokes tenant migration -.Description -Invokes tenant migration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigration -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigrationResult -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Payload for tenant migration - [MoveOption ]: MoveOption can take following values PrepForMove, StartDualSync, Finalize. - [TargetServiceInstance ]: Target service instance where tenant is to be migrated. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstenantcrossmigration -#> -function New-CsTenantCrossMigration { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigrationResult])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigration] - # Payload for tenant migration - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # MoveOption can take following values PrepForMove, StartDualSync, Finalize. - ${MoveOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Target service instance where tenant is to be migrated. - ${TargetServiceInstance}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantCrossMigration_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantCrossMigration_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Adds delegate with validations in bvd -.Description -Adds delegate with validations in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csusercallingdelegate -#> -function New-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Delegate}, - - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${MakeCalls}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ManageSettings}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ReceiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to join active calls. - ${JoinActiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to pick up held calls. - ${PickUpHeldCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsUserCallingDelegate_New'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsUserCallingDelegate_NewViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtUpdateSearchOrderRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : UpdateSearchOrderRequest - [Action ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/complete-csonlinetelephonenumberorder -#> -function Complete-CsOnlineTelephoneNumberOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='CompleteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Complete', Mandatory)] - [Parameter(ParameterSetName='CompleteExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${OrderId}, - - [Parameter(ParameterSetName='CompleteViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CompleteViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Complete', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CompleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtUpdateSearchOrderRequest] - # UpdateSearchOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CompleteExpanded')] - [Parameter(ParameterSetName='CompleteViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Action}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Complete = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_Complete'; - CompleteExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteExpanded'; - CompleteViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteViaIdentity'; - CompleteViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Complete-CsOnlineTelephoneNumberOrder_CompleteViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Audio file content. -GET Teams.MediaStorage/audiofile/appId/audiofileId/content -.Description -Get Audio file content. -GET Teams.MediaStorage/audiofile/appId/audiofileId/content -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/export-csonlineaudiofile -#> -function Export-CsOnlineAudioFile { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Export', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Export', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Export', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='ExportViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Export = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Export-CsOnlineAudioFile_Export'; - ExportViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Export-CsOnlineAudioFile_ExportViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Find group. -GET /Teams.VoiceApps/groups?. -.Description -Find group. -GET /Teams.VoiceApps/groups?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetGroupsResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/find-csgroup -#> -function Find-CsGroup { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetGroupsResponse])] -[CmdletBinding(DefaultParameterSetName='Find', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to exact match on the search query or not. - ${ExactMatchOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to return only groups enabled for mail. - ${MailEnabledOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Gets or sets max results to return. - ${MaxResults}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Gets or sets search query. - ${SearchQuery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Find = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Find-CsGroup_Find'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Search for application instances that match the search criteria. -.Description -Search for application instances that match the search criteria. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstancesResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/find-csonlineapplicationinstance -#> -function Find-CsOnlineApplicationInstance { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstancesResponse])] -[CmdletBinding(DefaultParameterSetName='Find', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssociatedOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExactMatchOnly}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAssociated}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${MaxResults}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SearchQuery}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${UnAssociatedOnly}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Find = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Find-CsOnlineApplicationInstance_Find'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Tenant from AAD. -Get-CsAadTenant -.Description -Get Tenant from AAD. -Get-CsAadTenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadTenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csaadtenant -#> -function Get-CsAadTenant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadTenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadTenant_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get User. -Get-CsAadUser -.Description -Get User. -Get-CsAadUser -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csaaduser -#> -function Get-CsAadUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAadUser])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # identity. - # Supports UserId as Guid or UPN as String. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAadUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all AI Agents for a tenant. -GET /Teams.VoiceApps/aiagents? -.Description -Get all AI Agents for a tenant. -GET /Teams.VoiceApps/aiagents? -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csagent -#> -function Get-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # AI Agent Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAgent_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Gets auto attendant holidays. -GET Teams.VoiceApps/auto-attendants/identity/holidays. -.Description -Gets auto attendant holidays. -GET Teams.VoiceApps/auto-attendants/identity/holidays. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantHolidaysResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantholidays -#> -function Get-CsAutoAttendantHolidays { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantHolidaysResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${Name}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${ResponseType}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${Year}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantHolidays_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantHolidays_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/status/identity -.Description -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/status/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord3 -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantstatus -#> -function Get-CsAutoAttendantStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord3])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String[]] - # . - ${IncludeResources}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantStatus_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get specific language information. -GET Teams.VoiceApps/supported-languages/identity. -.Description -Get specific language information. -GET Teams.VoiceApps/supported-languages/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedLanguageResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantsupportedlanguage -#> -function Get-CsAutoAttendantSupportedLanguage { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedLanguageResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the supported language to retrieve the information for. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedLanguage_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedLanguage_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get supported timezone information. -GET Teams.VoiceApps/supported-timezones/identity. -.Description -Get supported timezone information. -GET Teams.VoiceApps/supported-timezones/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedTimeZoneResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendantsupportedtimezone -#> -function Get-CsAutoAttendantSupportedTimeZone { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSupportedTimeZoneResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the supported timezone to retrieve the information for. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedTimeZone_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantSupportedTimeZone_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get tenant information specific to Voice Apps by the tenant Id. -GET Teams.VoiceApps/information. -.Description -Get tenant information specific to Voice Apps by the tenant Id. -GET Teams.VoiceApps/information. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetTenantInformationResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendanttenantinformation -#> -function Get-CsAutoAttendantTenantInformation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetTenantInformationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendantTenantInformation_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/identity. -.Description -Get a specific auto attendant. -GET Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautoattendant -#> -function Get-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoAttendantsResponse])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoAttendant_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all Auto Recording Template. -GET /Teams.VoiceApps/auto-recording?. -.Description -Get all Auto Recording Template. -GET /Teams.VoiceApps/auto-recording?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplatesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csautorecordingtemplate -#> -function Get-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Auto Recording Template Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsAutoRecordingTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Gets raw data from bvd tables. -.Description -Gets raw data from bvd tables. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBvdTableEntity -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csbusinessvoicedirectorydiagnosticdata -#> -function Get-CsBusinessVoiceDirectoryDiagnosticData { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBvdTableEntity])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # PartitionKey of the table. - ${PartitionKey}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Region to query Bvd table. - ${Region}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Bvd table name. - ${Table}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Optional resultSize. - ${ResultSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Optional row key. - ${RowKey}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBusinessVoiceDirectoryDiagnosticData_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsBusinessVoiceDirectoryDiagnosticData_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get call queues. -GET Teams.VoiceApps/callqueues?. -.Description -Get call queues. -GET Teams.VoiceApps/callqueues?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueueResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueuesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cscallqueue -#> -function Get-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueuesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to filter invalid Obo from the response. - # If invalid Obos are not needed in the response set the flag to true, otherwise false. - # An obo is termed invalid when a previously associated Obo is deleted from AAD or phone number associated to the Obo is removed. - ${FilterInvalidObos}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsCallQueue_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all Compliance Recording Configs. -GET /Teams.VoiceApps/compliance-recording?. -.Description -Get all Compliance Recording Configs. -GET /Teams.VoiceApps/compliance-recording?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingForCallQueueResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingsForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cscompliancerecordingforcallqueuetemplate -#> -function Get-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingsForCallQueueResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Compliance Recording Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsComplianceRecordingForCallQueueTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all tenant available configurations -.Description -Get all tenant available configurations -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csconfiguration -#> -function Get-CsConfiguration { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration], [System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # string - ${ConfigType}, - - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsConfiguration_GetViaIdentity1'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all Appointment Booking flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking?. -.Description -Get all Appointment Booking flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantappointmentbookingflow -#> -function Get-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantAppointmentBookingFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get a specific MainlineAttendantFlow Config for the given flow identity. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/identity. -.Description -Get a specific MainlineAttendantFlow Config for the given flow identity. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantflow -#> -function Get-CsMainlineAttendantFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Type}, - - [Parameter(ParameterSetName='Get1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all Question Answer flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer?. -.Description -Get all Question Answer flows for a tenant. -GET api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmainlineattendantquestionanswerflow -#> -function Get-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllMainlineAttendantFlowsResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetMainlineAttendantFlowResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMainlineAttendantQuestionAnswerFlow_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get requested Schema's data from MAS DB. -.Description -Get requested Schema's data from MAS DB. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMasSchemaItem -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmasversionedschemadata -#> -function Get-CsMasVersionedSchemaData { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMasSchemaItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Schema to get from MAS DB - ${SchemaName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Last X versions to fetch from MAS DB. - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMasVersionedSchemaData_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get meeting migration status for a user or tenant -.Description -Get meeting migration status for a user or tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationstatusmodern -#> -function Get-CsMeetingMigrationStatusModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationStatusModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get meeting migration status summary for a user or tenant -.Description -Get meeting migration status summary for a user or tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusSummaryResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationstatussummarymodern -#> -function Get-CsMeetingMigrationStatusSummaryModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationStatusSummaryResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, domainName LogonName - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Meeting migration type - SfbToSfb, SfbToTeams, TeamsToTeams, AllToTeams, ToSameType, Unknown - ${MigrationType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # state of meeting Migration status - Pending, InProgress, Failed, Succeeded - ${State}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationStatusSummaryModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get meeting migration transaction history for a user -.Description -Get meeting migration transaction history for a user -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationTransactionHistoryResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmeetingmigrationtransactionhistorymodern -#> -function Get-CsMeetingMigrationTransactionHistoryModern { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMeetingMigrationTransactionHistoryResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Identity. - # Supports UPN and SIP, Aad user object Id - ${UserIdentity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # CorrelationId fetched when running start-csexmeetingmigration - ${CorrelationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # end time filter - to get meeting migration status before endtime - ${EndTime}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # start time filter - to get meeting migration status after starttime - ${StartTime}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMeetingMigrationTransactionHistoryModern_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Tenant's Migrationdetails. -.Description -Get Tenant's Migrationdetails. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGmtSchemaItem -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csmovetenantserviceinstancetaskstatus -#> -function Get-CsMoveTenantServiceInstanceTaskStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGmtSchemaItem])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsMoveTenantServiceInstanceTaskStatus_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -This cmdlet is point get operation on users. -.Description -This cmdlet is point get operation on users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csodcuser -#> -function Get-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId of user. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOdcUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get application instance association status. -GET Teams.VoiceApps/applicationinstanceassociations/identity/status. -.Description -Get application instance association status. -GET Teams.VoiceApps/applicationinstanceassociations/identity/status. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationStatusResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineapplicationinstanceassociationstatus -#> -function Get-CsOnlineApplicationInstanceAssociationStatus { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationStatusResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociationStatus_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociationStatus_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get application instance association. -GET Teams.VoiceApps/applicationinstanceassociations/identity. -.Description -Get application instance association. -GET Teams.VoiceApps/applicationinstanceassociations/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineapplicationinstanceassociation -#> -function Get-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetApplicationInstanceAssociationResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociation_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineApplicationInstanceAssociation_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Audio file metedata with expiring download link. -GET api/v3/tenants/tenantId/audiofile/appId/audiofileId?durationInMins=int(default=60) -.Description -Get Audio file metedata with expiring download link. -GET api/v3/tenants/tenantId/audiofile/appId/audiofileId?durationInMins=int(default=60) -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineaudiofile -#> -function Get-CsOnlineAudioFile { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto])] -[CmdletBinding(DefaultParameterSetName='Get1', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Parameter(ParameterSetName='GetViaIdentity')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${DurationInMin}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_GetViaIdentity'; - GetViaIdentity1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineAudioFile_GetViaIdentity1'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineenhancedemergencyservicedisclaimer -#> -function Get-CsOnlineEnhancedEmergencyServiceDisclaimer { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Version}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineEnhancedEmergencyServiceDisclaimer_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineEnhancedEmergencyServiceDisclaimer_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineliscivicaddress -#> -function Get-CsOnlineLisCivicAddress { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICivicAddress])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineLisCivicAddress_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all schedules for a tenant. -GET Teams.VoiceApps/schedules?. -.Description -Get all schedules for a tenant. -GET Teams.VoiceApps/schedules?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetScheduleResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSchedulesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlineschedule -#> -function Get-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSchedulesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to retrieve. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineSchedule_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetGenericOrderResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlinetelephonenumberorder -#> -function Get-CsOnlineTelephoneNumberOrder { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtGetGenericOrderResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${OrderId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${OrderType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineTelephoneNumberOrder_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Cs-OnlineVoicemailUserSettings. -.Description -Get Cs-OnlineVoicemailUserSettings. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csonlinevmusersetting -#> -function Get-CsOnlineVMUserSetting { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVMUserSetting_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsOnlineVMUserSetting_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all shared call history template Configs. -GET /Teams.VoiceApps/shared-call-history-template?. -.Description -Get all shared call history template Configs. -GET /Teams.VoiceApps/shared-call-history-template?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllSharedCallHistoryTemplatesResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cssharedcallhistorytemplate -#> -function Get-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetAllSharedCallHistoryTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # shared call history template Id. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${IncludeStatus}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsSharedCallHistoryTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get all ivr tags template for a tenant. -GET api/v1.0/tenants/tenantId/ivr-tags-template?. -.Description -Get all ivr tags template for a tenant. -GET api/v1.0/tenants/tenantId/ivr-tags-template?. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplatesResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cstagstemplate -#> -function Get-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplatesResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get1', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Descending}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ExcludeContent}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${First}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NameFilter}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${Skip}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SortBy}, - - [Parameter(ParameterSetName='Get')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${TypeFilter}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_Get'; - Get1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_Get1'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTagsTemplate_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Org Settings - Get-CsTeamsSettingsCustomApp -.Description -Get Org Settings - Get-CsTeamsSettingsCustomApp -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCustomAppSettingResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csteamssettingscustomapp -#> -function Get-CsTeamsSettingsCustomApp { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGetCustomAppSettingResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamsSettingsCustomApp_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get a list of available team templates -.Description -Get a list of available team templates -.Example -PS C:\> Get-CsTeamTemplateList - -OdataId Name ShortDescription Chann AppCo - elCou unt - nt -------- ---- ---------------- ----- ----- -/api/teamtemplates/v1.0/healthcareWard/Public/en-US Collaborate on Patient Care Collaborate on patient care i... 6 1 -/api/teamtemplates/v1.0/healthcareHospital/Public/en-US Hospital Facilitate collaboration with... 6 1 -/api/teamtemplates/v1.0/retailStore/Public/en-US Organize a Store Collaborate with your retail ... 3 1 -/api/teamtemplates/v1.0/retailManagerCollaboration/Public/en-US Retail - Manager Collaboration Collaborate with managers acr... 3 1 - -.Example -PS C:\> (Get-CsTeamTemplateList -PublicTemplateLocale en-US) | where ChannelCount -GT 3 - -OdataId Name ShortDescription Chann AppCo - elCou unt - nt -------- ---- ---------------- ----- ----- -/api/teamtemplates/v1.0/healthcareWard/Public/en-US Collaborate on Patient Care Collaborate on patient care i... 6 1 -/api/teamtemplates/v1.0/healthcareHospital/Public/en-US Hospital Facilitate collaboration with... 6 1 - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csteamtemplatelist -#> -function Get-CsTeamTemplateList { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateSummary], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Language and country code for localization of publicly available templates. - ${PublicTemplateLocale}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplateList_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTeamTemplateList_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get Tenant. -.Description -Get Tenant. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-cstenantobou -#> -function Get-CsTenantObou { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenant])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsTenantObou_Get'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Get User. -.Description -Get User. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/get-csuser -#> -function Get-CsUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] -param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('UserId')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - # Supports Guid. - # Eventually UPN and SIP. - ${Identity}, - - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To fetch optional location field - ${Expandlocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set includedefaultproperties value - ${Includedefaultproperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Skip user policies in user response object - ${Skipuserpolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set to true when called from Get-CsVoiceUser cmdlet - ${Voiceuserquery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Get = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUser_Get'; - GetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Get-CsUser_GetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Unified group grant. -.Description -Unified group grant. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGroupGrantPayload -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [PolicyName ]: - [Priority ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csgrouppolicyassignment -#> -function Grant-CsGroupPolicyAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${GroupId}, - - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IGroupGrantPayload] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Rank}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyAssignment_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Assign a policy package to a group in a tenant -.Description -Assign a policy package to a group in a tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsApplyPackageGroupResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYRANKINGS : . - PolicyType : - Rank : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csgrouppolicypackageassignment -#> -function Grant-CsGroupPolicyPackageAssignment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsApplyPackageGroupResponse])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${GroupId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PackageName}, - - [Parameter()] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyRanking[]] - # . - # To construct, see NOTES section for POLICYRANKINGS properties and create a hash table. - ${PolicyRankings}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsGroupPolicyPackageAssignment_GrantExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update single policy of a Tenant -.Description -Update single policy of a Tenant -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AdditionalParameter ]: Dictionary of - [(Any) ]: This indicates any property can be added to this object. - [ForceSwitchPresent ]: - [PolicyName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-cstenantpolicy -#> -function Grant-CsTenantPolicy { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Policy Type - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantTenantRequestAdditionalParameters]))] - [System.Collections.Hashtable] - # Dictionary of - ${AdditionalParameters}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceSwitchPresent}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsTenantPolicy_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update single policy of a user -.Description -Update single policy of a user -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AdditionalParameter ]: Dictionary of - [(Any) ]: This indicates any property can be added to this object. - [PolicyName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/grant-csuserpolicy -#> -function Grant-CsUserPolicy { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='GrantExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # User Id - ${Identity}, - - [Parameter(ParameterSetName='Grant', Mandatory)] - [Parameter(ParameterSetName='GrantExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Policy Type - ${PolicyType}, - - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Grant', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='GrantViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISingleGrantUserRequestAdditionalParameters]))] - [System.Collections.Hashtable] - # Dictionary of - ${AdditionalParameters}, - - [Parameter(ParameterSetName='GrantExpanded')] - [Parameter(ParameterSetName='GrantViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PolicyName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Grant = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_Grant'; - GrantExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantExpanded'; - GrantViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantViaIdentity'; - GrantViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Grant-CsUserPolicy_GrantViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Import holidays for auto attendant. -PUT Teams.VoiceApps/auto-attendants/identity/holidays. -.Description -Import holidays for auto attendant. -PUT Teams.VoiceApps/auto-attendants/identity/holidays. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Id ]: - [SerializedHolidayRecord ]: - [TenantId ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/import-csautoattendantholidays -#> -function Import-CsAutoAttendantHolidays { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysResponse])] -[CmdletBinding(DefaultParameterSetName='ImportExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Import', Mandatory)] - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='ImportViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='ImportViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Import', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='ImportViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IImportAutoAttendantHolidaysRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SerializedHolidayRecord}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Parameter(ParameterSetName='ImportViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Import = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_Import'; - ImportExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportExpanded'; - ImportViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportViaIdentity'; - ImportViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsAutoAttendantHolidays_ImportViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Store a new Audio file in MSS. -POST api/v3/tenants/tenantId/audiofile. -.Description -Store a new Audio file in MSS. -POST api/v3/tenants/tenantId/audiofile. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantAudioFileDto -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - ApplicationId : - Content : - OriginalFilename : - [Id ]: - [ContextId ]: - [ConvertedFilename ]: - [DeletionTimestampOffset ]: - [DownloadUri ]: - [DownloadUriExpiryTimestampOffset ]: - [Duration ]: - [LastAccessedTimestampOffset ]: - [UploadedTimestampOffset ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/import-csonlineaudiofile -#> -function Import-CsOnlineAudioFile { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAudioFileDto])] -[CmdletBinding(DefaultParameterSetName='ImportExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Import', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantAudioFileDto] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Content}, - - [Parameter(ParameterSetName='ImportExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileName}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ContextId}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConvertedFilename}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DeletionTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DownloadUri}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${DownloadUriExpiryTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Duration}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${LastAccessedTimestampOffset}, - - [Parameter(ParameterSetName='ImportExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${UploadedTimestampOffset}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Import = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsOnlineAudioFile_Import'; - ImportExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Import-CsOnlineAudioFile_ImportExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Invokes Custom Handler -.Description -Invokes Custom Handler -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICustomHandlerCallBackOutput -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-cscustomhandlercallbackngtprov -#> -function Invoke-CsCustomHandlerCallBackNgtprov { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICustomHandlerCallBackOutput])] -[CmdletBinding(DefaultParameterSetName='Post', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Unique Id of the Handler. - ${Id}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Callback Operation. - ${Operation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # EventName for the SendEventPostURI. - ${Eventname}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsCustomHandlerCallBackNgtprov_Post'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Post DsSync resync cmdlet -.Description -Post DsSync resync cmdlet -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request body for DsSync cmdlet - [DeploymentName ]: Deployment Name - [IsValidationRequest ]: - [ObjectClass ]: Object Class enum - [ObjectId ]: GUID of the user - [ObjectIds ]: - [ReSyncOption ]: ReSync for the given entity - [ScenariosToSuppress ]: Scenarios to Suppress - [ServiceInstance ]: Service Instance of the tenant - [SynchronizeTenantWithAllObject ]: Sync all the users of the tenant -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-csdirectobjectsync -#> -function Invoke-CsDirectObjectSync { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDsRequestBody] - # Request body for DsSync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Deployment Name - ${DeploymentName}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object Class enum - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # GUID of the user - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ObjectIds}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync for the given entity - ${ReSyncOption}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Sync all the users of the tenant - ${SynchronizeTenantWithAllObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsDirectObjectSync_Post'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsDirectObjectSync_PostExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Post resync operation cmdlet -.Description -Post resync operation cmdlet -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request body for Resync cmdlet - [IsValidationRequest ]: - [ObjectClass ]: Object Class enum - [ObjectId ]: - [ReSyncOption ]: ReSync for the given entity - [ScenariosToSuppress ]: Scenarios to Suppress - [ServiceInstance ]: Service Instance of the tenant - [SynchronizeTenantWithAllObject ]: Sync all the users of the tenant - [TenantId ]: TenantId GUID -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/invoke-csmsodssync -#> -function Invoke-CsMsodsSync { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='PostExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Post', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IResyncRequestBody] - # Request body for Resync cmdlet - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsValidationRequest}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Object Class enum - ${ObjectClass}, - - [Parameter(ParameterSetName='PostExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ObjectId}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int64] - # ReSync for the given entity - ${ReSyncOption}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Scenarios to Suppress - ${ScenariosToSuppress}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Service Instance of the tenant - ${ServiceInstance}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Sync all the users of the tenant - ${SynchronizeTenantWithAllObject}, - - [Parameter(ParameterSetName='PostExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # TenantId GUID - ${TenantId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Post = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsMsodsSync_Post'; - PostExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Invoke-CsMsodsSync_PostExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Creates a new AI Agent. -POST /Teams.VoiceApps/aiagents -.Description -Creates a new AI Agent. -POST /Teams.VoiceApps/aiagents -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAiAgentConfigurationResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csagent -#> -function New-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny] - # Any object - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAgent_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAgent_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a callable entity draft. -POST Teams.VoiceApps/auto-attendants/callable-entities/draft. -.Description -Create a callable entity draft. -POST Teams.VoiceApps/auto-attendants/callable-entities/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallPriority ]: - [EnableSharedVoicemailSystemPromptSuppression ]: - [EnableTranscription ]: - [Id ]: - [SharedVoicemailHistoryTemplateId ]: - [Type ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallableentity -#> -function New-CsAutoAttendantCallableEntity { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallableEntityRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallableEntity_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallableEntity_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a call flow draft. -POST Teams.VoiceApps/auto-attendants/call-flows/draft. -.Description -Create a call flow draft. -POST Teams.VoiceApps/auto-attendants/call-flows/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -GREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallflow -#> -function New-CsAutoAttendantCallFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceListenMenuEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for GREETING properties and create a hash table. - ${Greeting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${RingResourceAccountDelegates}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a call handling association draft. -POST Teams.VoiceApps/auto-attendants/call-handling-associations/draft. -.Description -Create a call handling association draft. -POST Teams.VoiceApps/auto-attendants/call-handling-associations/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallFlowId ]: - [Enabled ]: - [ScheduleId ]: - [Type ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantcallhandlingassociation -#> -function New-CsAutoAttendantCallHandlingAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallHandlingAssociationRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallFlowId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${Enabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ScheduleId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallHandlingAssociation_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantCallHandlingAssociation_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a group dial scope draft. -POST Teams.VoiceApps/auto-attendants/group-dial-scopes/draft. -.Description -Create a group dial scope draft. -POST Teams.VoiceApps/auto-attendants/group-dial-scopes/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [GroupId ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantdialscope -#> -function New-CsAutoAttendantDialScope { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateGroupDialScopeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${GroupIds}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantDialScope_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantDialScope_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a menu option draft. -POST Teams.VoiceApps/auto-attendants/menus/menu-options/draft. -.Description -Create a menu option draft. -POST Teams.VoiceApps/auto-attendants/menus/menu-options/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantmenuoption -#> -function New-CsAutoAttendantMenuOption { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuOptionRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Action}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AgentTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AgentTargetTagTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${AgentTargetType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptDownloadUri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptFileName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallTargetCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${CallTargetEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${CallTargetEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallTargetType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DtmfResponse}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PromptActiveType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${PromptTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${VoiceResponses}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenuOption_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenuOption_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a menu draft. -POST Teams.VoiceApps/auto-attendants/menus/draft. -.Description -Create a menu draft. -POST Teams.VoiceApps/auto-attendants/menus/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [DialByNameEnabled ]: - [DirectorySearchMethod ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [Name ]: - [Prompt ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -PROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantmenu -#> -function New-CsAutoAttendantMenu { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateMenuRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableDialByName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for PROMPT properties and create a hash table. - ${Prompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenu_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantMenu_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a prompt draft. -POST Teams.VoiceApps/auto-attendants/prompts/draft. -.Description -Create a prompt draft. -POST Teams.VoiceApps/auto-attendants/prompts/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendantprompt -#> -function New-CsAutoAttendantPrompt { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreatePromptRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ActiveType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptDownloadUri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptFileName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${AudioFilePromptId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantPrompt_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendantPrompt_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create an AutoAttendant. -POST Teams.VoiceApps/auto-attendants. -.Description -Create an AutoAttendant. -POST Teams.VoiceApps/auto-attendants. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AuthorizedUser ]: - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallFlow ]: - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - [CallHandlingAssociation ]: - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - [DefaultCallFlowForceListenMenuEnabled ]: - [DefaultCallFlowGreeting ]: - [DefaultCallFlowId ]: - [DefaultCallFlowName ]: - [DefaultCallFlowRingResourceAccountDelegate ]: - [ExclusionScopeGroupDialScopeGroupId ]: - [ExclusionScopeType ]: - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [InclusionScopeGroupDialScopeGroupId ]: - [InclusionScopeType ]: - [LanguageId ]: - [MainlineAttendantAgentVoiceId ]: - [MainlineAttendantEnabled ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [MenuPrompt ]: - [Name ]: - [OperatorCallPriority ]: - [OperatorEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorEnableTranscription ]: - [OperatorId ]: - [OperatorSharedVoicemailHistoryTemplateId ]: - [OperatorType ]: - [TimeZoneId ]: - [UserNameExtension ]: - [VoiceId ]: - [VoiceResponseEnabled ]: - -CALLFLOW : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -CALLHANDLINGASSOCIATION : . - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - -DEFAULTCALLFLOWGREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautoattendant -#> -function New-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoAttendantRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AuthorizedUser}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallFlow[]] - # . - # To construct, see NOTES section for CALLFLOW properties and create a hash table. - ${CallFlow}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallHandlingAssociation[]] - # . - # To construct, see NOTES section for CALLHANDLINGASSOCIATION properties and create a hash table. - ${CallHandlingAssociation}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowForceListenMenuEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for DEFAULTCALLFLOWGREETING properties and create a hash table. - ${DefaultCallFlowGreeting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowName}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowRingResourceAccountDelegate}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableMainlineAttendant}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${EnableVoiceResponse}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ExclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ExclusionScopeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUser}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${InclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${InclusionScopeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LanguageId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantAgentVoiceId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TimeZoneId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserNameExtension}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${VoiceId}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendant_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoAttendant_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create auto recording template POST /Teams.VoiceApps/auto-recording -.Description -Create auto recording template POST /Teams.VoiceApps/auto-recording -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoRecordingTemplateResponse -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csautorecordingtemplate -#> -function New-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAny] - # Any object - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoRecordingTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsAutoRecordingTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Starts Deployment at Scale -.Description -Starts Deployment at Scale -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequestResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - DeploymentCsv : - [UsersToNotify ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csbatchteamsdeployment -#> -function New-CsBatchTeamsDeployment { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequestResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IFlwoServiceModelsFlwosBatchRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DeploymentCsv}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UsersToNotify}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchTeamsDeployment_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsBatchTeamsDeployment_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create call queue. -POST Teams.VoiceApps/callqueues. -.Description -Create call queue. -POST Teams.VoiceApps/callqueues. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -AGENT : Gets or sets the Call Queue's agents list. - [ObjectId ]: - [OptIn ]: - -BODY : CallQueue creation request DTO class. - [Agent ]: Gets or sets the Call Queue's agents list. - [ObjectId ]: - [OptIn ]: - [AgentAlertTime ]: Gets or sets the number of seconds that a call can remain unanswered. - [AllowOptOut ]: Gets or sets a value indicating whether to allow agent optout on CallQueue. - [AuthorizedUser ]: Gets or sets authorized user ids. - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallToAgentRatioThresholdBeforeOfferingCallback ]: - [CallbackEmailNotificationTarget ]: Gets or sets the callback email notification target. - [CallbackOfferAudioFilePromptResourceId ]: - [CallbackOfferTextToSpeechPrompt ]: - [CallbackRequestDtmf ]: - [ComplianceRecordingForCallQueueId ]: Gets or Sets the Id for Compliance Recording template for Callqueue. - [ConferenceMode ]: Gets or sets a value indicating whether to allow Conference Mode on CallQueue. - [CustomAudioFileAnnouncementForCr ]: Gets or sets the custom audio file announcement for compliance recording. - [CustomAudioFileAnnouncementForCrFailure ]: Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - [DistributionList ]: Gets or sets the Call Queue's Distribution Lists. - [EnableNoAgentSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableNoAgentSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableOverflowSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableOverflowSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableResourceAccountsForObo ]: Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - [EnableTimeoutSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableTimeoutSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [IsCallbackEnabled ]: - [LanguageId ]: Gets or sets the language Id used for TTS. - [MusicOnHoldAudioFileId ]: Gets or sets music on hold audio file id. - [Name ]: Gets or sets The Call Queue's name. - [NoAgentAction ]: Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - [NoAgentActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - [NoAgentActionTarget ]: Gets or sets the target of the NoAgent action. - [NoAgentApplyTo ]: Determines whether NoAgentAction is to be applied to All Calls or New Calls only. - [NoAgentDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on NoAgent. - [NoAgentDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on NoAgent. - [NoAgentRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - [NoAgentRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - [NoAgentSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemail. - [NoAgentSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [NumberOfCallsInQueueBeforeOfferingCallback ]: - [OboResourceAccountId ]: Gets or sets the Obo resource account ids. - [OverflowAction ]: Gets or sets the action to take when the overflow threshold is reached. - [OverflowActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - [OverflowActionTarget ]: Gets or sets the target of the overflow action. - [OverflowDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on overflow. - [OverflowDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on overflow. - [OverflowRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on overflow. - [OverflowRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on overflow. - [OverflowRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on overflow. - [OverflowRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on overflow. - [OverflowRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - [OverflowRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - [OverflowSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [OverflowSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [OverflowThreshold ]: Gets or sets the number of simultaneous calls that can be in the queue at any one time. - [PresenceAwareRouting ]: Gets or sets a value indicating whether to enable presence aware routing. - [RoutingMethod ]: Gets or sets the routing method for the Call Queue. - [ServiceLevelThresholdResponseTimeInSecond ]: - [SharedCallQueueHistoryId ]: Gets or sets the shared call history template. - [ShiftsSchedulingGroupId ]: Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - [ShiftsTeamId ]: Gets or sets the Shifts Team to use as Call queues answer target. - [ShouldOverwriteCallableChannelProperty ]: Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - [TextAnnouncementForCr ]: Gets or sets the text announcement for compliance recording. - [TextAnnouncementForCrFailure ]: Gets or sets the text announcemet that is played if CR bot is unable to join the call. - [ThreadId ]: Gets or sets teams channel thread id if user choose to sync CQ with a channel. - [TimeoutAction ]: Gets or sets the action to take if the timeout threshold is reached. - [TimeoutActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - [TimeoutActionTarget ]: Gets or sets the target of the timeout action. - [TimeoutDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on Timeout. - [TimeoutDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on Timeout. - [TimeoutRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on Timeout. - [TimeoutRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on Timeout. - [TimeoutRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - [TimeoutRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - [TimeoutSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [TimeoutSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [TimeoutThreshold ]: Gets or sets the number of minutes that a call can be in the queue before it times out. - [UseDefaultMusicOnHold ]: Gets or sets a value indicating whether to use default music on hold audio file. - [User ]: Gets or sets the Call Queue's Users. - [WaitTimeBeforeOfferingCallbackInSecond ]: - [WelcomeMusicAudioFileId ]: Gets or sets welcome music audio file id. - [WelcomeTextToSpeechPrompt ]: Gets or sets welcome text to speech content. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscallqueue -#> -function New-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChannelUserObjectId}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateCallQueueRequest] - # CallQueue creation request DTO class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAgent[]] - # Gets or sets the Call Queue's agents list. - # To construct, see NOTES section for AGENT properties and create a hash table. - ${Agent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of seconds that a call can remain unanswered. - ${AgentAlertTime}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow agent optout on CallQueue. - ${AllowOptOut}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets authorized user ids. - ${AuthorizedUsers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the callback email notification target. - ${CallbackEmailNotificationTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackRequestDtmf}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or Sets the Id for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow Conference Mode on CallQueue. - ${ConferenceMode}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording. - ${CustomAudioFileAnnouncementForCr}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Distribution Lists. - ${DistributionLists}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - ${EnableResourceAccountsForObo}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUsers}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallbackEnabled}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the language Id used for TTS. - ${LanguageId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets music on hold audio file id. - ${MusicOnHoldAudioFileId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets The Call Queue's name. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - ${NoAgentActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Determines whether NoAgentAction is to be applied to All Calls or New Calls only. - ${NoAgentApplyTo}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Obo resource account ids. - ${OboResourceAccountIds}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take when the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - ${OverflowActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of simultaneous calls that can be in the queue at any one time. - ${OverflowThreshold}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to enable presence aware routing. - ${PresenceAwareRouting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the routing method for the Call Queue. - ${RoutingMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the shared call history template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Team to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcement for compliance recording. - ${TextAnnouncementForCr}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcemet that is played if CR bot is unable to join the call. - ${TextAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets teams channel thread id if user choose to sync CQ with a channel. - ${ThreadId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - ${TimeoutActionCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of minutes that a call can be in the queue before it times out. - ${TimeoutThreshold}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to use default music on hold audio file. - ${UseDefaultMusicOnHold}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Users. - ${Users}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets welcome music audio file id. - ${WelcomeMusicAudioFileId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets welcome text to speech content. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCallQueue_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCallQueue_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create compliance recording template POST /Teams.VoiceApps/compliance-recording. -.Description -Create compliance recording template POST /Teams.VoiceApps/compliance-recording. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating a compliance recording. - [BotId ]: Gets or sets the MRI of the first bot. - [ConcurrentInvitationCount ]: Gets or sets the number of concurrent invitations allowed. - [Description ]: Gets or sets the description of the compliance recording. - [Name ]: Gets or sets the name of the compliance recording. - [PairedApplication ]: Gets or sets the paired applications for the compliance recording bot. This is a resiliency feature that allows invitation of another bot. If either of BotMRI or the paired application is available, we will consider the call to be successful. - [RequiredBeforeCall ]: Gets or sets a value indicating whether the compliance recording is required before the call. - [RequiredDuringCall ]: Gets or sets a value indicating whether the compliance recording is required during the call. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscompliancerecordingforcallqueuetemplate -#> -function New-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateComplianceRecordingForCallQueueRequest] - # Request model for creating a compliance recording. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the MRI of the first bot. - ${BotApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of concurrent invitations allowed. - ${ConcurrentInvitationCount}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the compliance recording. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the compliance recording. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the paired applications for the compliance recording bot. - # This is a resiliency feature that allows invitation of another bot.If either of BotMRI or the paired application is available, we will consider the call to be successful. - ${PairedApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required before the call. - ${RequiredBeforeCall}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required during the call. - ${RequiredDuringCall}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsComplianceRecordingForCallQueueTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsComplianceRecordingForCallQueueTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create new configuration -.Description -Create new configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csconfiguration -#> -function New-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Create', Mandatory)] - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='CreateExpanded', Mandatory)] - [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='CreateExpanded')] - [Parameter(ParameterSetName='CreateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Create = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_Create'; - CreateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateExpanded'; - CreateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateViaIdentity'; - CreateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsConfiguration_CreateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a policy package -.Description -Create a policy package -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYLIST : . - PolicyName : - PolicyType : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cscustompolicypackage -#> -function New-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyTypeAndName[]] - # . - # To construct, see NOTES section for POLICYLIST properties and create a hash table. - ${PolicyList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsCustomPolicyPackage_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create apointment booking flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking. -.Description -Create apointment booking flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [ApiDefinition ]: Gets or sets the detailed definitions of the api. - [CallerAuthenticationMethod ]: Gets or sets the caller authentication method, allowed values: Sms, Email, VerificationLink, Voiceprint, UserDetails. - [Description ]: Gets or sets the description of the mainline attendant appointment booking flow. - [Name ]: Gets or sets the name of the mainline attendant appointment booking flow. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csmainlineattendantappointmentbookingflow -#> -function New-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateAppointmentBookingFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the api. - ${ApiDefinitions}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the caller authentication method, allowed values: Sms, Email, VerificationLink, Voiceprint, UserDetails. - ${CallerAuthenticationMethod}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant appointment booking flow. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant appointment booking flow. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantAppointmentBookingFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantAppointmentBookingFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create question and answer flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer. -.Description -Create question and answer flow for mainline attendant POST api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [Description ]: Gets or sets the description of the mainline attendant question and answer flow. - [KnowledgeBase ]: Gets or sets the detailed definitions of the knowledge base. - [Name ]: Gets or sets the name of the mainline attendant question and answer flow. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csmainlineattendantquestionanswerflow -#> -function New-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateQuestionAnswerFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant question and answer flow. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the knowledge base. - ${KnowledgeBase}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant question and answer flow. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantQuestionAnswerFlow_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsMainlineAttendantQuestionAnswerFlow_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create application instance associations. -POST Teams.VoiceApps/applicationinstanceassociations. -.Description -Create application instance associations. -POST Teams.VoiceApps/applicationinstanceassociations. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallPriority ]: - [ConfigurationId ]: - [ConfigurationType ]: - [EndpointsId ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlineapplicationinstanceassociation -#> -function New-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateApplicationInstanceAssociationsRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConfigurationId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ConfigurationType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${Identities}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceAssociation_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineApplicationInstanceAssociation_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a date time range draft. -POST Teams.VoiceApps/schedules/date-time-ranges/draft. -.Description -Create a date time range draft. -POST Teams.VoiceApps/schedules/date-time-ranges/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinedatetimerange -#> -function New-CsOnlineDateTimeRange { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateDateTimeRangeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${End}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Start}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDateTimeRange_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDateTimeRange_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletDirectRoutingNumberCreationRequest - [Description ]: - [EndingNumber ]: - [FileContent ]: - [StartingNumber ]: - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinedirectroutingtelephonenumberuploadorder -#> -function New-CsOnlineDirectRoutingTelephoneNumberUploadOrder { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletDirectRoutingNumberCreationRequest] - # CmdletDirectRoutingNumberCreationRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${EndingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileContent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StartingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineDirectRoutingTelephoneNumberUploadOrder_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a schedule. -POST Teams.VoiceApps/schedules. -.Description -Create a schedule. -POST Teams.VoiceApps/schedules. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -FIXEDSCHEDULEDATETIMERANGE : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEFRIDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEMONDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESATURDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESUNDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETHURSDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETUESDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlineschedule -#> -function New-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateScheduleRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDateTimeRange[]] - # . - # To construct, see NOTES section for FIXEDSCHEDULEDATETIMERANGE properties and create a hash table. - ${FixedScheduleDateTimeRange}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeEnd}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${RecurrenceRangeNumberOfOccurrence}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeStart}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RecurrenceRangeType}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEFRIDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleFridayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${WeeklyRecurrentScheduleIsComplemented}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEMONDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleMondayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESATURDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSaturdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESUNDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSundayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETHURSDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleThursdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETUESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleTuesdayHour}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleWednesdayHour}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineSchedule_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineSchedule_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderRequest -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletReleaseOrderRequest - [EndingNumber ]: - [FileContent ]: - [StartingNumber ]: - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinetelephonenumberreleaseorder -#> -function New-CsOnlineTelephoneNumberReleaseOrder { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderRequest] - # CmdletReleaseOrderRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${EndingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${FileContent}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${StartingNumber}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberReleaseOrder_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTelephoneNumberReleaseOrder_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create a time range draft. -POST Teams.VoiceApps/schedules/time-ranges/draft. -.Description -Create a time range draft. -POST Teams.VoiceApps/schedules/time-ranges/draft. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csonlinetimerange -#> -function New-CsOnlineTimeRange { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTimeRangeRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${End}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Start}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTimeRange_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsOnlineTimeRange_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create New Bulk Sign in Request -.Description -Create New Bulk Sign in Request -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestItem[] -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Array of SDGBulkSignInRequestItem - [HardwareId ]: - [UserName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cssdgbulksigninrequest -#> -function New-CsSdgBulkSignInRequest { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInResponse])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Target Region where the device is located - ${TargetRegion}, - - [Parameter(Mandatory, ValueFromPipeline)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISdgBulkSignInRequestItem[]] - # Array of SDGBulkSignInRequestItem - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSdgBulkSignInRequest_New'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Create shared call history template. -POST /Teams.VoiceApps/shared-call-history-template. -.Description -Create shared call history template. -POST /Teams.VoiceApps/shared-call-history-template. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating a shared call history template. - [AnsweredAndOutboundCall ]: Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - [Description ]: Gets or sets the description of the shared call history template. - [IncomingMissedCall ]: Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - [IncomingRedirectedCall ]: Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - [Name ]: Gets or sets the name of the shared call history template. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cssharedcallhistorytemplate -#> -function New-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateSharedCallHistoryTemplateRequest] - # Request model for creating a shared call history template. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the shared call history template. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - ${IncomingMissedCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the shared call history template. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSharedCallHistoryTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsSharedCallHistoryTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Creates a new IVR tags template. -POST api/v1.0/tenants/tenantId/ivr-tags-template -.Description -Creates a new IVR tags template. -POST api/v1.0/tenants/tenantId/ivr-tags-template -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Description ]: Description of the IVR tag template. - [Name ]: Gets or sets the name of the IVR tag template. - [Tag ]: List of tags associated with the IVR tag template. These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: - -TAGS : List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstagstemplate -#> -function New-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagsTemplateRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Description of the IVR tag template. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the IVR tag template. - ${Name}, - - [Parameter(ParameterSetName='NewExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagDtoModel[]] - # List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - # To construct, see NOTES section for TAGS properties and create a hash table. - ${Tags}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTagsTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTagsTemplate_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Creates a draft of each Ivr Tag -.Description -Creates a draft of each Ivr Tag -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: Name of the IVR tag. This alue is used to identify which callable entity to transfer the call to. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstag -#> -function New-CsTag { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateIvrTagRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${TagDetailCallPriority}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TagDetailEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${TagDetailEnableTranscription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TagDetailType}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Name of the IVR tag. - # This alue is used to identify which callable entity to transfer the call to. - ${TagName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTag_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTag_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -PS C:\> (Get-CsTeamTemplate -OdataId '/api/teamtemplates/v1.0/com.microsoft.teams.template.AdoptOffice365/Public/en-US') > input.json -# open json in your favorite editor, make changes - -PS C:\> New-CsTeamTemplate -Locale en-US -Body (Get-Content '.\input.json' | Out-String) - -{ - "id": "061fe692-7da7-4f65-a57b-0472cf0045af", - "name": "New Template", - "scope": "Tenant", - "shortDescription": "New Description", - "iconUri": "https://statics.teams.cdn.office.net/evergreen-assets/teamtemplates/icons/default_tenant.svg", - "channelCount": 2, - "appCount": 2, - "modifiedOn": "2020-12-10T18:46:52.7231705Z", - "modifiedBy": "6c4445f6-a23d-473c-951d-7474d289c6b3", - "locale": "en-US", - "@odata.id": "/api/teamtemplates/v1.0/061fe692-7da7-4f65-a57b-0472cf0045af/Tenant/en-US" -} -.Example -PS C:\> New-CsTeamTemplate ` --Locale en-US ` --DisplayName 'New Template' ` --ShortDescription 'New Description' ` --App @{id='feda49f8-b9f2-4985-90f0-dd88a8f80ee1'}, @{id='1d71218a-92ad-4254-be15-c5ab7a3e4423'} ` --Channel @{ ` - displayName="General"; ` - id="General"; ` - isFavoriteByDefault=$true; ` -}, ` -@{ ` - displayName="test"; ` - id="b82b7d0a-6bc9-4fd8-bf09-d432e4ea0475"; ` - isFavoriteByDefault=$false; ` -} - - -{ - "id": "061fe692-7da7-4f65-a57b-0472cf0045af", - "name": "New Template", - "scope": "Tenant", - "shortDescription": "New Description", - "iconUri": "https://statics.teams.cdn.office.net/evergreen-assets/teamtemplates/icons/default_tenant.svg", - "channelCount": 2, - "appCount": 2, - "modifiedOn": "2020-12-10T18:46:52.7231705Z", - "modifiedBy": "6c4445f6-a23d-473c-951d-7474d289c6b3", - "locale": "en-US", - "@odata.id": "/api/teamtemplates/v1.0/061fe692-7da7-4f65-a57b-0472cf0045af/Tenant/en-US" -} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -APP : Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - [Id ]: Gets or sets the app's ID in the global apps catalog. - -BODY : The client input for a request to create a template. Only admins from Config Api can perform this request. - DisplayName : Gets or sets the team's DisplayName. - ShortDescription : Gets or sets template short description. - [App ]: Gets or sets the set of applications that should be installed in teams created based on the template. The app catalog is the main directory for information about each app; this set is intended only as a reference. - [Id ]: Gets or sets the app's ID in the global apps catalog. - [Category ]: Gets or sets list of categories. - [Channel ]: Gets or sets the set of channel templates included in the team template. - [Description ]: Gets or sets channel description as displayed to users. - [DisplayName ]: Gets or sets channel name as displayed to users. - [Id ]: Gets or sets identifier for the channel template. - [IsFavoriteByDefault ]: Gets or sets a value indicating whether whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - [Tab ]: Gets or sets collection of tabs that should be added to the channel. - [Configuration ]: Represents the configuration of a tab. - [ContentUrl ]: Gets or sets the Url used for rendering tab contents in Teams. - [EntityId ]: Gets or sets the identifier for the entity hosted by the tab provider. - [RemoveUrl ]: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - [WebsiteUrl ]: Gets or sets the Url for showing tab contents outside of Teams. - [Id ]: Gets or sets identifier for the channel tab template. - [Key ]: Gets a unique identifier. - [MessageId ]: Gets or sets id used to identify the chat message associated with the tab. - [Name ]: Gets or sets the tab name displayed to users. - [SortOrderIndex ]: Gets or sets index of the order used for sorting tabs. - [TeamsAppId ]: Gets or sets the app's id in the global apps catalog. - [WebUrl ]: Gets or sets the deep link url of the tab instance. - [Classification ]: Gets or sets the team's classification. Tenant admins configure AAD with the set of possible values. - [Description ]: Gets or sets the team's Description. - [DiscoverySetting ]: Governs discoverability of a team. - ShowInTeamsSearchAndSuggestion : Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - [FunSetting ]: Governs use of fun media like giphy and stickers in the team. - AllowCustomMeme : Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - AllowGiphy : Gets or sets a value indicating whether users can post giphy content in team conversations. - AllowStickersAndMeme : Gets or sets a value indicating whether users can post stickers and memes in team conversations. - GiphyContentRating : Gets or sets the rating filter on giphy content. - [GuestSetting ]: Guest role settings for the team. - AllowCreateUpdateChannel : Gets or sets a value indicating whether guests can create or edit channels in the team. - AllowDeleteChannel : Gets or sets a value indicating whether guests can delete team channels. - [Icon ]: Gets or sets template icon. - [IsMembershipLimitedToOwner ]: Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - [MemberSetting ]: Member role settings for the team. - AllowAddRemoveApp : Gets or sets a value indicating whether members can add or remove apps in the team. - AllowCreatePrivateChannel : Gets or Sets a value indicating whether members can create Private channels. - AllowCreateUpdateChannel : Gets or sets a value indicating whether members can create or edit channels in the team. - AllowCreateUpdateRemoveConnector : Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - AllowCreateUpdateRemoveTab : Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - AllowDeleteChannel : Gets or sets a value indicating whether members can delete team channels. - UploadCustomApp : Gets or sets a value indicating is allowed to upload custom apps. - [MessagingSetting ]: Governs use of messaging features within the team These are settings the team owner should be able to modify from UI after team creation. - AllowChannelMention : Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - AllowOwnerDeleteMessage : Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - AllowTeamMention : Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - AllowUserDeleteMessage : Gets or sets a value indicating whether team members can delete their own messages in team conversations. - AllowUserEditMessage : Gets or sets a value indicating whether team members can edit their own messages in team conversations. - [OwnerUserObjectId ]: Gets or sets the AAD user object id of the user who should be set as the owner of the new team. Only to be used when an application or administrative user is making the request on behalf of the specified user. - [PublishedBy ]: Gets or sets published name. - [Specialization ]: The specialization or use case describing the team. Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - [TemplateId ]: Gets or sets the id of the base template for the team. Either a Microsoft base template or a custom template. - [Uri ]: Gets or sets uri to be used for GetTemplate api call. - [Visibility ]: Used to control the scope of users who can view a group/team and its members, and ability to join. - -CHANNEL : Gets or sets the set of channel templates included in the team template. - [Description ]: Gets or sets channel description as displayed to users. - [DisplayName ]: Gets or sets channel name as displayed to users. - [Id ]: Gets or sets identifier for the channel template. - [IsFavoriteByDefault ]: Gets or sets a value indicating whether whether new members of the team should automatically favorite the channel, pinning it for visibility in the UI and using resources to make switching to the channel faster. - [Tab ]: Gets or sets collection of tabs that should be added to the channel. - [Configuration ]: Represents the configuration of a tab. - [ContentUrl ]: Gets or sets the Url used for rendering tab contents in Teams. - [EntityId ]: Gets or sets the identifier for the entity hosted by the tab provider. - [RemoveUrl ]: Gets or sets the Url that is invoked when the user tries to remove a tab from the FE client. - [WebsiteUrl ]: Gets or sets the Url for showing tab contents outside of Teams. - [Id ]: Gets or sets identifier for the channel tab template. - [Key ]: Gets a unique identifier. - [MessageId ]: Gets or sets id used to identify the chat message associated with the tab. - [Name ]: Gets or sets the tab name displayed to users. - [SortOrderIndex ]: Gets or sets index of the order used for sorting tabs. - [TeamsAppId ]: Gets or sets the app's id in the global apps catalog. - [WebUrl ]: Gets or sets the deep link url of the tab instance. - -DISCOVERYSETTING : Governs discoverability of a team. - ShowInTeamsSearchAndSuggestion : Gets or sets value indicating if team is visible within search and suggestions in Teams clients. - -FUNSETTING : Governs use of fun media like giphy and stickers in the team. - AllowCustomMeme : Gets or sets a value indicating whether users are allowed to create and post custom meme images in team conversations. - AllowGiphy : Gets or sets a value indicating whether users can post giphy content in team conversations. - AllowStickersAndMeme : Gets or sets a value indicating whether users can post stickers and memes in team conversations. - GiphyContentRating : Gets or sets the rating filter on giphy content. - -GUESTSETTING : Guest role settings for the team. - AllowCreateUpdateChannel : Gets or sets a value indicating whether guests can create or edit channels in the team. - AllowDeleteChannel : Gets or sets a value indicating whether guests can delete team channels. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -MEMBERSETTING : Member role settings for the team. - AllowAddRemoveApp : Gets or sets a value indicating whether members can add or remove apps in the team. - AllowCreatePrivateChannel : Gets or Sets a value indicating whether members can create Private channels. - AllowCreateUpdateChannel : Gets or sets a value indicating whether members can create or edit channels in the team. - AllowCreateUpdateRemoveConnector : Gets or sets a value indicating whether members can add, edit, or remove connectors in the team. - AllowCreateUpdateRemoveTab : Gets or sets a value indicating whether members can add, edit or remove pinned tabs in the team. - AllowDeleteChannel : Gets or sets a value indicating whether members can delete team channels. - UploadCustomApp : Gets or sets a value indicating is allowed to upload custom apps. - -MESSAGINGSETTING : Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - AllowChannelMention : Gets or sets a value indicating whether team members can at-mention entire channels in team conversations. - AllowOwnerDeleteMessage : Gets or sets a value indicating whether team owners can delete anyone's messages in team conversations. - AllowTeamMention : Gets or sets a value indicating whether team members can at-mention the entire team in team conversations. - AllowUserDeleteMessage : Gets or sets a value indicating whether team members can delete their own messages in team conversations. - AllowUserEditMessage : Gets or sets a value indicating whether team members can edit their own messages in team conversations. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csteamtemplate -#> -function New-CsTeamTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICreateTemplateResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplateErrorResponse])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory)] - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Locale}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamTemplate] - # The client input for a request to create a template. - # Only admins from Config Api can perform this request. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's DisplayName. - ${DisplayName}, - - [Parameter(ParameterSetName='NewExpanded', Mandatory)] - [Parameter(ParameterSetName='NewViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template short description. - ${ShortDescription}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamsAppTemplate[]] - # Gets or sets the set of applications that should be installed in teams created based on the template.The app catalog is the main directory for information about each app; this set is intended only as a reference. - # To construct, see NOTES section for APP properties and create a hash table. - ${App}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets list of categories. - ${Category}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IChannelTemplate[]] - # Gets or sets the set of channel templates included in the team template. - # To construct, see NOTES section for CHANNEL properties and create a hash table. - ${Channel}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's classification.Tenant admins configure AAD with the set of possible values. - ${Classification}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the team's Description. - ${Description}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamDiscoverySettings] - # Governs discoverability of a team. - # To construct, see NOTES section for DISCOVERYSETTING properties and create a hash table. - ${DiscoverySetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamFunSettings] - # Governs use of fun media like giphy and stickers in the team. - # To construct, see NOTES section for FUNSETTING properties and create a hash table. - ${FunSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamGuestSettings] - # Guest role settings for the team. - # To construct, see NOTES section for GUESTSETTING properties and create a hash table. - ${GuestSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets template icon. - ${Icon}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets whether to limit the membership of the team to owners in the AAD group until an owner "activates" the team. - ${IsMembershipLimitedToOwner}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMemberSettings] - # Member role settings for the team. - # To construct, see NOTES section for MEMBERSETTING properties and create a hash table. - ${MemberSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITeamMessagingSettings] - # Governs use of messaging features within the teamThese are settings the team owner should be able to modify from UI after team creation. - # To construct, see NOTES section for MESSAGINGSETTING properties and create a hash table. - ${MessagingSetting}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AAD user object id of the user who should be set as the owner of the new team.Only to be used when an application or administrative user is making the request on behalf of the specified user. - ${OwnerUserObjectId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets published name. - ${PublishedBy}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The specialization or use case describing the team.Used for telemetry/BI, part of the team context exposed to app developers, and for legacy implementations of differentiated features for education. - ${Specialization}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the id of the base template for the team.Either a Microsoft base template or a custom template. - ${TemplateId}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets uri to be used for GetTemplate api call. - ${Uri}, - - [Parameter(ParameterSetName='NewExpanded')] - [Parameter(ParameterSetName='NewViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Used to control the scope of users who can view a group/team and its members, and ability to join. - ${Visibility}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewExpanded'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewViaIdentity'; - NewViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTeamTemplate_NewViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Invokes tenant migration -.Description -Invokes tenant migration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigration -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigrationResult -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Payload for tenant migration - [MoveOption ]: MoveOption can take following values PrepForMove, StartDualSync, Finalize. - [TargetServiceInstance ]: Target service instance where tenant is to be migrated. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-cstenantcrossmigration -#> -function New-CsTenantCrossMigration { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigrationResult])] -[CmdletBinding(DefaultParameterSetName='NewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantMigration] - # Payload for tenant migration - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # MoveOption can take following values PrepForMove, StartDualSync, Finalize. - ${MoveOption}, - - [Parameter(ParameterSetName='NewExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Target service instance where tenant is to be migrated. - ${TargetServiceInstance}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantCrossMigration_New'; - NewExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsTenantCrossMigration_NewExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Adds delegate with validations in bvd -.Description -Adds delegate with validations in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/new-csusercallingdelegate -#> -function New-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='New', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Delegate}, - - [Parameter(ParameterSetName='New', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='NewViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${MakeCalls}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ManageSettings}, - - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${ReceiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to join active calls. - ${JoinActiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to pick up held calls. - ${PickUpHeldCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - New = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsUserCallingDelegate_New'; - NewViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\New-CsUserCallingDelegate_NewViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Assigns a service number to a bridge. -.Description -Assigns a service number to a bridge. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Class representing ConferencingServiceNumber. - [BridgeId ]: Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - [City ]: Gets or sets the Geocode where the ServiceNumber is intended to be used. - [IsShared ]: Gets or sets a value indicating whether the number is shared between multiple tenants. If this is the case then tenant admins will be unable to edit the number. - [Number ]: Gets or sets the 11 digit number identifying the ServiceNumber. - [PrimaryLanguage ]: Gets or sets the primary language of the ServiceNumber. e.g.: "en-US". - [SecondaryLanguages ]: Gets or sets the list of secondary languages of the ServiceNumber. e.g.: "fr-FR","en-GB","en-IN". - [Type ]: Gets or sets defines the number type Toll/Toll-Free. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/register-csodcservicenumber -#> -function Register-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='RegisterExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Register', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Service number to be assigned to a bridge. - # The service number in E.164 format, e.g. - # +14251112222 or tel:+14251112222. - ${Identity}, - - [Parameter(ParameterSetName='RegisterViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge identifier to assign the service numbers to. - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge name to assign the service numbers. - ${BridgeName}, - - [Parameter(ParameterSetName='Register1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber] - # Class representing ConferencingServiceNumber. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - ${BridgeId1}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Geocode where the ServiceNumber is intended to be used. - ${City}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the number is shared between multiple tenants. - # If this is the casethen tenant admins will be unable to edit the number. - ${IsShared}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the 11 digit number identifying the ServiceNumber. - ${Number}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the primary language of the ServiceNumber. - # e.g.: "en-US". - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of secondary languages of the ServiceNumber. - # e.g.: "fr-FR","en-GB","en-IN". - ${SecondaryLanguage}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets defines the number type Toll/Toll-Free. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Register = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_Register'; - Register1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_Register1'; - RegisterExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_RegisterExpanded'; - RegisterViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_RegisterViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete AI Agent. -DELETE /Teams.VoiceApps/aiagents/identity. -.Description -Delete AI Agent. -DELETE /Teams.VoiceApps/aiagents/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csagent -#> -function Remove-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAgent_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAgent_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Deletes a specific AutoAttendant. -DELETE Teams.VoiceApps/auto-attendants/identity. -.Description -Deletes a specific AutoAttendant. -DELETE Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csautoattendant -#> -function Remove-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be removed. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoAttendant_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoAttendant_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete auto recording template. -DELETE /Teams.VoiceApps/auto-recording-template/identity. -.Description -Delete auto recording template. -DELETE /Teams.VoiceApps/auto-recording-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csautorecordingtemplate -#> -function Remove-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoRecordingTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoRecordingTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Remove call queue. -DELETE Teams.VoiceApps/callqueues/identity. -.Description -Remove call queue. -DELETE Teams.VoiceApps/callqueues/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cscallqueue -#> -function Remove-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCallQueue_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCallQueue_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete Compliance Recording config. -DELETE /Teams.VoiceApps/compliance-recording/identity. -.Description -Delete Compliance Recording config. -DELETE /Teams.VoiceApps/compliance-recording/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cscompliancerecordingforcallqueuetemplate -#> -function Remove-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsComplianceRecordingForCallQueueTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsComplianceRecordingForCallQueueTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete Configuration -.Description -Delete Configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csconfiguration -#> -function Remove-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Delete = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsConfiguration_Delete'; - DeleteViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsConfiguration_DeleteViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Remove mainline attendant appointment booking flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/appointment-booking/identity. -.Description -Remove mainline attendant appointment booking flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/appointment-booking/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csmainlineattendantappointmentbookingflow -#> -function Remove-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantAppointmentBookingFlow_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantAppointmentBookingFlow_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Remove mainline attendant question answer flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/question-answer/identity. -.Description -Remove mainline attendant question answer flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/question-answer/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csmainlineattendantquestionanswerflow -#> -function Remove-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantQuestionAnswerFlow_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantQuestionAnswerFlow_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Remove application instance associations. -DELETE api/v1.0/tenants/tenantId/applicationinstanceassociations/endpointId. -.Description -Remove application instance associations. -DELETE api/v1.0/tenants/tenantId/applicationinstanceassociations/endpointId. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRemoveApplicationInstanceAssociationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineapplicationinstanceassociation -#> -function Remove-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRemoveApplicationInstanceAssociationsResponse])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Application instance Id. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineApplicationInstanceAssociation_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineApplicationInstanceAssociation_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete an audio file stored in MSS. -DELETE api/v3/tenants/tenantId/audiofile/appId/audiofileId -.Description -Delete an audio file stored in MSS. -DELETE api/v3/tenants/tenantId/audiofile/appId/audiofileId -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineaudiofile -#> -function Remove-CsOnlineAudioFile { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineAudioFile_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineAudioFile_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Deletes a specific schedule. -DELETE Teams.VoiceApps/schedules/identity. -.Description -Deletes a specific schedule. -DELETE Teams.VoiceApps/schedules/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineschedule -#> -function Remove-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to be removed. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineSchedule_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineSchedule_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletReleaseRequest - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlinetelephonenumberprivate -#> -function Remove-CsOnlineTelephoneNumberPrivate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseRequest] - # CmdletReleaseRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineTelephoneNumberPrivate_Remove'; - RemoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineTelephoneNumberPrivate_RemoveExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csphonenumberassignment -#> -function Remove-CsPhoneNumberAssignment { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${AssignmentBlockedDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Notify}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${RemoveAll}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberAssignment_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberAssignment_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete shared call history template config. -DELETE /Teams.VoiceApps/shared-call-history-template/identity. -.Description -Delete shared call history template config. -DELETE /Teams.VoiceApps/shared-call-history-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cssharedcallhistorytemplate -#> -function Remove-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsSharedCallHistoryTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsSharedCallHistoryTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Delete IVR Tags Template. -DELETE api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Description -Delete IVR Tags Template. -DELETE api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cstagstemplate -#> -function Remove-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTagsTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTagsTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Removes delegate in bvd -.Description -Removes delegate in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csusercallingdelegate -#> -function Remove-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Delegate}, - - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserCallingDelegate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserCallingDelegate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Searches a tenant for ODC users. -.Description -Searches a tenant for ODC users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/search-csodcuser -#> -function Search-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Page Size. - ${PageSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Continuation / Pagination marker. - # Use the value from nextlink property in response. - ${Skiptoken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # To set the number of users to be fetched - ${Top}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Search-CsOdcUser_Search'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Searches a tenant for users. -.Description -Searches a tenant for users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUser -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/search-csuser -#> -function Search-CsUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUser])] -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To fetch optional location field - ${Expandlocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # MS Graph like query filters - ${Filter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set includedefaultproperties value - ${Includedefaultproperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # This parameter supports query to sort the results. - ${OrderBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Page Size. - ${PageSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Powershell like query filters - ${Psfilter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Continuation / Pagination marker. - # Use the value from nextlink property in response. - ${Skiptoken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Skip user policies in user response object - ${Skipuserpolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To be set true when called to only fetch Soft deleted users - ${Softdeleteduser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # To set the number of users to be fetched - ${Top}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set to true when called from Get-CsVoiceUser cmdlet - ${Voiceuserquery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Search-CsUser_Search'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update AI Agent. -PUT /Teams.VoiceApps/aiagents/identity. -.Description -Update AI Agent. -PUT /Teams.VoiceApps/aiagents/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentConfigurationDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAiAgentConfigurationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : AI Agent DTO model. - [AgentId ]: Gets or sets the AgentId of the AI Agent. - [AgentTargetTagTemplateId ]: Gets or sets the AgentTargetTagTemplateId of the AI Agent. - [AgentType ]: Gets or sets the AgentType of the AI Agent. - [ConfigurationId ]: Gets or sets the identifier of the AI Agent. - [Name ]: Gets or sets the name of the AI Agent. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csagent -#> -function Set-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the AI Agent. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentConfigurationDtoModel] - # AI Agent DTO model. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentId of the AI Agent. - ${AgentId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentTargetTagTemplateId of the AI Agent. - ${AgentTargetTagTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentType of the AI Agent. - ${AgentType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the AI Agent. - ${ConfigurationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the AI Agent. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Updates a specific AutoAttendant. -PUT Teams.VoiceApps/auto-attendants/identity. -.Description -Updates a specific AutoAttendant. -PUT Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoAttendant -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApplicationInstance ]: - [AuthorizedUser ]: - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallFlow ]: - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - [CallHandlingAssociation ]: - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - [DefaultCallFlowForceListenMenuEnabled ]: - [DefaultCallFlowGreeting ]: - [DefaultCallFlowId ]: - [DefaultCallFlowName ]: - [DefaultCallFlowRingResourceAccountDelegate ]: - [DialByNameResourceId ]: - [ExclusionScopeGroupDialScopeGroupId ]: - [ExclusionScopeType ]: - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [Id ]: - [InclusionScopeGroupDialScopeGroupId ]: - [InclusionScopeType ]: - [LanguageId ]: - [MainlineAttendantAgentVoiceId ]: - [MainlineAttendantEnabled ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [MenuPrompt ]: - [Name ]: - [OperatorCallPriority ]: - [OperatorEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorEnableTranscription ]: - [OperatorId ]: - [OperatorSharedVoicemailCallPriority ]: - [OperatorSharedVoicemailEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorSharedVoicemailEnableTranscription ]: - [OperatorSharedVoicemailHistoryTemplateId ]: - [OperatorSharedVoicemailId ]: - [OperatorSharedVoicemailType ]: - [OperatorType ]: - [Schedule ]: - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - [SharedVoicemailHistoryTemplateId ]: - [Status ]: - [AuxiliaryData ]: Get or sets auxiliary data. - [ErrorCode ]: Gets or sets error code of audio, grammar. - [Id ]: Gets or sets dialByNameGrammarContext. - [Message ]: Gets or sets error meessage of audio, grammar. - [Status ]: Gets or sets resource status of autoattendant. - [StatusTimestamp ]: Gets or sets time stamp of auido, grammar status. - [Type ]: Gets or sets resource type of autoattendant. - [TenantId ]: - [TimeZoneId ]: - [UserNameExtension ]: - [VoiceId ]: - [VoiceResponseEnabled ]: - -CALLFLOW : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -CALLHANDLINGASSOCIATION : . - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - -DEFAULTCALLFLOWGREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -SCHEDULE : . - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -STATUS : . - [AuxiliaryData ]: Get or sets auxiliary data. - [ErrorCode ]: Gets or sets error code of audio, grammar. - [Id ]: Gets or sets dialByNameGrammarContext. - [Message ]: Gets or sets error meessage of audio, grammar. - [Status ]: Gets or sets resource status of autoattendant. - [StatusTimestamp ]: Gets or sets time stamp of auido, grammar status. - [Type ]: Gets or sets resource type of autoattendant. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csautoattendant -#> -function Set-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be updated. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoAttendant] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ApplicationInstance}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AuthorizedUser}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallFlow[]] - # . - # To construct, see NOTES section for CALLFLOW properties and create a hash table. - ${CallFlow}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallHandlingAssociation[]] - # . - # To construct, see NOTES section for CALLHANDLINGASSOCIATION properties and create a hash table. - ${CallHandlingAssociation}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowForceListenMenuEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for DEFAULTCALLFLOWGREETING properties and create a hash table. - ${DefaultCallFlowGreeting}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowRingResourceAccountDelegate}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DialByNameResourceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ExclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ExclusionScopeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUser}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${InclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${InclusionScopeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LanguageId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantAgentVoiceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MainlineAttendantEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorSharedVoicemailCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorSharedVoicemailEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorSharedVoicemailEnableTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule[]] - # . - # To construct, see NOTES section for SCHEDULE properties and create a hash table. - ${Schedule}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord2[]] - # . - # To construct, see NOTES section for STATUS properties and create a hash table. - ${Status}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TimeZoneId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserNameExtension}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${VoiceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${VoiceResponseEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update Auto Recording Template. -PUT /Teams.VoiceApps/auto-recording-template/identity. -.Description -Update Auto Recording Template. -PUT /Teams.VoiceApps/auto-recording-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoRecordingTemplateDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoRecordingTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating auto recording template. - [AgentViewPermission ]: Gets or sets the agent view permission. - [AutoRecordingAnnouncementAudioFileId ]: Gets or sets the auto recording announcement audio file ID. - [AutoRecordingAnnouncementAudioFileName ]: Gets or sets the auto recording announcement audio file name. - [AutoRecordingAnnouncementTextToSpeechPrompt ]: Gets or sets the auto recording announcement text-to-speech prompt. - [Description ]: Gets or sets the description of the auto recording template. - [Id ]: Gets or sets the identifier of the auto recording template. - [Name ]: Gets or sets the name of the auto recording template. - [RecordingDocumentOwner ]: Gets or sets the recording document owner. - [RecordingEnabled ]: Gets or sets a value indicating whether recording is enabled. - [SharePointHostName ]: Gets or sets the SharePoint host name where recordings are stored. - [SharePointSiteName ]: Gets or sets the SharePoint site name where recordings are stored. - [TranscriptionEnabled ]: Gets or sets a value indicating whether transcription is enabled. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csautorecordingtemplate -#> -function Set-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the auto recording template configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoRecordingTemplateDtoModel] - # Request model for creating auto recording template. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the agent view permission. - ${AgentViewPermission}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement audio file ID. - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement audio file name. - ${AutoRecordingAnnouncementAudioFileName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement text-to-speech prompt. - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the auto recording template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the auto recording template. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the auto recording template. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the recording document owner. - ${RecordingDocumentOwner}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether recording is enabled. - ${RecordingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the SharePoint host name where recordings are stored. - ${SharePointHostName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the SharePoint site name where recordings are stored. - ${SharePointSiteName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether transcription is enabled. - ${TranscriptionEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update call queue. -PUT Teams.VoiceApps/callqueues/identity. -.Description -Update call queue. -PUT Teams.VoiceApps/callqueues/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CallQueue modify request DTO class. - [AgentAlertTime ]: Gets or sets the number of seconds that a call can remain unanswered. - [AllowOptOut ]: Gets or sets a value indicating whether to allow agent optout on Call Queue. - [AuthorizedUser ]: Gets or sets authorized user ids. - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallToAgentRatioThresholdBeforeOfferingCallback ]: - [CallbackEmailNotificationTarget ]: Gets or sets the target of the callback email notification target. - [CallbackOfferAudioFilePromptResourceId ]: - [CallbackOfferTextToSpeechPrompt ]: - [CallbackRequestDtmf ]: - [ComplianceRecordingForCallQueueId ]: Gets or Sets the Id for Compliance Recording template for Callqueue. - [ConferenceMode ]: Gets or sets a value indicating whether to allow Conference Mode on Call Queue. - [CustomAudioFileAnnouncementForCr ]: Gets or sets the custom audio file announcement for compliance recording. - [CustomAudioFileAnnouncementForCrFailure ]: Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - [DistributionList ]: Gets or sets the Call Queue's Distribution List. - [EnableNoAgentSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableNoAgentSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableOverflowSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableOverflowSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableResourceAccountsForObo ]: Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - [EnableTimeoutSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableTimeoutSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [IsCallbackEnabled ]: - [LanguageId ]: Gets or sets the language Id used for TTS. - [MusicOnHoldAudioFileId ]: Gets or sets the call flows for the auto attendant app endpoint. - [Name ]: Gets or sets the Call Queue's name. - [NoAgentAction ]: Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - [NoAgentActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - [NoAgentActionTarget ]: Gets or sets the target of the NoAgent action. - [NoAgentApplyTo ]: Determines whether NoAgent Action is applied to All Calls or to new calls only. - [NoAgentDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on NoAgent. - [NoAgentDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on NoAgent. - [NoAgentRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - [NoAgentRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - [NoAgentSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemail. - [NoAgentSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [NumberOfCallsInQueueBeforeOfferingCallback ]: - [OboResourceAccountId ]: Gets or sets the list of Obo resource account ids. - [OverflowAction ]: Gets or sets the action to take when the overflow threshold is reached. - [OverflowActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - [OverflowActionTarget ]: Gets or sets the target of the overflow action. - [OverflowDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on overflow. - [OverflowDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on overflow. - [OverflowRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on overflow. - [OverflowRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on overflow. - [OverflowRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on overflow. - [OverflowRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on overflow. - [OverflowRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - [OverflowRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - [OverflowSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [OverflowSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [OverflowThreshold ]: Gets or sets the number of simultaneous calls that can be in the queue at any one time. - [PresenceAwareRouting ]: Gets or sets a value indicating whether to enable presence aware routing. - [RoutingMethod ]: Gets or sets the routing method for the Call Queue. - [ServiceLevelThresholdResponseTimeInSecond ]: - [SharedCallQueueHistoryId ]: Gets or sets the shared call history template. - [ShiftsSchedulingGroupId ]: Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - [ShiftsTeamId ]: Gets or sets the Shifts Team to use as Call queues answer target. - [ShouldOverwriteCallableChannelProperty ]: Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - [TextAnnouncementForCr ]: Gets or sets the text announcement for compliance recording. - [TextAnnouncementForCrFailure ]: Gets or sets the text announcemet that is played if CR bot is unable to join the call. - [ThreadId ]: Gets or sets teams channel thread id if user choose to sync CQ with a channel. - [TimeoutAction ]: Gets or sets the action to take if the timeout threshold is reached. - [TimeoutActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - [TimeoutActionTarget ]: Gets or sets the target of the timeout action. - [TimeoutDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on Timeout. - [TimeoutDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on Timeout. - [TimeoutRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on Timeout. - [TimeoutRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on Timeout. - [TimeoutRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - [TimeoutRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - [TimeoutSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [TimeoutSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [TimeoutThreshold ]: Gets or sets the number of minutes that a call can be in the queue before it times out. - [UseDefaultMusicOnHold ]: Gets or sets a value indicating whether to use default music on hold audio file. - [User ]: Gets or sets the Call Queue's Users. - [WaitTimeBeforeOfferingCallbackInSecond ]: - [WelcomeMusicAudioFileId ]: Gets or sets the welcome audio file to play for the call queue. - [WelcomeTextToSpeechPrompt ]: Gets or sets the welcome text to speech content for the call queue. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cscallqueue -#> -function Set-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChannelUserObjectId}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCallQueueRequest] - # CallQueue modify request DTO class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of seconds that a call can remain unanswered. - ${AgentAlertTime}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow agent optout on Call Queue. - ${AllowOptOut}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets authorized user ids. - ${AuthorizedUsers}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the callback email notification target. - ${CallbackEmailNotificationTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackRequestDtmf}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or Sets the Id for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow Conference Mode on Call Queue. - ${ConferenceMode}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording. - ${CustomAudioFileAnnouncementForCr}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Distribution List. - ${DistributionLists}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - ${EnableResourceAccountsForObo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUsers}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallbackEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the language Id used for TTS. - ${LanguageId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the call flows for the auto attendant app endpoint. - ${MusicOnHoldAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Call Queue's name. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - ${NoAgentActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Determines whether NoAgent Action is applied to All Calls or to new calls only. - ${NoAgentApplyTo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of Obo resource account ids. - ${OboResourceAccountIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take when the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - ${OverflowActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of simultaneous calls that can be in the queue at any one time. - ${OverflowThreshold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to enable presence aware routing. - ${PresenceAwareRouting}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the routing method for the Call Queue. - ${RoutingMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the shared call history template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Team to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcement for compliance recording. - ${TextAnnouncementForCr}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcemet that is played if CR bot is unable to join the call. - ${TextAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets teams channel thread id if user choose to sync CQ with a channel. - ${ThreadId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - ${TimeoutActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of minutes that a call can be in the queue before it times out. - ${TimeoutThreshold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to use default music on hold audio file. - ${UseDefaultMusicOnHold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Users. - ${Users}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the welcome audio file to play for the call queue. - ${WelcomeMusicAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the welcome text to speech content for the call queue. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update compliance recording template. -PUT /Teams.VoiceApps/compliance-recording/identity. -.Description -Update compliance recording template. -PUT /Teams.VoiceApps/compliance-recording/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IComplianceRecordingForCallQueueDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateComplianceRecordingForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [BotId ]: Gets or sets the MRI of the first bot. - [ConcurrentInvitationCount ]: Gets or sets the number of concurrent invitations allowed. Concurrent invitations are used to send multiple invites to the CR bot. - [Description ]: Gets or sets the description of the compliance recording. - [Id ]: Gets or sets the identifier of the compliance recording. - [Name ]: Gets or sets the name of the compliance recording. - [PairedApplication ]: Gets or sets the paired applications for the compliance recording bot. This is a resiliency feature that allows invitation of another bot. If either of BotMRI or the paired application is available, we will consider the call to be successful. - [RequiredBeforeCall ]: Gets or sets a value indicating whether the compliance recording is required before the call. - [RequiredDuringCall ]: Gets or sets a value indicating whether the compliance recording is required during the call. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cscompliancerecordingforcallqueuetemplate -#> -function Set-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the compliance recording configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IComplianceRecordingForCallQueueDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the MRI of the first bot. - ${BotApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of concurrent invitations allowed. - # Concurrent invitations are used to send multiple invites to the CR bot. - ${ConcurrentInvitationCount}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the compliance recording. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the compliance recording. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the compliance recording. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the paired applications for the compliance recording bot. - # This is a resiliency feature that allows invitation of another bot.If either of BotMRI or the paired application is available, we will consider the call to be successful. - ${PairedApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required before the call. - ${RequiredBeforeCall}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required during the call. - ${RequiredDuringCall}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update configuration -.Description -Update configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csconfiguration -#> -function Set-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update appointment booking flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking/identity -.Description -Update appointment booking flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Represents a request to update a mainline attendant appointment booking flow. - [ApiAuthenticationType ]: Defines the type of API authentication to be used. Supported values include: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [ApiDefinition ]: Contains detailed specifications or schema definitions for the API. - [CallerAuthenticationMethod ]: Specifies the method used to authenticate the caller. Supported values include: Sms, Email, VerificationLink, Voiceprint, UserDetails. - [Description ]: A brief description of the appointment booking flow. - [Identity ]: The unique identifier for the appointment booking flow. - [Name ]: The name assigned to the appointment booking flow. - [RelatedConfigurationId ]: Gets or sets the configuration ID of the mainline attendant appointment booking flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. - [Type ]: The type of the mainline attendant flow. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -RELATEDCONFIGURATIONIDS : Gets or sets the configuration ID of the mainline attendant appointment booking flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csmainlineattendantappointmentbookingflow -#> -function Set-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Flow Identity. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowRequest] - # Represents a request to update a mainline attendant appointment booking flow. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Defines the type of API authentication to be used.Supported values include: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Contains detailed specifications or schema definitions for the API. - ${ApiDefinitions}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Specifies the method used to authenticate the caller.Supported values include: Sms, Email, VerificationLink, Voiceprint, UserDetails. - ${CallerAuthenticationMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the appointment booking flow. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The unique identifier for the appointment booking flow. - ${Identity1}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The name assigned to the appointment booking flow. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRelatedConfiguration[]] - # Gets or sets the configuration ID of the mainline attendant appointment booking flow. - # To construct, see NOTES section for RELATEDCONFIGURATIONIDS properties and create a hash table. - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The type of the mainline attendant flow. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update question and answer flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer/identity -.Description -Update question and answer flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [Description ]: Gets or sets the description of the mainline attendant question and answer flow. - [Identity ]: A brief description of the question and answer flow. - [KnowledgeBase ]: Gets or sets the detailed definitions of the knowledge base. - [Name ]: Gets or sets the name of the mainline attendant question and answer flow. - [RelatedConfigurationId ]: Gets or sets the configuration IDs of the mainline attendant question and answer flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. - [Type ]: A brief description of the question and answer flow. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -RELATEDCONFIGURATIONIDS : Gets or sets the configuration IDs of the mainline attendant question and answer flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csmainlineattendantquestionanswerflow -#> -function Set-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Flow Identity. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant question and answer flow. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the question and answer flow. - ${Identity1}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the knowledge base. - ${KnowledgeBase}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant question and answer flow. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRelatedConfiguration[]] - # Gets or sets the configuration IDs of the mainline attendant question and answer flow. - # To construct, see NOTES section for RELATEDCONFIGURATIONIDS properties and create a hash table. - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the question and answer flow. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Sets a bridge using unique id. -This api is also used for Instance query. -.Description -Sets a bridge using unique id. -This api is also used for Instance query. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBridgeUpdateRequest -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Update Conferencing Bridge Default Service number, or make it tenant's default bridge. - [DefaultServiceNumber ]: Gets or sets service number to be updated as new default number of bridge. - [Name ]: Gets or sets name of the bridge. This can only be used when user sets the bridge using instance. - [SetDefault ]: Gets or sets a boolean value indicating if the bridge should be updated to be tenant's default bridge. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcbridge -#> -function Set-CsOdcBridge { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the bridge. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set1', Mandatory)] - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Name of the bridge. - ${Name}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='Set1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBridgeUpdateRequest] - # Update Conferencing Bridge Default Service number, or make it tenant's default bridge. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets service number to be updated as new default number of bridge. - ${DefaultServiceNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a boolean value indicating if the bridge should be updated to be tenant's default bridge. - ${SetDefault}, - - [Parameter(ParameterSetName='SetExpanded1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets name of the bridge. - # This can only be used when user sets the bridge using instance. - ${Name1}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_Set'; - Set1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_Set1'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetExpanded'; - SetExpanded1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetExpanded1'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Set service number by unique id. -.Description -Set service number by unique id. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IServiceNumberUpdateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Update Conferencing Service number. - [PrimaryLanguage ]: The primary language CAA should use to service this call, e.g. en-US, en-GB etc. - [RestoreDefaultLanguage ]: Switch to indicate that the Primary and Secondary languages should be set to the default values. - [SecondaryLanguage ]: The list of secondary languages CAA should use to service this call. Number of secondary languages is limited to a max of 4. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcservicenumber -#> -function Set-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the service number. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IServiceNumberUpdateRequest] - # Update Conferencing Service number. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The primary language CAA should use to service this call, e.g. - # en-US, en-GB etc. - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Switch to indicate that the Primary and Secondary languages should be set to the default values. - ${RestoreDefaultLanguages}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # The list of secondary languages CAA should use to service this call. - # Number of secondary languages is limited to a max of 4. - ${SecondaryLanguages}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -This cmdlet is used to modify the properties of a user that has been enabled for Microsoft's audio conferencing service. -.Description -This cmdlet is used to modify the properties of a user that has been enabled for Microsoft's audio conferencing service. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserData -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : User data to be sent. - [AllowTollFreeDialIn ]: Gets or sets a value indicating whether or not the meeting should allow dialin via toll-free service number. TODO: This is not a Switch parameter. - [BridgeId ]: Gets or sets the bridge identifier. - [BridgeName ]: Gets or sets the bridge name. - [ResetLeaderPin ]: Gets or sets a value indicating whether or not to reset the leader pin. TODO: This is a Switch parameter. - [SendEmail ]: Gets or sets a value indicating whether to sends an email with the PSTN Conference information of a user even if the tenant setting is off. TODO: This is a switch parameter. - [SendEmailToAddress ]: Gets or sets a value indicating To Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmail. - [ServiceNumber ]: Gets or sets the service number to set as the user's default bridge number. - [TollFreeServiceNumber ]: Gets or sets the toll-free service number to set as the user's default toll-free service number. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcuser -#> -function Set-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the user. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserData] - # User data to be sent. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether or not the meeting should allow dialin via toll-free service number.TODO: This is not a Switch parameter. - ${AllowTollFreeDialIn}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the bridge identifier. - ${BridgeId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the bridge name. - ${BridgeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether or not to reset the leader pin.TODO: This is a Switch parameter. - ${ResetLeaderPin}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to sends an email with the PSTN Conference information of a user even if the tenant setting is off.TODO: This is a switch parameter. - ${SendEmail}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets a value indicating To Address to send the email that contains the Audio Conference information.This parameter must be used together with -SendEmail. - ${SendEmailToAddress}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the service number to set as the user's default bridge number. - ${ServiceNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the toll-free service number to set as the user's default toll-free service number. - ${TollFreeServiceNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponseInput -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Content ]: - [Country ]: - [ForceAccept ]: - [Locale ]: - [RespondedByObjectId ]: - [Response ]: - [ResponseTimestamp ]: - [Version ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlineenhancedemergencyservicedisclaimer -#> -function Set-CsOnlineEnhancedEmergencyServiceDisclaimer { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponseInput] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Content}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceAccept}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Locale}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RespondedByObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Response}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${ResponseTimestamp}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineEnhancedEmergencyServiceDisclaimer_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineEnhancedEmergencyServiceDisclaimer_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Updates a specific schedule. -PUT Teams.VoiceApps/schedules/identity. -.Description -Updates a specific schedule. -PUT Teams.VoiceApps/schedules/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IModifyScheduleResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -FIXEDSCHEDULEDATETIMERANGE : . - [End ]: - [Start ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -WEEKLYRECURRENTSCHEDULEFRIDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEMONDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESATURDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESUNDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETHURSDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETUESDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlineschedule -#> -function Set-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IModifyScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to be updated. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AssociatedConfigurationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDateTimeRange[]] - # . - # To construct, see NOTES section for FIXEDSCHEDULEDATETIMERANGE properties and create a hash table. - ${FixedScheduleDateTimeRange}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeEnd}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${RecurrenceRangeNumberOfOccurrence}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeStart}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RecurrenceRangeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEFRIDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleFridayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${WeeklyRecurrentScheduleIsComplemented}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEMONDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleMondayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESATURDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSaturdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESUNDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSundayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETHURSDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleThursdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETUESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleTuesdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleWednesdayHour}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Enable or Disable Tenant VerifiedSipDomains. -.Description -Enable or Disable Tenant VerifiedSipDomains. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantSipDomainRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : The request to update an tenant sip domain. - [Action ]: Action enable or disable domain. - [DomainName ]: Domain Name. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlinesipdomain -#> -function Set-CsOnlineSipDomain { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantSipDomainRequest] - # The request to update an tenant sip domain. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Action enable or disable domain. - ${Action}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Domain Name. - ${DomainName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSipDomain_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSipDomain_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Put OnlineVoicemailUserSettings. -.Description -Put OnlineVoicemailUserSettings. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : User Voicemail Settings base class. - [CallAnswerRule ]: Gets or sets CallAnswerRule. - [DefaultGreetingPromptOverwrite ]: Gets or sets DefaultGreetingPromptOverwrite. - [DefaultOofGreetingPromptOverwrite ]: Gets or sets DefaultOofGreetingPromptOverwrite. - [OofGreetingEnabled ]: Gets or sets a value indicating whether Out of Office Greeting is enabled. - [OofGreetingFollowAutomaticRepliesEnabled ]: Gets or sets a value indicating whether Out of Office Greeting Automatic Replies are enabled. - [PromptLanguage ]: Gets or sets prompt language. - [ShareData ]: Gets or sets a value indicating whether ShareData is enabled. - [TransferTarget ]: Gets or sets TransferTarget. - [VoicemailEnabled ]: Gets or sets a value indicating whether voicemail is enabled. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlinevmusersetting -#> -function Set-CsOnlineVMUserSetting { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings] - # User Voicemail Settings base class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CallAnswerRule. - ${CallAnswerRule}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets DefaultGreetingPromptOverwrite. - ${DefaultGreetingPromptOverwrite}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets DefaultOofGreetingPromptOverwrite. - ${DefaultOofGreetingPromptOverwrite}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether Out of Office Greetingis enabled. - ${OofGreetingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether Out of Office GreetingAutomatic Replies are enabled. - ${OofGreetingFollowAutomaticRepliesEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets prompt language. - ${PromptLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether ShareDatais enabled. - ${ShareData}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets TransferTarget. - ${TransferTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether voicemail is enabled. - ${VoicemailEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Add/Update user personal attendant settings in uss -.Description -Add/Update user personal attendant settings in uss -.Example - - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPersonalAttendantSettings -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AllowInboundFederatedCalls ]: - [AllowInboundInternalCalls ]: - [AllowInboundPSTNCalls ]: - [BookingCalendarId ]: - [CalleeName ]: - [DefaultLanguage ]: - [DefaultTone ]: - [DefaultVoice ]: - [IsAutomaticRecordingEnabled ]: - [IsAutomaticTranscriptionEnabled ]: - [IsBookingCalendarEnabled ]: - [IsCallScreeningEnabled ]: - [IsNonContactCallbackEnabled ]: - [IsPersonalAttendantEnabled ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cspersonalattendantsettings -#> -function Set-CsPersonalAttendantSettings { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPersonalAttendantSettings] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundFederatedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundInternalCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundPSTNCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CalleeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultTone}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultVoice}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAutomaticRecordingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAutomaticTranscriptionEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsBookingCalendarEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallScreeningEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsNonContactCallbackEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsPersonalAttendantEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csphonenumberassignment -#> -function Set-CsPhoneNumberAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${AssignmentCategory}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${EnterpriseVoiceEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NetworkSiteId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Notify}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ReverseNumberLookup}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberAssignment_Set'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.Boolean -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csphonenumbertenantconfiguration -#> -function Set-CsPhoneNumberTenantConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowOnPremToOnlineMigration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${AssignmentBlockedDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentEmailEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${UnassignmentEmailEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberTenantConfiguration_Set'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update shared call history template. -PUT /Teams.VoiceApps/shared-call-history-template/identity. -.Description -Update shared call history template. -PUT /Teams.VoiceApps/shared-call-history-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISharedCallHistoryTemplateDtoModel -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AnsweredAndOutboundCall ]: Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - [Description ]: Gets or sets the description of the shared call history template. - [Id ]: Gets or sets the identifier of the shared call history template. - [IncomingMissedCall ]: Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - [IncomingRedirectedCall ]: Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - [Name ]: Gets or sets the name of the shared call history template. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cssharedcallhistorytemplate -#> -function Set-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the shared call history template configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISharedCallHistoryTemplateDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the shared call history template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the shared call history template. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - ${IncomingMissedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the shared call history template. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update IVR Tags Template. -PUT api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Description -Update IVR Tags Template. -PUT api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagsTemplateDtoModel -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateIvrTagsTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Description ]: Description of the IVR tag template. - [Id ]: Gets or sets the unique identifier for the IVR tag template. This is used to link the IVR tag template to an AutoAttendant. - [Name ]: Gets or sets the name of the IVR tag template. - [Tag ]: List of tags associated with the IVR tag template. These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -TAG : List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cstagstemplate -#> -function Set-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagsTemplateDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Description of the IVR tag template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier for the IVR tag template. - # This is used to link the IVR tag template to an AutoAttendant. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the IVR tag template. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagDtoModel[]] - # List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - # To construct, see NOTES section for TAG properties and create a hash table. - ${Tag}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Set Org Settings - Set-CsTeamsSettingsCustomApp -.Description -Set Org Settings - Set-CsTeamsSettingsCustomApp -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCustomAppSettingRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -APPACCESSREQUESTCONFIG : . - [AdminInstructionMessage ]: Admin instructions for app access requests. - [ApprovalPortalUrl ]: Tenant's approval portal URL for app access requests. - -APPSETTINGSLIST : List of appSettings. - [Context ]: App context. - [Id ]: App Id. - [IsAppLevelAutoInstallEnabled ]: Auto Installation of app is enabled or not. - [IsEnabled ]: App is enabled or not. - -BODY : . - [AppAccessRequestConfig ]: - [AdminInstructionMessage ]: Admin instructions for app access requests. - [ApprovalPortalUrl ]: Tenant's approval portal URL for app access requests. - [AppSettingsList ]: List of appSettings. - [Context ]: App context. - [Id ]: App Id. - [IsAppLevelAutoInstallEnabled ]: Auto Installation of app is enabled or not. - [IsEnabled ]: App is enabled or not. - [IsAppsEnabled ]: Setting to indicate external apps enabled or not. - [IsAppsPurchaseEnabled ]: Setting to indicate purchase external apps enabled or not. - [IsExternalAppsEnabledByDefault ]: Setting to indicate external apps enabled by default or not. - [IsLicenseBasedPinnedAppsEnabled ]: Feature flag for tailored apps experience for F license users. - [IsSideloadedAppsInteractionEnabled ]: Members of this tenant can see and interact with side-loaded apps, which control custom app settings in TAMS. - [IsTenantWideAutoInstallEnabled ]: Setting to indicate auto-installation of external apps. - [LobBackground ]: Background of the LOB banner. It is either an image URL or a color code. - [LobLogo ]: Logo of the LOB banner. It is either an image URL or a color code. - [LobLogomark ]: Logomark in the LOB category. It is either an image URL or a color code. - [LobTextColor ]: Color of the text in the LOB banner. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csteamssettingscustomapp -#> -function Set-CsTeamsSettingsCustomApp { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCustomAppSettingRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAppAccessRequestConfig] - # . - # To construct, see NOTES section for APPACCESSREQUESTCONFIG properties and create a hash table. - ${AppAccessRequestConfig}, - - [Parameter(ParameterSetName='SetExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationObject[]] - # List of appSettings. - # To construct, see NOTES section for APPSETTINGSLIST properties and create a hash table. - ${AppSettingsList}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate external apps enabled or not. - ${IsAppsEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate purchase external apps enabled or not. - ${IsAppsPurchaseEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate external apps enabled by default or not. - ${IsExternalAppsEnabledByDefault}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Feature flag for tailored apps experience for F license users. - ${IsLicenseBasedPinnedAppsEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Members of this tenant can see and interact with side-loaded apps, which control custom app settings in TAMS. - ${IsSideloadedAppsInteractionEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate auto-installation of external apps. - ${IsTenantWideAutoInstallEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Background of the LOB banner. - # It is either an image URL or a color code. - ${LobBackground}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Logo of the LOB banner. - # It is either an image URL or a color code. - ${LobLogo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Logomark in the LOB category. - # It is either an image URL or a color code. - ${LobLogomark}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Color of the text in the LOB banner. - ${LobTextColor}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSettingsCustomApp_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSettingsCustomApp_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Updates delegate in bvd -.Description -Updates delegate in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusercallingdelegate -#> -function Set-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # ObjectId of the to-be-added member. - ${Delegate}, - - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # ObjectId of the group owner - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to join active calls. - ${JoinActiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to make calls. - ${MakeCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to manage call settings. - ${ManageSettings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to pick up held calls. - ${PickUpHeldCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to receive calls. - ${ReceiveCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingDelegate_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingDelegate_SetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Add/Update online user routing settings in bvd -.Description -Add/Update online user routing settings in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserRoutingSettings -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallGroupDetailDelay ]: - [CallGroupOrder ]: - [CallGroupTargets ]: - [Delegates ]: - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - [Delegators ]: - [ForwardingTarget ]: - [ForwardingTargetType ]: - [ForwardingType ]: - [GroupMembershipDetails ]: - [CallGroupOwnerId ]: - [NotificationSetting ]: - [GroupNotificationOverride ]: - [IsForwardingEnabled ]: - [IsUnansweredEnabled ]: - [SipUri ]: - [UnansweredDelay ]: - [UnansweredTarget ]: - [UnansweredTargetType ]: - -DELEGATIONSETTINGDELEGATE : . - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - -DELEGATIONSETTINGDELEGATOR : . - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - -GROUPMEMBERSHIPDETAILS : . - [CallGroupOwnerId ]: - [NotificationSetting ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusercallingsettings -#> -function Set-CsUserCallingSettings { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserRoutingSettings] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallGroupDetailDelay}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallGroupOrder}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${CallGroupTargets}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingTargetType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[]] - # . - # To construct, see NOTES section for GROUPMEMBERSHIPDETAILS properties and create a hash table. - ${GroupMembershipDetails}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${GroupNotificationOverride}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsForwardingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsUnansweredEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SipUri}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredDelay}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredTargetType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Set User. -.Description -Set User. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -System.Collections.Hashtable -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusergenerated -#> -function Set-CsUserGenerated { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - ${UserId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(Required, PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDictionaryOfString]))] - [System.Collections.Hashtable] - # Dictionary of - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Unassigns the previously assigned service number as default Conference Bridge number. -.Description -Unassigns the previously assigned service number as default Conference Bridge number. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Class representing ConferencingServiceNumber. - [BridgeId ]: Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - [City ]: Gets or sets the Geocode where the ServiceNumber is intended to be used. - [IsShared ]: Gets or sets a value indicating whether the number is shared between multiple tenants. If this is the case then tenant admins will be unable to edit the number. - [Number ]: Gets or sets the 11 digit number identifying the ServiceNumber. - [PrimaryLanguage ]: Gets or sets the primary language of the ServiceNumber. e.g.: "en-US". - [SecondaryLanguages ]: Gets or sets the list of secondary languages of the ServiceNumber. e.g.: "fr-FR","en-GB","en-IN". - [Type ]: Gets or sets defines the number type Toll/Toll-Free. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/unregister-csodcservicenumber -#> -function Unregister-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='UnregisterExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Unregister', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Service number to be assigned to a bridge. - # The service number in E.164 format, e.g. - # +14251112222 or tel:+14251112222. - ${Identity}, - - [Parameter(ParameterSetName='UnregisterViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge identifier to assign the service numbers to. - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge name to assign the service numbers. - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Switch parameter as a backdoor hook to remove the default service number on bridge. - ${RemoveDefaultServiceNumber}, - - [Parameter(ParameterSetName='Unregister1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber] - # Class representing ConferencingServiceNumber. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - ${BridgeId1}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Geocode where the ServiceNumber is intended to be used. - ${City}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the number is shared between multiple tenants. - # If this is the casethen tenant admins will be unable to edit the number. - ${IsShared}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the 11 digit number identifying the ServiceNumber. - ${Number}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the primary language of the ServiceNumber. - # e.g.: "en-US". - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of secondary languages of the ServiceNumber. - # e.g.: "fr-FR","en-GB","en-IN". - ${SecondaryLanguage}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets defines the number type Toll/Toll-Free. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Unregister = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_Unregister'; - Unregister1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_Unregister1'; - UnregisterExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_UnregisterExpanded'; - UnregisterViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_UnregisterViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Refresh a specific AutoAttendant dail by grammer. -POST /Teams.VoiceApps/autoAttendants/{identity}/refresh. -.Description -Refresh a specific AutoAttendant dail by grammer. -POST /Teams.VoiceApps/autoAttendants/{identity}/refresh. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-csautoattendant -#> -function Update-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='Update', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be refreshed. - ${Identity}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsAutoAttendant_Update'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsAutoAttendant_UpdateViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update configuration -.Description -Update configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-csconfiguration -#> -function Update-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -<# -.Synopsis -Update a policy package -.Description -Update a policy package -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYLIST : . - PolicyName : - PolicyType : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-cscustompolicypackage -#> -function Update-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyTypeAndName[]] - # . - # To construct, see NOTES section for POLICYLIST properties and create a hash table. - ${PolicyList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsCustomPolicyPackage_UpdateExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Assigns a service number to a bridge. -.Description -Assigns a service number to a bridge. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Class representing ConferencingServiceNumber. - [BridgeId ]: Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - [City ]: Gets or sets the Geocode where the ServiceNumber is intended to be used. - [IsShared ]: Gets or sets a value indicating whether the number is shared between multiple tenants. If this is the case then tenant admins will be unable to edit the number. - [Number ]: Gets or sets the 11 digit number identifying the ServiceNumber. - [PrimaryLanguage ]: Gets or sets the primary language of the ServiceNumber. e.g.: "en-US". - [SecondaryLanguages ]: Gets or sets the list of secondary languages of the ServiceNumber. e.g.: "fr-FR","en-GB","en-IN". - [Type ]: Gets or sets defines the number type Toll/Toll-Free. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/register-csodcservicenumber -#> -function Register-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='RegisterExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Register', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Service number to be assigned to a bridge. - # The service number in E.164 format, e.g. - # +14251112222 or tel:+14251112222. - ${Identity}, - - [Parameter(ParameterSetName='RegisterViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge identifier to assign the service numbers to. - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge name to assign the service numbers. - ${BridgeName}, - - [Parameter(ParameterSetName='Register1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber] - # Class representing ConferencingServiceNumber. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - ${BridgeId1}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Geocode where the ServiceNumber is intended to be used. - ${City}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the number is shared between multiple tenants. - # If this is the casethen tenant admins will be unable to edit the number. - ${IsShared}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the 11 digit number identifying the ServiceNumber. - ${Number}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the primary language of the ServiceNumber. - # e.g.: "en-US". - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of secondary languages of the ServiceNumber. - # e.g.: "fr-FR","en-GB","en-IN". - ${SecondaryLanguage}, - - [Parameter(ParameterSetName='RegisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets defines the number type Toll/Toll-Free. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Register = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_Register'; - Register1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_Register1'; - RegisterExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_RegisterExpanded'; - RegisterViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Register-CsOdcServiceNumber_RegisterViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete AI Agent. -DELETE /Teams.VoiceApps/aiagents/identity. -.Description -Delete AI Agent. -DELETE /Teams.VoiceApps/aiagents/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csagent -#> -function Remove-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAgent_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAgent_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Deletes a specific AutoAttendant. -DELETE Teams.VoiceApps/auto-attendants/identity. -.Description -Deletes a specific AutoAttendant. -DELETE Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csautoattendant -#> -function Remove-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be removed. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoAttendant_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoAttendant_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete auto recording template. -DELETE /Teams.VoiceApps/auto-recording-template/identity. -.Description -Delete auto recording template. -DELETE /Teams.VoiceApps/auto-recording-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csautorecordingtemplate -#> -function Remove-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoRecordingTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsAutoRecordingTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Remove call queue. -DELETE Teams.VoiceApps/callqueues/identity. -.Description -Remove call queue. -DELETE Teams.VoiceApps/callqueues/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cscallqueue -#> -function Remove-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCallQueue_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsCallQueue_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete Compliance Recording config. -DELETE /Teams.VoiceApps/compliance-recording/identity. -.Description -Delete Compliance Recording config. -DELETE /Teams.VoiceApps/compliance-recording/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cscompliancerecordingforcallqueuetemplate -#> -function Remove-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsComplianceRecordingForCallQueueTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsComplianceRecordingForCallQueueTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete Configuration -.Description -Delete Configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csconfiguration -#> -function Remove-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Delete = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsConfiguration_Delete'; - DeleteViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsConfiguration_DeleteViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Remove mainline attendant appointment booking flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/appointment-booking/identity. -.Description -Remove mainline attendant appointment booking flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/appointment-booking/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csmainlineattendantappointmentbookingflow -#> -function Remove-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantAppointmentBookingFlow_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantAppointmentBookingFlow_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Remove mainline attendant question answer flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/question-answer/identity. -.Description -Remove mainline attendant question answer flow. -DELETE Teams.VoiceApps/mainline-attendant-flow/question-answer/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csmainlineattendantquestionanswerflow -#> -function Remove-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantQuestionAnswerFlow_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsMainlineAttendantQuestionAnswerFlow_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Remove application instance associations. -DELETE api/v1.0/tenants/tenantId/applicationinstanceassociations/endpointId. -.Description -Remove application instance associations. -DELETE api/v1.0/tenants/tenantId/applicationinstanceassociations/endpointId. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRemoveApplicationInstanceAssociationsResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineapplicationinstanceassociation -#> -function Remove-CsOnlineApplicationInstanceAssociation { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRemoveApplicationInstanceAssociationsResponse])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Application instance Id. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineApplicationInstanceAssociation_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineApplicationInstanceAssociation_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete an audio file stored in MSS. -DELETE api/v3/tenants/tenantId/audiofile/appId/audiofileId -.Description -Delete an audio file stored in MSS. -DELETE api/v3/tenants/tenantId/audiofile/appId/audiofileId -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineaudiofile -#> -function Remove-CsOnlineAudioFile { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ApplicationId}, - - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineAudioFile_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineAudioFile_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Deletes a specific schedule. -DELETE Teams.VoiceApps/schedules/identity. -.Description -Deletes a specific schedule. -DELETE Teams.VoiceApps/schedules/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlineschedule -#> -function Remove-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to be removed. - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineSchedule_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineSchedule_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderResponse -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CmdletReleaseRequest - [TelephoneNumber ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csonlinetelephonenumberprivate -#> -function Remove-CsOnlineTelephoneNumberPrivate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseOrderResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtErrorResponseDetails])] -[CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISkypeTelephoneNumberMgmtCmdletReleaseRequest] - # CmdletReleaseRequest - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='RemoveExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${TelephoneNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineTelephoneNumberPrivate_Remove'; - RemoveExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsOnlineTelephoneNumberPrivate_RemoveExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csphonenumberassignment -#> -function Remove-CsPhoneNumberAssignment { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${AssignmentBlockedDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Notify}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${RemoveAll}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberAssignment_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsPhoneNumberAssignment_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete shared call history template config. -DELETE /Teams.VoiceApps/shared-call-history-template/identity. -.Description -Delete shared call history template config. -DELETE /Teams.VoiceApps/shared-call-history-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cssharedcallhistorytemplate -#> -function Remove-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsSharedCallHistoryTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsSharedCallHistoryTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Delete IVR Tags Template. -DELETE api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Description -Delete IVR Tags Template. -DELETE api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-cstagstemplate -#> -function Remove-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTagsTemplate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsTagsTemplate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Removes delegate in bvd -.Description -Removes delegate in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/remove-csusercallingdelegate -#> -function Remove-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Remove', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Delegate}, - - [Parameter(ParameterSetName='Remove', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='RemoveViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Remove = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserCallingDelegate_Remove'; - RemoveViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Remove-CsUserCallingDelegate_RemoveViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Searches a tenant for ODC users. -.Description -Searches a tenant for ODC users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/search-csodcuser -#> -function Search-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Page Size. - ${PageSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Continuation / Pagination marker. - # Use the value from nextlink property in response. - ${Skiptoken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # To set the number of users to be fetched - ${Top}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Search-CsOdcUser_Search'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Searches a tenant for users. -.Description -Searches a tenant for users. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUser -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/search-csuser -#> -function Search-CsUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUser])] -[CmdletBinding(DefaultParameterSetName='Search', PositionalBinding=$false)] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # To set defaultpropertyset value - ${Defaultpropertyset}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To fetch optional location field - ${Expandlocation}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # MS Graph like query filters - ${Filter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set includedefaultproperties value - ${Includedefaultproperty}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # This parameter supports query to sort the results. - ${OrderBy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # Page Size. - ${PageSize}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Powershell like query filters - ${Psfilter}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Properties to select - ${Select}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Continuation / Pagination marker. - # Use the value from nextlink property in response. - ${Skiptoken}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Skip user policies in user response object - ${Skipuserpolicy}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To be set true when called to only fetch Soft deleted users - ${Softdeleteduser}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # To set the number of users to be fetched - ${Top}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # To set to true when called from Get-CsVoiceUser cmdlet - ${Voiceuserquery}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Search = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Search-CsUser_Search'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update AI Agent. -PUT /Teams.VoiceApps/aiagents/identity. -.Description -Update AI Agent. -PUT /Teams.VoiceApps/aiagents/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentConfigurationDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAiAgentConfigurationResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : AI Agent DTO model. - [AgentId ]: Gets or sets the AgentId of the AI Agent. - [AgentTargetTagTemplateId ]: Gets or sets the AgentTargetTagTemplateId of the AI Agent. - [AgentType ]: Gets or sets the AgentType of the AI Agent. - [ConfigurationId ]: Gets or sets the identifier of the AI Agent. - [Name ]: Gets or sets the name of the AI Agent. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csagent -#> -function Set-CsAgent { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAiAgentConfigurationResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the AI Agent. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAiAgentConfigurationDtoModel] - # AI Agent DTO model. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentId of the AI Agent. - ${AgentId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentTargetTagTemplateId of the AI Agent. - ${AgentTargetTagTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the AgentType of the AI Agent. - ${AgentType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the AI Agent. - ${ConfigurationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the AI Agent. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAgent_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Updates a specific AutoAttendant. -PUT Teams.VoiceApps/auto-attendants/identity. -.Description -Updates a specific AutoAttendant. -PUT Teams.VoiceApps/auto-attendants/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoAttendant -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApplicationInstance ]: - [AuthorizedUser ]: - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallFlow ]: - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - [CallHandlingAssociation ]: - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - [DefaultCallFlowForceListenMenuEnabled ]: - [DefaultCallFlowGreeting ]: - [DefaultCallFlowId ]: - [DefaultCallFlowName ]: - [DefaultCallFlowRingResourceAccountDelegate ]: - [DialByNameResourceId ]: - [ExclusionScopeGroupDialScopeGroupId ]: - [ExclusionScopeType ]: - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [Id ]: - [InclusionScopeGroupDialScopeGroupId ]: - [InclusionScopeType ]: - [LanguageId ]: - [MainlineAttendantAgentVoiceId ]: - [MainlineAttendantEnabled ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [MenuPrompt ]: - [Name ]: - [OperatorCallPriority ]: - [OperatorEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorEnableTranscription ]: - [OperatorId ]: - [OperatorSharedVoicemailCallPriority ]: - [OperatorSharedVoicemailEnableSharedVoicemailSystemPromptSuppression ]: - [OperatorSharedVoicemailEnableTranscription ]: - [OperatorSharedVoicemailHistoryTemplateId ]: - [OperatorSharedVoicemailId ]: - [OperatorSharedVoicemailType ]: - [OperatorType ]: - [Schedule ]: - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - [SharedVoicemailHistoryTemplateId ]: - [Status ]: - [AuxiliaryData ]: Get or sets auxiliary data. - [ErrorCode ]: Gets or sets error code of audio, grammar. - [Id ]: Gets or sets dialByNameGrammarContext. - [Message ]: Gets or sets error meessage of audio, grammar. - [Status ]: Gets or sets resource status of autoattendant. - [StatusTimestamp ]: Gets or sets time stamp of auido, grammar status. - [Type ]: Gets or sets resource type of autoattendant. - [TenantId ]: - [TimeZoneId ]: - [UserNameExtension ]: - [VoiceId ]: - [VoiceResponseEnabled ]: - -CALLFLOW : . - [ForceListenMenuEnabled ]: - [Greeting ]: - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - [Id ]: - [MenuDialByNameEnabled ]: - [MenuDirectorySearchMethod ]: - [MenuName ]: - [MenuOption ]: - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - [MenuPrompt ]: - [Name ]: - [RingResourceAccountDelegate ]: - -CALLHANDLINGASSOCIATION : . - [CallFlowId ]: - [Enabled ]: - [Priority ]: - [ScheduleId ]: - [Type ]: - -DEFAULTCALLFLOWGREETING : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -MENUOPTION : . - [Action ]: - [AgentTarget ]: - [AgentTargetTagTemplateId ]: - [AgentTargetType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [CallTargetCallPriority ]: - [CallTargetEnableSharedVoicemailSystemPromptSuppression ]: - [CallTargetEnableTranscription ]: - [CallTargetId ]: - [CallTargetSharedVoicemailHistoryTemplateId ]: - [CallTargetType ]: - [Description ]: - [DtmfResponse ]: - [MainlineAttendantTarget ]: - [PromptActiveType ]: - [PromptTextToSpeechPrompt ]: - [VoiceResponse ]: - -MENUPROMPT : . - [ActiveType ]: - [AudioFilePromptDownloadUri ]: - [AudioFilePromptFileName ]: - [AudioFilePromptId ]: - [TextToSpeechPrompt ]: - -SCHEDULE : . - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -STATUS : . - [AuxiliaryData ]: Get or sets auxiliary data. - [ErrorCode ]: Gets or sets error code of audio, grammar. - [Id ]: Gets or sets dialByNameGrammarContext. - [Message ]: Gets or sets error meessage of audio, grammar. - [Status ]: Gets or sets resource status of autoattendant. - [StatusTimestamp ]: Gets or sets time stamp of auido, grammar status. - [Type ]: Gets or sets resource type of autoattendant. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csautoattendant -#> -function Set-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be updated. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoAttendant] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ApplicationInstance}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AuthorizedUser}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallFlow[]] - # . - # To construct, see NOTES section for CALLFLOW properties and create a hash table. - ${CallFlow}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallHandlingAssociation[]] - # . - # To construct, see NOTES section for CALLHANDLINGASSOCIATION properties and create a hash table. - ${CallHandlingAssociation}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowForceListenMenuEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for DEFAULTCALLFLOWGREETING properties and create a hash table. - ${DefaultCallFlowGreeting}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultCallFlowName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${DefaultCallFlowRingResourceAccountDelegate}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DialByNameResourceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${ExclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ExclusionScopeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUser}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${InclusionScopeGroupDialScopeGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${InclusionScopeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${LanguageId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MainlineAttendantAgentVoiceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MainlineAttendantEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${MenuDialByNameEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuDirectorySearchMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${MenuName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IMenuOption[]] - # . - # To construct, see NOTES section for MENUOPTION properties and create a hash table. - ${MenuOption}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPrompt[]] - # . - # To construct, see NOTES section for MENUPROMPT properties and create a hash table. - ${MenuPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorEnableTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${OperatorSharedVoicemailCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorSharedVoicemailEnableSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${OperatorSharedVoicemailEnableTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorSharedVoicemailType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${OperatorType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule[]] - # . - # To construct, see NOTES section for SCHEDULE properties and create a hash table. - ${Schedule}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SharedVoicemailHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IStatusRecord2[]] - # . - # To construct, see NOTES section for STATUS properties and create a hash table. - ${Status}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TenantId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${TimeZoneId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UserNameExtension}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${VoiceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${VoiceResponseEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoAttendant_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update Auto Recording Template. -PUT /Teams.VoiceApps/auto-recording-template/identity. -.Description -Update Auto Recording Template. -PUT /Teams.VoiceApps/auto-recording-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoRecordingTemplateDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoRecordingTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Request model for creating auto recording template. - [AgentViewPermission ]: Gets or sets the agent view permission. - [AutoRecordingAnnouncementAudioFileId ]: Gets or sets the auto recording announcement audio file ID. - [AutoRecordingAnnouncementAudioFileName ]: Gets or sets the auto recording announcement audio file name. - [AutoRecordingAnnouncementTextToSpeechPrompt ]: Gets or sets the auto recording announcement text-to-speech prompt. - [Description ]: Gets or sets the description of the auto recording template. - [Id ]: Gets or sets the identifier of the auto recording template. - [Name ]: Gets or sets the name of the auto recording template. - [RecordingDocumentOwner ]: Gets or sets the recording document owner. - [RecordingEnabled ]: Gets or sets a value indicating whether recording is enabled. - [SharePointHostName ]: Gets or sets the SharePoint host name where recordings are stored. - [SharePointSiteName ]: Gets or sets the SharePoint site name where recordings are stored. - [TranscriptionEnabled ]: Gets or sets a value indicating whether transcription is enabled. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csautorecordingtemplate -#> -function Set-CsAutoRecordingTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoRecordingTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the auto recording template configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAutoRecordingTemplateDtoModel] - # Request model for creating auto recording template. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the agent view permission. - ${AgentViewPermission}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement audio file ID. - ${AutoRecordingAnnouncementAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement audio file name. - ${AutoRecordingAnnouncementAudioFileName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the auto recording announcement text-to-speech prompt. - ${AutoRecordingAnnouncementTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the auto recording template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the auto recording template. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the auto recording template. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the recording document owner. - ${RecordingDocumentOwner}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether recording is enabled. - ${RecordingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the SharePoint host name where recordings are stored. - ${SharePointHostName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the SharePoint site name where recordings are stored. - ${SharePointSiteName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether transcription is enabled. - ${TranscriptionEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsAutoRecordingTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update call queue. -PUT Teams.VoiceApps/callqueues/identity. -.Description -Update call queue. -PUT Teams.VoiceApps/callqueues/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCallQueueRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : CallQueue modify request DTO class. - [AgentAlertTime ]: Gets or sets the number of seconds that a call can remain unanswered. - [AllowOptOut ]: Gets or sets a value indicating whether to allow agent optout on Call Queue. - [AuthorizedUser ]: Gets or sets authorized user ids. - [AutoRecordingTemplateId ]: Gets or sets the Auto Recording template. - [CallToAgentRatioThresholdBeforeOfferingCallback ]: - [CallbackEmailNotificationTarget ]: Gets or sets the target of the callback email notification target. - [CallbackOfferAudioFilePromptResourceId ]: - [CallbackOfferTextToSpeechPrompt ]: - [CallbackRequestDtmf ]: - [ComplianceRecordingForCallQueueId ]: Gets or Sets the Id for Compliance Recording template for Callqueue. - [ConferenceMode ]: Gets or sets a value indicating whether to allow Conference Mode on Call Queue. - [CustomAudioFileAnnouncementForCr ]: Gets or sets the custom audio file announcement for compliance recording. - [CustomAudioFileAnnouncementForCrFailure ]: Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - [DistributionList ]: Gets or sets the Call Queue's Distribution List. - [EnableNoAgentSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableNoAgentSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableOverflowSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableOverflowSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [EnableResourceAccountsForObo ]: Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - [EnableTimeoutSharedVoicemailSystemPromptSuppression ]: Gets or sets a value indicating if system message should be suppressed or not. - [EnableTimeoutSharedVoicemailTranscription ]: Gets or sets a value indicating if transcription should be turned on or not. - [HideAuthorizedUser ]: Gets or sets hidden authorized user ids. - [IsCallbackEnabled ]: - [LanguageId ]: Gets or sets the language Id used for TTS. - [MusicOnHoldAudioFileId ]: Gets or sets the call flows for the auto attendant app endpoint. - [Name ]: Gets or sets the Call Queue's name. - [NoAgentAction ]: Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - [NoAgentActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - [NoAgentActionTarget ]: Gets or sets the target of the NoAgent action. - [NoAgentApplyTo ]: Determines whether NoAgent Action is applied to All Calls or to new calls only. - [NoAgentDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on NoAgent. - [NoAgentDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on NoAgent. - [NoAgentRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on NoAgent. - [NoAgentRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - [NoAgentRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - [NoAgentRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - [NoAgentRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - [NoAgentSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemail. - [NoAgentSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [NumberOfCallsInQueueBeforeOfferingCallback ]: - [OboResourceAccountId ]: Gets or sets the list of Obo resource account ids. - [OverflowAction ]: Gets or sets the action to take when the overflow threshold is reached. - [OverflowActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - [OverflowActionTarget ]: Gets or sets the target of the overflow action. - [OverflowDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on overflow. - [OverflowDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on overflow. - [OverflowRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on overflow. - [OverflowRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on overflow. - [OverflowRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on overflow. - [OverflowRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on overflow. - [OverflowRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - [OverflowRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - [OverflowRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - [OverflowSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [OverflowSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [OverflowThreshold ]: Gets or sets the number of simultaneous calls that can be in the queue at any one time. - [PresenceAwareRouting ]: Gets or sets a value indicating whether to enable presence aware routing. - [RoutingMethod ]: Gets or sets the routing method for the Call Queue. - [ServiceLevelThresholdResponseTimeInSecond ]: - [SharedCallQueueHistoryId ]: Gets or sets the shared call history template. - [ShiftsSchedulingGroupId ]: Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - [ShiftsTeamId ]: Gets or sets the Shifts Team to use as Call queues answer target. - [ShouldOverwriteCallableChannelProperty ]: Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - [TextAnnouncementForCr ]: Gets or sets the text announcement for compliance recording. - [TextAnnouncementForCrFailure ]: Gets or sets the text announcemet that is played if CR bot is unable to join the call. - [ThreadId ]: Gets or sets teams channel thread id if user choose to sync CQ with a channel. - [TimeoutAction ]: Gets or sets the action to take if the timeout threshold is reached. - [TimeoutActionCallPriority ]: Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - [TimeoutActionTarget ]: Gets or sets the target of the timeout action. - [TimeoutDisconnectAudioFilePrompt ]: Gets or sets the audio file to be played when call is disconnected on Timeout. - [TimeoutDisconnectTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is disconnected on Timeout. - [TimeoutRedirectPersonAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to person on Timeout. - [TimeoutRedirectPersonTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to person on Timeout. - [TimeoutRedirectPhoneNumberAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectPhoneNumberTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - [TimeoutRedirectVoiceAppAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoiceAppTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - [TimeoutRedirectVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - [TimeoutRedirectVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - [TimeoutSharedVoicemailAudioFilePrompt ]: Gets or sets the audio file to be played when forwarding callers to shared voicemai. - [TimeoutSharedVoicemailTextToSpeechPrompt ]: Gets or sets the TTS to be played when forwarding callers to shared voicemail. - [TimeoutThreshold ]: Gets or sets the number of minutes that a call can be in the queue before it times out. - [UseDefaultMusicOnHold ]: Gets or sets a value indicating whether to use default music on hold audio file. - [User ]: Gets or sets the Call Queue's Users. - [WaitTimeBeforeOfferingCallbackInSecond ]: - [WelcomeMusicAudioFileId ]: Gets or sets the welcome audio file to play for the call queue. - [WelcomeTextToSpeechPrompt ]: Gets or sets the welcome text to speech content for the call queue. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cscallqueue -#> -function Set-CsCallQueue { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnosticRecord])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ChannelUserObjectId}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCallQueueRequest] - # CallQueue modify request DTO class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of seconds that a call can remain unanswered. - ${AgentAlertTime}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow agent optout on Call Queue. - ${AllowOptOut}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets authorized user ids. - ${AuthorizedUsers}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Auto Recording template. - ${AutoRecordingTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${CallToAgentRatioThresholdBeforeOfferingCallback}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the callback email notification target. - ${CallbackEmailNotificationTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferAudioFilePromptResourceId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackOfferTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallbackRequestDtmf}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or Sets the Id for Compliance Recording template for Callqueue. - ${ComplianceRecordingForCallQueueTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow Conference Mode on Call Queue. - ${ConferenceMode}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording. - ${CustomAudioFileAnnouncementForCr}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the custom audio file announcement for compliance recording if CR bot is unable to join the call. - ${CustomAudioFileAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Distribution List. - ${DistributionLists}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableNoAgentSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableNoAgentSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableOverflowSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableOverflowSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to allow CQ+Chanined RA's as permissioned RA's. - ${EnableResourceAccountsForObo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if system message should be suppressed or not. - ${EnableTimeoutSharedVoicemailSystemPromptSuppression}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating if transcription should be turned on or not. - ${EnableTimeoutSharedVoicemailTranscription}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets hidden authorized user ids. - ${HideAuthorizedUsers}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallbackEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the language Id used for TTS. - ${LanguageId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the call flows for the auto attendant app endpoint. - ${MusicOnHoldAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Call Queue's name. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the NoAgent is LoggedIn/OptedIn. - ${NoAgentAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of no agent. - ${NoAgentActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the NoAgent action. - ${NoAgentActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Determines whether NoAgent Action is applied to All Calls or to new calls only. - ${NoAgentApplyTo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on NoAgent. - ${NoAgentDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on NoAgent. - ${NoAgentRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on NoAgent. - ${NoAgentRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on NoAgent. - ${NoAgentRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on NoAgent. - ${NoAgentRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${NoAgentSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${NumberOfCallsInQueueBeforeOfferingCallback}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of Obo resource account ids. - ${OboResourceAccountIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take when the overflow threshold is reached. - ${OverflowAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of overflow. - ${OverflowActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the overflow action. - ${OverflowActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on overflow. - ${OverflowDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on overflow. - ${OverflowDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on overflow. - ${OverflowRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on overflow. - ${OverflowRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on overflow. - ${OverflowRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on overflow. - ${OverflowRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${OverflowSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${OverflowSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of simultaneous calls that can be in the queue at any one time. - ${OverflowThreshold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to enable presence aware routing. - ${PresenceAwareRouting}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the routing method for the Call Queue. - ${RoutingMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${ServiceLevelThresholdResponseTimeInSecond}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the shared call history template. - ${SharedCallQueueHistoryTemplateId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Scheduling Group to use as Call queues answer target. - ${ShiftsSchedulingGroupId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Shifts Team to use as Call queues answer target. - ${ShiftsTeamId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets ShouldOverwriteCallableChannelProperty flag that indicates user intention to whether overwirte the current callableChannel property value on chat service or not. - ${ShouldOverwriteCallableChannelProperty}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcement for compliance recording. - ${TextAnnouncementForCr}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the text announcemet that is played if CR bot is unable to join the call. - ${TextAnnouncementForCrFailure}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets teams channel thread id if user choose to sync CQ with a channel. - ${ThreadId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the action to take if the timeout threshold is reached. - ${TimeoutAction}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the CallPriority when a CQ transfers the call to another CQ upon the occurrence of timeout. - ${TimeoutActionCallPriority}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the target of the timeout action. - ${TimeoutActionTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is disconnected on Timeout. - ${TimeoutDisconnectAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is disconnected on Timeout. - ${TimeoutDisconnectTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to person on Timeout. - ${TimeoutRedirectPersonTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to phone number on Timeout. - ${TimeoutRedirectPhoneNumberTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voiceapp on Timeout. - ${TimeoutRedirectVoiceAppTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when call is redirected to voicemail on Timeout. - ${TimeoutRedirectVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the audio file to be played when forwarding callers to shared voicemai. - ${TimeoutSharedVoicemailAudioFilePrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the TTS to be played when forwarding callers to shared voicemail. - ${TimeoutSharedVoicemailTextToSpeechPrompt}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of minutes that a call can be in the queue before it times out. - ${TimeoutThreshold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to use default music on hold audio file. - ${UseDefaultMusicOnHold}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the Call Queue's Users. - ${Users}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${WaitTimeBeforeOfferingCallbackInSecond}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the welcome audio file to play for the call queue. - ${WelcomeMusicAudioFileId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the welcome text to speech content for the call queue. - ${WelcomeTextToSpeechPrompt}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsCallQueue_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update compliance recording template. -PUT /Teams.VoiceApps/compliance-recording/identity. -.Description -Update compliance recording template. -PUT /Teams.VoiceApps/compliance-recording/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IComplianceRecordingForCallQueueDtoModel -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateComplianceRecordingForCallQueueResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [BotId ]: Gets or sets the MRI of the first bot. - [ConcurrentInvitationCount ]: Gets or sets the number of concurrent invitations allowed. Concurrent invitations are used to send multiple invites to the CR bot. - [Description ]: Gets or sets the description of the compliance recording. - [Id ]: Gets or sets the identifier of the compliance recording. - [Name ]: Gets or sets the name of the compliance recording. - [PairedApplication ]: Gets or sets the paired applications for the compliance recording bot. This is a resiliency feature that allows invitation of another bot. If either of BotMRI or the paired application is available, we will consider the call to be successful. - [RequiredBeforeCall ]: Gets or sets a value indicating whether the compliance recording is required before the call. - [RequiredDuringCall ]: Gets or sets a value indicating whether the compliance recording is required during the call. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cscompliancerecordingforcallqueuetemplate -#> -function Set-CsComplianceRecordingForCallQueueTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateComplianceRecordingForCallQueueResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the compliance recording configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IComplianceRecordingForCallQueueDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the MRI of the first bot. - ${BotApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the number of concurrent invitations allowed. - # Concurrent invitations are used to send multiple invites to the CR bot. - ${ConcurrentInvitationCount}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the compliance recording. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the compliance recording. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the compliance recording. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the paired applications for the compliance recording bot. - # This is a resiliency feature that allows invitation of another bot.If either of BotMRI or the paired application is available, we will consider the call to be successful. - ${PairedApplicationInstanceObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required before the call. - ${RequiredBeforeCall}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the compliance recording is required during the call. - ${RequiredDuringCall}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsComplianceRecordingForCallQueueTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update configuration -.Description -Update configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csconfiguration -#> -function Set-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsConfiguration_UpdateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update appointment booking flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking/identity -.Description -Update appointment booking flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/appointment-booking/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Represents a request to update a mainline attendant appointment booking flow. - [ApiAuthenticationType ]: Defines the type of API authentication to be used. Supported values include: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [ApiDefinition ]: Contains detailed specifications or schema definitions for the API. - [CallerAuthenticationMethod ]: Specifies the method used to authenticate the caller. Supported values include: Sms, Email, VerificationLink, Voiceprint, UserDetails. - [Description ]: A brief description of the appointment booking flow. - [Identity ]: The unique identifier for the appointment booking flow. - [Name ]: The name assigned to the appointment booking flow. - [RelatedConfigurationId ]: Gets or sets the configuration ID of the mainline attendant appointment booking flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. - [Type ]: The type of the mainline attendant flow. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -RELATEDCONFIGURATIONIDS : Gets or sets the configuration ID of the mainline attendant appointment booking flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csmainlineattendantappointmentbookingflow -#> -function Set-CsMainlineAttendantAppointmentBookingFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Flow Identity. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAppointmentBookingFlowRequest] - # Represents a request to update a mainline attendant appointment booking flow. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Defines the type of API authentication to be used.Supported values include: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Contains detailed specifications or schema definitions for the API. - ${ApiDefinitions}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Specifies the method used to authenticate the caller.Supported values include: Sms, Email, VerificationLink, Voiceprint, UserDetails. - ${CallerAuthenticationMethod}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the appointment booking flow. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The unique identifier for the appointment booking flow. - ${Identity1}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The name assigned to the appointment booking flow. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRelatedConfiguration[]] - # Gets or sets the configuration ID of the mainline attendant appointment booking flow. - # To construct, see NOTES section for RELATEDCONFIGURATIONIDS properties and create a hash table. - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The type of the mainline attendant flow. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantAppointmentBookingFlow_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update question and answer flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer/identity -.Description -Update question and answer flow for mainline attendant PUT api/v1.0/tenants/tenantId/mainline-attendant-flow/question-answer/identity -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [ApiAuthenticationType ]: Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - [Description ]: Gets or sets the description of the mainline attendant question and answer flow. - [Identity ]: A brief description of the question and answer flow. - [KnowledgeBase ]: Gets or sets the detailed definitions of the knowledge base. - [Name ]: Gets or sets the name of the mainline attendant question and answer flow. - [RelatedConfigurationId ]: Gets or sets the configuration IDs of the mainline attendant question and answer flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. - [Type ]: A brief description of the question and answer flow. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -RELATEDCONFIGURATIONIDS : Gets or sets the configuration IDs of the mainline attendant question and answer flow. - [Id ]: Gets or sets the identifier of the base configuration. - [Name ]: Gets or sets the name of the base configuration. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csmainlineattendantquestionanswerflow -#> -function Set-CsMainlineAttendantQuestionAnswerFlow { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Flow Identity. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateQuestionAnswerFlowRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets the api authentication type, allowed values: Basic, ApiKey, BearerTokenStatic, BearerTokenDynamic. - ${ApiAuthenticationType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the mainline attendant question and answer flow. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the question and answer flow. - ${Identity1}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the detailed definitions of the knowledge base. - ${KnowledgeBase}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the mainline attendant question and answer flow. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IRelatedConfiguration[]] - # Gets or sets the configuration IDs of the mainline attendant question and answer flow. - # To construct, see NOTES section for RELATEDCONFIGURATIONIDS properties and create a hash table. - ${RelatedConfigurationIds}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # A brief description of the question and answer flow. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsMainlineAttendantQuestionAnswerFlow_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Sets a bridge using unique id. -This api is also used for Instance query. -.Description -Sets a bridge using unique id. -This api is also used for Instance query. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBridgeUpdateRequest -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Update Conferencing Bridge Default Service number, or make it tenant's default bridge. - [DefaultServiceNumber ]: Gets or sets service number to be updated as new default number of bridge. - [Name ]: Gets or sets name of the bridge. This can only be used when user sets the bridge using instance. - [SetDefault ]: Gets or sets a boolean value indicating if the bridge should be updated to be tenant's default bridge. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcbridge -#> -function Set-CsOdcBridge { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingBridge])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the bridge. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set1', Mandatory)] - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1', Mandatory)] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Name of the bridge. - ${Name}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='Set1', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IBridgeUpdateRequest] - # Update Conferencing Bridge Default Service number, or make it tenant's default bridge. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets service number to be updated as new default number of bridge. - ${DefaultServiceNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetExpanded1')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a boolean value indicating if the bridge should be updated to be tenant's default bridge. - ${SetDefault}, - - [Parameter(ParameterSetName='SetExpanded1')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets name of the bridge. - # This can only be used when user sets the bridge using instance. - ${Name1}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_Set'; - Set1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_Set1'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetExpanded'; - SetExpanded1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetExpanded1'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcBridge_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Set service number by unique id. -.Description -Set service number by unique id. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IServiceNumberUpdateRequest -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Update Conferencing Service number. - [PrimaryLanguage ]: The primary language CAA should use to service this call, e.g. en-US, en-GB etc. - [RestoreDefaultLanguage ]: Switch to indicate that the Primary and Secondary languages should be set to the default values. - [SecondaryLanguage ]: The list of secondary languages CAA should use to service this call. Number of secondary languages is limited to a max of 4. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcservicenumber -#> -function Set-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the service number. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IServiceNumberUpdateRequest] - # Update Conferencing Service number. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # The primary language CAA should use to service this call, e.g. - # en-US, en-GB etc. - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Switch to indicate that the Primary and Secondary languages should be set to the default values. - ${RestoreDefaultLanguages}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # The list of secondary languages CAA should use to service this call. - # Number of secondary languages is limited to a max of 4. - ${SecondaryLanguages}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcServiceNumber_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -This cmdlet is used to modify the properties of a user that has been enabled for Microsoft's audio conferencing service. -.Description -This cmdlet is used to modify the properties of a user that has been enabled for Microsoft's audio conferencing service. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserData -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : User data to be sent. - [AllowTollFreeDialIn ]: Gets or sets a value indicating whether or not the meeting should allow dialin via toll-free service number. TODO: This is not a Switch parameter. - [BridgeId ]: Gets or sets the bridge identifier. - [BridgeName ]: Gets or sets the bridge name. - [ResetLeaderPin ]: Gets or sets a value indicating whether or not to reset the leader pin. TODO: This is a Switch parameter. - [SendEmail ]: Gets or sets a value indicating whether to sends an email with the PSTN Conference information of a user even if the tenant setting is off. TODO: This is a switch parameter. - [SendEmailToAddress ]: Gets or sets a value indicating To Address to send the email that contains the Audio Conference information. This parameter must be used together with -SendEmail. - [ServiceNumber ]: Gets or sets the service number to set as the user's default bridge number. - [TollFreeServiceNumber ]: Gets or sets the toll-free service number to set as the user's default toll-free service number. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csodcuser -#> -function Set-CsOdcUser { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingUser])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Identity of the user. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserData] - # User data to be sent. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether or not the meeting should allow dialin via toll-free service number.TODO: This is not a Switch parameter. - ${AllowTollFreeDialIn}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the bridge identifier. - ${BridgeId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the bridge name. - ${BridgeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether or not to reset the leader pin.TODO: This is a Switch parameter. - ${ResetLeaderPin}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether to sends an email with the PSTN Conference information of a user even if the tenant setting is off.TODO: This is a switch parameter. - ${SendEmail}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets a value indicating To Address to send the email that contains the Audio Conference information.This parameter must be used together with -SendEmail. - ${SendEmailToAddress}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the service number to set as the user's default bridge number. - ${ServiceNumber}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the toll-free service number to set as the user's default toll-free service number. - ${TollFreeServiceNumber}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOdcUser_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponseInput -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Content ]: - [Country ]: - [ForceAccept ]: - [Locale ]: - [RespondedByObjectId ]: - [Response ]: - [ResponseTimestamp ]: - [Version ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlineenhancedemergencyservicedisclaimer -#> -function Set-CsOnlineEnhancedEmergencyServiceDisclaimer { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponse], [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDiagnostics])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IEmergencyDisclaimerUserResponseInput] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Content}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CountryOrRegion}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${ForceAccept}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Locale}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RespondedByObjectId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${Response}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${ResponseTimestamp}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Version}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineEnhancedEmergencyServiceDisclaimer_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineEnhancedEmergencyServiceDisclaimer_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Updates a specific schedule. -PUT Teams.VoiceApps/schedules/identity. -.Description -Updates a specific schedule. -PUT Teams.VoiceApps/schedules/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IModifyScheduleResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AssociatedConfigurationId ]: - [FixedScheduleDateTimeRange ]: - [End ]: - [Start ]: - [Id ]: - [Name ]: - [RecurrenceRangeEnd ]: - [RecurrenceRangeNumberOfOccurrence ]: - [RecurrenceRangeStart ]: - [RecurrenceRangeType ]: - [Type ]: - [WeeklyRecurrentScheduleFridayHour ]: - [End ]: - [Start ]: - [WeeklyRecurrentScheduleIsComplemented ]: - [WeeklyRecurrentScheduleMondayHour ]: - [WeeklyRecurrentScheduleSaturdayHour ]: - [WeeklyRecurrentScheduleSundayHour ]: - [WeeklyRecurrentScheduleThursdayHour ]: - [WeeklyRecurrentScheduleTuesdayHour ]: - [WeeklyRecurrentScheduleWednesdayHour ]: - -FIXEDSCHEDULEDATETIMERANGE : . - [End ]: - [Start ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -WEEKLYRECURRENTSCHEDULEFRIDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEMONDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESATURDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULESUNDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETHURSDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULETUESDAYHOUR : . - [End ]: - [Start ]: - -WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR : . - [End ]: - [Start ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlineschedule -#> -function Set-CsOnlineSchedule { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IModifyScheduleResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the schedule to be updated. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISchedule] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${AssociatedConfigurationId}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDateTimeRange[]] - # . - # To construct, see NOTES section for FIXEDSCHEDULEDATETIMERANGE properties and create a hash table. - ${FixedScheduleDateTimeRange}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeEnd}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # . - ${RecurrenceRangeNumberOfOccurrence}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.DateTime] - # . - ${RecurrenceRangeStart}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${RecurrenceRangeType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Type}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEFRIDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleFridayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${WeeklyRecurrentScheduleIsComplemented}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEMONDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleMondayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESATURDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSaturdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULESUNDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleSundayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETHURSDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleThursdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULETUESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleTuesdayHour}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITimeRange[]] - # . - # To construct, see NOTES section for WEEKLYRECURRENTSCHEDULEWEDNESDAYHOUR properties and create a hash table. - ${WeeklyRecurrentScheduleWednesdayHour}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSchedule_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Enable or Disable Tenant VerifiedSipDomains. -.Description -Enable or Disable Tenant VerifiedSipDomains. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantSipDomainRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : The request to update an tenant sip domain. - [Action ]: Action enable or disable domain. - [DomainName ]: Domain Name. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlinesipdomain -#> -function Set-CsOnlineSipDomain { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ITenantSipDomainRequest] - # The request to update an tenant sip domain. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Action enable or disable domain. - ${Action}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Domain Name. - ${DomainName}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSipDomain_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineSipDomain_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Put OnlineVoicemailUserSettings. -.Description -Put OnlineVoicemailUserSettings. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : User Voicemail Settings base class. - [CallAnswerRule ]: Gets or sets CallAnswerRule. - [DefaultGreetingPromptOverwrite ]: Gets or sets DefaultGreetingPromptOverwrite. - [DefaultOofGreetingPromptOverwrite ]: Gets or sets DefaultOofGreetingPromptOverwrite. - [OofGreetingEnabled ]: Gets or sets a value indicating whether Out of Office Greeting is enabled. - [OofGreetingFollowAutomaticRepliesEnabled ]: Gets or sets a value indicating whether Out of Office Greeting Automatic Replies are enabled. - [PromptLanguage ]: Gets or sets prompt language. - [ShareData ]: Gets or sets a value indicating whether ShareData is enabled. - [TransferTarget ]: Gets or sets TransferTarget. - [VoicemailEnabled ]: Gets or sets a value indicating whether voicemail is enabled. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csonlinevmusersetting -#> -function Set-CsOnlineVMUserSetting { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IVoicemailSettings] - # User Voicemail Settings base class. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets CallAnswerRule. - ${CallAnswerRule}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets DefaultGreetingPromptOverwrite. - ${DefaultGreetingPromptOverwrite}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets DefaultOofGreetingPromptOverwrite. - ${DefaultOofGreetingPromptOverwrite}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether Out of Office Greetingis enabled. - ${OofGreetingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether Out of Office GreetingAutomatic Replies are enabled. - ${OofGreetingFollowAutomaticRepliesEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets prompt language. - ${PromptLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether ShareDatais enabled. - ${ShareData}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets TransferTarget. - ${TransferTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether voicemail is enabled. - ${VoicemailEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsOnlineVMUserSetting_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Add/Update user personal attendant settings in uss -.Description -Add/Update user personal attendant settings in uss -.Example - - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPersonalAttendantSettings -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AllowInboundFederatedCalls ]: - [AllowInboundInternalCalls ]: - [AllowInboundPSTNCalls ]: - [BookingCalendarId ]: - [CalleeName ]: - [DefaultLanguage ]: - [DefaultTone ]: - [DefaultVoice ]: - [IsAutomaticRecordingEnabled ]: - [IsAutomaticTranscriptionEnabled ]: - [IsBookingCalendarEnabled ]: - [IsCallScreeningEnabled ]: - [IsNonContactCallbackEnabled ]: - [IsPersonalAttendantEnabled ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cspersonalattendantsettings -#> -function Set-CsPersonalAttendantSettings { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPersonalAttendantSettings] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundFederatedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundInternalCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowInboundPSTNCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CalleeName}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultLanguage}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultTone}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${DefaultVoice}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAutomaticRecordingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsAutomaticTranscriptionEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsBookingCalendarEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsCallScreeningEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsNonContactCallbackEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsPersonalAttendantEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPersonalAttendantSettings_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csphonenumberassignment -#> -function Set-CsPhoneNumberAssignment { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${AssignmentCategory}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${EnterpriseVoiceEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${Identity}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${LocationId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${NetworkSiteId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${Notify}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumber}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${PhoneNumberType}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${ReverseNumberLookup}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberAssignment_Set'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis - -.Description - -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.Boolean -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csphonenumbertenantconfiguration -#> -function Set-CsPhoneNumberTenantConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AllowOnPremToOnlineMigration}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Int32] - # . - ${AssignmentBlockedDays}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentBlockedForever}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${AssignmentEmailEnabled}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # . - ${UnassignmentEmailEnabled}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsPhoneNumberTenantConfiguration_Set'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update shared call history template. -PUT /Teams.VoiceApps/shared-call-history-template/identity. -.Description -Update shared call history template. -PUT /Teams.VoiceApps/shared-call-history-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISharedCallHistoryTemplateDtoModel -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateSharedCallHistoryTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [AnsweredAndOutboundCall ]: Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - [Description ]: Gets or sets the description of the shared call history template. - [Id ]: Gets or sets the identifier of the shared call history template. - [IncomingMissedCall ]: Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - [IncomingRedirectedCall ]: Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - [Name ]: Gets or sets the name of the shared call history template. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cssharedcallhistorytemplate -#> -function Set-CsSharedCallHistoryTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateSharedCallHistoryTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # The identity of the shared call history template configuration. - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ISharedCallHistoryTemplateDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Answered and outbound calls is delivered to authorized users, authorized users and agents or none. - ${AnsweredAndOutboundCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the description of the shared call history template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the identifier of the shared call history template. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming missed calls is delivered to authorized users, authorized users and agents or none. - ${IncomingMissedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Int32] - # Gets or sets whether the shared call history for Incoming redirected calls is delivered to authorized users, authorized users and group members or none. - ${IncomingRedirectedCalls}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the shared call history template. - ${Name}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsSharedCallHistoryTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update IVR Tags Template. -PUT api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Description -Update IVR Tags Template. -PUT api/v1.0/tenants/tenantId/ivr-tags-template/identity. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagsTemplateDtoModel -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateIvrTagsTemplateResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [Description ]: Description of the IVR tag template. - [Id ]: Gets or sets the unique identifier for the IVR tag template. This is used to link the IVR tag template to an AutoAttendant. - [Name ]: Gets or sets the name of the IVR tag template. - [Tag ]: List of tags associated with the IVR tag template. These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id - -TAG : List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - [TagDetailCallPriority ]: - [TagDetailEnableSharedVoicemailSystemPromptSuppression ]: - [TagDetailEnableTranscription ]: - [TagDetailId ]: - [TagDetailSharedVoicemailHistoryTemplateId ]: - [TagDetailType ]: - [TagName ]: -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-cstagstemplate -#> -function Set-CsTagsTemplate { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateIvrTagsTemplateResponse])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagsTemplateDtoModel] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Description of the IVR tag template. - ${Description}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier for the IVR tag template. - # This is used to link the IVR tag template to an AutoAttendant. - ${Id}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the name of the IVR tag template. - ${Name}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IIvrTagDtoModel[]] - # List of tags associated with the IVR tag template.These contain the name and callbale entities to which the IVR can initiate a transfer to. - # To construct, see NOTES section for TAG properties and create a hash table. - ${Tag}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTagsTemplate_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Set Org Settings - Set-CsTeamsSettingsCustomApp -.Description -Set Org Settings - Set-CsTeamsSettingsCustomApp -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCustomAppSettingRequest -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -APPACCESSREQUESTCONFIG : . - [AdminInstructionMessage ]: Admin instructions for app access requests. - [ApprovalPortalUrl ]: Tenant's approval portal URL for app access requests. - -APPSETTINGSLIST : List of appSettings. - [Context ]: App context. - [Id ]: App Id. - [IsAppLevelAutoInstallEnabled ]: Auto Installation of app is enabled or not. - [IsEnabled ]: App is enabled or not. - -BODY : . - [AppAccessRequestConfig ]: - [AdminInstructionMessage ]: Admin instructions for app access requests. - [ApprovalPortalUrl ]: Tenant's approval portal URL for app access requests. - [AppSettingsList ]: List of appSettings. - [Context ]: App context. - [Id ]: App Id. - [IsAppLevelAutoInstallEnabled ]: Auto Installation of app is enabled or not. - [IsEnabled ]: App is enabled or not. - [IsAppsEnabled ]: Setting to indicate external apps enabled or not. - [IsAppsPurchaseEnabled ]: Setting to indicate purchase external apps enabled or not. - [IsExternalAppsEnabledByDefault ]: Setting to indicate external apps enabled by default or not. - [IsLicenseBasedPinnedAppsEnabled ]: Feature flag for tailored apps experience for F license users. - [IsSideloadedAppsInteractionEnabled ]: Members of this tenant can see and interact with side-loaded apps, which control custom app settings in TAMS. - [IsTenantWideAutoInstallEnabled ]: Setting to indicate auto-installation of external apps. - [LobBackground ]: Background of the LOB banner. It is either an image URL or a color code. - [LobLogo ]: Logo of the LOB banner. It is either an image URL or a color code. - [LobLogomark ]: Logomark in the LOB category. It is either an image URL or a color code. - [LobTextColor ]: Color of the text in the LOB banner. -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csteamssettingscustomapp -#> -function Set-CsTeamsSettingsCustomApp { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateCustomAppSettingRequest] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IAppAccessRequestConfig] - # . - # To construct, see NOTES section for APPACCESSREQUESTCONFIG properties and create a hash table. - ${AppAccessRequestConfig}, - - [Parameter(ParameterSetName='SetExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IApplicationObject[]] - # List of appSettings. - # To construct, see NOTES section for APPSETTINGSLIST properties and create a hash table. - ${AppSettingsList}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate external apps enabled or not. - ${IsAppsEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate purchase external apps enabled or not. - ${IsAppsPurchaseEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate external apps enabled by default or not. - ${IsExternalAppsEnabledByDefault}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Feature flag for tailored apps experience for F license users. - ${IsLicenseBasedPinnedAppsEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Members of this tenant can see and interact with side-loaded apps, which control custom app settings in TAMS. - ${IsSideloadedAppsInteractionEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Setting to indicate auto-installation of external apps. - ${IsTenantWideAutoInstallEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Background of the LOB banner. - # It is either an image URL or a color code. - ${LobBackground}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Logo of the LOB banner. - # It is either an image URL or a color code. - ${LobLogo}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Logomark in the LOB category. - # It is either an image URL or a color code. - ${LobLogomark}, - - [Parameter(ParameterSetName='SetExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Color of the text in the LOB banner. - ${LobTextColor}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSettingsCustomApp_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsTeamsSettingsCustomApp_SetExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Updates delegate in bvd -.Description -Updates delegate in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusercallingdelegate -#> -function Set-CsUserCallingDelegate { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Set', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # ObjectId of the to-be-added member. - ${Delegate}, - - [Parameter(ParameterSetName='Set', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # ObjectId of the group owner - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to join active calls. - ${JoinActiveCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to make calls. - ${MakeCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to manage call settings. - ${ManageSettings}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to pick up held calls. - ${PickUpHeldCalls}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # If the member is allowed to receive calls. - ${ReceiveCalls}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingDelegate_Set'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingDelegate_SetViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Add/Update online user routing settings in bvd -.Description -Add/Update online user routing settings in bvd -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserRoutingSettings -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [CallGroupDetailDelay ]: - [CallGroupOrder ]: - [CallGroupTargets ]: - [Delegates ]: - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - [Delegators ]: - [ForwardingTarget ]: - [ForwardingTargetType ]: - [ForwardingType ]: - [GroupMembershipDetails ]: - [CallGroupOwnerId ]: - [NotificationSetting ]: - [GroupNotificationOverride ]: - [IsForwardingEnabled ]: - [IsUnansweredEnabled ]: - [SipUri ]: - [UnansweredDelay ]: - [UnansweredTarget ]: - [UnansweredTargetType ]: - -DELEGATIONSETTINGDELEGATE : . - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - -DELEGATIONSETTINGDELEGATOR : . - [Id ]: - [JoinActiveCalls ]: - [MakeCalls ]: - [ManageSettings ]: - [PickUpHeldCalls ]: - [ReceiveCalls ]: - -GROUPMEMBERSHIPDETAILS : . - [CallGroupOwnerId ]: - [NotificationSetting ]: - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusercallingsettings -#> -function Set-CsUserCallingSettings { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserRoutingSettings] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallGroupDetailDelay}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${CallGroupOrder}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # . - ${CallGroupTargets}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingTargetType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${ForwardingType}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.ICallGroupMembershipDetails[]] - # . - # To construct, see NOTES section for GROUPMEMBERSHIPDETAILS properties and create a hash table. - ${GroupMembershipDetails}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${GroupNotificationOverride}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsForwardingEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # . - ${IsUnansweredEnabled}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${SipUri}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredDelay}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredTarget}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${UnansweredTargetType}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserCallingSettings_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Set User. -.Description -Set User. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -System.Collections.Hashtable -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/set-csusergenerated -#> -function Set-CsUserGenerated { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUserMas])] -[CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Set', Mandatory)] - [Parameter(ParameterSetName='SetExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # UserId. - ${UserId}, - - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(ParameterSetName='Set', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='SetViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.Info(Required, PossibleTypes=([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IDictionaryOfString]))] - [System.Collections.Hashtable] - # Dictionary of - ${Body}, - - [Parameter(ParameterSetName='SetExpanded')] - [Parameter(ParameterSetName='SetViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Set = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_Set'; - SetExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetExpanded'; - SetViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetViaIdentity'; - SetViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Set-CsUserGenerated_SetViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Unassigns the previously assigned service number as default Conference Bridge number. -.Description -Unassigns the previously assigned service number as default Conference Bridge number. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : Class representing ConferencingServiceNumber. - [BridgeId ]: Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - [City ]: Gets or sets the Geocode where the ServiceNumber is intended to be used. - [IsShared ]: Gets or sets a value indicating whether the number is shared between multiple tenants. If this is the case then tenant admins will be unable to edit the number. - [Number ]: Gets or sets the 11 digit number identifying the ServiceNumber. - [PrimaryLanguage ]: Gets or sets the primary language of the ServiceNumber. e.g.: "en-US". - [SecondaryLanguages ]: Gets or sets the list of secondary languages of the ServiceNumber. e.g.: "fr-FR","en-GB","en-IN". - [Type ]: Gets or sets defines the number type Toll/Toll-Free. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/unregister-csodcservicenumber -#> -function Unregister-CsOdcServiceNumber { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber])] -[CmdletBinding(DefaultParameterSetName='UnregisterExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Unregister', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Service number to be assigned to a bridge. - # The service number in E.164 format, e.g. - # +14251112222 or tel:+14251112222. - ${Identity}, - - [Parameter(ParameterSetName='UnregisterViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge identifier to assign the service numbers to. - ${BridgeId}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # The conferencing bridge name to assign the service numbers. - ${BridgeName}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.Management.Automation.SwitchParameter] - # Switch parameter as a backdoor hook to remove the default service number on bridge. - ${RemoveDefaultServiceNumber}, - - [Parameter(ParameterSetName='Unregister1', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConferencingServiceNumber] - # Class representing ConferencingServiceNumber. - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the unique identifier of the Bridge that this ServiceNumber belongs to. - ${BridgeId1}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the Geocode where the ServiceNumber is intended to be used. - ${City}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Gets or sets a value indicating whether the number is shared between multiple tenants. - # If this is the casethen tenant admins will be unable to edit the number. - ${IsShared}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the 11 digit number identifying the ServiceNumber. - ${Number}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets the primary language of the ServiceNumber. - # e.g.: "en-US". - ${PrimaryLanguage}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String[]] - # Gets or sets the list of secondary languages of the ServiceNumber. - # e.g.: "fr-FR","en-GB","en-IN". - ${SecondaryLanguage}, - - [Parameter(ParameterSetName='UnregisterExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # Gets or sets defines the number type Toll/Toll-Free. - ${Type}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Unregister = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_Unregister'; - Unregister1 = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_Unregister1'; - UnregisterExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_UnregisterExpanded'; - UnregisterViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Unregister-CsOdcServiceNumber_UnregisterViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Refresh a specific AutoAttendant dail by grammer. -POST /Teams.VoiceApps/autoAttendants/{identity}/refresh. -.Description -Refresh a specific AutoAttendant dail by grammer. -POST /Teams.VoiceApps/autoAttendants/{identity}/refresh. -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Outputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-csautoattendant -#> -function Update-CsAutoAttendant { -[OutputType([Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IUpdateAutoAttendantResponse])] -[CmdletBinding(DefaultParameterSetName='Update', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # Id for the auto attendant to be refreshed. - ${Identity}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsAutoAttendant_Update'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsAutoAttendant_UpdateViaIdentity'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update configuration -.Description -Update configuration -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity -.Inputs -Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -BODY : . - [(Any) ]: This indicates any property can be added to this object. - Identity : - -INPUTOBJECT : Identity Parameter - [AppId ]: - [AudioFileId ]: - [Bssid ]: - [CallerNumber ]: - [ChassisId ]: - [CivicAddressId ]: - [ConfigName ]: - [ConfigType ]: string - [ConnectionId ]: Connection Id. - [ConnectorInstanceId ]: Connector Instance Id - [Country ]: - [DialedNumber ]: - [EndpointId ]: Application instance Id. - [ErrorReportId ]: The UUID of a report instance - [GroupId ]: The ID of a group whose policy assignments will be returned. - [Id ]: - [Identity ]: - [Locale ]: - [LocationId ]: Location id. - [MemberId ]: ObjectId of the to-be-added member. - [Name ]: Setting name - [ObjectId ]: Application instance object ID. - [OdataId ]: A composite URI of a template. - [OperationId ]: The ID of a batch policy assignment operation. - [OrchestrationId ]: The Id of specific Orchestration - [OrderId ]: - [OwnerId ]: ObjectId of the group owner - [PackageName ]: The name of a specific policy package - [PartitionKey ]: PartitionKey of the table. - [PolicyType ]: The policy type for which group policy assignments will be returned. - [PublicTemplateLocale ]: Language and country code for localization of publicly available templates. - [Region ]: Region to query Bvd table. - [SubnetId ]: - [Table ]: Bvd table name. - [TeamId ]: Team Id - [TelephoneNumber ]: An instance of hybrid telephone number. - [TenantId ]: TenantId. Guid - [UserId ]: UserId. - [Version ]: - [WfmTeamId ]: Team Id -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-csconfiguration -#> -function Update-CsConfiguration { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigName}, - - [Parameter(ParameterSetName='Update', Mandatory)] - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [System.String] - # . - ${ConfigType}, - - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Path')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # Api Version - ${ApiVersion}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Query')] - [System.String] - # . - ${SchemaVersion}, - - [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] - [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IXdsConfiguration] - # . - # To construct, see NOTES section for BODY properties and create a hash table. - ${Body}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(ParameterSetName='UpdateExpanded')] - [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.Collections.Hashtable] - # Additional Parameters - ${AdditionalProperties}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - Update = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_Update'; - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateExpanded'; - UpdateViaIdentity = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateViaIdentity'; - UpdateViaIdentityExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsConfiguration_UpdateViaIdentityExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.5.1, generator: @autorest/powershell@3.0.493) -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Update a policy package -.Description -Update a policy package -.Example -{{ Add code here }} -.Example -{{ Add code here }} - -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -POLICYLIST : . - PolicyName : - PolicyType : -.Link -https://docs.microsoft.com/en-us/powershell/module/teams/update-cscustompolicypackage -#> -function Update-CsCustomPolicyPackage { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Identity}, - - [Parameter(Mandatory)] - [AllowEmptyCollection()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IPackageServiceModelsRequestsPolicyTypeAndName[]] - # . - # To construct, see NOTES section for POLICYLIST properties and create a hash table. - ${PolicyList}, - - [Parameter()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Body')] - [System.String] - # . - ${Description}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - - $mapping = @{ - UpdateExpanded = 'Microsoft.Teams.ConfigAPI.Cmdlets.private\Update-CsCustomPolicyPackage_UpdateExpanded'; - } - - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - - throw - } - -} -end { - try { - $steppablePipeline.End() - - } catch { - - throw - } -} -} - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBnrVflBQp5I9ml -# uI1cJhZV7bM/+ATAmfjVJGmdDXAoaKCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIMXZp5z3 -# fKHMRq+5Cd0jFuRlijEZatfo4VEiZp07/mXZMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEAmFfiGXRcFYXSlYyv88d+aEGsc1j3E8n0+Q05BUjR -# ec742xMmWMQJJM387wU/yBAADmEJ2XvkEPIzpB1RNVMQFzCk1EE1W6uatNduK7MY -# EWmvAnsHBHGE2PiBjPQbRmopaFJPRkgb+ROatwa5B4KTqUNYmHlY05m1qWV1fn8u -# 9PWuPfyNm2jFEhDYq+HjL7QtbtDL6hemLdA/l9or/ueqoD7LPiNSuaAKcVInedG4 -# BEZK3sg6N73D7YHG28zSkzw/nK6d0QCpEonMrIitGlxiwlu05NmAlMNGcOmzrErT -# CTB2k8xRb8rHaoQsvlzLCtgY7ij7oP6MTunX12WwVpvpRqGCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCASjtCoutCF4fXTxrLQapYfj1FUVYmDiAfmcqH+ -# PUunKAIGagOsJ09iGBMyMDI2MDUxNTEwMDYzMi4xNTRaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODYwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiWAxzfGzap3SQABAAAC -# JTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDFaFw0yNzA1MTcxOTQwMDFaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODYwMy0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCm8RIP0eLA46VcCPovvmqsIlN6 -# qkmz5IsHWmUU0neUqp8uGxadeo+SwWBCwQ5alZI/DNdpXfyiZLZR6XYgpRPFzepI -# l7OCDb4NtEskJCIZDkQMNwrH9YwUyu71GGigsLIxeleHtA3utoVTeHjS1b8UnwOR -# RtknKkyrUArT6ZpB2rodIcmcLcv3x3wwgYlOs0FEg5EsVrZb7LNc/nd0bXDp+HTO -# WWui8eoTVwJeLxcVP869oF8li5SU81aa2tGJ6/Jsejiz9JMW8SJXKBT2DCXMOUkC -# sGjonPZRqfvoMSIQZgtaOTyAJlrvsy0TZ78XrGqoygtQimQnbOAL4KNLSCuW5TZE -# QGTHLOQJGgggb3j5gKC778+RIPJA+n/hmHJ/x4qT/HTTPoVeMCcuBKWrQXR1+/pY -# au3Fwe0tWIyG+LWzkRr/ZNPPupcA2Yci3qn8HR9RwvQopqSNJwn2Ri6am8AQyfVV -# y/BBw0t6jpoRPjwKvuUjfCzpae6duOxQtQ1XDN9PA2yl9sDko/+AXV/SOe8ea8Qo -# Qcv3s3ErkG+Lp6hnvw6OMPian4ggNkRtgtB7ro1OiopOUXJn9Y5EO3JUAXNcuM9m -# +5My1VEuvGytgAH3uxmslTnW3YbrfazaySCSSnWkhaOZ33hgbuUQfH7n2NFEAUc/ -# cFzfmCQUikWisnJYywIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFLE40qoXTuMHX3Af -# ZUu1n8nx2h93MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAHnfc2yUyoHZbvvyVK -# FuXh5HxxHIvIaR9JWpIfITJlc/Ki03juR+vckzq3tp5fFH5LL7eIFXRIuoewMsvW -# eFrWufrrW4HhmhCwkqArfA1C0xk+HaYs2O48YSxMX9lgS1kTTIb3YsfoFdFpKurP -# f2nc2Yd4wLg+FgwmkxkeyE3MUKVna8SZeVpEjnS5ucFck4srPwK2ORAf70I23GGy -# PhqgIKZphNXhSscTAQsyIqB5GwDMdRV5LK37NfU4YmxvCYh3TFYE/Gh01Q6yJvf9 -# HxiEZpwW+oUk0gruHobg3sgIR5rfgUo8l30vUnaDYMcPAClaFMC/QbHZSaUhWXZG -# 1OOcMp0g9vYQNLDEqFX2jlquvzVSSwtHtm1KTldCjRED+kdCybcPxbPalwJigXc1 -# BsI9CitnTf0ljwb9NkZ/JVI8/D62rXXzhz4F3u0iVGzwncGaxRxHG/Xv4nTrpkOe -# epoYbNBbMWS2G1qP3Xj7pVf0+4qRyAqJ0stjQjoVOJImVPWRjz5PR3Dn6adQVMBJ -# DM6gDrj1rZTFVgCtTijqGZSGzvXpGkF3vYsyE6ZDma/kGdiUe5saeI6lH66PiWWX -# gqxt7sy2Ezv0yIjSVv+eMOT2QMUiZ6WCc7gVtAmXpfeIus+NmgFvM+Ic1X58e4I9 -# EL4ZSAidSpWW0GZTLNC02mryLjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg2MDMtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQBTb+bKOPAjCBflhzw5EXBuSWxeDqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDNRTAiGA8y -# MDI2MDUxNDIyMzc1N1oYDzIwMjYwNTE1MjIzNzU3WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsM1FAgEAMAoCAQACAhNuAgH/MAcCAQACAhqZMAoCBQDtsh7FAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBACQGrHFq24HIQvSZzwgUFLhY9ql8 -# EwpLup9G0gKKCph3dR8QSzEcVV1Y/OzF+Msa+ENOl4D87UUVkNc5XFw1Q6CsIqHh -# CPIDUPfFybsT7W67tJhNvyQReEdG0iw1oLM7okl5MfHRn6y+nRpYT2bowUySpnfb -# K9teRUUObLIsjlmLp2WX9LhfVGNi1D+WUIbNdLaF8aFD1u+GXN21ZLib5DGG9NDZ -# m7UknpkZRq4vsEVD2ckP8bo4R8W1ut9At9vKpRRZvDJ3kS3sphk38ykKV5fhZCbw -# 73ehXXnaGJQlvRAb2kZUYe3j3UF5As2vINjnFTTImf0nOD+vMLmOrattyPMxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiWA -# xzfGzap3SQABAAACJTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCD75t6GwnmJcmVwpIsOdxqVyB9q -# cjVqSjGGmkynMn1jvTCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFYN7oh6 -# ON3y92CmAl/lF0CYwrjWWQP6dCUxajPSHKEQMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIlgMc3xs2qd0kAAQAAAiUwIgQgn9+cCtja -# 2y1h8RrmURpNLP+u8lhnnxXGU7URsfUQQPwwDQYJKoZIhvcNAQELBQAEggIAPQ4X -# YRcs0OL8ZoFiLrjsWDI0pZNKGgvmmYlac+FOeLoTyzHSZf12ga97kCY5/gY/hYIB -# cegJFQowz0TGrNlBpwxZ57gQNPym8KOElJDwf11nU7d0wVi9Cvv3DYvlXpctqGl7 -# 6OZSWaM8FbqPDxkSiEoUcaumMKnppi+NtJ5hEjOtMb/ULALpMaKmY6IlbJ+Y0+KZ -# xjKRQSprJ4p/fvE7Yvbo7DbaJlKYUIob8Mx1x9R1nzIHusKBOIdittf2wM3JwEo7 -# XqtqIR9mkBtNmRDSzYVhEe/iLi6evHM0xv2AAReLl9vk99tOag47D/EIjFU4tIzr -# pFlgYXzjiGNmACZkQrK73sQrzAXXg/iHV438xC1srlbKuGEGSU25b5aUFItlKaVa -# raY5RkP0pDnQSq4h5FbV2wS1zXWJ7mNV5hlixGKCI+8ReQ2+qcVKiOllZH3cNLZa -# RtgQC7WdiHMF/FZl2soWERh6CFUzkCz8QNPI+6VLG3iumSwrJVj4wHOFdFDa2+hI -# XNqMo5PRQ36wFGgGu/fS8IPO7nDfDTzlbKMwxqMN9esK8zdbHHAXRhGsUAYkt0ft -# PDj5XspayiEaKQkELgNBQOAFfy2mn+OEyRboCHT623/mcKxERA9s9Y/l0wQGuzQw -# KD3txqHPxdLSe5VywlYszEF8uUrL0zPj3or5fXw= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/internal/Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1 b/Modules/MicrosoftTeams/7.8.0/internal/Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1 deleted file mode 100644 index a6715cf6fa6f2..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/internal/Microsoft.Teams.ConfigAPI.Cmdlets.internal.psm1 +++ /dev/null @@ -1,251 +0,0 @@ -# region Generated - # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Microsoft.Teams.ConfigAPI.Cmdlets.private.dll') - - # Get the private module's instance - $instance = [Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Module]::Instance - - # Export nothing to clear implicit exports - Export-ModuleMember - - # Export proxy cmdlet scripts - $exportsPath = $PSScriptRoot - $directories = Get-ChildItem -Directory -Path $exportsPath - $profileDirectory = $null - if($instance.ProfileName) { - if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { - $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } - } else { - # Don't export anything if the profile doesn't exist for the module - $exportsPath = $null - Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." - } - } elseif(($directories | Measure-Object).Count -gt 0) { - # Load the last folder if no profile is selected - $profileDirectory = $directories | Select-Object -Last 1 - } - - if($profileDirectory) { - Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" - $exportsPath = $profileDirectory.FullName - } - - if($exportsPath) { - Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } - $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath - Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) - } -# endregion - -# SIG # Begin signature block -# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBinYxDco4Ms/jt -# y2SUOAGGFlsJymQ7B0Ay6+tcGLbG9KCCDLowggX1MIID3aADAgECAhMzAAACHU0Z -# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD -# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1 -# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD -# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB -# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8 -# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg -# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4 -# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R -# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk -# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B -# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O -# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL -# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw -# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg -# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0 -# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh -# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv -# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy -# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9 -# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H -# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3 -# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n -# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs -# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo -# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb -# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6 -# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z -# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v -# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs -# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA -# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow -# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo -# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ -# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh -# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h -# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd -# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp -# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t -# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5 -# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs -# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK -# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5 -# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW -# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ -# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC -# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB -# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU -# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny -# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx -# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI -# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4 -# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh -# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q -# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU -# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb -# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z -# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u -# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW -# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV -# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10 -# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv -# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w -# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK -# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIATtakQu -# tmXgLMF/GbL8NirDQVtbkIOFqy28LZj0qbtlMEIGCisGAQQBgjcCAQwxNDAyoBSA -# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w -# DQYJKoZIhvcNAQEBBQAEggEARF5/nwnn+WxyCyX8UyFC8IRhy2fJAXgbDNDfnP4B -# OlFKtMOyWz4YYf/cOTGzB8UsOu2t1gg3hNHC8nGk8coxay79fEVAy6XD+OI/jASZ -# INXsqlX183xeN2LSwgAZhdX8Fkjtp3vSq4c5bV/iEP4vyyof4jhTU3A4SzcFA6GK -# tjwlkXftxb8jDsGDRWl3P+gxiZgwle+AJpmt4NRNWB2f2zh1S7a32LrPLYFPsl0/ -# bsFoGTSzbNZaV8TUUjUOyE2IxcO3J07N3w+52WffvNfSwAouLvtOjBtk0uyawQXy -# E5ECSoH5ye9bwY1J7La+LNv0qoObr1OFDGgG9iMo07cxQ6GCF5cwgheTBgorBgEE -# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD -# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD -# ATAxMA0GCWCGSAFlAwQCAQUABCAyWHHO7Cs6z8Ra3INf0l1/x8X+L8pIwUjBxb+i -# LYVn0AIGagOsJ06MGBMyMDI2MDUxNTEwMDYyNy40NDZaMASAAgH0oIHRpIHOMIHL -# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk -# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN -# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT -# UyBFU046ODYwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0 -# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiWAxzfGzap3SQABAAAC -# JTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu -# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv -# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe -# Fw0yNjAyMTkxOTQwMDFaFw0yNzA1MTcxOTQwMDFaMIHLMQswCQYDVQQGEwJVUzET -# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV -# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj -# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODYwMy0wNUUw -# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi -# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCm8RIP0eLA46VcCPovvmqsIlN6 -# qkmz5IsHWmUU0neUqp8uGxadeo+SwWBCwQ5alZI/DNdpXfyiZLZR6XYgpRPFzepI -# l7OCDb4NtEskJCIZDkQMNwrH9YwUyu71GGigsLIxeleHtA3utoVTeHjS1b8UnwOR -# RtknKkyrUArT6ZpB2rodIcmcLcv3x3wwgYlOs0FEg5EsVrZb7LNc/nd0bXDp+HTO -# WWui8eoTVwJeLxcVP869oF8li5SU81aa2tGJ6/Jsejiz9JMW8SJXKBT2DCXMOUkC -# sGjonPZRqfvoMSIQZgtaOTyAJlrvsy0TZ78XrGqoygtQimQnbOAL4KNLSCuW5TZE -# QGTHLOQJGgggb3j5gKC778+RIPJA+n/hmHJ/x4qT/HTTPoVeMCcuBKWrQXR1+/pY -# au3Fwe0tWIyG+LWzkRr/ZNPPupcA2Yci3qn8HR9RwvQopqSNJwn2Ri6am8AQyfVV -# y/BBw0t6jpoRPjwKvuUjfCzpae6duOxQtQ1XDN9PA2yl9sDko/+AXV/SOe8ea8Qo -# Qcv3s3ErkG+Lp6hnvw6OMPian4ggNkRtgtB7ro1OiopOUXJn9Y5EO3JUAXNcuM9m -# +5My1VEuvGytgAH3uxmslTnW3YbrfazaySCSSnWkhaOZ33hgbuUQfH7n2NFEAUc/ -# cFzfmCQUikWisnJYywIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFLE40qoXTuMHX3Af -# ZUu1n8nx2h93MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud -# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js -# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr -# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw -# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw -# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAHnfc2yUyoHZbvvyVK -# FuXh5HxxHIvIaR9JWpIfITJlc/Ki03juR+vckzq3tp5fFH5LL7eIFXRIuoewMsvW -# eFrWufrrW4HhmhCwkqArfA1C0xk+HaYs2O48YSxMX9lgS1kTTIb3YsfoFdFpKurP -# f2nc2Yd4wLg+FgwmkxkeyE3MUKVna8SZeVpEjnS5ucFck4srPwK2ORAf70I23GGy -# PhqgIKZphNXhSscTAQsyIqB5GwDMdRV5LK37NfU4YmxvCYh3TFYE/Gh01Q6yJvf9 -# HxiEZpwW+oUk0gruHobg3sgIR5rfgUo8l30vUnaDYMcPAClaFMC/QbHZSaUhWXZG -# 1OOcMp0g9vYQNLDEqFX2jlquvzVSSwtHtm1KTldCjRED+kdCybcPxbPalwJigXc1 -# BsI9CitnTf0ljwb9NkZ/JVI8/D62rXXzhz4F3u0iVGzwncGaxRxHG/Xv4nTrpkOe -# epoYbNBbMWS2G1qP3Xj7pVf0+4qRyAqJ0stjQjoVOJImVPWRjz5PR3Dn6adQVMBJ -# DM6gDrj1rZTFVgCtTijqGZSGzvXpGkF3vYsyE6ZDma/kGdiUe5saeI6lH66PiWWX -# gqxt7sy2Ezv0yIjSVv+eMOT2QMUiZ6WCc7gVtAmXpfeIus+NmgFvM+Ic1X58e4I9 -# EL4ZSAidSpWW0GZTLNC02mryLjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA -# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX -# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl -# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA -# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX -# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q -# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d -# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN -# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k -# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d -# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS -# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8 -# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm -# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF -# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID -# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU -# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1 -# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0 -# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0 -# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA -# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL -# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p -# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w -# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz -# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU -# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN -# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU -# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5 -# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy -# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6 -# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE -# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp -# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd -# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb -# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd -# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR -# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p -# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg -# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg2MDMtMDVFMC1E -# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQBTb+bKOPAjCBflhzw5EXBuSWxeDqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7bDNRTAiGA8y -# MDI2MDUxNDIyMzc1N1oYDzIwMjYwNTE1MjIzNzU3WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDtsM1FAgEAMAoCAQACAhNuAgH/MAcCAQACAhqZMAoCBQDtsh7FAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBACQGrHFq24HIQvSZzwgUFLhY9ql8 -# EwpLup9G0gKKCph3dR8QSzEcVV1Y/OzF+Msa+ENOl4D87UUVkNc5XFw1Q6CsIqHh -# CPIDUPfFybsT7W67tJhNvyQReEdG0iw1oLM7okl5MfHRn6y+nRpYT2bowUySpnfb -# K9teRUUObLIsjlmLp2WX9LhfVGNi1D+WUIbNdLaF8aFD1u+GXN21ZLib5DGG9NDZ -# m7UknpkZRq4vsEVD2ckP8bo4R8W1ut9At9vKpRRZvDJ3kS3sphk38ykKV5fhZCbw -# 73ehXXnaGJQlvRAb2kZUYe3j3UF5As2vINjnFTTImf0nOD+vMLmOrattyPMxggQN -# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiWA -# xzfGzap3SQABAAACJTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G -# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCDkGeUuuUYYjmc7yfc3pFxqHr68 -# HVfqPOi5zGrcHTG2VzCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFYN7oh6 -# ON3y92CmAl/lF0CYwrjWWQP6dCUxajPSHKEQMIGYMIGApH4wfDELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp -# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIlgMc3xs2qd0kAAQAAAiUwIgQgn9+cCtja -# 2y1h8RrmURpNLP+u8lhnnxXGU7URsfUQQPwwDQYJKoZIhvcNAQELBQAEggIAH1zt -# f73rrPErsbiS7L5nHf4mnoJVGiFmTP2W6Vu+kzIqQGrIUfCexSEhGiCtjwWjPhCp -# 1oO1hqM4rxhe7OPecjR9ZgkEydsCC1MW5RFZuvToCCMPH9rogc9A+gDXKizZMncu -# LAoqCpdp8jVeVVI5K8IgU1VxGLuAkvBtCi8YP+G0f+krKogyDLa3s39blOw0COYZ -# uFyU0y4/xVd9bp87xpeyTqTnZYH7XdmchB8v6rvlP00DA0UL8TkJunvowWDdoNoS -# S9ErxWa5OoBE1Vg7gleOmrQAXqiOIbkbwT4gmE33XfbwH6P7PAp/XpCwXKK4wFSl -# 0Wmpl907xgMT/aAMW8yeGwiz4b41Ukg0AEQznrmkwOr32YGuO0Mrb+eYzR1ZBM/U -# 5wjBjXSNqZW6OyZK1Hu+k5eDCubo+CbbHKctLFZlSNN6sdGkAz4Batb/2p3r2znU -# bdGfVscWIdYSKVLHRYi1MuCREhpgS1BdDR14OV1SqAZDMPgjYcRPGmtkxQARqcL6 -# BTeVMLwDYsGjxo2p64M4E2KAE0k35nfxPquMb82mKBuGJPIe7XfDLO2MoiyFNhZW -# mr1QOQob+20Ek/abTf3nEWkIYedN7eoecdd/OTd/T8iTEOFRTJuqtJfC54mJBCD3 -# QB9wPzlNw5Tjj1+IgL8is+a8uRcsntMeGeHChhE= -# SIG # End signature block diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/CmdletSettings.json b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/CmdletSettings.json deleted file mode 100644 index fbfce66a5c535..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/CmdletSettings.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "EnvironmentConfigurations": [ - { - "environmentType": "INT", - "configApiBaseUrl": "https://dev.api.interfaces.records.teams.microsoft.com", - "resourceId": "4cdeebb1-712e-4b2c-b450-eeef9fc1bc18", - "authority": "https://login.microsoftonline.com/common", - "serviceConfigurations": { - "GPA": { - "clientId": "10b74c53-e4d3-40f9-87ff-b46c872c329b", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "c3d9ab47-b29a-4acb-9935-70f216a3deb3", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "ec73d46d-93d3-49b1-86e4-996b33fca112", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "036102b5-b27c-4591-91aa-1e1eb70bdb1a", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "MultiTenant", - "configApiBaseUrl": "https://api.interfaces.records.teams.microsoft.com", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.com/common", - "serviceConfigurations": { - "GPA": { - "clientId": "e6fe3e2b-7019-44bf-a0e8-e1e2745081fb", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "22e233c6-8873-48e8-a1b7-d363357d706d", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "0f7fe8a8-182d-4625-8e95-4cbc7a4384e0", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "a4d23afe-0054-4eba-b30f-c99bd5314e9c", - "redirectUri": "https://login.microsoftonline.com/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "Ag08", - "configApiBaseUrl": "https://api.interfaces.records.teams.eaglex.ic.gov", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.eaglex.ic.gov/common", - "serviceConfigurations": { - "GPA": { - "clientId": "7cd1687e-80b2-41a8-9fe3-9bd47a36fd77", - "redirectUri": "https://login.microsoftonline.eaglex.ic.gov/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "7cd1687e-80b2-41a8-9fe3-9bd47a36fd77", - "redirectUri": "https://login.microsoftonline.eaglex.ic.gov/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "7cd1687e-80b2-41a8-9fe3-9bd47a36fd77", - "redirectUri": "https://login.microsoftonline.eaglex.ic.gov/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "7cd1687e-80b2-41a8-9fe3-9bd47a36fd77", - "redirectUri": "https://login.microsoftonline.eaglex.ic.gov/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "Ag09", - "configApiBaseUrl": "https://api.interfaces.records.teams.microsoft.scloud", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.microsoft.scloud/common", - "serviceConfigurations": { - "GPA": { - "clientId": "26f9beea-b439-45e6-88fe-b3fe6ff4387c", - "redirectUri": "https://login.microsoftonline.microsoft.scloud/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "26f9beea-b439-45e6-88fe-b3fe6ff4387c", - "redirectUri": "https://login.microsoftonline.microsoft.scloud/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "26f9beea-b439-45e6-88fe-b3fe6ff4387c", - "redirectUri": "https://login.microsoftonline.microsoft.scloud/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "26f9beea-b439-45e6-88fe-b3fe6ff4387c", - "redirectUri": "https://login.microsoftonline.microsoft.scloud/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "Gallatin", - "configApiBaseUrl": "https://api.interfaces.records.teams.microsoftonline.cn", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.partner.microsoftonline.cn/common", - "serviceConfigurations": { - "GPA": { - "clientId": "3eeff3ec-e916-439a-bea9-d6768b4bc311", - "redirectUri": "https://login.partner.microsoftonline.cn/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "3eeff3ec-e916-439a-bea9-d6768b4bc311", - "redirectUri": "https://login.partner.microsoftonline.cn/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "3eeff3ec-e916-439a-bea9-d6768b4bc311", - "redirectUri": "https://login.partner.microsoftonline.cn/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "3eeff3ec-e916-439a-bea9-d6768b4bc311", - "redirectUri": "https://login.partner.microsoftonline.cn/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "Itar", - "configApiBaseUrl": "https://api.interfaces.records.gov.teams.microsoft.us", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.us/common", - "serviceConfigurations": { - "GPA": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "GCCH", - "configApiBaseUrl": "https://api.interfaces.records.gov.teams.microsoft.us", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.us/common", - "serviceConfigurations": { - "GPA": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "b72af4de-f00a-45a5-8378-aec2f317cf27", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - } - } - }, - { - "environmentType": "DOD", - "configApiBaseUrl": "https://api.interfaces.records.dod.teams.microsoft.us", - "resourceId": "48ac35b8-9aa8-4d74-927d-1f4a14a0b239", - "authority": "https://login.microsoftonline.us/common", - "serviceConfigurations": { - "GPA": { - "clientId": "0a0e38c7-8ce5-4e77-a099-9a9f3c5d09aa", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "DSSYNC": { - "clientId": "0a0e38c7-8ce5-4e77-a099-9a9f3c5d09aa", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "LROS": { - "clientId": "0a0e38c7-8ce5-4e77-a099-9a9f3c5d09aa", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - }, - "NGTPROV": { - "clientId": "0a0e38c7-8ce5-4e77-a099-9a9f3c5d09aa", - "redirectUri": "https://login.microsoftonline.us/common/oauth2/nativeclient", - "extensions": {} - } - } - } - ], - "ServiceUriSuffixes": { - "GPA": { - "ReprocessGroupPolicyAssignment": "Skype.Policy/groupPolicyAssignments/{groupId}/policyTypes/{policyType}/reprocess?tenantRegion={region}", - "RefreshGroupUsers": "Skype.Policy/groupPolicyAssignments/{groupId}/refresh/users?tenantRegion={region}&userId={userId}&policyType={policyType}", - "GetGPAGroupMembers": "Teams.InternalSupport/groups/{groupId}/users?all={all}", - "GetGPAUserMembership": "Teams.InternalSupport/users/{userId}/memberOf", - "GetGroupPolicyAssignment": "Skype.Policy/groupPolicyAssignments/oce/{groupId}/policyTypes/{policyType}", - "GetGroupPolicyAssignments": "Skype.Policy/groupPolicyAssignments/oce/{groupId}/policyTypes", - "GetPolicyAssignmentForGroups": "Skype.Policy/groupPolicyAssignments/oce?policyType={policyType}", - "GetAllGroupPolicyAssignments": "Skype.Policy/groupPolicyAssignments/oce" - }, - "DSSYNC": { - "DirectoryObjectSync": "Teams.InternalSupport/ProvisioningOperations/DsRequest" - }, - "LROS": { - "GetBatchOperationStatusForRegion": "Skype.Policy/assignments/operations/status/{operationId}?region={region}", - "GetAllBatchOperationStatusForRegion": "Skype.Policy/assignments/operations/status?region={region}", - "GetBatchOperationDefinitionForRegion": "Skype.Policy/assignments/operations/definition/{operationId}?region={region}", - "ReprocessBatchOperationForRegion": "Skype.Policy/assignments/operations/reprocess/{operationId}?region={region}" - }, - "NGTPROV": { - "MoveNgtProvInstance": "Teams.InternalSupport/NgtProvOperations/Failover/{sideA}/{sideB}?region={region}", - "NgtProvInstanceFailOverStatus": "Teams.InternalSupport/NgtProvOperations/FailoverStatus?region={region}", - "UserProvHistory": "Teams.InternalSupport/AdminStoreOperations/userHistory/{userId}/{region}", - "GenericNgtProvCommand": "Teams.InternalSupport/ProvisioningOperations/runHandler/{region}?handler={handler}?tenant={tenant}?target={target}?serviceInstance={serviceInstance}" - } - } -} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.ApplicationInsights.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 51e7ccb579374..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Applications.Events.Server.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Applications.Events.Server.dll deleted file mode 100644 index a58f8ed1085c0..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Applications.Events.Server.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll deleted file mode 100644 index c149d0ec522be..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll deleted file mode 100644 index 4c9f34ae19aa5..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Cryptography.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Cryptography.dll deleted file mode 100644 index 780d38bf0f2b3..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Cryptography.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Jose.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Jose.dll deleted file mode 100644 index 890234a327e30..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Azure.KeyVault.Jose.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index 2848da23ffc0c..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.Memory.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.Memory.dll deleted file mode 100644 index bed31e91c2974..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.Memory.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.TimeProvider.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.TimeProvider.dll deleted file mode 100644 index fa611da5265c2..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Bcl.TimeProvider.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Data.Sqlite.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Data.Sqlite.dll deleted file mode 100644 index b0332abd5aedb..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Data.Sqlite.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 433e684d6158f..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 543f6518d4418..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 804a9ed9cc55a..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 3d5dd652fe0e8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 93b406549dd32..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.dll deleted file mode 100644 index f49399ff295b6..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Options.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Options.dll deleted file mode 100644 index 4d793bdacc79d..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index adf682aa0113e..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll deleted file mode 100644 index 142d886deae0b..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Broker.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Broker.dll deleted file mode 100644 index de56c64793f75..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Broker.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll deleted file mode 100644 index 401aede9eefd2..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 05b0f732a63d1..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.NativeInterop.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.NativeInterop.dll deleted file mode 100644 index 7b92fdb35f71a..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.NativeInterop.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.dll deleted file mode 100644 index 4224b252d5c36..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 465866983c142..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 88735788c7e8e..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 07b718643a8ee..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index b2ec9621a5ac3..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Internal.AntiSSRF.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Internal.AntiSSRF.dll deleted file mode 100644 index 6986642581a66..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Internal.AntiSSRF.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.Azure.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.Azure.dll deleted file mode 100644 index 0865670debe4d..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.Azure.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.dll deleted file mode 100644 index f8979c704792e..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rest.ClientRuntime.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rtc.Management.Acms.EntityModel.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rtc.Management.Acms.EntityModel.dll deleted file mode 100644 index 0530de39f0845..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Rtc.Management.Acms.EntityModel.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll deleted file mode 100644 index 3dce92848de5c..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll deleted file mode 100644 index ff997ddf549d2..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll deleted file mode 100644 index 99a245966d3d1..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll deleted file mode 100644 index 9c73246bbee6e..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll deleted file mode 100644 index 17678174d7a14..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.dll deleted file mode 100644 index 404b682d5f3db..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.Policy.Administration.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.deps.json b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.deps.json deleted file mode 100644 index 13cea344acb9e..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.deps.json +++ /dev/null @@ -1,3424 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "Microsoft.Teams.PowerShell.Module/7.8.0": { - "dependencies": { - "Microsoft.NETCore.Targets": "3.1.0", - "Microsoft.Teams.ConfigAPI.Cmdlets": "9.514.3", - "Microsoft.Teams.Policy.Administration": "31.6.0.1", - "Microsoft.Teams.Policy.Administration.Cmdlets.OCE": "0.1.12", - "Microsoft.Teams.PowerShell.Connect": "1.9.1", - "Microsoft.Teams.PowerShell.TeamsCmdlets": "1.6.6", - "NuGet.Build.Tasks.Pack": "5.2.0", - "NuGet.CommandLine": "5.11.6", - "System.Management.Automation": "6.2.7", - "System.Net.Http": "4.3.4", - "System.Text.RegularExpressions": "4.3.1" - }, - "runtime": { - "Microsoft.Teams.PowerShell.Module.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.9.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Diagnostics.StackTrace": "4.3.0", - "System.Net.Requests": "4.3.0", - "System.Threading.Thread": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.9.1.0", - "fileVersion": "2.9.1.26108" - } - } - }, - "Microsoft.Applications.Events.Server/1.3.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.Data.Sqlite": "7.0.0", - "Microsoft.Extensions.Logging": "2.2.0", - "Newtonsoft.Json": "13.0.3", - "System.Xml.XPath": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Applications.Events.Server.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "Microsoft.Azure.KeyVault.AzureServiceDeploy/3.0.0": { - "dependencies": { - "Microsoft.Azure.KeyVault.Jose": "3.0.0", - "Microsoft.Rest.ClientRuntime": "2.3.21", - "Microsoft.Rest.ClientRuntime.Azure": "3.3.19", - "NETStandard.Library": "1.6.1", - "Newtonsoft.Json": "13.0.3", - "System.Net.Http": "4.3.4" - }, - "runtime": { - "lib/netstandard1.4/Microsoft.Azure.KeyVault.AzureServiceDeploy.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.0" - } - } - }, - "Microsoft.Azure.KeyVault.Core/3.0.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.4/Microsoft.Azure.KeyVault.Core.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.1" - } - } - }, - "Microsoft.Azure.KeyVault.Cryptography/3.0.0": { - "dependencies": { - "Microsoft.Azure.KeyVault.Core": "3.0.0", - "Microsoft.Rest.ClientRuntime": "2.3.21", - "Microsoft.Rest.ClientRuntime.Azure": "3.3.19", - "NETStandard.Library": "1.6.1", - "Newtonsoft.Json": "13.0.3", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Net.Http": "4.3.4", - "System.Runtime.Extensions": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Primitives": "4.3.0" - }, - "runtime": { - "lib/netstandard1.4/Microsoft.Azure.KeyVault.Cryptography.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.1" - } - } - }, - "Microsoft.Azure.KeyVault.Jose/3.0.0": { - "dependencies": { - "Microsoft.Azure.KeyVault.Core": "3.0.0", - "Microsoft.Azure.KeyVault.Cryptography": "3.0.0", - "Microsoft.Rest.ClientRuntime": "2.3.21", - "Microsoft.Rest.ClientRuntime.Azure": "3.3.19", - "NETStandard.Library": "1.6.1", - "Newtonsoft.Json": "13.0.3", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Net.Http": "4.3.4", - "System.Runtime.Extensions": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Primitives": "4.3.0" - }, - "runtime": { - "lib/netstandard1.4/Microsoft.Azure.KeyVault.Jose.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Bcl.TimeProvider/8.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": { - "assemblyVersion": "8.0.0.1", - "fileVersion": "8.0.123.58001" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.Sqlite/7.0.0": { - "dependencies": { - "Microsoft.Data.Sqlite.Core": "7.0.0", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.2" - } - }, - "Microsoft.Data.Sqlite.Core/7.0.0": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.2" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51807" - } - } - }, - "Microsoft.Extensions.Configuration/8.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Logging/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Options/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Primitives": "8.0.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Primitives/8.0.0": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Ic3.TenantAdminApi.Common.Helper/1.0.28": { - "dependencies": { - "Microsoft.Azure.KeyVault.AzureServiceDeploy": "3.0.0", - "Microsoft.Extensions.Configuration": "8.0.0", - "Polly": "7.2.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Ic3.TenantAdminApi.Common.Helper.dll": { - "assemblyVersion": "1.0.28.0", - "fileVersion": "1.0.28.0" - } - } - }, - "Microsoft.Identity.Client/4.81.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Formats.Asn1": "8.0.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.ValueTuple": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.81.0.0", - "fileVersion": "4.81.0.0" - } - } - }, - "Microsoft.Identity.Client.Broker/4.81.0": { - "dependencies": { - "Microsoft.Identity.Client": "4.81.0", - "Microsoft.Identity.Client.NativeInterop": "0.19.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Identity.Client.Broker.dll": { - "assemblyVersion": "4.81.0.0", - "fileVersion": "4.81.0.0" - } - } - }, - "Microsoft.Identity.Client.Desktop/4.81.0": { - "dependencies": { - "Microsoft.Identity.Client": "4.81.0", - "Microsoft.Identity.Client.Broker": "4.81.0", - "Microsoft.Web.WebView2": "1.0.2903.40" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll": { - "assemblyVersion": "4.81.0.0", - "fileVersion": "4.81.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/4.81.0": { - "dependencies": { - "Microsoft.Identity.Client": "4.81.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Security.Cryptography.ProtectedData": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "4.81.0.0", - "fileVersion": "4.81.0.0" - } - } - }, - "Microsoft.Identity.Client.NativeInterop/0.19.4": { - "runtime": { - "lib/netstandard2.0/Microsoft.Identity.Client.NativeInterop.dll": { - "assemblyVersion": "0.19.4.0", - "fileVersion": "0.19.4.0" - } - }, - "runtimeTargets": { - "runtimes/linux-x64/native/libmsalruntime.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-arm64/native/msalruntime_arm64.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/msalruntime.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/msalruntime_arm64.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/msalruntime.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/msalruntime_x86.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.3.0": { - "dependencies": { - "Microsoft.Bcl.TimeProvider": "8.0.1", - "Microsoft.IdentityModel.Tokens": "8.3.0" - } - }, - "Microsoft.IdentityModel.Logging/8.3.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - } - }, - "Microsoft.IdentityModel.Tokens/8.3.0": { - "dependencies": { - "Microsoft.Bcl.TimeProvider": "8.0.1", - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "8.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Text.Json": "8.0.5" - } - }, - "Microsoft.Management.Infrastructure/1.0.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Runtime.CompilerServices.VisualC": "4.3.0", - "System.Runtime.Serialization.Xml": "4.3.0", - "System.Security.SecureString": "4.3.0", - "System.Threading.ThreadPool": "4.3.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - }, - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.16299.15" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.14886.1000" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.14886.1000" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.14886.1000" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/3.1.0": {}, - "Microsoft.PowerShell.CoreCLR.Eventing/6.2.7": { - "dependencies": { - "System.Security.Principal.Windows": "5.0.0" - }, - "runtimeTargets": { - "runtimes/linux-arm/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "linux-arm", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/linux-x64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "linux-x64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-arm64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-x64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win-x64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win-x86", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - } - } - }, - "Microsoft.PowerShell.Native/6.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.pdb": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.pdb": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.pdb": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.pdb": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Microsoft.Rest.ClientRuntime/2.3.21": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Rest.ClientRuntime.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.3.21.0" - } - } - }, - "Microsoft.Rest.ClientRuntime.Azure/3.3.19": { - "dependencies": { - "Microsoft.Rest.ClientRuntime": "2.3.21", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Rest.ClientRuntime.Azure.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.3.18.0" - } - } - }, - "Microsoft.Teams.ConfigAPI.CmdletHostContract/3.2.8": { - "dependencies": { - "Newtonsoft.Json": "13.0.3", - "PowerShellStandard.Library": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Teams.ConfigAPI.CmdletHostContract.dll": { - "assemblyVersion": "3.2.8.0", - "fileVersion": "3.2.8.0" - } - } - }, - "Microsoft.Teams.ConfigAPI.Cmdlets/9.514.3": {}, - "Microsoft.Teams.Policy.Administration/31.6.0.1": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.Bcl.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - }, - "lib/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.9.0.0", - "fileVersion": "8.9.0.60424" - }, - "lib/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.9.0.0", - "fileVersion": "8.9.0.60424" - }, - "lib/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.9.0.0", - "fileVersion": "8.9.0.60424" - }, - "lib/netcoreapp3.1/Microsoft.Internal.AntiSSRF.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - }, - "lib/netcoreapp3.1/Microsoft.Rtc.Management.Acms.EntityModel.dll": { - "assemblyVersion": "31.6.0.1", - "fileVersion": "31.6.0.1" - }, - "lib/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll": { - "assemblyVersion": "31.6.0.1", - "fileVersion": "31.6.0.1" - }, - "lib/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.PolicyRp.dll": { - "assemblyVersion": "1.2.0.0", - "fileVersion": "1.2.0.0" - }, - "lib/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.Providers.dll": { - "assemblyVersion": "1.2.0.0", - "fileVersion": "1.2.0.0" - }, - "lib/netcoreapp3.1/Microsoft.Teams.Policy.Administration.dll": { - "assemblyVersion": "31.6.0.1", - "fileVersion": "31.6.0.1" - }, - "lib/netcoreapp3.1/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - }, - "lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.3624.51421" - }, - "lib/netcoreapp3.1/System.Management.Automation.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "5.1.1.0" - }, - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "lib/netcoreapp3.1/System.Text.Encodings.Web.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - }, - "lib/netcoreapp3.1/System.Text.Json.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Teams.Policy.Administration.Cmdlets.OCE/0.1.12": { - "dependencies": { - "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Teams.ConfigAPI.CmdletHostContract": "3.2.8", - "Microsoft.Teams.Policy.Administration.Configurations": "12.2.29", - "Newtonsoft.Json": "13.0.3", - "System.Net.Http": "4.3.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Teams.Policy.Administration.Cmdlets.OCE.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.Teams.Policy.Administration.Configurations/12.2.29": { - "dependencies": { - "Microsoft.Extensions.Configuration": "8.0.0" - } - }, - "Microsoft.Teams.PowerShell.Connect/1.9.1": { - "dependencies": { - "Microsoft.Applications.Events.Server": "1.3.0", - "Microsoft.Ic3.TenantAdminApi.Common.Helper": "1.0.28", - "Microsoft.Identity.Client": "4.81.0", - "Microsoft.Identity.Client.Broker": "4.81.0", - "Microsoft.Identity.Client.Desktop": "4.81.0", - "Microsoft.Identity.Client.Extensions.Msal": "4.81.0", - "Microsoft.Rest.ClientRuntime": "2.3.21", - "Microsoft.Rest.ClientRuntime.Azure": "3.3.19", - "Microsoft.Teams.ConfigAPI.CmdletHostContract": "3.2.8", - "Newtonsoft.Json": "13.0.3", - "OneCollectorChannel": "1.1.0.234", - "System.IdentityModel.Tokens.Jwt": "8.3.0", - "System.Management.Automation": "6.2.7", - "System.Net.Http": "4.3.4", - "System.Security.Cryptography.ProtectedData": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TeamsCmdlets.PowerShell.Connect.dll": { - "assemblyVersion": "1.9.1.0", - "fileVersion": "1.9.1.0" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.Core.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/OneCollectorChannel.dll": { - "assemblyVersion": "1.1.0.234", - "fileVersion": "1.1.0.234" - }, - "lib/netcoreapp3.1/Polly.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.4.982" - }, - "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { - "assemblyVersion": "2.1.2.1721", - "fileVersion": "2.1.2.1721" - }, - "lib/netcoreapp3.1/SQLitePCLRaw.core.dll": { - "assemblyVersion": "2.1.2.1721", - "fileVersion": "2.1.2.1721" - }, - "lib/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll": { - "assemblyVersion": "2.1.2.1721", - "fileVersion": "2.1.2.1721" - }, - "lib/netcoreapp3.1/System.Formats.Asn1.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.724.31311" - }, - "lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "lib/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.3.0.0", - "fileVersion": "8.3.0.51204" - }, - "lib/netcoreapp3.1/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.26515.6" - }, - "lib/netcoreapp3.1/System.Security.AccessControl.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "lib/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - }, - "lib/netcoreapp3.1/System.Security.Principal.Windows.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Teams.PowerShell.TeamsCmdlets/1.6.6": { - "dependencies": { - "Microsoft.Teams.PowerShell.Connect": "1.9.1", - "Newtonsoft.Json": "13.0.3", - "Polly": "7.2.4", - "Polly.Contrib.WaitAndRetry": "1.1.1", - "System.Management.Automation": "6.2.7", - "System.Net.Http": "4.3.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Teams.PowerShell.TeamsCmdlets.dll": { - "assemblyVersion": "1.6.6.0", - "fileVersion": "1.6.6.0" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.Core.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll": { - "assemblyVersion": "1.0.2903.40", - "fileVersion": "1.0.2903.40" - }, - "lib/netcoreapp3.1/Polly.Contrib.WaitAndRetry.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.1.1.0" - } - } - }, - "Microsoft.Web.WebView2/1.0.2903.40": { - "runtimeTargets": { - "runtimes/win-arm64/native/WebView2Loader.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "1.0.2903.40" - }, - "runtimes/win-x64/native/WebView2Loader.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "1.0.2903.40" - }, - "runtimes/win-x86/native/WebView2Loader.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "1.0.2903.40" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "Microsoft.Win32.Registry/4.5.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/4.5.0": { - "dependencies": { - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.AccessControl": "5.0.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.4", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.1", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.3": {}, - "NuGet.Build.Tasks.Pack/5.2.0": {}, - "NuGet.CommandLine/5.11.6": {}, - "OneCollectorChannel/1.1.0.234": { - "dependencies": { - "Microsoft.ApplicationInsights": "2.9.1", - "Microsoft.Applications.Events.Server": "1.3.0" - } - }, - "Polly/7.2.4": {}, - "Polly.Contrib.WaitAndRetry/1.1.1": {}, - "PowerShellStandard.Library/5.1.0": {}, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { - "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.2", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.2" - } - }, - "SQLitePCLRaw.core/2.1.2": { - "dependencies": { - "System.Memory": "4.5.5" - } - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { - "runtimeTargets": { - "runtimes/alpine-arm/native/libe_sqlite3.so": { - "rid": "alpine-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-arm64/native/libe_sqlite3.so": { - "rid": "alpine-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-x64/native/libe_sqlite3.so": { - "rid": "alpine-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libe_sqlite3.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libe_sqlite3.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-armel/native/libe_sqlite3.so": { - "rid": "linux-armel", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-mips64/native/libe_sqlite3.so": { - "rid": "linux-mips64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libe_sqlite3.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libe_sqlite3.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-s390x/native/libe_sqlite3.so": { - "rid": "linux-s390x", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libe_sqlite3.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libe_sqlite3.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-arm64/native/libe_sqlite3.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libe_sqlite3.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/e_sqlite3.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/e_sqlite3.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/e_sqlite3.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/e_sqlite3.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.2" - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.5.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/1.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel.Annotations/4.5.0": {}, - "System.Configuration.ConfigurationManager/4.5.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "7.0.0", - "System.Security.Permissions": "4.5.0" - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.1", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.1", - "System.Runtime": "4.3.1" - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.DirectoryServices/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Formats.Asn1/8.0.1": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/8.3.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.3.0", - "Microsoft.IdentityModel.Tokens": "8.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.AccessControl/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Management/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "4.5.0", - "System.CodeDom": "4.5.0" - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Management.Automation/6.2.7": { - "dependencies": { - "Microsoft.Management.Infrastructure": "1.0.0", - "Microsoft.PowerShell.CoreCLR.Eventing": "6.2.7", - "Microsoft.PowerShell.Native": "6.2.0", - "Microsoft.Win32.Registry.AccessControl": "4.5.0", - "Newtonsoft.Json": "13.0.3", - "System.Configuration.ConfigurationManager": "4.5.0", - "System.DirectoryServices": "4.5.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Management": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Cryptography.Pkcs": "4.5.2", - "System.Security.Permissions": "4.5.0", - "System.Text.Encoding.CodePages": "4.5.1" - }, - "runtimeTargets": { - "runtimes/linux-arm/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "linux-arm", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/linux-x64/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "linux-x64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-arm64/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-x64/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "win-x64", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - }, - "runtimes/win-x86/lib/netcoreapp2.1/System.Management.Automation.dll": { - "rid": "win-x86", - "assetType": "runtime", - "assemblyVersion": "6.2.7.0", - "fileVersion": "6.2.7.0" - } - } - }, - "System.Memory/4.5.5": {}, - "System.Net.Http/4.3.4": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Requests/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Http": "4.3.4", - "System.Net.Primitives": "4.3.0", - "System.Net.WebHeaderCollection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Net.WebHeaderCollection/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Threading": "4.3.0" - } - }, - "System.Private.DataContractSerialization/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.1", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.Metadata/1.4.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Runtime/4.3.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.CompilerServices.VisualC/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1" - } - }, - "System.Runtime.Serialization.Xml/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "8.0.1" - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.Pkcs/4.5.2": { - "dependencies": { - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/7.0.0": {}, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Permissions/4.5.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0" - } - }, - "System.Security.Principal.Windows/5.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.SecureString/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Text.Encoding.CodePages/4.5.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/8.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Json/8.0.5": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "8.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Text.RegularExpressions/4.3.1": { - "dependencies": { - "System.Runtime": "4.3.1" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.1", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "3.1.0", - "System.Runtime": "4.3.1" - } - }, - "System.ValueTuple/4.5.0": {}, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.1", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlSerializer/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.1", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.1", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.Teams.PowerShell.Module/7.8.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.ApplicationInsights/2.9.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gAC+bFCr10ckAdM6VJ+aL0yfYfbYuklukYJoMjaSCOVHH/h4Xr9SiyPq+Befk/yUSdSv7Fa3nl0ynLATKIwKng==", - "path": "microsoft.applicationinsights/2.9.1", - "hashPath": "microsoft.applicationinsights.2.9.1.nupkg.sha512" - }, - "Microsoft.Applications.Events.Server/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oGzoRimiRPVRy/qxkj9WGiDZjPfZxPrZo29nlaJgJqU3aKzzxl4Um1WulG6w+LaQOj8w2Q4hd9XBOyQH/IHTFA==", - "path": "microsoft.applications.events.server/1.3.0", - "hashPath": "microsoft.applications.events.server.1.3.0.nupkg.sha512" - }, - "Microsoft.Azure.KeyVault.AzureServiceDeploy/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vxOHQm1jNDzTh3zZmzfCYx4y9efEHXAh0+IMymrNSY1dDZGietrpVYUkq9JM9ERfPpHCx2lavFuUxY70idtjmw==", - "path": "microsoft.azure.keyvault.azureservicedeploy/3.0.0", - "hashPath": "microsoft.azure.keyvault.azureservicedeploy.3.0.0.nupkg.sha512" - }, - "Microsoft.Azure.KeyVault.Core/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2B7k5t61MWKs5rLaPqgGL+1OSegeqL7kSKXQ5bAHgeHxg5bwgnMSuRrPcx3fq8KqS8kny39/CCyJegI1VTomIQ==", - "path": "microsoft.azure.keyvault.core/3.0.0", - "hashPath": "microsoft.azure.keyvault.core.3.0.0.nupkg.sha512" - }, - "Microsoft.Azure.KeyVault.Cryptography/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SJLhUSQnPW76R6ikMlwGyL1T8HyHLQWRzV8kodM0O01xJU2CEPvxbsTS7xg7mXZXSEhcROrxHzQRLr7YosiJVA==", - "path": "microsoft.azure.keyvault.cryptography/3.0.0", - "hashPath": "microsoft.azure.keyvault.cryptography.3.0.0.nupkg.sha512" - }, - "Microsoft.Azure.KeyVault.Jose/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VUjDq7RcWi+rhuLzFWrxXCXk3h1WbFZG73wWx/AjcqdaIZUJCKPsOXkGGGuBVT7/9ur8aID6naiC1t/RGxzVGA==", - "path": "microsoft.azure.keyvault.jose/3.0.0", - "hashPath": "microsoft.azure.keyvault.jose.3.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.TimeProvider/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7kWHJnMRY7EvJev2S8+yJHZ1y7A4ZlLbA4NE+O23BDIAN5mHeqND1m+SKv1ChRS5YlCDW7yAMUe7lttRsJaAA==", - "path": "microsoft.bcl.timeprovider/8.0.1", - "hashPath": "microsoft.bcl.timeprovider.8.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.Sqlite/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/2UYhPUJTDjUWdCn+qiiEN672TGqa25rtnIYp9mbNI39mX47C9ArBHO3nIpa5/jO6ISy1jBzIl9Vx5Tmygu/cg==", - "path": "microsoft.data.sqlite/7.0.0", - "hashPath": "microsoft.data.sqlite.7.0.0.nupkg.sha512" - }, - "Microsoft.Data.Sqlite.Core/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WC7SANtaFTmQ/WPyhrE96h88MrH28C7kTBenDf5Eo+IR6CbWM0Uw2pR2++tyYr3qe/zSIsIYroEupB1mLg/adw==", - "path": "microsoft.data.sqlite.core/7.0.0", - "hashPath": "microsoft.data.sqlite.core.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", - "path": "microsoft.extensions.configuration/8.0.0", - "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", - "path": "microsoft.extensions.configuration.abstractions/8.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==", - "path": "microsoft.extensions.configuration.binder/2.2.0", - "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==", - "path": "microsoft.extensions.logging/2.2.0", - "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", - "path": "microsoft.extensions.logging.abstractions/2.2.0", - "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", - "path": "microsoft.extensions.options/2.2.0", - "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", - "path": "microsoft.extensions.primitives/8.0.0", - "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" - }, - "Microsoft.Ic3.TenantAdminApi.Common.Helper/1.0.28": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SFH/dfpb728GUh/U0vOvycwLhqyFLAJhrv7CfS8Gb7xAlDnEFGC2K3edL3tYvKdp3pjTxPlLYwE7LpQBgyYZPA==", - "path": "microsoft.ic3.tenantadminapi.common.helper/1.0.28", - "hashPath": "microsoft.ic3.tenantadminapi.common.helper.1.0.28.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.81.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpIOopc3HFeF1JdKkQoAVQYEblqWJAUzAnuV9B9J3E+vPxtvbKcVabRd6rr2PA7yVLjTnCY8sytCpUsZhOBX5A==", - "path": "microsoft.identity.client/4.81.0", - "hashPath": "microsoft.identity.client.4.81.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Broker/4.81.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P/oRToimirXgFXOAsvItAZKhhC/vnZuX6fZe+NUpwGCZR5lejYdn1B2/DDj8Y+Z6spi+e5U3a7mbD3qOTnxJ0g==", - "path": "microsoft.identity.client.broker/4.81.0", - "hashPath": "microsoft.identity.client.broker.4.81.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Desktop/4.81.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7F675Be2mwcJDE7r980M+ElbNLy+M5HqxAzVaaWAHZrU60Vt8sa8/FJIXsUEXxpuai1G+xe7KApjJWHV4BTPnQ==", - "path": "microsoft.identity.client.desktop/4.81.0", - "hashPath": "microsoft.identity.client.desktop.4.81.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/4.81.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z4yS/OXEn8J/btGlLS8VNIjpQDRXjZEWzSMUguqDbwV5Jg+0qwJHCYzwQ+O89mOZVXU4C5EhuCcoRnkJlnPJQw==", - "path": "microsoft.identity.client.extensions.msal/4.81.0", - "hashPath": "microsoft.identity.client.extensions.msal.4.81.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.NativeInterop/0.19.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Em+6R/uAO2qWBBnsV3zP0+15mbDIw9C3qDvGYoEiLaFgHM1zqaJZVpxgA49+WgXwUN0edKzR1hhKr+z7Nw5jcw==", - "path": "microsoft.identity.client.nativeinterop/0.19.4", - "hashPath": "microsoft.identity.client.nativeinterop.0.19.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4SVXLT8sDG7CrHiszEBrsDYi+aDW0W9d+fuWUGdZPBdan56aM6fGXJDjbI0TVGEDjJhXbACQd8F/BnC7a+m2RQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.3.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.3.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4w4pSIGHhCCLTHqtVNR2Cc/zbDIUWIBHTZCu/9ZHm2SVwrXY3RJMcZ7EFGiKqmKZMQZJzA0bpwCZ6R8Yb7i5VQ==", - "path": "microsoft.identitymodel.logging/8.3.0", - "hashPath": "microsoft.identitymodel.logging.8.3.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yGzqmk+kInH50zeSEH/L1/J0G4/yqTQNq4YmdzOhpE7s/86tz37NS2YbbY2ievbyGjmeBI1mq26QH+yBR6AK3Q==", - "path": "microsoft.identitymodel.tokens/8.3.0", - "hashPath": "microsoft.identitymodel.tokens.8.3.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EhQ4sbjNu4rL39YVhRSKMzCaMNBSwSJi17t8LtAOW94WQTkhQCEhlMukFU2AtWOBW3zGIrvg85XRS+w0nuGxKw==", - "path": "microsoft.management.infrastructure/1.0.0", - "hashPath": "microsoft.management.infrastructure.1.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IAFeJxHy2vlTm3mhiZVP/jKE5DImLUMQc3OV8z5G4ZBeYNAlPSwjC5V/Vx14GIJU6Osmhr+XPmtWW0cv5jSmTw==", - "path": "microsoft.netcore.targets/3.1.0", - "hashPath": "microsoft.netcore.targets.3.1.0.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/6.2.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IV4UFD/ry5o7FcUjnCrgOoZtJ0XsfY7+nQR0VP3b5Zdpj3WDZRkxi3A5RQUKrCFxLK1zbNlC2nu1qufe3pEuCQ==", - "path": "microsoft.powershell.coreclr.eventing/6.2.7", - "hashPath": "microsoft.powershell.coreclr.eventing.6.2.7.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/6.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5YPhSaW4j6R7oJ53RxOroB51k7zKBpi4owEKAY9rI8Cb+cGIIGN/37DoDOZfbKL4DNW0MeAchgNsAEML049y7Q==", - "path": "microsoft.powershell.native/6.2.0", - "hashPath": "microsoft.powershell.native.6.2.0.nupkg.sha512" - }, - "Microsoft.Rest.ClientRuntime/2.3.21": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KDYlgTyO693V6pi6SGk9eg+dDvKjuOgmkapbHdpnB1SmTPKpvWxVLIMyARJsCFLfB6axyURUJHOfvxBQ0yJKeg==", - "path": "microsoft.rest.clientruntime/2.3.21", - "hashPath": "microsoft.rest.clientruntime.2.3.21.nupkg.sha512" - }, - "Microsoft.Rest.ClientRuntime.Azure/3.3.19": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+NVBWvRXNwaAPTZUxjUlQggsrf3X0GbiRoxYfgc3kG9E55ZxZxvZPT3nIfC4DNqzGSXUEvmLbckdXgBBzGdUaA==", - "path": "microsoft.rest.clientruntime.azure/3.3.19", - "hashPath": "microsoft.rest.clientruntime.azure.3.3.19.nupkg.sha512" - }, - "Microsoft.Teams.ConfigAPI.CmdletHostContract/3.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xTnN9yN80vZ0FYPx6DCzhe2Savzge3qotCXLGHpha0zywILST3Yp/2ZPW9axqf8ZTHENq9AvqdaHdiPlVuw51w==", - "path": "microsoft.teams.configapi.cmdlethostcontract/3.2.8", - "hashPath": "microsoft.teams.configapi.cmdlethostcontract.3.2.8.nupkg.sha512" - }, - "Microsoft.Teams.ConfigAPI.Cmdlets/9.514.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WQ8l3Hp5/OUnyIJ6PpT/kyTsQgDucdlR21MRpilruRz46AkRi6oxJvvstpP1ndfI9c/lUp6G+vaTCX6NS7l63g==", - "path": "microsoft.teams.configapi.cmdlets/9.514.3", - "hashPath": "microsoft.teams.configapi.cmdlets.9.514.3.nupkg.sha512" - }, - "Microsoft.Teams.Policy.Administration/31.6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qRYb8BHPFrUuqgnZr+txdpzwKprK0Qd2/1kOv9rmicPH5gJMXLTuul+P60W0Q4sRovnEjUEFlnnfAjKQ7qNkPQ==", - "path": "microsoft.teams.policy.administration/31.6.0.1", - "hashPath": "microsoft.teams.policy.administration.31.6.0.1.nupkg.sha512" - }, - "Microsoft.Teams.Policy.Administration.Cmdlets.OCE/0.1.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RmQ5711nUQnVtAC8cAA5vH5jw6S49sDR3G7NWsYL/jGndOdvWBfRMILTC7zwwMW/rFOgEYGNjaPOE0B+uJujLA==", - "path": "microsoft.teams.policy.administration.cmdlets.oce/0.1.12", - "hashPath": "microsoft.teams.policy.administration.cmdlets.oce.0.1.12.nupkg.sha512" - }, - "Microsoft.Teams.Policy.Administration.Configurations/12.2.29": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M+KIgynbG1IpuH2yjBIqX2HgPLR/eGW4qoNVW/JgF8A0Y7hbMe/kh8bIFPMEPahVRFeoOhHLaj61sKPxcCRYIw==", - "path": "microsoft.teams.policy.administration.configurations/12.2.29", - "hashPath": "microsoft.teams.policy.administration.configurations.12.2.29.nupkg.sha512" - }, - "Microsoft.Teams.PowerShell.Connect/1.9.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tkg7KOiXarocpvV0/xWEpOvOxSAubfSABi4Em/ygCtwP2DiFDW63aeZpX2ozgmsP+QRJtS6SkGSBXHWLsVogGg==", - "path": "microsoft.teams.powershell.connect/1.9.1", - "hashPath": "microsoft.teams.powershell.connect.1.9.1.nupkg.sha512" - }, - "Microsoft.Teams.PowerShell.TeamsCmdlets/1.6.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9pkbYa/SaveNCsUJOZ1lEcR+f8R8rdCziBg04bOTdLLifIrBmpUznoeAfxYuke07yTYJdk90F7widH53upCXbQ==", - "path": "microsoft.teams.powershell.teamscmdlets/1.6.6", - "hashPath": "microsoft.teams.powershell.teamscmdlets.1.6.6.nupkg.sha512" - }, - "Microsoft.Web.WebView2/1.0.2903.40": { - "type": "package", - "serviceable": true, - "sha512": "sha512-THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ==", - "path": "microsoft.web.webview2/1.0.2903.40", - "hashPath": "microsoft.web.webview2.1.0.2903.40.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", - "path": "microsoft.win32.registry/4.5.0", - "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f2aT8NLc9DsB1VEaM4jlYF9DFLA12+ccmWzWA0HEVC3Vgac7tGLSgrU6jtUG+VO1/R5zA6AomQ2pKqJ+5SDWyQ==", - "path": "microsoft.win32.registry.accesscontrol/4.5.0", - "hashPath": "microsoft.win32.registry.accesscontrol.4.5.0.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "NuGet.Build.Tasks.Pack/5.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRE2Ya2cFTEu9XZ6rQtYjKE1a8q2KjCs0b8bd3cGlZ1cdgfZ6EgR2X0LZ/pCbN2WVcCRI7ISEIcqJ5Ji+Z1HMQ==", - "path": "nuget.build.tasks.pack/5.2.0", - "hashPath": "nuget.build.tasks.pack.5.2.0.nupkg.sha512" - }, - "NuGet.CommandLine/5.11.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mNGA6kjtSqfKayS9WI9GZWYXvUI1d+34sNXoakImEt8wtXrRn9FNjWLGP4Q8Ik6R94FkVo18vQUtyD8fOWOZUQ==", - "path": "nuget.commandline/5.11.6", - "hashPath": "nuget.commandline.5.11.6.nupkg.sha512" - }, - "OneCollectorChannel/1.1.0.234": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0PoHLy0O9VbBmXe/TPRXkIH1Qmv6kKs/X5ANLP0MHML/TcQAWHKAxhHdilVrKJEnGDyCgH2QKlcEykpHngxCnA==", - "path": "onecollectorchannel/1.1.0.234", - "hashPath": "onecollectorchannel.1.1.0.234.nupkg.sha512" - }, - "Polly/7.2.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", - "path": "polly/7.2.4", - "hashPath": "polly.7.2.4.nupkg.sha512" - }, - "Polly.Contrib.WaitAndRetry/1.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MUQLiSo4KDkQe6nzQRhIU05lm9jlexX5BVsbuw0SL82ynZ+GzAHQxJVDPVBboxV37Po3SG077aX8DuSy8TkaA==", - "path": "polly.contrib.waitandretry/1.1.1", - "hashPath": "polly.contrib.waitandretry.1.1.1.nupkg.sha512" - }, - "PowerShellStandard.Library/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw==", - "path": "powershellstandard.library/5.1.0", - "hashPath": "powershellstandard.library.5.1.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ilkvNhrTersLmIVAcDwwPqfhUFCg19Z1GVMvCSi3xk6Akq94f4qadLORQCq/T8+9JgMiPs+F/NECw5uauviaNw==", - "path": "sqlitepclraw.bundle_e_sqlite3/2.1.2", - "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512" - }, - "SQLitePCLRaw.core/2.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A8EBepVqY2lnAp3a8jnhbgzF2tlj2S3HcJQGANTYg/TbYbKa8Z5cM1h74An/vy0svhfzT7tVY0sFmUglLgv+2g==", - "path": "sqlitepclraw.core/2.1.2", - "hashPath": "sqlitepclraw.core.2.1.2.nupkg.sha512" - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zibGtku8M4Eea1R3ZCAxc86QbNvyEN17mAcQkvWKBuHvRpMiK2g5anG4R5Be7cWKSd1i6baYz8y4dMMAKcXKPg==", - "path": "sqlitepclraw.lib.e_sqlite3/2.1.2", - "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512" - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lxCZarZdvAsMl2zw9bXHrXK6RxVhB4b23iTFhCOdHFhxfbsxLxWf+ocvswJwR/9Wh/E//ddMi+wJGqUKV7VwoA==", - "path": "sqlitepclraw.provider.e_sqlite3/2.1.2", - "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gqpR1EeXOuzNQWL7rOzmtdIz3CaXVjSQCiaGOs2ivjPwynKSJYm39X81fdlp7WuojZs/Z5t1k5ni7HtKQurhjw==", - "path": "system.codedom/4.5.0", - "hashPath": "system.codedom.4.5.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==", - "path": "system.collections.immutable/1.3.0", - "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", - "path": "system.componentmodel.annotations/4.5.0", - "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", - "path": "system.configuration.configurationmanager/4.5.0", - "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", - "path": "system.diagnostics.diagnosticsource/6.0.1", - "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "path": "system.diagnostics.stacktrace/4.3.0", - "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6Uty9sMaeBG0/GIRTW4+DUTvuB/od5E6rY45JbEz1c2xMoPSA9GLov4KdiBEpjsEcsgORa6sC3vfh70tEJJaOw==", - "path": "system.directoryservices/4.5.0", - "hashPath": "system.directoryservices.4.5.0.nupkg.sha512" - }, - "System.Formats.Asn1/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", - "path": "system.formats.asn1/8.0.1", - "hashPath": "system.formats.asn1.8.0.1.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9GESpDG0Zb17HD5mBW/uEWi2yz/uKPmCthX2UhyLnk42moGH2FpMgXA2Y4l2Qc7P75eXSUTA6wb/c9D9GSVkzw==", - "path": "system.identitymodel.tokens.jwt/8.3.0", - "hashPath": "system.identitymodel.tokens.jwt.8.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", - "path": "system.io.filesystem.accesscontrol/5.0.0", - "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6ac0qPGr3yJtwZEX1SRkhwWa0Kf5NJxx7smLboYsGrApQFECNFdqhGy252T4lrZ5Nwzhd9VQiaifndR3bfHdg==", - "path": "system.management/4.5.0", - "hashPath": "system.management.4.5.0.nupkg.sha512" - }, - "System.Management.Automation/6.2.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m2z9+qOpxcZrx+yMFbIQZnJ/OMLhEL2Z0IEGi5HHm7ODLnPwkWOfS/fZ25IHRY50HAX4cSygiall+tjJSiXILA==", - "path": "system.management.automation/6.2.7", - "hashPath": "system.management.automation.6.2.7.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Net.Http/4.3.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", - "path": "system.net.http/4.3.4", - "hashPath": "system.net.http.4.3.4.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Requests/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==", - "path": "system.net.requests/4.3.0", - "hashPath": "system.net.requests.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Net.WebHeaderCollection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==", - "path": "system.net.webheadercollection/4.3.0", - "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.DataContractSerialization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", - "path": "system.private.datacontractserialization/4.3.0", - "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==", - "path": "system.reflection.metadata/1.4.1", - "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", - "path": "system.runtime/4.3.1", - "hashPath": "system.runtime.4.3.1.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.VisualC/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/dcn1oXqK/p/VnTYWNSf4OXlFIfzCRE/kqWz4+/r5B2S4zlKifB1FqklEEYs5zmE1JE3syvrJ5U4syOwsDQZbA==", - "path": "system.runtime.compilerservices.visualc/4.3.0", - "hashPath": "system.runtime.compilerservices.visualc.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", - "path": "system.runtime.serialization.primitives/4.3.0", - "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Xml/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", - "path": "system.runtime.serialization.xml/4.3.0", - "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/4.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==", - "path": "system.security.cryptography.pkcs/4.5.2", - "hashPath": "system.security.cryptography.pkcs.4.5.2.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", - "path": "system.security.cryptography.protecteddata/7.0.0", - "hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "path": "system.security.permissions/4.5.0", - "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Security.SecureString/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==", - "path": "system.security.securestring/4.3.0", - "hashPath": "system.security.securestring.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", - "path": "system.text.encoding.codepages/4.5.1", - "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", - "path": "system.text.encodings.web/8.0.0", - "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", - "path": "system.text.regularexpressions/4.3.1", - "hashPath": "system.text.regularexpressions.4.3.1.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.ValueTuple/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", - "path": "system.valuetuple/4.5.0", - "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", - "path": "system.xml.xmlserializer/4.3.0", - "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.dll deleted file mode 100644 index f70f7142155bb..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.pdb b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.pdb deleted file mode 100644 index aaf6cdbcb6925..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.pdb and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.xml b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.xml deleted file mode 100644 index 9c5b7f84166a5..0000000000000 --- a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.Module.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - Microsoft.Teams.PowerShell.Module - - - - diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.TeamsCmdlets.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.TeamsCmdlets.dll deleted file mode 100644 index 1607797481346..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Teams.PowerShell.TeamsCmdlets.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.TeamsCmdlets.PowerShell.Connect.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.TeamsCmdlets.PowerShell.Connect.dll deleted file mode 100644 index c82d44149a93f..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.TeamsCmdlets.PowerShell.Connect.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Core.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Core.dll deleted file mode 100644 index 93b42ab2f1347..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Core.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll deleted file mode 100644 index 487640db1e8b8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.WinForms.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll deleted file mode 100644 index d746f93d4e0fb..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Microsoft.Web.WebView2.Wpf.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Newtonsoft.Json.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Newtonsoft.Json.dll deleted file mode 100644 index 62154f670bc4b..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/OneCollectorChannel.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/OneCollectorChannel.dll deleted file mode 100644 index 758e93e198791..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/OneCollectorChannel.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.Contrib.WaitAndRetry.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.Contrib.WaitAndRetry.dll deleted file mode 100644 index 7e13f7fe3a251..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.Contrib.WaitAndRetry.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.dll deleted file mode 100644 index a1a99371172e9..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/Polly.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll deleted file mode 100644 index 3cc1d0a624227..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.core.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.core.dll deleted file mode 100644 index 75b68c9e155a8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.core.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll deleted file mode 100644 index 88f3aa2aaa07d..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index b9c96dee7be13..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Formats.Asn1.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Formats.Asn1.dll deleted file mode 100644 index 45074325ef789..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Formats.Asn1.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 961d56d1c26cb..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 2a2f9055b8ec1..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.Automation.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.Automation.dll deleted file mode 100644 index 0a058e35a7548..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.Automation.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.dll deleted file mode 100644 index 0586f0f89274f..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Management.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 500b614f0bbbb..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.AccessControl.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.AccessControl.dll deleted file mode 100644 index 7930f2116cc06..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.AccessControl.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.Cng.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.Cng.dll deleted file mode 100644 index b8c1b9d952181..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 3a707f3e56a05..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Principal.Windows.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Principal.Windows.dll deleted file mode 100644 index e91cf2e4b7e9a..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Encodings.Web.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Encodings.Web.dll deleted file mode 100644 index 140a34de9ffef..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Json.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Json.dll deleted file mode 100644 index 39cf0742299bc..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/System.Text.Json.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-arm64/native/msalruntime_arm64.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-arm64/native/msalruntime_arm64.dll deleted file mode 100644 index d2fa6152e8911..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-arm64/native/msalruntime_arm64.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x64/native/msalruntime.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x64/native/msalruntime.dll deleted file mode 100644 index 4321b6056249b..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x64/native/msalruntime.dll and /dev/null differ diff --git a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x86/native/msalruntime_x86.dll b/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x86/native/msalruntime_x86.dll deleted file mode 100644 index 0a197642e35d8..0000000000000 Binary files a/Modules/MicrosoftTeams/7.8.0/netcoreapp3.1/runtimes/win-x86/native/msalruntime_x86.dll and /dev/null differ diff --git a/Shared/CIPPSharp/CIPPRestClient.cs b/Shared/CIPPSharp/CIPPRestClient.cs index ee6e56bd5a4b5..b4fa13e6d5326 100644 --- a/Shared/CIPPSharp/CIPPRestClient.cs +++ b/Shared/CIPPSharp/CIPPRestClient.cs @@ -1048,6 +1048,56 @@ public static void Remove(string key) Interlocked.Increment(ref _invalidations); } + /// + /// Invalidate every cached token for a tenant, across all scopes, client IDs and + /// grant types. Call this after a consent change (CPV refresh/reset, permission + /// update) so the next request re-acquires a token carrying the new scopes instead + /// of serving a stale one that predates the consent. + /// Keys are built as "tenantId|scope|app-or-delegated|clientId|grantType", so the + /// tenant is matched on the first segment. + /// + public static int RemoveByTenant(string tenantId) + { + if (string.IsNullOrWhiteSpace(tenantId)) + return 0; + + var prefix = tenantId.Trim().ToLowerInvariant() + "|"; + var removed = 0; + + foreach (var kvp in _entries) + { + if (kvp.Key.StartsWith(prefix, StringComparison.OrdinalIgnoreCase) && + _entries.TryRemove(kvp.Key, out _)) + { + removed++; + Interlocked.Increment(ref _invalidations); + } + } + + return removed; + } + + /// + /// Invalidate the entire token cache. Intended for global consent/app changes + /// (for example rotating the SAM application) where per-tenant invalidation is + /// not sufficient. + /// + public static int Clear() + { + var removed = 0; + + foreach (var kvp in _entries) + { + if (_entries.TryRemove(kvp.Key, out _)) + { + removed++; + Interlocked.Increment(ref _invalidations); + } + } + + return removed; + } + public static int CompactExpired(int refreshSkewSeconds = 0, int maxRemovals = 1000) { var now = DateTimeOffset.UtcNow.ToUnixTimeSeconds(); diff --git a/Shared/CIPPSharp/bin/CIPPSharp.dll b/Shared/CIPPSharp/bin/CIPPSharp.dll index b2cd18ede86a7..ba68cf80f0eb1 100644 Binary files a/Shared/CIPPSharp/bin/CIPPSharp.dll and b/Shared/CIPPSharp/bin/CIPPSharp.dll differ diff --git a/Tests/Build/Build-FunctionParameters.Tests.ps1 b/Tests/Build/Build-FunctionParameters.Tests.ps1 new file mode 100644 index 0000000000000..f673b4a6c02f7 --- /dev/null +++ b/Tests/Build/Build-FunctionParameters.Tests.ps1 @@ -0,0 +1,132 @@ +# Pester tests for build/tools/build-function-parameters.ps1 +# Generates a fixture module, runs the generator, dot-sources the same fixture and +# asserts the synthesized synopses match live Get-Help byte for byte. Covers the +# constructs that broke earlier revisions: mixed explicit positions, named parameter +# sets, ghost default sets, positioned switches, non-$true mandatory literals. + +BeforeAll { + $RepoRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $PSCommandPath)) + $GeneratorPath = Join-Path (Split-Path -Parent $RepoRoot) 'build/tools/build-function-parameters.ps1' + if (-not (Test-Path $GeneratorPath)) { throw "Could not locate build-function-parameters.ps1 at $GeneratorPath" } + + $FixtureRoot = Join-Path $TestDrive 'FixtureModule' + $PublicDir = Join-Path $FixtureRoot 'Public' + $null = New-Item -ItemType Directory -Path $PublicDir -Force + + $FixtureSource = @' +function Test-AutoPositional { + param($User, [string]$Name, [switch]$Force) +} +function Test-MandatoryForms { + param( + [Parameter(Mandatory)][string]$FlagForm, + [Parameter(Mandatory = $true)]$ExplicitTrue, + [Parameter(Mandatory = 1)][string]$NumericTrue, + [Parameter(Mandatory = $false)]$ExplicitFalse + ) +} +function Test-MixedPositions { + [CmdletBinding()] + param( + [Parameter(Position = 1)][string]$Second, + [Parameter(Position = 0)][string]$First, + [Parameter()][string]$Named + ) +} +function Test-NamedSets { + [CmdletBinding()] + param( + [Parameter(ParameterSetName = 'Single', Mandatory)][string]$UserId, + [Parameter(ParameterSetName = 'Single')][string]$Nickname, + [Parameter(ParameterSetName = 'Bulk', Mandatory)][System.Collections.Generic.List[object]]$Requests, + [Parameter(Mandatory)][string]$TenantFilter, + $Headers + ) +} +function Test-SwitchInNamedSet { + [CmdletBinding()] + param( + [Parameter(ParameterSetName = 'A')][switch]$Sw, + [Parameter(ParameterSetName = 'A')][string]$S + ) +} +function Test-PositionedSwitch { + [CmdletBinding()] + param( + [Parameter(Position = 0)][switch]$Sw, + [Parameter(Position = 1)][string]$Str + ) +} +function Test-GhostDefault { + [CmdletBinding(DefaultParameterSetName = 'Nope')] + param( + [Parameter(ParameterSetName = 'A')][string]$X, + [Parameter(ParameterSetName = 'B')][string]$Y + ) +} +function Test-ShouldProcess { + [CmdletBinding(SupportsShouldProcess = $true)] + param([string]$Target) +} +function Test-WithCommentHelp { + <# + .SYNOPSIS + a real synopsis + .FUNCTIONALITY + Internal + .PARAMETER Thing + the thing + #> + param([string]$Thing) +} +'@ + Set-Content -Path (Join-Path $PublicDir 'fixtures.ps1') -Value $FixtureSource + + $OutputPath = Join-Path $TestDrive 'out.json' + & $GeneratorPath -ModulePath $FixtureRoot -OutputPath $OutputPath | Out-Null + $script:Generated = Get-Content $OutputPath -Raw | ConvertFrom-Json -AsHashtable + + # same definitions live in the session so Get-Help renders its real synopses + . (Join-Path $PublicDir 'fixtures.ps1') + + $script:NoHelpFunctions = @( + 'Test-AutoPositional', 'Test-MandatoryForms', 'Test-MixedPositions', 'Test-NamedSets', + 'Test-SwitchInNamedSet', 'Test-PositionedSwitch', 'Test-GhostDefault', 'Test-ShouldProcess' + ) +} + +Describe 'build-function-parameters generator' { + It 'synthesizes a synopsis byte-identical to Get-Help for <_>' -ForEach @( + 'Test-AutoPositional', 'Test-MandatoryForms', 'Test-MixedPositions', 'Test-NamedSets', + 'Test-SwitchInNamedSet', 'Test-PositionedSwitch', 'Test-GhostDefault', 'Test-ShouldProcess' + ) { + $expected = (Get-Help $_).Synopsis.Trim() + # Get-Help joins multi-set blocks with the platform newline; the cache pins CRLF + $normalizedGenerated = $script:Generated[$_]['Synopsis'] -replace "`r`n", "`n" + $normalizedExpected = $expected -replace "`r`n", "`n" + $normalizedGenerated | Should -BeExactly $normalizedExpected + } + + It 'extracts comment-based help instead of synthesizing' { + $script:Generated['Test-WithCommentHelp']['Synopsis'] | Should -Be 'a real synopsis' + $script:Generated['Test-WithCommentHelp']['Functionality'] | Should -Be 'Internal' + ($script:Generated['Test-WithCommentHelp']['Parameters'] | Where-Object { $_['Name'] -eq 'Thing' })['Description'] | Should -Be 'the thing' + } + + It 'marks non-$true mandatory literals as required' { + $params = @{} + foreach ($p in $script:Generated['Test-MandatoryForms']['Parameters']) { $params[$p['Name']] = $p['Required'] } + $params['FlagForm'] | Should -BeTrue + $params['ExplicitTrue'] | Should -BeTrue + $params['NumericTrue'] | Should -BeTrue + $params['ExplicitFalse'] | Should -BeFalse + } + + It 'fails the build when a source file cannot be parsed' { + $brokenRoot = Join-Path $TestDrive 'BrokenModule' + $null = New-Item -ItemType Directory -Path (Join-Path $brokenRoot 'Public') -Force + Set-Content -Path (Join-Path $brokenRoot 'Public/ok.ps1') -Value 'function Get-Ok { param($A) }' + Set-Content -Path (Join-Path $brokenRoot 'Public/broken.ps1') -Value 'function Get-Broken {{{' + { & $GeneratorPath -ModulePath $brokenRoot -OutputPath (Join-Path $TestDrive 'broken-out.json') } | Should -Throw '*failed to parse*' + } +} diff --git a/Tests/Endpoint/Invoke-ListFunctionParameters.Tests.ps1 b/Tests/Endpoint/Invoke-ListFunctionParameters.Tests.ps1 new file mode 100644 index 0000000000000..109328c98625b --- /dev/null +++ b/Tests/Endpoint/Invoke-ListFunctionParameters.Tests.ps1 @@ -0,0 +1,163 @@ +# Pester tests for Invoke-ListFunctionParameters +# Validates the pregenerated cache path (Config/function-parameters.json), the guard +# that skips commands outside the pregenerated set (deployed legacy behavior), the +# live Get-Help fallback when no cache exists, and entrypoint filtering. + +BeforeAll { + # Resolve by name under Modules/ so the test survives the function moving between modules. + $RepoRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $PSCommandPath)) + $FunctionPath = Get-ChildItem -Path (Join-Path $RepoRoot 'Modules') -Recurse -Filter 'Invoke-ListFunctionParameters.ps1' -File -ErrorAction SilentlyContinue | + Select-Object -First 1 -ExpandProperty FullName + if (-not $FunctionPath) { throw 'Could not locate Invoke-ListFunctionParameters.ps1 under Modules/' } + + class HttpResponseContext { + [object]$StatusCode + [object]$Body + } + # The Functions worker exposes [HttpStatusCode]; map it for standalone test runs. + $Accelerators = [PSObject].Assembly.GetType('System.Management.Automation.TypeAccelerators') + if (-not ('HttpStatusCode' -as [type])) { + $Accelerators::Add('HttpStatusCode', [System.Net.HttpStatusCode]) + } + + function New-ExoRequest { param($AvailableCmdlets, $tenantid, $NoAuthCheck, $Compliance) } + + # fake FunctionInfo, endpoint reads Name / Visibility / Parameters + function New-FakeFunction { + param($Name) + [pscustomobject]@{ + Name = $Name + Visibility = 'Public' + Parameters = @{ + SomeParam = [pscustomobject]@{ + ParameterType = [pscustomobject]@{ FullName = 'System.String' } + Attributes = @([pscustomobject]@{ Mandatory = $true }) + } + } + } + } + + function New-CacheFile { + param($Root, $Functions) + $configDir = Join-Path $Root 'Config' + $null = New-Item -ItemType Directory -Path $configDir -Force + $Functions | ConvertTo-Json -Depth 8 | Set-Content -Path (Join-Path $configDir 'function-parameters.json') + } + + . $FunctionPath + + # the function also emits $Results to the pipeline before returning the + # response context, the worker keys on the HttpResponseContext object + function Invoke-Endpoint { + param($Request) + Invoke-ListFunctionParameters -Request $Request -TriggerMetadata $null | Where-Object { $_ -is [HttpResponseContext] } | Select-Object -First 1 + } +} + +Describe 'Invoke-ListFunctionParameters' { + BeforeEach { + $global:CIPPFunctionParameters = $null + $script:savedRootPath = $env:CIPPRootPath + + Mock -CommandName Get-Help -MockWith { + [pscustomobject]@{ + Functionality = '' + Synopsis = 'live synopsis' + parameters = [pscustomobject]@{ + parameter = @([pscustomobject]@{ name = 'SomeParam'; description = @([pscustomobject]@{ Text = 'live description' }) }) + } + } + } + } + + AfterEach { + $global:CIPPFunctionParameters = $null + $env:CIPPRootPath = $script:savedRootPath + } + + It 'serves cached functions without calling Get-Help' { + $env:CIPPRootPath = Join-Path $TestDrive 'cached' + New-CacheFile -Root $env:CIPPRootPath -Functions @{ + 'Get-CIPPFoo' = @{ + Functionality = '' + Synopsis = 'cached synopsis' + Parameters = @(@{ Name = 'SomeParam'; Type = 'System.String'; Description = 'cached description'; Required = $true }) + } + } + Mock -CommandName Get-Command -MockWith { @(New-FakeFunction -Name 'Get-CIPPFoo') } + + $request = [pscustomobject]@{ Query = [pscustomobject]@{ Module = 'CIPPCore' } } + $response = Invoke-Endpoint -Request $request + + $response.StatusCode | Should -Be ([System.Net.HttpStatusCode]::OK) + $response.Body | Should -HaveCount 1 + $response.Body[0].Function | Should -Be 'Get-CIPPFoo' + $response.Body[0].Synopsis | Should -Be 'cached synopsis' + $response.Body[0].Parameters[0].Description | Should -Be 'cached description' + Should -Invoke Get-Help -Times 0 -Exactly + } + + It 'skips functions outside the pregenerated set without calling Get-Help' { + $env:CIPPRootPath = Join-Path $TestDrive 'partial' + New-CacheFile -Root $env:CIPPRootPath -Functions @{ + 'Get-CIPPFoo' = @{ + Functionality = '' + Synopsis = 'cached synopsis' + Parameters = @(@{ Name = 'SomeParam'; Type = 'System.String'; Description = 'cached description'; Required = $true }) + } + } + # cache present -> uncached commands are guard-skipped, never Get-Help'd + # (a bare Get-Command can return every command in the runspace) + Mock -CommandName Get-Command -MockWith { + @((New-FakeFunction -Name 'Get-CIPPFoo'), (New-FakeFunction -Name 'Get-SomeOtherModuleThing')) + } + + $request = [pscustomobject]@{ Query = [pscustomobject]@{ Module = 'CIPPCore' } } + $response = Invoke-Endpoint -Request $request + + $response.StatusCode | Should -Be ([System.Net.HttpStatusCode]::OK) + $response.Body | Should -HaveCount 1 + $response.Body[0].Function | Should -Be 'Get-CIPPFoo' + Should -Invoke Get-Help -Times 0 -Exactly + } + + It 'uses live Get-Help for everything when no cache file exists' { + $env:CIPPRootPath = Join-Path $TestDrive 'empty' + $null = New-Item -ItemType Directory -Path $env:CIPPRootPath -Force + Mock -CommandName Get-Command -MockWith { + @((New-FakeFunction -Name 'Get-CIPPFoo'), (New-FakeFunction -Name 'Get-CIPPBar')) + } + + $request = [pscustomobject]@{ Query = [pscustomobject]@{ Module = 'CIPPCore' } } + $response = Invoke-Endpoint -Request $request + + $response.StatusCode | Should -Be ([System.Net.HttpStatusCode]::OK) + $response.Body | Should -HaveCount 2 + Should -Invoke Get-Help -Times 2 -Exactly + } + + It 'filters out entrypoint functions listed in the cache' { + $env:CIPPRootPath = Join-Path $TestDrive 'entrypoints' + New-CacheFile -Root $env:CIPPRootPath -Functions @{ + 'Get-CIPPFoo' = @{ + Functionality = '' + Synopsis = 'cached synopsis' + Parameters = @() + } + 'Invoke-CIPPBar' = @{ + Functionality = 'Entrypoint,AnyTenant' + Synopsis = 'an entrypoint' + Parameters = @() + } + } + Mock -CommandName Get-Command -MockWith { + @((New-FakeFunction -Name 'Get-CIPPFoo'), (New-FakeFunction -Name 'Invoke-CIPPBar')) + } + + $request = [pscustomobject]@{ Query = [pscustomobject]@{ Module = 'CIPPCore' } } + $response = Invoke-Endpoint -Request $request + + $response.Body | Should -HaveCount 1 + $response.Body[0].Function | Should -Be 'Get-CIPPFoo' + } +} diff --git a/Tests/Private/Remove-CIPPDirectTenantToken.Tests.ps1 b/Tests/Private/Remove-CIPPDirectTenantToken.Tests.ps1 new file mode 100644 index 0000000000000..92c45f806b789 --- /dev/null +++ b/Tests/Private/Remove-CIPPDirectTenantToken.Tests.ps1 @@ -0,0 +1,103 @@ +# Pester tests for Remove-CIPPDirectTenantToken +# Verifies the stored per-tenant refresh token is removed from Key Vault (or DevSecrets locally), +# that the cached environment variable is cleared, and that cleanup failures never throw - callers +# invoke this while returning a different result to the user. + +BeforeAll { + $RepoRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $PSCommandPath)) + $FunctionPath = Join-Path $RepoRoot 'Modules/CIPPCore/Public/Remove-CIPPDirectTenantToken.ps1' + + # Minimal stubs so Mock has commands to replace during tests + function Get-CIPPTable { param($TableName) } + function Get-CIPPAzDataTableEntity { param($Context, $Filter) } + function Add-CIPPAzDataTableEntity { param($Context, $Entity, [switch]$Force) } + function Get-CippKeyVaultName { } + function Remove-CippKeyVaultSecret { param($VaultName, $Name) } + + . $FunctionPath +} + +Describe 'Remove-CIPPDirectTenantToken' { + BeforeEach { + $script:TenantId = '11111111-1111-1111-1111-111111111111' + $script:SecretName = '11111111_1111_1111_1111_111111111111' + + $script:OriginalStorage = $env:AzureWebJobsStorage + $script:OriginalNonLocal = $env:NonLocalHostAzurite + + Mock -CommandName Get-CippKeyVaultName -MockWith { 'stub-vault' } + Mock -CommandName Remove-CippKeyVaultSecret -MockWith { } + Mock -CommandName Get-CIPPTable -MockWith { @{ Context = 'stub-table' } } + Mock -CommandName Add-CIPPAzDataTableEntity -MockWith { } + } + + AfterEach { + $env:AzureWebJobsStorage = $script:OriginalStorage + $env:NonLocalHostAzurite = $script:OriginalNonLocal + Remove-Item -Path "env:\$script:TenantId" -ErrorAction SilentlyContinue + Remove-Item -Path "env:\$script:SecretName" -ErrorAction SilentlyContinue + } + + Context 'Hosted (Key Vault) storage' { + BeforeEach { + $env:AzureWebJobsStorage = 'DefaultEndpointsProtocol=https;AccountName=stub' + $env:NonLocalHostAzurite = $null + } + + It 'deletes the Key Vault secret named after the tenant' { + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Should -Invoke -CommandName Remove-CippKeyVaultSecret -Times 1 -Exactly -ParameterFilter { + $Name -eq '11111111-1111-1111-1111-111111111111' + } + } + + It 'clears the cached environment variable' { + Set-Item -Path "env:\$script:TenantId" -Value 'stub-refresh-token' -Force + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Test-Path -Path "env:\$script:TenantId" | Should -BeFalse + } + + It 'does not throw when the secret cannot be deleted' { + Mock -CommandName Remove-CippKeyVaultSecret -MockWith { throw 'SecretNotFound' } + { Remove-CIPPDirectTenantToken -TenantId $script:TenantId } | Should -Not -Throw + } + + It 'does not touch DevSecrets' { + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Should -Invoke -CommandName Add-CIPPAzDataTableEntity -Times 0 -Exactly + } + } + + Context 'Local development storage' { + BeforeEach { + $env:AzureWebJobsStorage = 'UseDevelopmentStorage=true' + Mock -CommandName Get-CIPPAzDataTableEntity -MockWith { + [pscustomobject]@{ + PartitionKey = 'Secret' + RowKey = 'Secret' + '11111111_1111_1111_1111_111111111111' = 'stub-refresh-token' + } + } + } + + It 'clears the stored secret value in the DevSecrets table' { + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Should -Invoke -CommandName Add-CIPPAzDataTableEntity -Times 1 -Exactly -ParameterFilter { + $Entity.'11111111_1111_1111_1111_111111111111' -eq '' + } + } + + It 'does not call Key Vault' { + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Should -Invoke -CommandName Remove-CippKeyVaultSecret -Times 0 -Exactly + } + + It 'leaves the table alone when no secret is stored for the tenant' { + Mock -CommandName Get-CIPPAzDataTableEntity -MockWith { + [pscustomobject]@{ PartitionKey = 'Secret'; RowKey = 'Secret' } + } + Remove-CIPPDirectTenantToken -TenantId $script:TenantId + Should -Invoke -CommandName Add-CIPPAzDataTableEntity -Times 0 -Exactly + } + } +} diff --git a/Tests/Private/Test-CIPPAccessTenant.Tests.ps1 b/Tests/Private/Test-CIPPAccessTenant.Tests.ps1 new file mode 100644 index 0000000000000..f8d8744c5055f --- /dev/null +++ b/Tests/Private/Test-CIPPAccessTenant.Tests.ps1 @@ -0,0 +1,187 @@ +# Pester tests for Test-CIPPAccessTenant +# Verifies that direct tenants are assessed on their own connectivity instead of on GDAP role +# assignments made to the partner tenant, and that the GDAP path is unchanged. + +BeforeAll { + $RepoRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $PSCommandPath)) + $FunctionPath = Join-Path $RepoRoot 'Modules/CIPPCore/Public/Test-CIPPAccessTenant.ps1' + + # Minimal stubs so Mock has commands to replace during tests + function Get-Tenants { param($TenantFilter, [switch]$IncludeErrors) } + function New-GraphGetRequest { param($uri, $tenantid) } + function New-GraphBulkRequest { param($tenantid, $Requests) } + function New-ExoRequest { param($tenantid, $cmdlet, $cmdParams) } + function Test-CIPPStandardLicense { param($StandardName, $TenantFilter, $Preset, [switch]$SkipLog) } + function Write-LogMessage { param($headers, $API, $tenant, $tenantId, $message, $sev, $LogData, $level) } + function Get-CippException { param($Exception) } + function Get-CIPPTable { param($TableName) } + function Add-CIPPAzDataTableEntity { param($Context, $Entity, [switch]$Force) } + + . $FunctionPath +} + +Describe 'Test-CIPPAccessTenant' { + BeforeEach { + $env:TenantID = '00000000-0000-0000-0000-00000000partner' + + Mock -CommandName Write-LogMessage -MockWith { } + Mock -CommandName Get-CippException -MockWith { @{ NormalizedError = 'stub error' } } + Mock -CommandName Get-CIPPTable -MockWith { @{ Context = 'stub-table' } } + Mock -CommandName Add-CIPPAzDataTableEntity -MockWith { } + + # Skip the Exchange leg - it is identical for both tenant types and needs far more scaffolding. + Mock -CommandName Test-CIPPStandardLicense -MockWith { $false } + Mock -CommandName New-ExoRequest -MockWith { } + } + + Context 'Direct tenants' { + BeforeEach { + $script:AllExpectedRoleIds = @( + '9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3', 'fe930be7-5e62-47db-91af-98c3a49a38b1', + '3a2c62db-5318-420d-8d74-23affee5d9d5', '29232cdf-9323-42fd-ade2-1d097af3e4de', + '194ae4cb-b126-40b2-bd5b-6091b380977d', '892c5842-a9a6-463a-8041-72aa08ca3cf6', + '7698a772-787b-4ac8-901f-60d6b08affd2', '69091246-20e8-4a56-aa4d-066075b2a7a8', + 'f28a1f50-f6e7-4571-818b-6a12f2af6b6c', '0526716b-113d-4c15-b2c8-68e3c22b9f80', + 'e8611ab8-c189-46e8-94e1-60213ab1f814', '7be44c8a-adaf-4e2a-84d6-ab2649e08a13', + 'b0f54661-2d74-4c50-afa3-1ec803f12efe', 'f2ef992c-3afb-46b9-b7cf-a126ee74c451', + '8329153b-31d0-4727-b945-745eb3bc5f31' + ) + + Mock -CommandName Get-Tenants -MockWith { + [pscustomobject]@{ + customerId = '11111111-1111-1111-1111-111111111111' + defaultDomainName = 'direct.onmicrosoft.com' + displayName = 'Direct Tenant' + delegatedPrivilegeStatus = 'directTenant' + } + } + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*/me?*' } -MockWith { + [pscustomobject]@{ + id = 'service-account-id' + displayName = 'CIPP Service Account' + userPrincipalName = 'cipp@direct.onmicrosoft.com' + } + } + # Default: the service account holds every expected role directly. + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*transitiveMemberOf*' } -MockWith { + $script:AllExpectedRoleIds | ForEach-Object { + [pscustomobject]@{ '@odata.type' = '#microsoft.graph.directoryRole'; roleTemplateId = $_ } + } + } + Mock -CommandName New-GraphBulkRequest -MockWith { @() } + } + + It 'reports the tenant as a Direct tenant' { + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + $Result.TenantType | Should -Be 'Direct' + } + + It 'records the service account it authenticated as' { + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + $Result.ServiceAccount | Should -Be 'cipp@direct.onmicrosoft.com' + } + + It 'does not enumerate partner GDAP role assignments' { + $null = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + Should -Invoke -CommandName New-GraphBulkRequest -Times 0 -Exactly + } + + It 'reports the roles the service account holds and none missing' { + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + $Result.GraphStatus | Should -BeTrue + @($Result.MissingRoles).Count | Should -Be 0 + @($Result.AssignedRoles).Count | Should -Be $script:AllExpectedRoleIds.Count + $Result.AssignedRoles[0].Group | Should -Be 'cipp@direct.onmicrosoft.com' + $Result.GraphTest | Should -Be 'Successfully connected to Graph' + } + + It 'reports missing required roles when the service account lacks them' { + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*transitiveMemberOf*' } -MockWith { + @([pscustomobject]@{ + '@odata.type' = '#microsoft.graph.directoryRole' + roleTemplateId = 'fe930be7-5e62-47db-91af-98c3a49a38b1' # User Administrator only + }) + } + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + @($Result.AssignedRoles).Count | Should -Be 1 + @($Result.MissingRoles).Name | Should -Contain 'Intune Administrator' + $Result.GraphTest | Should -BeLike '*missing required roles*' + } + + It 'treats Global Administrator as satisfying every expected role' { + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*transitiveMemberOf*' } -MockWith { + @([pscustomobject]@{ + '@odata.type' = '#microsoft.graph.directoryRole' + roleTemplateId = '62e90394-69f5-4237-9190-012177145e10' # Global Administrator + }) + } + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + @($Result.MissingRoles).Count | Should -Be 0 + @($Result.AssignedRoles).Count | Should -Be $script:AllExpectedRoleIds.Count + $Result.AssignedRoles[0].Group | Should -BeLike '*via Global Administrator*' + } + + It 'flags only optional roles when just those are absent' { + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*transitiveMemberOf*' } -MockWith { + $Required = $script:AllExpectedRoleIds | Select-Object -First 12 + $Required | ForEach-Object { + [pscustomobject]@{ '@odata.type' = '#microsoft.graph.directoryRole'; roleTemplateId = $_ } + } + } + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + @($Result.MissingRoles).Count | Should -Be 3 + $Result.GraphTest | Should -BeLike '*missing optional roles*' + } + + It 'ignores group memberships when deriving roles' { + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*transitiveMemberOf*' } -MockWith { + @( + [pscustomobject]@{ '@odata.type' = '#microsoft.graph.group'; id = 'some-group' } + [pscustomobject]@{ '@odata.type' = '#microsoft.graph.directoryRole'; roleTemplateId = 'fe930be7-5e62-47db-91af-98c3a49a38b1' } + ) + } + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + @($Result.AssignedRoles).Count | Should -Be 1 + } + + It 'fails the Graph check when the tenant token is not usable' { + Mock -CommandName New-GraphGetRequest -ParameterFilter { $uri -like '*/me?*' } -MockWith { + throw 'invalid_grant' + } + $Result = Test-CIPPAccessTenant -Tenant 'direct.onmicrosoft.com' + $Result.GraphStatus | Should -BeFalse + $Result.GraphTest | Should -BeLike 'Failed to connect to Graph*' + } + } + + Context 'GDAP tenants' { + BeforeEach { + Mock -CommandName Get-Tenants -MockWith { + [pscustomobject]@{ + customerId = '22222222-2222-2222-2222-222222222222' + defaultDomainName = 'gdap.onmicrosoft.com' + displayName = 'GDAP Tenant' + delegatedPrivilegeStatus = 'granularDelegatedAdminPrivileges' + } + } + Mock -CommandName New-GraphBulkRequest -MockWith { @() } + Mock -CommandName New-GraphGetRequest -MockWith { @() } + } + + It 'reports the tenant as a GDAP tenant' { + $Result = Test-CIPPAccessTenant -Tenant 'gdap.onmicrosoft.com' + $Result.TenantType | Should -Be 'GDAP' + } + + It 'still enumerates partner GDAP role assignments' { + $null = Test-CIPPAccessTenant -Tenant 'gdap.onmicrosoft.com' + Should -Invoke -CommandName New-GraphBulkRequest -Times 1 -Exactly + } + + It 'still reports missing roles when the partner holds no role assignments' { + $Result = Test-CIPPAccessTenant -Tenant 'gdap.onmicrosoft.com' + @($Result.MissingRoles).Count | Should -BeGreaterThan 0 + $Result.GraphTest | Should -BeLike '*missing required GDAP roles*' + } + } +} diff --git a/version_latest.txt b/version_latest.txt index 67be0b08b814c..55fd92b4cb9ec 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -10.7.0 \ No newline at end of file +10.7.1 \ No newline at end of file